From 3ad632c31cba82fc7b2ee5d6e701d7f08c7ac247 Mon Sep 17 00:00:00 2001 From: John-Philip Taylor Date: Sat, 6 Jul 2024 16:56:24 +0200 Subject: [PATCH 1/4] Changed all the keywords to anonymous nodes --- grammar.js | 458 +-- queries/Helix/highlights.scm | 252 +- queries/Neovim/highlights.scm | 252 +- src/grammar.json | 2906 +++++++++++++---- src/node-types.json | 2166 +++--------- src/parser.c | 372 +-- test/corpus/architecture_basic.vhd | 9 - test/corpus/entity.vhd | 92 +- test/corpus/if_generate.vhd | 8 - test/corpus/if_statement.vhd | 20 +- test/corpus/library_constant_break.vhd | 7 +- test/corpus/literals.vhd | 3 +- .../specification_examples/architecture.vhd | 147 +- test/corpus/specification_examples/entity.vhd | 88 +- test/corpus/string_literal_std_logic.vhd | 7 - test/corpus/tool_directives.vhd | 36 +- 16 files changed, 3383 insertions(+), 3440 deletions(-) diff --git a/grammar.js b/grammar.js index adde45a..d83e85c 100644 --- a/grammar.js +++ b/grammar.js @@ -224,15 +224,15 @@ module.exports = grammar({ ), library_clause: $ => seq( - $.LIBRARY, $.logical_name_list, ";" + alias($.LIBRARY, "library"), $.logical_name_list, ";" ), use_clause: $ => seq( - $.USE, $.selected_name, repeat(seq(",", $.selected_name)), ";" + alias($.USE, "use"), $.selected_name, repeat(seq(",", $.selected_name)), ";" ), context_reference: $ => seq( - $.CONTEXT, $.selected_name_list, ";" + alias($.CONTEXT, "context"), $.selected_name_list, ";" ), logical_name_list: $ => seq( @@ -249,7 +249,7 @@ module.exports = grammar({ ), selected_name: $ => seq( - $._logical_name, repeat(seq(".", choice($._identifier, $.ALL))) + $._logical_name, repeat(seq(".", choice($._identifier, alias(alias($.ALL, "all"), "all")))) ), // Library Units @@ -265,91 +265,91 @@ module.exports = grammar({ ), entity_declaration: $ => seq( - $.ENTITY, $._identifier, $.entity_head, optional($.entity_body), $.end_entity, ";" + alias($.ENTITY, "entity"), $._identifier, $.entity_head, optional($.entity_body), $.end_entity, ";" ), entity_head: $ => seq( - $.IS, optional($.generic_clause), optional($.port_clause), repeat($._entity_declarative_item) + alias($.IS, "is"), optional($.generic_clause), optional($.port_clause), repeat($._entity_declarative_item) ), port_clause: $ => seq( - $.PORT, "(", $.interface_list, ")", ";" + alias($.PORT, "port"), "(", $.interface_list, ")", ";" ), entity_body: $ => seq( - $.BEGIN, repeat($._entity_statement) + alias($.BEGIN, "begin"), repeat($._entity_statement) ), end_entity: $ => seq( - $.END, optional($.ENTITY), optional($._identifier) + alias($.END, "end"), optional(alias($.ENTITY, "entity")), optional($._identifier) ), configuration_declaration: $ => seq( - $.CONFIGURATION, $._identifier, $.OF, $.name, $.configuration_head, $.block_configuration, $.end_configuration, ";" + alias($.CONFIGURATION, "configuration"), $._identifier, alias($.OF, "of"), $.name, $.configuration_head, $.block_configuration, $.end_configuration, ";" ), configuration_head: $ => seq( - $.IS, repeat($._configuration_declarative_item), repeat(seq($.verification_unit_binding_indication, ";")) + alias($.IS, "is"), repeat($._configuration_declarative_item), repeat(seq($.verification_unit_binding_indication, ";")) ), end_configuration: $ => seq( - $.END, optional($.CONFIGURATION), optional($._identifier) + alias($.END, "end"), optional(alias($.CONFIGURATION, "configuration")), optional($._identifier) ), package_declaration: $ => seq( - $.PACKAGE, $._identifier, $.package_declaration_body, $.end_package, ";" + alias($.PACKAGE, "package"), $._identifier, $.package_declaration_body, $.end_package, ";" ), package_declaration_body: $ => seq( - $.IS, optional($.package_header), repeat($._package_declarative_item) + alias($.IS, "is"), optional($.package_header), repeat($._package_declarative_item) ), end_package: $ => seq( - $.END, optional($.PACKAGE), optional($._identifier) + alias($.END, "end"), optional(alias($.PACKAGE, "package")), optional($._identifier) ), package_instantiation_declaration: $ => seq( - $.PACKAGE, $._identifier, $.IS, $.NEW, $.name, optional($.generic_map_aspect), ";" + alias($.PACKAGE, "package"), $._identifier, alias($.IS, "is"), alias($.NEW, "new"), $.name, optional($.generic_map_aspect), ";" ), interface_package_declaration: $ => seq( - $.PACKAGE, $._identifier, $.IS, $.NEW, $.name, $._interface_package_generic_map_aspect + alias($.PACKAGE, "package"), $._identifier, alias($.IS, "is"), alias($.NEW, "new"), $.name, $._interface_package_generic_map_aspect ), context_declaration: $ => seq( - $.CONTEXT, $._identifier, $.context_declaration_body, $.end_context, ";" + alias($.CONTEXT, "context"), $._identifier, $.context_declaration_body, $.end_context, ";" ), context_declaration_body: $ => seq( - $.IS, repeat($._context_item) + alias($.IS, "is"), repeat($._context_item) ), end_context: $ => seq( - $.END, optional($.CONTEXT), optional($._identifier) + alias($.END, "end"), optional(alias($.CONTEXT, "context")), optional($._identifier) ), architecture_definition: $ => seq( - $.ARCHITECTURE, $._identifier, $.OF, $.name, $.architecture_head, $.concurrent_block, $.end_architecture, ";" + alias(alias($.ARCHITECTURE, "architecture"), "architecture"), $._identifier, alias($.OF, "of"), $.name, $.architecture_head, $.concurrent_block, $.end_architecture, ";" ), architecture_head: $ => seq( - $.IS, repeat($._block_declarative_item) + alias($.IS, "is"), repeat($._block_declarative_item) ), end_architecture: $ => seq( - $.END, optional($.ARCHITECTURE), optional($._identifier) + alias($.END, "end"), optional(alias(alias($.ARCHITECTURE, "architecture"), "architecture")), optional($._identifier) ), package_definition: $ => seq( - $.PACKAGE, $.BODY, $._identifier, $.package_definition_body, $.end_package_body, ";" + alias($.PACKAGE, "package"), alias($.BODY, "body"), $._identifier, $.package_definition_body, $.end_package_body, ";" ), package_definition_body: $ => seq( - $.IS, repeat($._package_body_declarative_item) + alias($.IS, "is"), repeat($._package_body_declarative_item) ), end_package_body: $ => seq( - $.END, optional(seq($.PACKAGE, $.BODY)), optional($._identifier) + alias($.END, "end"), optional(seq(alias($.PACKAGE, "package"), alias($.BODY, "body"))), optional($._identifier) ), // Declaration Item Lists @@ -522,52 +522,52 @@ module.exports = grammar({ ), subprogram_head: $ => seq( - $.IS, repeat($._subprogram_declarative_item) + alias($.IS, "is"), repeat($._subprogram_declarative_item) ), subprogram_end: $ => seq( - $.END, optional(choice($.PROCEDURE, $.FUNCTION)), optional($._designator) + alias($.END, "end"), optional(choice(alias($.PROCEDURE, "procedure"), alias($.FUNCTION, "function"))), optional($._designator) ), subprogram_instantiation_declaration: $ => seq( - choice($.PROCEDURE, $.FUNCTION), $._designator, $.IS, $.NEW, $.name, optional($.signature), optional($.generic_map_aspect), ";" + choice(alias($.PROCEDURE, "procedure"), alias($.FUNCTION, "function")), $._designator, alias($.IS, "is"), alias($.NEW, "new"), $.name, optional($.signature), optional($.generic_map_aspect), ";" ), type_declaration: $ => seq( - $.TYPE, $._identifier, optional(seq($.IS, $._type_definition)), ";" + alias($.TYPE, "type"), $._identifier, optional(seq(alias($.IS, "is"), $._type_definition)), ";" ), subtype_declaration: $ => seq( - $.SUBTYPE, $._identifier, $.IS, $.subtype_indication, ";" + alias($.SUBTYPE, "subtype"), $._identifier, alias($.IS, "is"), $.subtype_indication, ";" ), mode_view_declaration: $ => seq( - $.VIEW, $._identifier, $.OF, $.subtype_indication, $.mode_view_body, $.end_view, ";" + alias($.VIEW, "view"), $._identifier, alias($.OF, "of"), $.subtype_indication, $.mode_view_body, $.end_view, ";" ), mode_view_body: $ => seq( - $.IS, repeat($.mode_view_element_definition) + alias($.IS, "is"), repeat($.mode_view_element_definition) ), end_view: $ => seq( - $.END, $.VIEW, optional($._identifier) + alias($.END, "end"), alias($.VIEW, "view"), optional($._identifier) ), constant_declaration: $ => seq( - $.CONSTANT, $.identifier_list, ":", $.subtype_indication, optional($.initialiser), ";" + alias($.CONSTANT, "constant"), $.identifier_list, ":", $.subtype_indication, optional($.initialiser), ";" ), signal_declaration: $ => seq( - $.SIGNAL, $.identifier_list, ":", $.subtype_indication, optional($.signal_kind), optional($.initialiser), ";" + alias($.SIGNAL, "signal"), $.identifier_list, ":", $.subtype_indication, optional($.signal_kind), optional($.initialiser), ";" ), signal_kind: $ => choice( - $.REGISTER, - $.BUS + alias($.REGISTER, "register"), + alias($.BUS, "bus") ), variable_declaration: $ => seq( - optional($.SHARED), $.VARIABLE, $.identifier_list, ":", $.subtype_indication, optional($.generic_map_aspect), optional($.initialiser), ";" + optional(alias($.SHARED, "shared")), alias($.VARIABLE, "variable"), $.identifier_list, ":", $.subtype_indication, optional($.generic_map_aspect), optional($.initialiser), ";" ), initialiser: $ => seq( @@ -575,53 +575,53 @@ module.exports = grammar({ ), file_declaration: $ => seq( - $.FILE, $.identifier_list, ":", $.subtype_indication, optional($.file_open_information), ";" + alias($.FILE, "file"), $.identifier_list, ":", $.subtype_indication, optional($.file_open_information), ";" ), interface_file_declaration: $ => seq( - $.FILE, $.identifier_list, ":", $.subtype_indication + alias($.FILE, "file"), $.identifier_list, ":", $.subtype_indication ), alias_declaration: $ => seq( - $.ALIAS, $._alias_designator, optional(seq(":", $.subtype_indication)), $.IS, $.name, ";" + alias(alias($.ALIAS, "alias"), "alias"), $._alias_designator, optional(seq(":", $.subtype_indication)), alias($.IS, "is"), $.name, ";" ), component_declaration: $ => seq( - $.COMPONENT, $._identifier, optional($.component_body), $.end_component, ";" + alias($.COMPONENT, "component"), $._identifier, optional($.component_body), $.end_component, ";" ), component_body: $ => choice( - seq($.IS, optional($.generic_clause), optional($.port_clause)), + seq(alias($.IS, "is"), optional($.generic_clause), optional($.port_clause)), seq($.generic_clause, optional($.port_clause)), seq($.port_clause) ), end_component: $ => seq( - $.END, optional($.COMPONENT), optional($._identifier) + alias($.END, "end"), optional(alias($.COMPONENT, "component")), optional($._identifier) ), attribute_declaration: $ => seq( - $.ATTRIBUTE, $._identifier, ":", $.name, ";" + alias($.ATTRIBUTE, "attribute"), $._identifier, ":", $.name, ";" ), attribute_specification: $ => seq( - $.ATTRIBUTE, $._attribute_designator, $.OF, $.entity_specification, $.IS, $.conditional_expression, ";" + alias($.ATTRIBUTE, "attribute"), $._attribute_designator, alias($.OF, "of"), $.entity_specification, alias($.IS, "is"), $.conditional_expression, ";" ), disconnection_specification: $ => seq( - $.DISCONNECT, $.guarded_signal_specification, $.AFTER, $._expression, ";" + alias($.DISCONNECT, "disconnect"), $.guarded_signal_specification, alias(alias($.AFTER, "after"), "after"), $._expression, ";" ), group_template_declaration: $ => seq( - $.GROUP, $._identifier, $.IS, "(", $.entity_class_entry_list, ")", ";" + alias($.GROUP, "group"), $._identifier, alias($.IS, "is"), "(", $.entity_class_entry_list, ")", ";" ), group_declaration: $ => seq( - $.GROUP, $._identifier, ":", $.name, "(", $.group_constituent_list, ")", ";" + alias($.GROUP, "group"), $._identifier, ":", $.name, "(", $.group_constituent_list, ")", ";" ), private_variable_declaration: $ => seq( - $.PRIVATE, $.variable_declaration + alias($.PRIVATE, "private"), $.variable_declaration ), // Type Definitions @@ -631,11 +631,11 @@ module.exports = grammar({ ), unspecified_type_indication: $ => seq( - $.TYPE, $.IS, $._incomplete_type_definition + alias($.TYPE, "type"), alias($.IS, "is"), $._incomplete_type_definition ), interface_type_declaration: $ => seq( - $.TYPE, $._identifier, optional(seq($.IS, $._incomplete_type_definition)) + alias($.TYPE, "type"), $._identifier, optional(seq(alias($.IS, "is"), $._incomplete_type_definition)) ), _incomplete_type_definition: $ => choice( @@ -650,29 +650,29 @@ module.exports = grammar({ $.file_incomplete_type_definition ), - private_incomplete_type_definition: $ => $.PRIVATE, + private_incomplete_type_definition: $ => alias($.PRIVATE, "private"), - scalar_incomplete_type_definition: $ => $.box, + scalar_incomplete_type_definition: $ => alias($.box, "<>"), discrete_incomplete_type_definition: $ => seq( - "(", $.box, ")" + "(", alias($.box, "<>"), ")" ), integer_incomplete_type_definition: $ => seq( - $.RANGE, $.box + alias($.RANGE, "range"), alias($.box, "<>") ), physical_incomplete_type_definition: $ => seq( - $.UNITS, $.box + alias($.UNITS, "units"), alias($.box, "<>") ), floating_incomplete_type_definition: $ => seq( - $.RANGE, $.box, ".", $.box + alias($.RANGE, "range"), alias($.box, "<>"), ".", alias($.box, "<>") ), array_type_definition: $ => choice( - seq($.ARRAY, "(", $.array_index_incomplete_type_list, ")", $.OF, $._incomplete_subtype_indication), - seq($.ARRAY, $.index_constraint, $.OF, $.subtype_indication) + seq(alias(alias($.ARRAY, "array"), "array"), "(", $.array_index_incomplete_type_list, ")", alias($.OF, "of"), $._incomplete_subtype_indication), + seq(alias(alias($.ARRAY, "array"), "array"), $.index_constraint, alias($.OF, "of"), $.subtype_indication) ), array_index_incomplete_type_list: $ => seq( @@ -690,23 +690,23 @@ module.exports = grammar({ )), index_subtype_definition: $ => seq( - $.name, $.RANGE, $.box + $.name, alias($.RANGE, "range"), alias($.box, "<>") ), access_type_definition: $ => seq( - $.ACCESS, $.subtype_indication, optional($.generic_map_aspect) + alias(alias($.ACCESS, "access"), "access"), $.subtype_indication, optional($.generic_map_aspect) ), access_incomplete_type_definition: $ => seq( - $.ACCESS, $._incomplete_subtype_indication + alias(alias($.ACCESS, "access"), "access"), $._incomplete_subtype_indication ), file_type_definition: $ => seq( - $.FILE, $.OF, $.name + alias($.FILE, "file"), alias($.OF, "of"), $.name ), file_incomplete_type_definition: $ => seq( - $.FILE, $.OF, $.incomplete_type_mark + alias($.FILE, "file"), alias($.OF, "of"), $.incomplete_type_mark ), subtype_indication: $ => seq( @@ -743,11 +743,11 @@ module.exports = grammar({ // Statement Blocks concurrent_block: $ => seq( - $.BEGIN, repeat($._concurrent_statement) + alias($.BEGIN, "begin"), repeat($._concurrent_statement) ), sequential_block: $ => seq( - $.BEGIN, repeat($._sequential_statement) + alias($.BEGIN, "begin"), repeat($._sequential_statement) ), generate_body: $ => choice( @@ -756,15 +756,15 @@ module.exports = grammar({ ), generate_head: $ => seq( - $.GENERATE, repeat($._block_declarative_item) + alias($.GENERATE, "generate"), repeat($._block_declarative_item) ), generate_direct_block: $ => seq( - $.GENERATE, repeat($._concurrent_statement) + alias($.GENERATE, "generate"), repeat($._concurrent_statement) ), case_generate_alternative: $ => prec.left(seq( - $.WHEN, optional($.label_declaration), $._element, $.case_generate_body + alias($.WHEN, "when"), optional($.label_declaration), $._element, $.case_generate_body )), case_generate_body: $ => choice( @@ -781,11 +781,11 @@ module.exports = grammar({ ), generate_block: $ => seq( - $.BEGIN, repeat($._concurrent_statement) + alias($.BEGIN, "begin"), repeat($._concurrent_statement) ), generate_block_end: $ => seq( - $.END, optional($._label), ";" + alias($.END, "end"), optional($._label), ";" ), // Statements @@ -836,7 +836,7 @@ module.exports = grammar({ ), block_statement: $ => seq( - $.label_declaration, $.BLOCK, optional($.guard_condition), optional($.block_head), $.concurrent_block, $.end_block, ";" + $.label_declaration, alias($.BLOCK, "block"), optional($.guard_condition), optional($.block_head), $.concurrent_block, $.end_block, ";" ), guard_condition: $ => seq( @@ -844,22 +844,22 @@ module.exports = grammar({ ), block_head: $ => choice( - seq($.IS, optional(seq($.generic_clause, optional(seq($.generic_map_aspect, ";")))), optional(seq($.port_clause, optional(seq($.port_map_aspect, ";")))), repeat($._block_declarative_item)), + seq(alias($.IS, "is"), optional(seq($.generic_clause, optional(seq($.generic_map_aspect, ";")))), optional(seq($.port_clause, optional(seq($.port_map_aspect, ";")))), repeat($._block_declarative_item)), seq($.generic_clause, optional(seq($.generic_map_aspect, ";")), optional(seq($.port_clause, optional(seq($.port_map_aspect, ";")))), repeat($._block_declarative_item)), seq($.port_clause, optional(seq($.port_map_aspect, ";")), repeat($._block_declarative_item)), seq(repeat1($._block_declarative_item)) ), end_block: $ => seq( - $.END, $.BLOCK, optional($._label) + alias($.END, "end"), alias($.BLOCK, "block"), optional($._label) ), sequential_block_statement: $ => seq( - optional($.label_declaration), $.BLOCK, optional($.sequential_block_head), $.sequential_block, $.end_block, ";" + optional($.label_declaration), alias($.BLOCK, "block"), optional($.sequential_block_head), $.sequential_block, $.end_block, ";" ), sequential_block_head: $ => choice( - seq($.IS, repeat($._process_declarative_item)), + seq(alias($.IS, "is"), repeat($._process_declarative_item)), seq(repeat1($._process_declarative_item)) ), @@ -869,9 +869,9 @@ module.exports = grammar({ ), instantiated_unit: $ => choice( - seq($.COMPONENT, $.name), // Optional "component" covered by procedure call - seq($.ENTITY, optional(seq($.library_namespace, ".")), $.name, optional($.architecture_identifier)), - seq($.CONFIGURATION, $.name) + seq(alias($.COMPONENT, "component"), $.name), // Optional "component" covered by procedure call + seq(alias($.ENTITY, "entity"), optional(seq($.library_namespace, ".")), $.name, optional($.architecture_identifier)), + seq(alias($.CONFIGURATION, "configuration"), $.name) ), architecture_identifier: $ => seq( @@ -879,7 +879,7 @@ module.exports = grammar({ ), process_statement: $ => seq( - optional($.label_declaration), optional($.POSTPONED), $.PROCESS, optional($.sensitivity_specification), optional($.process_head), $.sequential_block, $.end_process, ";" + optional($.label_declaration), optional(alias($.POSTPONED, "postponed")), alias($.PROCESS, "process"), optional($.sensitivity_specification), optional($.process_head), $.sequential_block, $.end_process, ";" ), sensitivity_specification: $ => seq( @@ -887,20 +887,20 @@ module.exports = grammar({ ), process_head: $ => choice( - seq($.IS, repeat($._process_declarative_item)), + seq(alias($.IS, "is"), repeat($._process_declarative_item)), seq( repeat1($._process_declarative_item)), ), end_process: $ => seq( - $.END, optional($.POSTPONED), $.PROCESS, optional($._label) + alias($.END, "end"), optional(alias($.POSTPONED, "postponed")), alias($.PROCESS, "process"), optional($._label) ), case_generate_statement: $ => seq( - $.label_declaration, $.CASE, $._expression, $.case_generate_block, $.end_generate, ";" + $.label_declaration, alias($.CASE, "case"), $._expression, $.case_generate_block, $.end_generate, ";" ), case_generate_block: $ => seq( - $.GENERATE, repeat1($.case_generate_alternative) + alias($.GENERATE, "generate"), repeat1($.case_generate_alternative) ), for_generate_statement: $ => seq( @@ -912,19 +912,19 @@ module.exports = grammar({ ), if_generate: $ => seq( - $.IF, optional($.label_declaration), $._expression, $.generate_body + alias($.IF, "if"), optional($.label_declaration), $._expression, $.generate_body ), elsif_generate: $ => seq( - $.ELSIF, optional($.label_declaration), $._expression, $.generate_body + alias($.ELSIF, "elsif"), optional($.label_declaration), $._expression, $.generate_body ), else_generate: $ => seq( - $.ELSE, optional($.label_declaration), $.generate_body + alias($.ELSE, "else"), optional($.label_declaration), $.generate_body ), end_generate: $ => seq( - $.END, $.GENERATE, optional($._label) + alias($.END, "end"), alias($.GENERATE, "generate"), optional($._label) ), assertion_statement: $ => seq( @@ -932,19 +932,19 @@ module.exports = grammar({ ), concurrent_assertion_statement: $ => seq( - optional($.label_declaration), optional($.POSTPONED), $.assertion, ";" + optional($.label_declaration), optional(alias($.POSTPONED, "postponed")), $.assertion, ";" ), assertion: $ => seq( - $.ASSERT, $._expression, optional($.report_expression), optional($.severity_expression) + alias(alias($.ASSERT, "assert"), "assert"), $._expression, optional($.report_expression), optional($.severity_expression) ), report_expression: $ => seq( - $.REPORT, $._expression + alias($.REPORT, "report"), $._expression ), severity_expression: $ => seq( - $.SEVERITY, $._expression + alias($.SEVERITY, "severity"), $._expression ), case_statement: $ => seq( @@ -952,23 +952,23 @@ module.exports = grammar({ ), case_expression: $ => seq( - $.CASE, optional("?"), $._expression + alias($.CASE, "case"), optional("?"), $._expression ), case_body: $ => seq( - $.IS, repeat1($.case_statement_alternative) + alias($.IS, "is"), repeat1($.case_statement_alternative) ), end_case: $ => seq( - $.END, $.CASE, optional("?"), optional($._label) + alias($.END, "end"), alias($.CASE, "case"), optional("?"), optional($._label) ), exit_statement: $ => seq( - optional($.label_declaration), $.EXIT, optional($._label), optional($.when_expression), ";" + optional($.label_declaration), alias($.EXIT, "exit"), optional($._label), optional($.when_expression), ";" ), when_expression: $ => seq( - $.WHEN, $._expression + alias($.WHEN, "when"), $._expression ), if_statement_block: $ => seq( @@ -976,7 +976,7 @@ module.exports = grammar({ ), if_statement: $ => seq( - $.IF, $._expression, $.THEN, optional($.if_statement_body) + alias($.IF, "if"), $._expression, alias($.THEN, "then"), optional($.if_statement_body) ), if_statement_body: $ => seq( @@ -984,15 +984,15 @@ module.exports = grammar({ ), elsif_statement: $ => seq( - $.ELSIF, $._expression, $.THEN, optional($.if_statement_body) + alias($.ELSIF, "elsif"), $._expression, alias($.THEN, "then"), optional($.if_statement_body) ), else_statement: $ => seq( - $.ELSE, optional($.if_statement_body) + alias($.ELSE, "else"), optional($.if_statement_body) ), end_if: $ => seq( - $.END, $.IF, optional($._label) + alias($.END, "end"), alias($.IF, "if"), optional($._label) ), loop_statement: $ => seq( @@ -1005,19 +1005,19 @@ module.exports = grammar({ ), loop_body: $ => seq( - $.LOOP, repeat($._sequential_statement) + alias($.LOOP, "loop"), repeat($._sequential_statement) ), end_loop: $ => seq( - $.END, $.LOOP, optional($._label) + alias($.END, "end"), alias($.LOOP, "loop"), optional($._label) ), next_statement: $ => seq( - optional($.label_declaration), $.NEXT, optional($._label), optional($.when_expression), ";" + optional($.label_declaration), alias($.NEXT, "next"), optional($._label), optional($.when_expression), ";" ), null_statement: $ => seq( - optional($.label_declaration), $.NULL, ";" + optional($.label_declaration), alias($.NULL, "null"), ";" ), procedure_call_statement: $ => seq( @@ -1025,7 +1025,7 @@ module.exports = grammar({ ), concurrent_procedure_call_statement: $ => seq( - optional($.label_declaration), optional($.POSTPONED), $.name, ";" + optional($.label_declaration), optional(alias($.POSTPONED, "postponed")), $.name, ";" ), report_statement: $ => seq( @@ -1033,8 +1033,8 @@ module.exports = grammar({ ), return_statement: $ => choice( - seq(optional($.label_declaration), $.RETURN, optional($.when_expression), ";"), - seq(optional($.label_declaration), $.RETURN, $.conditional_or_unaffected_expression, ";") + seq(optional($.label_declaration), alias($.RETURN, "return"), optional($.when_expression), ";"), + seq(optional($.label_declaration), alias($.RETURN, "return"), $.conditional_or_unaffected_expression, ";") ), signal_assignment: $ => "<=", @@ -1050,15 +1050,15 @@ module.exports = grammar({ ), concurrent_simple_signal_assignment: $ => seq( - optional($.label_declaration), optional($.POSTPONED), $._target, $.signal_assignment, optional($.GUARDED), optional($.delay_mechanism), $.waveform, ";" + optional($.label_declaration), optional(alias($.POSTPONED, "postponed")), $._target, $.signal_assignment, optional(alias($.GUARDED, "guarded")), optional($.delay_mechanism), $.waveform, ";" ), simple_force_assignment: $ => seq( - optional($.label_declaration), $._target, $.signal_assignment, $.FORCE, optional($.force_mode), $.conditional_or_unaffected_expression, ";" + optional($.label_declaration), $._target, $.signal_assignment, alias($.FORCE, "force"), optional($.force_mode), $.conditional_or_unaffected_expression, ";" ), simple_release_assignment: $ => seq( - optional($.label_declaration), $._target, $.signal_assignment, $.RELEASE, optional($.force_mode), ";" + optional($.label_declaration), $._target, $.signal_assignment, alias($.RELEASE, "release"), optional($.force_mode), ";" ), conditional_signal_assignment: $ => seq( @@ -1066,7 +1066,7 @@ module.exports = grammar({ ), concurrent_conditional_signal_assignment: $ => seq( - optional($.label_declaration), optional($.POSTPONED), $._target, $.signal_assignment, optional($.GUARDED), optional($.delay_mechanism), $.conditional_waveforms, ";" + optional($.label_declaration), optional(alias($.POSTPONED, "postponed")), $._target, $.signal_assignment, optional(alias($.GUARDED, "guarded")), optional($.delay_mechanism), $.conditional_waveforms, ";" ), selected_waveform_assignment: $ => seq( @@ -1074,11 +1074,11 @@ module.exports = grammar({ ), concurrent_selected_signal_assignment: $ => seq( - optional($.label_declaration), optional($.POSTPONED), $.with_expression, $.select_target, $.signal_assignment, optional($.GUARDED), optional($.delay_mechanism), $.selected_waveforms, ";" + optional($.label_declaration), optional(alias($.POSTPONED, "postponed")), $.with_expression, $.select_target, $.signal_assignment, optional(alias($.GUARDED, "guarded")), optional($.delay_mechanism), $.selected_waveforms, ";" ), selected_force_assignment: $ => seq( - optional($.label_declaration), $.with_expression, $.select_target, $.signal_assignment, $.FORCE, optional($.force_mode), $.selected_expressions, ";" + optional($.label_declaration), $.with_expression, $.select_target, $.signal_assignment, alias($.FORCE, "force"), optional($.force_mode), $.selected_expressions, ";" ), selected_variable_assignment: $ => seq( @@ -1086,15 +1086,15 @@ module.exports = grammar({ ), with_expression: $ => seq( - $.WITH, $._expression + alias($.WITH, "with"), $._expression ), select_target: $ => seq( - $.SELECT, optional("?"), $._target + alias($.SELECT, "select"), optional("?"), $._target ), wait_statement: $ => seq( - optional($.label_declaration), $.WAIT, optional($.sensitivity_clause), optional($.condition_clause), optional($.timeout_clause), ";" + optional($.label_declaration), alias($.WAIT, "wait"), optional($.sensitivity_clause), optional($.condition_clause), optional($.timeout_clause), ";" ), // Expressions @@ -1103,7 +1103,7 @@ module.exports = grammar({ )), else_expression: $ => seq( - $.ELSE, $._expression + alias($.ELSE, "else"), $._expression ), _expression: $ => prec(10, choice( @@ -1268,15 +1268,15 @@ module.exports = grammar({ ), external_constant_name: $ => seq( - "<<", $.CONSTANT, $._external_pathname, ":", $._interface_type_indication, ">>" + "<<", alias($.CONSTANT, "constant"), $._external_pathname, ":", $._interface_type_indication, ">>" ), external_signal_name: $ => seq( - "<<", $.SIGNAL, $._external_pathname, ":", $._interface_type_indication, ">>" + "<<", alias($.SIGNAL, "signal"), $._external_pathname, ":", $._interface_type_indication, ">>" ), external_variable_name: $ => seq( - "<<", $.VARIABLE, $._external_pathname, ":", $._interface_type_indication, ">>" + "<<", alias($.VARIABLE, "variable"), $._external_pathname, ":", $._interface_type_indication, ">>" ), _external_pathname: $ => choice( @@ -1306,8 +1306,8 @@ module.exports = grammar({ ), function_call: $ => prec.right(choice( - seq(optional($.generic_map_aspect), $.PARAMETER, $.MAP, $.parenthesis_group), - seq($.generic_map_aspect, optional(seq(optional(seq($.PARAMETER, $.MAP)), $.parenthesis_group))) + seq(optional($.generic_map_aspect), alias($.PARAMETER, "parameter"), alias($.MAP, "map"), $.parenthesis_group), + seq($.generic_map_aspect, optional(seq(optional(seq(alias($.PARAMETER, "parameter"), alias($.MAP, "map"))), $.parenthesis_group))) )), parenthesis_group: $ => seq( @@ -1331,8 +1331,8 @@ module.exports = grammar({ ), _actual_part: $ => prec(21, choice( - seq(optional($.INERTIAL), $.conditional_expression), - $.OPEN + seq(optional(alias($.INERTIAL, "inertial")), $.conditional_expression), + alias($.OPEN, "open") )), attribute: $ => seq( @@ -1358,7 +1358,7 @@ module.exports = grammar({ ), signature: $ => seq( - "[", optional(seq($.name, repeat(seq(",", $.name)))), optional(seq($.RETURN, $.name)), "]" + "[", optional(seq($.name, repeat(seq(",", $.name)))), optional(seq(alias($.RETURN, "return"), $.name)), "]" ), selection: $ => seq( @@ -1369,7 +1369,7 @@ module.exports = grammar({ $.identifier, $.character_literal, $.operator_symbol, - $.ALL + alias(alias($.ALL, "all"), "all") ), _literal: $ => choice( @@ -1382,7 +1382,7 @@ module.exports = grammar({ $.library_constant_debug, $.library_constant_env, $.library_constant_standard, - $.NULL + alias($.NULL, "null") ), bit_string_literal: $ => seq( @@ -1402,7 +1402,7 @@ module.exports = grammar({ ), allocator: $ => seq( - $.NEW, $.name + alias($.NEW, "new"), $.name ), parenthesis_expression: $ => seq( @@ -1421,7 +1421,7 @@ module.exports = grammar({ _element: $ => choice( $.simple_expression, $._range, - $.OTHERS, + alias($.OTHERS, "others"), $.choices ), @@ -1439,8 +1439,8 @@ module.exports = grammar({ )), _direction: $ => choice( - $.TO, - $.DOWNTO + alias($.TO, "to"), + alias($.DOWNTO, "downto") ), // Tool Directives @@ -1477,19 +1477,19 @@ module.exports = grammar({ ), if_conditional_analysis: $ => seq( - $.IF, $.conditional_analysis_expression, $.THEN + alias($.IF, "if"), $.conditional_analysis_expression, alias($.THEN, "then") ), elsif_conditional_analysis: $ => seq( - $.ELSIF, $.conditional_analysis_expression, $.THEN + alias($.ELSIF, "elsif"), $.conditional_analysis_expression, alias($.THEN, "then") ), else_conditional_analysis: $ => seq( - $.ELSE + alias($.ELSE, "else") ), end_conditional_analysis: $ => seq( - $.END, optional($.IF) + alias($.END, "end"), optional(alias($.IF, "if")) ), conditional_analysis_expression: $ => seq( @@ -1528,15 +1528,15 @@ module.exports = grammar({ ), block_configuration: $ => seq( - $.FOR, $.name, repeat($.use_clause), repeat($._configuration_item), $.end_for, ";" + alias($.FOR, "for"), $.name, repeat($.use_clause), repeat($._configuration_item), $.end_for, ";" ), component_configuration: $ => seq( - $.FOR, $.component_specification, optional($.binding_indication), repeat(seq($.verification_unit_binding_indication, ";")), optional($.block_configuration), $.end_for, ";" + alias($.FOR, "for"), $.component_specification, optional($.binding_indication), repeat(seq($.verification_unit_binding_indication, ";")), optional($.block_configuration), $.end_for, ";" ), end_for: $ => seq( - $.END, $.FOR + alias($.END, "end"), alias($.FOR, "for") ), // Interface Declaration @@ -1561,19 +1561,19 @@ module.exports = grammar({ ), interface_constant_declaration: $ => seq( - $.CONSTANT, $.identifier_list, ":", $._mode_indication + alias($.CONSTANT, "constant"), $.identifier_list, ":", $._mode_indication ), interface_signal_declaration: $ => seq( - $.SIGNAL, $.identifier_list, ":", $._mode_indication + alias($.SIGNAL, "signal"), $.identifier_list, ":", $._mode_indication ), interface_variable_declaration: $ => seq( - $.VARIABLE, $.identifier_list, ":", $._mode_indication + alias($.VARIABLE, "variable"), $.identifier_list, ":", $._mode_indication ), interface_subprogram_declaration: $ => seq( - $._interface_subprogram_specification, optional(seq($.IS, $._interface_subprogram_default)) + $._interface_subprogram_specification, optional(seq(alias($.IS, "is"), $._interface_subprogram_default)) ), _interface_subprogram_specification: $ => choice( @@ -1582,19 +1582,19 @@ module.exports = grammar({ ), procedure_specification: $ => prec.left(seq( - $.PROCEDURE, $._designator, optional($.subprogram_header), optional($.parameter_list_specification) + alias($.PROCEDURE, "procedure"), $._designator, optional($.subprogram_header), optional($.parameter_list_specification) )), interface_procedure_specification: $ => seq( - $.PROCEDURE, $._designator, optional($.parameter_list_specification) + alias($.PROCEDURE, "procedure"), $._designator, optional($.parameter_list_specification) ), function_specification: $ => seq( - optional(choice($.PURE, $.IMPURE)), $.FUNCTION, $._designator, optional($.subprogram_header), optional($.parameter_list_specification), $.RETURN, optional(seq($._identifier, $.OF)), $.name + optional(choice(alias($.PURE, "pure"), alias($.IMPURE, "impure"))), alias($.FUNCTION, "function"), $._designator, optional($.subprogram_header), optional($.parameter_list_specification), alias($.RETURN, "return"), optional(seq($._identifier, alias($.OF, "of"))), $.name ), interface_function_specification: $ => seq( - optional(choice($.PURE, $.IMPURE)), $.FUNCTION, $._designator, optional($.parameter_list_specification), $.RETURN, $.name + optional(choice(alias($.PURE, "pure"), alias($.IMPURE, "impure"))), alias($.FUNCTION, "function"), $._designator, optional($.parameter_list_specification), alias($.RETURN, "return"), $.name ), _interface_package_generic_map_aspect: $ => choice( @@ -1604,19 +1604,19 @@ module.exports = grammar({ ), generic_map_any: $ => seq( - $.GENERIC, $.MAP, "(", $.box, ")" + alias($.GENERIC, "generic"), alias($.MAP, "map"), "(", alias($.box, "<>"), ")" ), generic_map_default: $ => seq( - $.GENERIC, $.MAP, "(", $.DEFAULT, ")" + alias($.GENERIC, "generic"), alias($.MAP, "map"), "(", alias($.DEFAULT, "default"), ")" ), generic_map_aspect: $ => seq( - $.GENERIC, $.MAP, $.association_list + alias($.GENERIC, "generic"), alias($.MAP, "map"), $.association_list ), port_map_aspect: $ => seq( - $.PORT, $.MAP, $.association_list + alias($.PORT, "port"), alias($.MAP, "map"), $.association_list ), association_list: $ => seq( @@ -1625,7 +1625,7 @@ module.exports = grammar({ _interface_subprogram_default: $ => choice( $.name, - $.box + alias($.box, "<>") ), _designator: $ => choice( @@ -1643,7 +1643,7 @@ module.exports = grammar({ ), simple_mode_indication: $ => seq( - optional($.mode), $._interface_type_indication, optional($.BUS), optional($.initialiser) + optional($.mode), $._interface_type_indication, optional(alias($.BUS, "bus")), optional($.initialiser) ), _mode_view_indication: $ => choice( @@ -1652,11 +1652,11 @@ module.exports = grammar({ ), record_mode_view_indication: $ => seq( - $.VIEW, $.name, optional(seq($.OF, $.subtype_indication)) + alias($.VIEW, "view"), $.name, optional(seq(alias($.OF, "of"), $.subtype_indication)) ), array_mode_view_indication: $ => seq( - $.VIEW, "(", $.name, ")", optional(seq($.OF, $.subtype_indication)) + alias($.VIEW, "view"), "(", $.name, ")", optional(seq(alias($.OF, "of"), $.subtype_indication)) ), mode_view_element_definition: $ => seq( @@ -1678,24 +1678,24 @@ module.exports = grammar({ ), element_record_mode_view_indication: $ => seq( - $.VIEW, $.name + alias($.VIEW, "view"), $.name ), element_array_mode_view_indication: $ => seq( - $.VIEW, "(", $.name, ")" + alias($.VIEW, "view"), "(", $.name, ")" ), mode: $ => choice( - $.IN, - $.OUT, - $.INOUT, - $.BUFFER, - $.LINKAGE + alias($.IN, "in"), + alias($.OUT, "out"), + alias($.INOUT, "inout"), + alias($.BUFFER, "buffer"), + alias($.LINKAGE, "linkage") ), // Others range_constraint: $ => seq( - $.RANGE, $._range + alias($.RANGE, "range"), $._range ), group_constituent_list: $ => seq( @@ -1707,7 +1707,7 @@ module.exports = grammar({ ), entity_class_entry: $ => seq( - $._entity_class, optional($.box) + $._entity_class, optional(alias($.box, "<>")) ), guarded_signal_specification: $ => seq( @@ -1716,8 +1716,8 @@ module.exports = grammar({ signal_list: $ => choice( seq($.name, repeat(seq(",", $.name))), - $.OTHERS, - $.ALL + alias($.OTHERS, "others"), + alias(alias($.ALL, "all"), "all") ), entity_specification: $ => seq( @@ -1725,32 +1725,32 @@ module.exports = grammar({ ), _entity_class: $ => choice( - $.ENTITY, - $.ARCHITECTURE, - $.CONFIGURATION, - $.PROCEDURE, - $.FUNCTION, - $.PACKAGE, - $.TYPE, - $.SUBTYPE, - $.CONSTANT, - $.SIGNAL, - $.VARIABLE, - $.COMPONENT, - $.LABEL, - $.LITERAL, - $.UNITS, - $.GROUP, - $.FILE, - $.PROPERTY, - $.SEQUENCE, - $.VIEW + alias($.ENTITY, "entity"), + alias(alias($.ARCHITECTURE, "architecture"), "architecture"), + alias($.CONFIGURATION, "configuration"), + alias($.PROCEDURE, "procedure"), + alias($.FUNCTION, "function"), + alias($.PACKAGE, "package"), + alias($.TYPE, "type"), + alias($.SUBTYPE, "subtype"), + alias($.CONSTANT, "constant"), + alias($.SIGNAL, "signal"), + alias($.VARIABLE, "variable"), + alias($.COMPONENT, "component"), + alias($.LABEL, "label"), + alias($.LITERAL, "literal"), + alias($.UNITS, "units"), + alias($.GROUP, "group"), + alias($.FILE, "file"), + alias($.PROPERTY, "property"), + alias($.SEQUENCE, "sequence"), + alias($.VIEW, "view") ), entity_name_list: $ => choice( seq($.entity_designator, repeat(seq(",", $.entity_designator))), - $.OTHERS, - $.ALL + alias($.OTHERS, "others"), + alias(alias($.ALL, "all"), "all") ), entity_designator: $ => seq( @@ -1770,7 +1770,7 @@ module.exports = grammar({ ), file_open_information: $ => seq( - optional(seq($.OPEN, $._expression)), $.IS, $.file_logical_name + optional(seq(alias($.OPEN, "open"), $._expression)), alias($.IS, "is"), $.file_logical_name ), file_logical_name: $ => $._expression, @@ -1780,11 +1780,11 @@ module.exports = grammar({ ), generic_clause: $ => seq( - $.GENERIC, "(", $.interface_list, ")", ";" + alias($.GENERIC, "generic"), "(", $.interface_list, ")", ";" ), subprogram_header: $ => seq( - $.GENERIC, "(", $.interface_list, ")", optional($.generic_map_aspect) + alias($.GENERIC, "generic"), "(", $.interface_list, ")", optional($.generic_map_aspect) ), _subprogram_specification: $ => choice( @@ -1793,7 +1793,7 @@ module.exports = grammar({ ), parameter_list_specification: $ => seq( - optional($.PARAMETER), "(", $.interface_list, ")" + optional(alias($.PARAMETER, "parameter")), "(", $.interface_list, ")" ), _type_definition: $ => choice( @@ -1810,15 +1810,15 @@ module.exports = grammar({ ), protected_type_instantiation_definition: $ => seq( - $.NEW, $.subtype_indication, optional($.generic_map_aspect) + alias($.NEW, "new"), $.subtype_indication, optional($.generic_map_aspect) ), protected_type_declaration: $ => seq( - $.PROTECTED, optional($.protected_type_header), repeat($._protected_type_declarative_item), $.protected_type_declaration_end + alias($.PROTECTED, "protected"), optional($.protected_type_header), repeat($._protected_type_declarative_item), $.protected_type_declaration_end ), protected_type_declaration_end: $ => seq( - $.END, $.PROTECTED, optional($._identifier) + alias($.END, "end"), alias($.PROTECTED, "protected"), optional($._identifier) ), protected_type_header: $ => seq( @@ -1826,23 +1826,23 @@ module.exports = grammar({ ), protected_type_body: $ => seq( - $.PROTECTED, $.BODY, repeat($._protected_type_body_declarative_item), $.protected_type_body_end + alias($.PROTECTED, "protected"), alias($.BODY, "body"), repeat($._protected_type_body_declarative_item), $.protected_type_body_end ), protected_type_body_end: $ => seq( - $.END, $.PROTECTED, $.BODY, optional($._identifier) + alias($.END, "end"), alias($.PROTECTED, "protected"), alias($.BODY, "body"), optional($._identifier) ), while_loop: $ => seq( - $.WHILE, $._expression + alias($.WHILE, "while"), $._expression ), for_loop: $ => seq( - $.FOR, $.parameter_specification + alias($.FOR, "for"), $.parameter_specification ), parameter_specification: $ => seq( - $._identifier, $.IN, $._range + $._identifier, alias($.IN, "in"), $._range ), case_statement_alternative: $ => seq( @@ -1855,16 +1855,16 @@ module.exports = grammar({ waveform: $ => choice( seq($.waveform_element, repeat(seq(",", $.waveform_element))), - $.UNAFFECTED + alias($.UNAFFECTED, "unaffected") ), waveform_element: $ => seq( - $._expression, optional(seq($.AFTER, $._expression)), + $._expression, optional(seq(alias(alias($.AFTER, "after"), "after"), $._expression)), ), force_mode: $ => choice( - $.IN, - $.OUT + alias($.IN, "in"), + alias($.OUT, "out") ), selected_expressions: $ => seq( @@ -1872,7 +1872,7 @@ module.exports = grammar({ ), when_element: $ => seq( - $.WHEN, $._element + alias($.WHEN, "when"), $._element ), conditional_waveforms: $ => seq( @@ -1880,12 +1880,12 @@ module.exports = grammar({ ), else_waveform: $ => seq( - $.ELSE, $.waveform + alias($.ELSE, "else"), $.waveform ), delay_mechanism: $ => choice( - $.TRANSPORT, - seq(optional(seq($.REJECT, $._expression)), $.INERTIAL) + alias($.TRANSPORT, "transport"), + seq(optional(seq(alias($.REJECT, "reject"), $._expression)), alias($.INERTIAL, "inertial")) ), _target: $ => choice( @@ -1904,12 +1904,12 @@ module.exports = grammar({ ), else_expression_or_unaffected: $ => seq( - $.ELSE, $._expression_or_unaffected + alias($.ELSE, "else"), $._expression_or_unaffected ), _expression_or_unaffected: $ => choice( $._expression, - $.UNAFFECTED + alias($.UNAFFECTED, "unaffected") ), label_declaration: $ => seq( @@ -1917,7 +1917,7 @@ module.exports = grammar({ ), sensitivity_clause: $ => seq( - $.ON, $.sensitivity_list + alias($.ON, "on"), $.sensitivity_list ), sensitivity_list: $ => seq( @@ -1925,15 +1925,15 @@ module.exports = grammar({ ), condition_clause: $ => seq( - $.UNTIL, $._expression + alias($.UNTIL, "until"), $._expression ), timeout_clause: $ => seq( - $.FOR, $._expression + alias($.FOR, "for"), $._expression ), physical_type_definition: $ => seq( - $.range_constraint, $.UNITS, $.primary_unit_declaration, repeat($.secondary_unit_declaration), $.end_units + $.range_constraint, alias($.UNITS, "units"), $.primary_unit_declaration, repeat($.secondary_unit_declaration), $.end_units ), primary_unit_declaration: $ => seq( @@ -1945,7 +1945,7 @@ module.exports = grammar({ ), end_units: $ => seq( - $.END, $.UNITS, optional($._identifier) + alias($.END, "end"), alias($.UNITS, "units"), optional($._identifier) ), enumeration_type_definition: $ => seq( @@ -1958,11 +1958,11 @@ module.exports = grammar({ ), record_type_definition: $ => seq( - $.RECORD, repeat($.element_declaration), $.end_record + alias($.RECORD, "record"), repeat($.element_declaration), $.end_record ), end_record: $ => seq( - $.END, $.RECORD, optional($._identifier) + alias($.END, "end"), alias($.RECORD, "record"), optional($._identifier) ), element_declaration: $ => seq( @@ -1970,17 +1970,17 @@ module.exports = grammar({ ), _process_sensitivity_list: $ => choice( - $.ALL, + alias(alias($.ALL, "all"), "all"), $.sensitivity_list ), configuration_specification: $ => prec.left(choice( - seq($.FOR, $.component_specification, $.binding_indication, optional(seq($.end_for, ";"))), - seq($.FOR, $.component_specification, $.binding_indication, $.verification_unit_binding_indication, ";", repeat(seq($.verification_unit_binding_indication, ";")), $.end_for, ";") + seq(alias($.FOR, "for"), $.component_specification, $.binding_indication, optional(seq($.end_for, ";"))), + seq(alias($.FOR, "for"), $.component_specification, $.binding_indication, $.verification_unit_binding_indication, ";", repeat(seq($.verification_unit_binding_indication, ";")), $.end_for, ";") )), verification_unit_binding_indication: $ => seq( - $.USE, $.VUNIT, $.verification_unit_list + alias($.USE, "use"), alias($.VUNIT, "vunit"), $.verification_unit_list ), verification_unit_list: $ => seq( @@ -1993,18 +1993,18 @@ module.exports = grammar({ instantiation_list: $ => choice( seq($._label, repeat(seq(",", $._label))), - $.OTHERS, - $.ALL + alias($.OTHERS, "others"), + alias(alias($.ALL, "all"), "all") ), binding_indication: $ => seq( - optional(seq($.USE, $.entity_aspect)), optional($.generic_map_aspect), optional($.port_map_aspect), ";" + optional(seq(alias($.USE, "use"), $.entity_aspect)), optional($.generic_map_aspect), optional($.port_map_aspect), ";" ), entity_aspect: $ => choice( - seq($.ENTITY, $.name, optional(seq("(", $._identifier, ")"))), - seq($.CONFIGURATION, $.name), - $.OPEN + seq(alias($.ENTITY, "entity"), $.name, optional(seq("(", $._identifier, ")"))), + seq(alias($.CONFIGURATION, "configuration"), $.name), + alias($.OPEN, "open") ), // Comments diff --git a/queries/Helix/highlights.scm b/queries/Helix/highlights.scm index 8e2fa70..17090c7 100644 --- a/queries/Helix/highlights.scm +++ b/queries/Helix/highlights.scm @@ -11,193 +11,193 @@ (identifier) @variable [ - (ACCESS) - (AFTER) - (ALIAS) - (ARCHITECTURE) - (ARRAY) - (ASSUME) - (ATTRIBUTE) - (BLOCK) - (BODY) - (COMPONENT) - (CONFIGURATION) - (CONTEXT) - (COVER) - (DISCONNECT) - (ENTITY) - (FAIRNESS) - (FILE) - (FORCE) - (GENERATE) - (GENERIC) - (GROUP) - (LABEL) - (LITERAL) - (MAP) - (NEW) - (PACKAGE) - (PARAMETER) - (PORT) - (PROPERTY) - (RANGE) - (REJECT) - (RELEASE) - (RESTRICT) - (SEQUENCE) - (TRANSPORT) - (UNAFFECTED) - (VIEW) - (VPKG) - (VMODE) - (VPROP) - (VUNIT) + "access" + "after" + "alias" + "architecture" + "array" + ; "assume" + "attribute" + "block" + "body" + "component" + "configuration" + "context" + ; "cover" + "disconnect" + "entity" + ; "fairness" + "file" + "force" + "generate" + "generic" + "group" + "label" + "literal" + "map" + "new" + "package" + "parameter" + "port" + "property" + "range" + "reject" + "release" + ; "restrict" + "sequence" + "transport" + "unaffected" + "view" + ; "vmode" + ; "vpkg" + ; "vprop" + "vunit" ] @keyword [ - (ALL) - (OTHERS) - (box) - (DEFAULT) - (OPEN) + "all" + "others" + "<>" + "default" + "open" ] @constant.builtin [ - (IS) - (BEGIN) - (END) + "is" + "begin" + "end" ] @keyword (parameter_specification - (IN) @keyword) + "in" @keyword) [ - (PROCESS) - (WAIT) - (ON) - (UNTIL) + "process" + "wait" + "on" + "until" ] @keyword (timeout_clause - (FOR) @keyword) + "for" @keyword) [ - (FUNCTION) - (PROCEDURE) + "function" + "procedure" ] @keyword.function [ - (TO) - (DOWNTO) - (OF) + "to" + "downto" + "of" ] @keyword.operator [ - (LIBRARY) - (USE) + "library" + "use" ] @keyword.control.import [ - (SUBTYPE) - (TYPE) - (RECORD) - (UNITS) - (CONSTANT) - (SIGNAL) - (VARIABLE) + "subtype" + "type" + "record" + "units" + "constant" + "signal" + "variable" ] @keyword.storage.type [ - (PROTECTED) - (PRIVATE) - (PURE) - (IMPURE) - (INERTIAL) - (POSTPONED) - (STRONG) - (GUARDED) - (OUT) - (INOUT) - (LINKAGE) - (BUFFER) - (REGISTER) - (BUS) - (SHARED) + "protected" + "private" + "pure" + "impure" + "inertial" + "postponed" + ; "strong" + "guarded" + "out" + "inout" + "linkage" + "buffer" + "register" + "bus" + "shared" ] @keyword.storage.modifier (mode - (IN) @keyword.storage.modifier) + "in" @keyword.storage.modifier) (force_mode - (IN) @keyword.storage.modifier) + "in" @keyword.storage.modifier) [ - (WHILE) - (LOOP) - (NEXT) - (EXIT) + "while" + "loop" + "next" + "exit" ] @keyword.control.repeat (for_loop - (FOR) @keyword.control.repeat) + "for" @keyword.control.repeat) (block_configuration - (FOR) @keyword) + "for" @keyword) (configuration_specification - (FOR) @keyword) + "for" @keyword) (component_configuration - (FOR) @keyword) + "for" @keyword) (end_for - (FOR) @keyword) + "for" @keyword) -(RETURN) @keyword.control.return +"return" @keyword.control.return [ - (ASSERT) - (REPORT) - (SEVERITY) + "assert" + "report" + "severity" ] @keyword [ - (IF) - (THEN) - (ELSIF) - (CASE) + "if" + "then" + "elsif" + "case" ] @keyword.control.conditional (when_element - (WHEN) @keyword.control.conditional) + "when" @keyword.control.conditional) (case_generate_alternative - (WHEN) @keyword.control.conditional) + "when" @keyword.control.conditional) (else_statement - (ELSE) @keyword.control.conditional) + "else" @keyword.control.conditional) (else_generate - (ELSE) @keyword.control.conditional) + "else" @keyword.control.conditional) [ - (WITH) - (SELECT) + "with" + "select" ] @keyword.control.conditional (when_expression - (WHEN) @keyword.control.conditional) + "when" @keyword.control.conditional) (else_expression - (ELSE) @keyword.control.conditional) + "else" @keyword.control.conditional) (else_waveform - (ELSE) @keyword.control.conditional) + "else" @keyword.control.conditional) (else_expression_or_unaffected - (ELSE) @keyword.control.conditional) + "else" @keyword.control.conditional) -(NULL) @constant.builtin +"null" @constant.builtin (user_directive) @keyword.directive @@ -208,22 +208,22 @@ (error_directive) @keyword.directive (if_conditional_analysis - (IF) @keyword.directive) + "if" @keyword.directive) (if_conditional_analysis - (THEN) @keyword.directive) + "then" @keyword.directive) (elsif_conditional_analysis - (ELSIF) @keyword.directive) + "elsif" @keyword.directive) (else_conditional_analysis - (ELSE) @keyword.directive) + "else" @keyword.directive) (end_conditional_analysis - (END) @keyword.directive) + "end" @keyword.directive) (end_conditional_analysis - (IF) @keyword.directive) + "if" @keyword.directive) (directive_body) @keyword.directive @@ -330,12 +330,12 @@ (label) @label (generic_map_aspect - (GENERIC) @constructor - (MAP) @constructor) + "generic" @constructor + "map" @constructor) (port_map_aspect - (PORT) @constructor - (MAP) @constructor) + "port" @constructor + "map" @constructor) (subtype_indication (name @@ -400,9 +400,9 @@ (identifier) @namespace) (architecture_definition - (ARCHITECTURE) + "architecture" (identifier) @type.parameter - (OF) + "of" (name (identifier) @namespace)) diff --git a/queries/Neovim/highlights.scm b/queries/Neovim/highlights.scm index 442ca5d..5de07b5 100644 --- a/queries/Neovim/highlights.scm +++ b/queries/Neovim/highlights.scm @@ -13,193 +13,193 @@ (identifier) @variable [ - (ACCESS) - (AFTER) - (ALIAS) - (ARCHITECTURE) - (ARRAY) - (ASSUME) - (ATTRIBUTE) - (BLOCK) - (BODY) - (COMPONENT) - (CONFIGURATION) - (CONTEXT) - (COVER) - (DISCONNECT) - (ENTITY) - (FAIRNESS) - (FILE) - (FORCE) - (GENERATE) - (GENERIC) - (GROUP) - (LABEL) - (LITERAL) - (MAP) - (NEW) - (PACKAGE) - (PARAMETER) - (PORT) - (PROPERTY) - (RANGE) - (REJECT) - (RELEASE) - (RESTRICT) - (SEQUENCE) - (TRANSPORT) - (UNAFFECTED) - (VIEW) - (VPKG) - (VMODE) - (VPROP) - (VUNIT) + "access" + "after" + "alias" + "architecture" + "array" + ; "assume" + "attribute" + "block" + "body" + "component" + "configuration" + "context" + ; "cover" + "disconnect" + "entity" + ; "fairness" + "file" + "force" + "generate" + "generic" + "group" + "label" + "literal" + "map" + "new" + "package" + "parameter" + "port" + "property" + "range" + "reject" + "release" + ; "restrict" + "sequence" + "transport" + "unaffected" + "view" + ; "vmode" + ; "vpkg" + ; "vprop" + "vunit" ] @keyword [ - (ALL) - (OTHERS) - (box) - (DEFAULT) - (OPEN) + "all" + "others" + "<>" + "default" + "open" ] @constant.builtin [ - (IS) - (BEGIN) - (END) + "is" + "begin" + "end" ] @keyword (parameter_specification - (IN) @keyword) + "in" @keyword) [ - (PROCESS) - (WAIT) - (ON) - (UNTIL) + "process" + "wait" + "on" + "until" ] @keyword.coroutine (timeout_clause - (FOR) @keyword.coroutine) + "for" @keyword.coroutine) [ - (FUNCTION) - (PROCEDURE) + "function" + "procedure" ] @keyword.function [ - (TO) - (DOWNTO) - (OF) + "to" + "downto" + "of" ] @keyword.operator [ - (LIBRARY) - (USE) + "library" + "use" ] @keyword.import [ - (SUBTYPE) - (TYPE) - (RECORD) - (UNITS) - (CONSTANT) - (SIGNAL) - (VARIABLE) + "subtype" + "type" + "record" + "units" + "constant" + "signal" + "variable" ] @keyword.type [ - (PROTECTED) - (PRIVATE) - (PURE) - (IMPURE) - (INERTIAL) - (POSTPONED) - (STRONG) - (GUARDED) - (OUT) - (INOUT) - (LINKAGE) - (BUFFER) - (REGISTER) - (BUS) - (SHARED) + "protected" + "private" + "pure" + "impure" + "inertial" + "postponed" + ; "strong" + "guarded" + "out" + "inout" + "linkage" + "buffer" + "register" + "bus" + "shared" ] @keyword.modifier (mode - (IN) @keyword.modifier) + "in" @keyword.modifier) (force_mode - (IN) @keyword.modifier) + "in" @keyword.modifier) [ - (WHILE) - (LOOP) - (NEXT) - (EXIT) + "while" + "loop" + "next" + "exit" ] @keyword.repeat (for_loop - (FOR) @keyword.repeat) + "for" @keyword.repeat) (block_configuration - (FOR) @keyword) + "for" @keyword) (configuration_specification - (FOR) @keyword) + "for" @keyword) (component_configuration - (FOR) @keyword) + "for" @keyword) (end_for - (FOR) @keyword) + "for" @keyword) -(RETURN) @keyword.return +"return" @keyword.return [ - (ASSERT) - (REPORT) - (SEVERITY) + "assert" + "report" + "severity" ] @keyword.debug [ - (IF) - (THEN) - (ELSIF) - (CASE) + "if" + "then" + "elsif" + "case" ] @keyword.conditional (when_element - (WHEN) @keyword.conditional) + "when" @keyword.conditional) (case_generate_alternative - (WHEN) @keyword.conditional) + "when" @keyword.conditional) (else_statement - (ELSE) @keyword.conditional) + "else" @keyword.conditional) (else_generate - (ELSE) @keyword.conditional) + "else" @keyword.conditional) [ - (WITH) - (SELECT) + "with" + "select" ] @keyword.conditional.ternary (when_expression - (WHEN) @keyword.conditional.ternary) + "when" @keyword.conditional.ternary) (else_expression - (ELSE) @keyword.conditional.ternary) + "else" @keyword.conditional.ternary) (else_waveform - (ELSE) @keyword.conditional.ternary) + "else" @keyword.conditional.ternary) (else_expression_or_unaffected - (ELSE) @keyword.conditional.ternary) + "else" @keyword.conditional.ternary) -(NULL) @constant.builtin +"null" @constant.builtin (user_directive) @keyword.directive @@ -210,22 +210,22 @@ (error_directive) @keyword.directive (if_conditional_analysis - (IF) @keyword.directive) + "if" @keyword.directive) (if_conditional_analysis - (THEN) @keyword.directive) + "then" @keyword.directive) (elsif_conditional_analysis - (ELSIF) @keyword.directive) + "elsif" @keyword.directive) (else_conditional_analysis - (ELSE) @keyword.directive) + "else" @keyword.directive) (end_conditional_analysis - (END) @keyword.directive) + "end" @keyword.directive) (end_conditional_analysis - (IF) @keyword.directive) + "if" @keyword.directive) (directive_body) @keyword.directive @@ -332,12 +332,12 @@ (label) @label (generic_map_aspect - (GENERIC) @constructor - (MAP) @constructor) + "generic" @constructor + "map" @constructor) (port_map_aspect - (PORT) @constructor - (MAP) @constructor) + "port" @constructor + "map" @constructor) (subtype_indication (name @@ -402,9 +402,9 @@ (identifier) @module) (architecture_definition - (ARCHITECTURE) + "architecture" (identifier) @property - (OF) + "of" (name (identifier) @module)) diff --git a/src/grammar.json b/src/grammar.json index d3d4310..4bf9d16 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -69,8 +69,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "LIBRARY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "LIBRARY" + }, + "named": false, + "value": "library" }, { "type": "SYMBOL", @@ -86,8 +91,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "USE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "USE" + }, + "named": false, + "value": "use" }, { "type": "SYMBOL", @@ -119,8 +129,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "CONTEXT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONTEXT" + }, + "named": false, + "value": "context" }, { "type": "SYMBOL", @@ -219,8 +234,18 @@ "name": "_identifier" }, { - "type": "SYMBOL", - "name": "ALL" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ALL" + }, + "named": false, + "value": "all" + }, + "named": false, + "value": "all" } ] } @@ -266,8 +291,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ENTITY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ENTITY" + }, + "named": false, + "value": "entity" }, { "type": "SYMBOL", @@ -303,8 +333,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "CHOICE", @@ -343,8 +378,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PORT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PORT" + }, + "named": false, + "value": "port" }, { "type": "STRING", @@ -368,8 +408,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "BEGIN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BEGIN" + }, + "named": false, + "value": "begin" }, { "type": "REPEAT", @@ -384,15 +429,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "ENTITY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ENTITY" + }, + "named": false, + "value": "entity" }, { "type": "BLANK" @@ -417,16 +472,26 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "CONFIGURATION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONFIGURATION" + }, + "named": false, + "value": "configuration" }, { "type": "SYMBOL", "name": "_identifier" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -454,8 +519,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT", @@ -486,15 +556,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "CONFIGURATION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONFIGURATION" + }, + "named": false, + "value": "configuration" }, { "type": "BLANK" @@ -519,8 +599,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PACKAGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PACKAGE" + }, + "named": false, + "value": "package" }, { "type": "SYMBOL", @@ -544,8 +629,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "CHOICE", @@ -572,15 +662,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "PACKAGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PACKAGE" + }, + "named": false, + "value": "package" }, { "type": "BLANK" @@ -605,20 +705,35 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PACKAGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PACKAGE" + }, + "named": false, + "value": "package" }, { "type": "SYMBOL", "name": "_identifier" }, { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { - "type": "SYMBOL", - "name": "NEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "NEW" + }, + "named": false, + "value": "new" }, { "type": "SYMBOL", @@ -646,20 +761,35 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PACKAGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PACKAGE" + }, + "named": false, + "value": "package" }, { "type": "SYMBOL", "name": "_identifier" }, { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { - "type": "SYMBOL", - "name": "NEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "NEW" + }, + "named": false, + "value": "new" }, { "type": "SYMBOL", @@ -675,8 +805,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "CONTEXT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONTEXT" + }, + "named": false, + "value": "context" }, { "type": "SYMBOL", @@ -700,8 +835,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT", @@ -716,15 +856,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "CONTEXT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONTEXT" + }, + "named": false, + "value": "context" }, { "type": "BLANK" @@ -749,16 +899,31 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ARCHITECTURE" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ARCHITECTURE" + }, + "named": false, + "value": "architecture" + }, + "named": false, + "value": "architecture" }, { "type": "SYMBOL", "name": "_identifier" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -786,8 +951,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT", @@ -802,15 +972,30 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "ARCHITECTURE" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ARCHITECTURE" + }, + "named": false, + "value": "architecture" + }, + "named": false, + "value": "architecture" }, { "type": "BLANK" @@ -835,12 +1020,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PACKAGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PACKAGE" + }, + "named": false, + "value": "package" }, { - "type": "SYMBOL", - "name": "BODY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BODY" + }, + "named": false, + "value": "body" }, { "type": "SYMBOL", @@ -864,8 +1059,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT", @@ -880,8 +1080,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", @@ -890,12 +1095,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PACKAGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PACKAGE" + }, + "named": false, + "value": "package" }, { - "type": "SYMBOL", - "name": "BODY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BODY" + }, + "named": false, + "value": "body" } ] }, @@ -1544,8 +1759,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT", @@ -1560,8 +1780,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", @@ -1570,12 +1795,22 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "PROCEDURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROCEDURE" + }, + "named": false, + "value": "procedure" }, { - "type": "SYMBOL", - "name": "FUNCTION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FUNCTION" + }, + "named": false, + "value": "function" } ] }, @@ -1605,12 +1840,22 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "PROCEDURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROCEDURE" + }, + "named": false, + "value": "procedure" }, { - "type": "SYMBOL", - "name": "FUNCTION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FUNCTION" + }, + "named": false, + "value": "function" } ] }, @@ -1619,12 +1864,22 @@ "name": "_designator" }, { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { - "type": "SYMBOL", - "name": "NEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "NEW" + }, + "named": false, + "value": "new" }, { "type": "SYMBOL", @@ -1664,8 +1919,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "TYPE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "TYPE" + }, + "named": false, + "value": "type" }, { "type": "SYMBOL", @@ -1678,8 +1938,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "SYMBOL", @@ -1702,17 +1967,27 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "SUBTYPE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SUBTYPE" + }, + "named": false, + "value": "subtype" }, { "type": "SYMBOL", "name": "_identifier" }, { - "type": "SYMBOL", - "name": "IS" - }, + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" + }, { "type": "SYMBOL", "name": "subtype_indication" @@ -1727,16 +2002,26 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "VIEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VIEW" + }, + "named": false, + "value": "view" }, { "type": "SYMBOL", "name": "_identifier" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -1760,8 +2045,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT", @@ -1776,12 +2066,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "VIEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VIEW" + }, + "named": false, + "value": "view" }, { "type": "CHOICE", @@ -1801,8 +2101,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "CONSTANT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONSTANT" + }, + "named": false, + "value": "constant" }, { "type": "SYMBOL", @@ -1838,8 +2143,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "SIGNAL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SIGNAL" + }, + "named": false, + "value": "signal" }, { "type": "SYMBOL", @@ -1887,12 +2197,22 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "REGISTER" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "REGISTER" + }, + "named": false, + "value": "register" }, { - "type": "SYMBOL", - "name": "BUS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BUS" + }, + "named": false, + "value": "bus" } ] }, @@ -1903,8 +2223,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "SHARED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SHARED" + }, + "named": false, + "value": "shared" }, { "type": "BLANK" @@ -1912,8 +2237,13 @@ ] }, { - "type": "SYMBOL", - "name": "VARIABLE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VARIABLE" + }, + "named": false, + "value": "variable" }, { "type": "SYMBOL", @@ -1974,8 +2304,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FILE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FILE" + }, + "named": false, + "value": "file" }, { "type": "SYMBOL", @@ -2011,8 +2346,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FILE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FILE" + }, + "named": false, + "value": "file" }, { "type": "SYMBOL", @@ -2032,8 +2372,18 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ALIAS" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ALIAS" + }, + "named": false, + "value": "alias" + }, + "named": false, + "value": "alias" }, { "type": "SYMBOL", @@ -2061,8 +2411,13 @@ ] }, { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "SYMBOL", @@ -2078,8 +2433,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "COMPONENT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "COMPONENT" + }, + "named": false, + "value": "component" }, { "type": "SYMBOL", @@ -2114,8 +2474,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "CHOICE", @@ -2179,15 +2544,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "COMPONENT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "COMPONENT" + }, + "named": false, + "value": "component" }, { "type": "BLANK" @@ -2212,8 +2587,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ATTRIBUTE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ATTRIBUTE" + }, + "named": false, + "value": "attribute" }, { "type": "SYMBOL", @@ -2237,24 +2617,39 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ATTRIBUTE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ATTRIBUTE" + }, + "named": false, + "value": "attribute" }, { "type": "SYMBOL", "name": "_attribute_designator" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", "name": "entity_specification" }, { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "SYMBOL", @@ -2270,16 +2665,31 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "DISCONNECT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "DISCONNECT" + }, + "named": false, + "value": "disconnect" }, { "type": "SYMBOL", "name": "guarded_signal_specification" }, { - "type": "SYMBOL", - "name": "AFTER" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "AFTER" + }, + "named": false, + "value": "after" + }, + "named": false, + "value": "after" }, { "type": "SYMBOL", @@ -2295,16 +2705,26 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GROUP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GROUP" + }, + "named": false, + "value": "group" }, { "type": "SYMBOL", "name": "_identifier" }, { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "STRING", @@ -2328,8 +2748,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GROUP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GROUP" + }, + "named": false, + "value": "group" }, { "type": "SYMBOL", @@ -2365,8 +2790,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PRIVATE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PRIVATE" + }, + "named": false, + "value": "private" }, { "type": "SYMBOL", @@ -2391,12 +2821,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "TYPE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "TYPE" + }, + "named": false, + "value": "type" }, { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "SYMBOL", @@ -2408,8 +2848,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "TYPE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "TYPE" + }, + "named": false, + "value": "type" }, { "type": "SYMBOL", @@ -2422,8 +2867,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "SYMBOL", @@ -2480,12 +2930,22 @@ ] }, "private_incomplete_type_definition": { - "type": "SYMBOL", - "name": "PRIVATE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PRIVATE" + }, + "named": false, + "value": "private" }, "scalar_incomplete_type_definition": { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" }, "discrete_incomplete_type_definition": { "type": "SEQ", @@ -2495,8 +2955,13 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" }, { "type": "STRING", @@ -2508,12 +2973,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "RANGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RANGE" + }, + "named": false, + "value": "range" }, { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" } ] }, @@ -2521,12 +2996,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "UNITS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "UNITS" + }, + "named": false, + "value": "units" }, { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" } ] }, @@ -2534,20 +3019,35 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "RANGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RANGE" + }, + "named": false, + "value": "range" }, { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" }, { "type": "STRING", "value": "." }, { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" } ] }, @@ -2558,8 +3058,18 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ARRAY" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ARRAY" + }, + "named": false, + "value": "array" + }, + "named": false, + "value": "array" }, { "type": "STRING", @@ -2574,8 +3084,13 @@ "value": ")" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -2587,16 +3102,31 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ARRAY" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ARRAY" + }, + "named": false, + "value": "array" + }, + "named": false, + "value": "array" }, { "type": "SYMBOL", "name": "index_constraint" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -2685,12 +3215,22 @@ "name": "name" }, { - "type": "SYMBOL", - "name": "RANGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RANGE" + }, + "named": false, + "value": "range" }, { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" } ] }, @@ -2698,8 +3238,18 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ACCESS" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ACCESS" + }, + "named": false, + "value": "access" + }, + "named": false, + "value": "access" }, { "type": "SYMBOL", @@ -2723,9 +3273,19 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ACCESS" - }, + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ACCESS" + }, + "named": false, + "value": "access" + }, + "named": false, + "value": "access" + }, { "type": "SYMBOL", "name": "_incomplete_subtype_indication" @@ -2736,12 +3296,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FILE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FILE" + }, + "named": false, + "value": "file" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -2753,12 +3323,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FILE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FILE" + }, + "named": false, + "value": "file" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -2906,8 +3486,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "BEGIN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BEGIN" + }, + "named": false, + "value": "begin" }, { "type": "REPEAT", @@ -2922,8 +3507,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "BEGIN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BEGIN" + }, + "named": false, + "value": "begin" }, { "type": "REPEAT", @@ -2964,8 +3554,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GENERATE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERATE" + }, + "named": false, + "value": "generate" }, { "type": "REPEAT", @@ -2980,8 +3575,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GENERATE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERATE" + }, + "named": false, + "value": "generate" }, { "type": "REPEAT", @@ -2999,8 +3599,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "WHEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "WHEN" + }, + "named": false, + "value": "when" }, { "type": "CHOICE", @@ -3087,8 +3692,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "BEGIN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BEGIN" + }, + "named": false, + "value": "begin" }, { "type": "REPEAT", @@ -3103,8 +3713,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", @@ -3283,8 +3898,13 @@ "name": "label_declaration" }, { - "type": "SYMBOL", - "name": "BLOCK" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BLOCK" + }, + "named": false, + "value": "block" }, { "type": "CHOICE", @@ -3348,8 +3968,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "CHOICE", @@ -3566,12 +4191,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "BLOCK" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BLOCK" + }, + "named": false, + "value": "block" }, { "type": "CHOICE", @@ -3603,8 +4238,13 @@ ] }, { - "type": "SYMBOL", - "name": "BLOCK" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BLOCK" + }, + "named": false, + "value": "block" }, { "type": "CHOICE", @@ -3639,8 +4279,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT", @@ -3751,8 +4396,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "COMPONENT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "COMPONENT" + }, + "named": false, + "value": "component" }, { "type": "SYMBOL", @@ -3764,8 +4414,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ENTITY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ENTITY" + }, + "named": false, + "value": "entity" }, { "type": "CHOICE", @@ -3810,8 +4465,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "CONFIGURATION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONFIGURATION" + }, + "named": false, + "value": "configuration" }, { "type": "SYMBOL", @@ -3857,8 +4517,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "POSTPONED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "POSTPONED" + }, + "named": false, + "value": "postponed" }, { "type": "BLANK" @@ -3866,8 +4531,13 @@ ] }, { - "type": "SYMBOL", - "name": "PROCESS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROCESS" + }, + "named": false, + "value": "process" }, { "type": "CHOICE", @@ -3931,8 +4601,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT", @@ -3961,15 +4636,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "POSTPONED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "POSTPONED" + }, + "named": false, + "value": "postponed" }, { "type": "BLANK" @@ -3977,8 +4662,13 @@ ] }, { - "type": "SYMBOL", - "name": "PROCESS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROCESS" + }, + "named": false, + "value": "process" }, { "type": "CHOICE", @@ -4002,8 +4692,13 @@ "name": "label_declaration" }, { - "type": "SYMBOL", - "name": "CASE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CASE" + }, + "named": false, + "value": "case" }, { "type": "SYMBOL", @@ -4027,8 +4722,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GENERATE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERATE" + }, + "named": false, + "value": "generate" }, { "type": "REPEAT1", @@ -4108,8 +4808,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IF" + }, + "named": false, + "value": "if" }, { "type": "CHOICE", @@ -4137,8 +4842,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSIF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSIF" + }, + "named": false, + "value": "elsif" }, { "type": "CHOICE", @@ -4166,8 +4876,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSE" + }, + "named": false, + "value": "else" }, { "type": "CHOICE", @@ -4191,12 +4906,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "GENERATE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERATE" + }, + "named": false, + "value": "generate" }, { "type": "CHOICE", @@ -4256,8 +4981,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "POSTPONED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "POSTPONED" + }, + "named": false, + "value": "postponed" }, { "type": "BLANK" @@ -4278,8 +5008,18 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ASSERT" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ASSERT" + }, + "named": false, + "value": "assert" + }, + "named": false, + "value": "assert" }, { "type": "SYMBOL", @@ -4315,8 +5055,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "REPORT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "REPORT" + }, + "named": false, + "value": "report" }, { "type": "SYMBOL", @@ -4328,8 +5073,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "SEVERITY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SEVERITY" + }, + "named": false, + "value": "severity" }, { "type": "SYMBOL", @@ -4374,8 +5124,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "CASE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CASE" + }, + "named": false, + "value": "case" }, { "type": "CHOICE", @@ -4399,8 +5154,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "REPEAT1", @@ -4415,12 +5175,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "CASE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CASE" + }, + "named": false, + "value": "case" }, { "type": "CHOICE", @@ -4464,8 +5234,13 @@ ] }, { - "type": "SYMBOL", - "name": "EXIT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "EXIT" + }, + "named": false, + "value": "exit" }, { "type": "CHOICE", @@ -4501,8 +5276,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "WHEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "WHEN" + }, + "named": false, + "value": "when" }, { "type": "SYMBOL", @@ -4562,16 +5342,26 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IF" + }, + "named": false, + "value": "if" }, { "type": "SYMBOL", "name": "_expression" }, { - "type": "SYMBOL", - "name": "THEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "THEN" + }, + "named": false, + "value": "then" }, { "type": "CHOICE", @@ -4603,16 +5393,26 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSIF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSIF" + }, + "named": false, + "value": "elsif" }, { "type": "SYMBOL", "name": "_expression" }, { - "type": "SYMBOL", - "name": "THEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "THEN" + }, + "named": false, + "value": "then" }, { "type": "CHOICE", @@ -4632,8 +5432,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSE" + }, + "named": false, + "value": "else" }, { "type": "CHOICE", @@ -4653,12 +5458,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "IF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IF" + }, + "named": false, + "value": "if" }, { "type": "CHOICE", @@ -4732,8 +5547,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "LOOP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "LOOP" + }, + "named": false, + "value": "loop" }, { "type": "REPEAT", @@ -4748,12 +5568,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "LOOP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "LOOP" + }, + "named": false, + "value": "loop" }, { "type": "CHOICE", @@ -4785,8 +5615,13 @@ ] }, { - "type": "SYMBOL", - "name": "NEXT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "NEXT" + }, + "named": false, + "value": "next" }, { "type": "CHOICE", @@ -4834,8 +5669,13 @@ ] }, { - "type": "SYMBOL", - "name": "NULL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "NULL" + }, + "named": false, + "value": "null" }, { "type": "STRING", @@ -4887,8 +5727,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "POSTPONED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "POSTPONED" + }, + "named": false, + "value": "postponed" }, { "type": "BLANK" @@ -4961,8 +5806,13 @@ ] }, { - "type": "SYMBOL", - "name": "RETURN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RETURN" + }, + "named": false, + "value": "return" }, { "type": "CHOICE", @@ -4998,8 +5848,13 @@ ] }, { - "type": "SYMBOL", - "name": "RETURN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RETURN" + }, + "named": false, + "value": "return" }, { "type": "SYMBOL", @@ -5118,8 +5973,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "POSTPONED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "POSTPONED" + }, + "named": false, + "value": "postponed" }, { "type": "BLANK" @@ -5138,8 +5998,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "GUARDED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GUARDED" + }, + "named": false, + "value": "guarded" }, { "type": "BLANK" @@ -5192,8 +6057,13 @@ "name": "signal_assignment" }, { - "type": "SYMBOL", - "name": "FORCE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FORCE" + }, + "named": false, + "value": "force" }, { "type": "CHOICE", @@ -5241,8 +6111,13 @@ "name": "signal_assignment" }, { - "type": "SYMBOL", - "name": "RELEASE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RELEASE" + }, + "named": false, + "value": "release" }, { "type": "CHOICE", @@ -5326,8 +6201,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "POSTPONED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "POSTPONED" + }, + "named": false, + "value": "postponed" }, { "type": "BLANK" @@ -5346,8 +6226,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "GUARDED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GUARDED" + }, + "named": false, + "value": "guarded" }, { "type": "BLANK" @@ -5444,8 +6329,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "POSTPONED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "POSTPONED" + }, + "named": false, + "value": "postponed" }, { "type": "BLANK" @@ -5468,8 +6358,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "GUARDED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GUARDED" + }, + "named": false, + "value": "guarded" }, { "type": "BLANK" @@ -5526,8 +6421,13 @@ "name": "signal_assignment" }, { - "type": "SYMBOL", - "name": "FORCE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FORCE" + }, + "named": false, + "value": "force" }, { "type": "CHOICE", @@ -5592,8 +6492,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "WITH" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "WITH" + }, + "named": false, + "value": "with" }, { "type": "SYMBOL", @@ -5605,8 +6510,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "SELECT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SELECT" + }, + "named": false, + "value": "select" }, { "type": "CHOICE", @@ -5642,8 +6552,13 @@ ] }, { - "type": "SYMBOL", - "name": "WAIT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "WAIT" + }, + "named": false, + "value": "wait" }, { "type": "CHOICE", @@ -5720,8 +6635,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSE" + }, + "named": false, + "value": "else" }, { "type": "SYMBOL", @@ -6428,8 +7348,13 @@ "value": "<<" }, { - "type": "SYMBOL", - "name": "CONSTANT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONSTANT" + }, + "named": false, + "value": "constant" }, { "type": "SYMBOL", @@ -6457,8 +7382,13 @@ "value": "<<" }, { - "type": "SYMBOL", - "name": "SIGNAL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SIGNAL" + }, + "named": false, + "value": "signal" }, { "type": "SYMBOL", @@ -6486,8 +7416,13 @@ "value": "<<" }, { - "type": "SYMBOL", - "name": "VARIABLE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VARIABLE" + }, + "named": false, + "value": "variable" }, { "type": "SYMBOL", @@ -6688,12 +7623,22 @@ ] }, { - "type": "SYMBOL", - "name": "PARAMETER" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PARAMETER" + }, + "named": false, + "value": "parameter" }, { - "type": "SYMBOL", - "name": "MAP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "MAP" + }, + "named": false, + "value": "map" }, { "type": "SYMBOL", @@ -6721,12 +7666,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PARAMETER" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PARAMETER" + }, + "named": false, + "value": "parameter" }, { - "type": "SYMBOL", - "name": "MAP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "MAP" + }, + "named": false, + "value": "map" } ] }, @@ -6857,8 +7812,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "INERTIAL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "INERTIAL" + }, + "named": false, + "value": "inertial" }, { "type": "BLANK" @@ -6872,8 +7832,13 @@ ] }, { - "type": "SYMBOL", - "name": "OPEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OPEN" + }, + "named": false, + "value": "open" } ] } @@ -6996,8 +7961,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "RETURN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RETURN" + }, + "named": false, + "value": "return" }, { "type": "SYMBOL", @@ -7045,8 +8015,18 @@ "name": "operator_symbol" }, { - "type": "SYMBOL", - "name": "ALL" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ALL" + }, + "named": false, + "value": "all" + }, + "named": false, + "value": "all" } ] }, @@ -7107,8 +8087,13 @@ "name": "library_constant_standard" }, { - "type": "SYMBOL", - "name": "NULL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "NULL" + }, + "named": false, + "value": "null" } ] }, @@ -7180,8 +8165,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "NEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "NEW" + }, + "named": false, + "value": "new" }, { "type": "SYMBOL", @@ -7273,8 +8263,13 @@ "name": "_range" }, { - "type": "SYMBOL", - "name": "OTHERS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OTHERS" + }, + "named": false, + "value": "others" }, { "type": "SYMBOL", @@ -7341,12 +8336,22 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "TO" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "TO" + }, + "named": false, + "value": "to" }, { - "type": "SYMBOL", - "name": "DOWNTO" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "DOWNTO" + }, + "named": false, + "value": "downto" } ] }, @@ -7466,16 +8471,26 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IF" + }, + "named": false, + "value": "if" }, { "type": "SYMBOL", "name": "conditional_analysis_expression" }, { - "type": "SYMBOL", - "name": "THEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "THEN" + }, + "named": false, + "value": "then" } ] }, @@ -7483,16 +8498,26 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSIF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSIF" + }, + "named": false, + "value": "elsif" }, { "type": "SYMBOL", "name": "conditional_analysis_expression" }, { - "type": "SYMBOL", - "name": "THEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "THEN" + }, + "named": false, + "value": "then" } ] }, @@ -7500,8 +8525,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSE" + }, + "named": false, + "value": "else" } ] }, @@ -7509,15 +8539,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "IF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IF" + }, + "named": false, + "value": "if" }, { "type": "BLANK" @@ -7683,8 +8723,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FOR" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FOR" + }, + "named": false, + "value": "for" }, { "type": "SYMBOL", @@ -7718,8 +8763,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FOR" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FOR" + }, + "named": false, + "value": "for" }, { "type": "SYMBOL", @@ -7779,12 +8829,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "FOR" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FOR" + }, + "named": false, + "value": "for" } ] }, @@ -7883,8 +8943,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "CONSTANT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONSTANT" + }, + "named": false, + "value": "constant" }, { "type": "SYMBOL", @@ -7904,8 +8969,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "SIGNAL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SIGNAL" + }, + "named": false, + "value": "signal" }, { "type": "SYMBOL", @@ -7925,8 +8995,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "VARIABLE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VARIABLE" + }, + "named": false, + "value": "variable" }, { "type": "SYMBOL", @@ -7956,8 +9031,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "SYMBOL", @@ -7992,8 +9072,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PROCEDURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROCEDURE" + }, + "named": false, + "value": "procedure" }, { "type": "SYMBOL", @@ -8030,8 +9115,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PROCEDURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROCEDURE" + }, + "named": false, + "value": "procedure" }, { "type": "SYMBOL", @@ -8061,12 +9151,22 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "PURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PURE" + }, + "named": false, + "value": "pure" }, { - "type": "SYMBOL", - "name": "IMPURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IMPURE" + }, + "named": false, + "value": "impure" } ] }, @@ -8076,8 +9176,13 @@ ] }, { - "type": "SYMBOL", - "name": "FUNCTION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FUNCTION" + }, + "named": false, + "value": "function" }, { "type": "SYMBOL", @@ -8108,8 +9213,13 @@ ] }, { - "type": "SYMBOL", - "name": "RETURN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RETURN" + }, + "named": false, + "value": "return" }, { "type": "CHOICE", @@ -8122,8 +9232,13 @@ "name": "_identifier" }, { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" } ] }, @@ -8148,12 +9263,22 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "PURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PURE" + }, + "named": false, + "value": "pure" }, { - "type": "SYMBOL", - "name": "IMPURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IMPURE" + }, + "named": false, + "value": "impure" } ] }, @@ -8163,8 +9288,13 @@ ] }, { - "type": "SYMBOL", - "name": "FUNCTION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FUNCTION" + }, + "named": false, + "value": "function" }, { "type": "SYMBOL", @@ -8183,8 +9313,13 @@ ] }, { - "type": "SYMBOL", - "name": "RETURN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RETURN" + }, + "named": false, + "value": "return" }, { "type": "SYMBOL", @@ -8213,20 +9348,35 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GENERIC" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERIC" + }, + "named": false, + "value": "generic" }, { - "type": "SYMBOL", - "name": "MAP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "MAP" + }, + "named": false, + "value": "map" }, { "type": "STRING", "value": "(" }, { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" }, { "type": "STRING", @@ -8238,20 +9388,35 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GENERIC" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERIC" + }, + "named": false, + "value": "generic" }, { - "type": "SYMBOL", - "name": "MAP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "MAP" + }, + "named": false, + "value": "map" }, { "type": "STRING", "value": "(" }, { - "type": "SYMBOL", - "name": "DEFAULT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "DEFAULT" + }, + "named": false, + "value": "default" }, { "type": "STRING", @@ -8263,12 +9428,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GENERIC" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERIC" + }, + "named": false, + "value": "generic" }, { - "type": "SYMBOL", - "name": "MAP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "MAP" + }, + "named": false, + "value": "map" }, { "type": "SYMBOL", @@ -8280,12 +9455,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PORT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PORT" + }, + "named": false, + "value": "port" }, { - "type": "SYMBOL", - "name": "MAP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "MAP" + }, + "named": false, + "value": "map" }, { "type": "SYMBOL", @@ -8334,8 +9519,13 @@ "name": "name" }, { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" } ] }, @@ -8413,8 +9603,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "BUS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BUS" + }, + "named": false, + "value": "bus" }, { "type": "BLANK" @@ -8452,8 +9647,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "VIEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VIEW" + }, + "named": false, + "value": "view" }, { "type": "SYMBOL", @@ -8466,8 +9666,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -8486,8 +9691,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "VIEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VIEW" + }, + "named": false, + "value": "view" }, { "type": "STRING", @@ -8508,8 +9718,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "OF" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OF" + }, + "named": false, + "value": "of" }, { "type": "SYMBOL", @@ -8600,8 +9815,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "VIEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VIEW" + }, + "named": false, + "value": "view" }, { "type": "SYMBOL", @@ -8613,8 +9833,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "VIEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VIEW" + }, + "named": false, + "value": "view" }, { "type": "STRING", @@ -8634,24 +9859,49 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "IN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IN" + }, + "named": false, + "value": "in" }, { - "type": "SYMBOL", - "name": "OUT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OUT" + }, + "named": false, + "value": "out" }, { - "type": "SYMBOL", - "name": "INOUT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "INOUT" + }, + "named": false, + "value": "inout" }, { - "type": "SYMBOL", - "name": "BUFFER" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BUFFER" + }, + "named": false, + "value": "buffer" }, { - "type": "SYMBOL", - "name": "LINKAGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "LINKAGE" + }, + "named": false, + "value": "linkage" } ] }, @@ -8659,8 +9909,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "RANGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RANGE" + }, + "named": false, + "value": "range" }, { "type": "SYMBOL", @@ -8729,8 +9984,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "box" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "box" + }, + "named": false, + "value": "<>" }, { "type": "BLANK" @@ -8785,12 +10045,27 @@ ] }, { - "type": "SYMBOL", - "name": "OTHERS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OTHERS" + }, + "named": false, + "value": "others" }, { - "type": "SYMBOL", - "name": "ALL" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ALL" + }, + "named": false, + "value": "all" + }, + "named": false, + "value": "all" } ] }, @@ -8815,84 +10090,189 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "ENTITY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ENTITY" + }, + "named": false, + "value": "entity" }, { - "type": "SYMBOL", - "name": "ARCHITECTURE" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ARCHITECTURE" + }, + "named": false, + "value": "architecture" + }, + "named": false, + "value": "architecture" }, { - "type": "SYMBOL", - "name": "CONFIGURATION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONFIGURATION" + }, + "named": false, + "value": "configuration" }, { - "type": "SYMBOL", - "name": "PROCEDURE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROCEDURE" + }, + "named": false, + "value": "procedure" }, { - "type": "SYMBOL", - "name": "FUNCTION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FUNCTION" + }, + "named": false, + "value": "function" }, { - "type": "SYMBOL", - "name": "PACKAGE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PACKAGE" + }, + "named": false, + "value": "package" }, { - "type": "SYMBOL", - "name": "TYPE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "TYPE" + }, + "named": false, + "value": "type" }, { - "type": "SYMBOL", - "name": "SUBTYPE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SUBTYPE" + }, + "named": false, + "value": "subtype" }, { - "type": "SYMBOL", - "name": "CONSTANT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONSTANT" + }, + "named": false, + "value": "constant" }, { - "type": "SYMBOL", - "name": "SIGNAL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SIGNAL" + }, + "named": false, + "value": "signal" }, { - "type": "SYMBOL", - "name": "VARIABLE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VARIABLE" + }, + "named": false, + "value": "variable" }, { - "type": "SYMBOL", - "name": "COMPONENT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "COMPONENT" + }, + "named": false, + "value": "component" }, { - "type": "SYMBOL", - "name": "LABEL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "LABEL" + }, + "named": false, + "value": "label" }, { - "type": "SYMBOL", - "name": "LITERAL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "LITERAL" + }, + "named": false, + "value": "literal" }, { - "type": "SYMBOL", - "name": "UNITS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "UNITS" + }, + "named": false, + "value": "units" }, { - "type": "SYMBOL", - "name": "GROUP" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GROUP" + }, + "named": false, + "value": "group" }, { - "type": "SYMBOL", - "name": "FILE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FILE" + }, + "named": false, + "value": "file" }, { - "type": "SYMBOL", - "name": "PROPERTY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROPERTY" + }, + "named": false, + "value": "property" }, { - "type": "SYMBOL", - "name": "SEQUENCE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "SEQUENCE" + }, + "named": false, + "value": "sequence" }, { - "type": "SYMBOL", - "name": "VIEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VIEW" + }, + "named": false, + "value": "view" } ] }, @@ -8925,12 +10305,27 @@ ] }, { - "type": "SYMBOL", - "name": "OTHERS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OTHERS" + }, + "named": false, + "value": "others" }, { - "type": "SYMBOL", - "name": "ALL" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ALL" + }, + "named": false, + "value": "all" + }, + "named": false, + "value": "all" } ] }, @@ -8999,8 +10394,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "OPEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OPEN" + }, + "named": false, + "value": "open" }, { "type": "SYMBOL", @@ -9014,8 +10414,13 @@ ] }, { - "type": "SYMBOL", - "name": "IS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IS" + }, + "named": false, + "value": "is" }, { "type": "SYMBOL", @@ -9061,8 +10466,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GENERIC" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERIC" + }, + "named": false, + "value": "generic" }, { "type": "STRING", @@ -9086,8 +10496,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "GENERIC" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "GENERIC" + }, + "named": false, + "value": "generic" }, { "type": "STRING", @@ -9135,8 +10550,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "PARAMETER" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PARAMETER" + }, + "named": false, + "value": "parameter" }, { "type": "BLANK" @@ -9206,8 +10626,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "NEW" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "NEW" + }, + "named": false, + "value": "new" }, { "type": "SYMBOL", @@ -9231,8 +10656,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PROTECTED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROTECTED" + }, + "named": false, + "value": "protected" }, { "type": "CHOICE", @@ -9263,12 +10693,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "PROTECTED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROTECTED" + }, + "named": false, + "value": "protected" }, { "type": "CHOICE", @@ -9318,12 +10758,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "PROTECTED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROTECTED" + }, + "named": false, + "value": "protected" }, { - "type": "SYMBOL", - "name": "BODY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BODY" + }, + "named": false, + "value": "body" }, { "type": "REPEAT", @@ -9342,16 +10792,31 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "PROTECTED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROTECTED" + }, + "named": false, + "value": "protected" }, { - "type": "SYMBOL", - "name": "BODY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "BODY" + }, + "named": false, + "value": "body" }, { "type": "CHOICE", @@ -9371,8 +10836,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "WHILE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "WHILE" + }, + "named": false, + "value": "while" }, { "type": "SYMBOL", @@ -9384,8 +10854,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FOR" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FOR" + }, + "named": false, + "value": "for" }, { "type": "SYMBOL", @@ -9401,8 +10876,13 @@ "name": "_identifier" }, { - "type": "SYMBOL", - "name": "IN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IN" + }, + "named": false, + "value": "in" }, { "type": "SYMBOL", @@ -9492,8 +10972,13 @@ ] }, { - "type": "SYMBOL", - "name": "UNAFFECTED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "UNAFFECTED" + }, + "named": false, + "value": "unaffected" } ] }, @@ -9511,8 +10996,18 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "AFTER" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "AFTER" + }, + "named": false, + "value": "after" + }, + "named": false, + "value": "after" }, { "type": "SYMBOL", @@ -9531,12 +11026,22 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "IN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "IN" + }, + "named": false, + "value": "in" }, { - "type": "SYMBOL", - "name": "OUT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OUT" + }, + "named": false, + "value": "out" } ] }, @@ -9577,8 +11082,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "WHEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "WHEN" + }, + "named": false, + "value": "when" }, { "type": "SYMBOL", @@ -9631,8 +11141,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSE" + }, + "named": false, + "value": "else" }, { "type": "SYMBOL", @@ -9644,8 +11159,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "TRANSPORT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "TRANSPORT" + }, + "named": false, + "value": "transport" }, { "type": "SEQ", @@ -9657,8 +11177,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "REJECT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "REJECT" + }, + "named": false, + "value": "reject" }, { "type": "SYMBOL", @@ -9672,8 +11197,13 @@ ] }, { - "type": "SYMBOL", - "name": "INERTIAL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "INERTIAL" + }, + "named": false, + "value": "inertial" } ] } @@ -9771,8 +11301,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ELSE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ELSE" + }, + "named": false, + "value": "else" }, { "type": "SYMBOL", @@ -9788,8 +11323,13 @@ "name": "_expression" }, { - "type": "SYMBOL", - "name": "UNAFFECTED" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "UNAFFECTED" + }, + "named": false, + "value": "unaffected" } ] }, @@ -9810,8 +11350,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ON" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ON" + }, + "named": false, + "value": "on" }, { "type": "SYMBOL", @@ -9848,8 +11393,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "UNTIL" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "UNTIL" + }, + "named": false, + "value": "until" }, { "type": "SYMBOL", @@ -9861,8 +11411,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FOR" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FOR" + }, + "named": false, + "value": "for" }, { "type": "SYMBOL", @@ -9878,8 +11433,13 @@ "name": "range_constraint" }, { - "type": "SYMBOL", - "name": "UNITS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "UNITS" + }, + "named": false, + "value": "units" }, { "type": "SYMBOL", @@ -9962,12 +11522,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "UNITS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "UNITS" + }, + "named": false, + "value": "units" }, { "type": "CHOICE", @@ -10033,8 +11603,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "RECORD" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RECORD" + }, + "named": false, + "value": "record" }, { "type": "REPEAT", @@ -10053,12 +11628,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "END" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "END" + }, + "named": false, + "value": "end" }, { - "type": "SYMBOL", - "name": "RECORD" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "RECORD" + }, + "named": false, + "value": "record" }, { "type": "CHOICE", @@ -10099,8 +11684,18 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "ALL" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ALL" + }, + "named": false, + "value": "all" + }, + "named": false, + "value": "all" }, { "type": "SYMBOL", @@ -10118,8 +11713,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FOR" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FOR" + }, + "named": false, + "value": "for" }, { "type": "SYMBOL", @@ -10156,8 +11756,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "FOR" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FOR" + }, + "named": false, + "value": "for" }, { "type": "SYMBOL", @@ -10208,12 +11813,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "USE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "USE" + }, + "named": false, + "value": "use" }, { - "type": "SYMBOL", - "name": "VUNIT" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "VUNIT" + }, + "named": false, + "value": "vunit" }, { "type": "SYMBOL", @@ -10292,12 +11907,27 @@ ] }, { - "type": "SYMBOL", - "name": "OTHERS" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OTHERS" + }, + "named": false, + "value": "others" }, { - "type": "SYMBOL", - "name": "ALL" + "type": "ALIAS", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ALL" + }, + "named": false, + "value": "all" + }, + "named": false, + "value": "all" } ] }, @@ -10311,8 +11941,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "USE" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "USE" + }, + "named": false, + "value": "use" }, { "type": "SYMBOL", @@ -10362,8 +11997,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "ENTITY" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ENTITY" + }, + "named": false, + "value": "entity" }, { "type": "SYMBOL", @@ -10400,8 +12040,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "CONFIGURATION" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "CONFIGURATION" + }, + "named": false, + "value": "configuration" }, { "type": "SYMBOL", @@ -10410,8 +12055,13 @@ ] }, { - "type": "SYMBOL", - "name": "OPEN" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "OPEN" + }, + "named": false, + "value": "open" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 7ad2235..542af92 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -19,13 +19,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "ACCESS", - "named": true - }, { "type": "subtype_indication", "named": true @@ -45,10 +41,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ACCESS", - "named": true - }, { "type": "generic_map_aspect", "named": true @@ -88,14 +80,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ALIAS", - "named": true - }, - { - "type": "IS", - "named": true - }, { "type": "character_literal", "named": true @@ -136,13 +120,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "NEW", - "named": true - }, { "type": "name", "named": true @@ -158,14 +138,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ARCHITECTURE", - "named": true - }, - { - "type": "OF", - "named": true - }, { "type": "architecture_head", "named": true @@ -207,12 +179,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "alias_declaration", "named": true @@ -362,14 +330,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "OF", - "named": true - }, - { - "type": "VIEW", - "named": true - }, { "type": "name", "named": true @@ -389,14 +349,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ARRAY", - "named": true - }, - { - "type": "OF", - "named": true - }, { "type": "array_index_incomplete_type_list", "named": true @@ -424,10 +376,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ASSERT", - "named": true - }, { "type": "condition_expression", "named": true @@ -484,16 +432,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "INERTIAL", - "named": true - }, - { - "type": "OPEN", - "named": true - }, { "type": "conditional_expression", "named": true @@ -626,10 +566,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ATTRIBUTE", - "named": true - }, { "type": "identifier", "named": true @@ -661,18 +597,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ATTRIBUTE", - "named": true - }, - { - "type": "IS", - "named": true - }, - { - "type": "OF", - "named": true - }, { "type": "attribute_function", "named": true @@ -759,10 +683,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "USE", - "named": true - }, { "type": "entity_aspect", "named": true @@ -824,10 +744,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FOR", - "named": true - }, { "type": "block_configuration", "named": true @@ -857,12 +773,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "alias_declaration", "named": true @@ -978,10 +890,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "BLOCK", - "named": true - }, { "type": "block_head", "named": true @@ -1013,10 +921,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IS", - "named": true - }, { "type": "case_statement_alternative", "named": true @@ -1029,13 +933,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "CASE", - "named": true - }, { "type": "condition_expression", "named": true @@ -1067,14 +967,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "OTHERS", - "named": true - }, - { - "type": "WHEN", - "named": true - }, { "type": "case_generate_body", "named": true @@ -1122,10 +1014,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "GENERATE", - "named": true - }, { "type": "case_generate_alternative", "named": true @@ -1322,10 +1210,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "CASE", - "named": true - }, { "type": "case_generate_block", "named": true @@ -1489,12 +1373,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "OTHERS", - "named": true - }, { "type": "choices", "named": true @@ -1532,12 +1412,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "generic_clause", "named": true @@ -1557,10 +1433,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FOR", - "named": true - }, { "type": "binding_indication", "named": true @@ -1592,10 +1464,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "COMPONENT", - "named": true - }, { "type": "component_body", "named": true @@ -1681,10 +1549,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "POSTPONED", - "named": true - }, { "type": "assertion", "named": true @@ -1702,12 +1566,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "BEGIN", - "named": true - }, { "type": "block_statement", "named": true @@ -1763,14 +1623,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "GUARDED", - "named": true - }, - { - "type": "POSTPONED", - "named": true - }, { "type": "aggregate", "named": true @@ -1806,10 +1658,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "POSTPONED", - "named": true - }, { "type": "label_declaration", "named": true @@ -1829,14 +1677,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "GUARDED", - "named": true - }, - { - "type": "POSTPONED", - "named": true - }, { "type": "delay_mechanism", "named": true @@ -1872,14 +1712,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "GUARDED", - "named": true - }, - { - "type": "POSTPONED", - "named": true - }, { "type": "aggregate", "named": true @@ -1912,13 +1744,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "UNTIL", - "named": true - }, { "type": "condition_expression", "named": true @@ -2084,12 +1912,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "UNAFFECTED", - "named": true - }, { "type": "condition_expression", "named": true @@ -2187,14 +2011,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "CONFIGURATION", - "named": true - }, - { - "type": "OF", - "named": true - }, { "type": "block_configuration", "named": true @@ -2236,12 +2052,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "attribute_specification", "named": true @@ -2269,10 +2081,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FOR", - "named": true - }, { "type": "binding_indication", "named": true @@ -2300,10 +2108,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "CONSTANT", - "named": true - }, { "type": "identifier_list", "named": true @@ -2327,10 +2131,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "CONTEXT", - "named": true - }, { "type": "context_declaration_body", "named": true @@ -2364,12 +2164,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "context_reference", "named": true @@ -2390,13 +2186,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "CONTEXT", - "named": true - }, { "type": "selected_name_list", "named": true @@ -2409,21 +2201,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "INERTIAL", - "named": true - }, - { - "type": "REJECT", - "named": true - }, - { - "type": "TRANSPORT", - "named": true - }, { "type": "condition_expression", "named": true @@ -2637,14 +2417,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "AFTER", - "named": true - }, - { - "type": "DISCONNECT", - "named": true - }, { "type": "condition_expression", "named": true @@ -2675,30 +2447,16 @@ { "type": "discrete_incomplete_type_definition", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "box", - "named": true - } - ] - } + "fields": {} }, { "type": "element_array_mode_view_indication", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "VIEW", - "named": true - }, { "type": "name", "named": true @@ -2714,10 +2472,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "OTHERS", - "named": true - }, { "type": "choices", "named": true @@ -2792,13 +2546,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "VIEW", - "named": true - }, { "type": "name", "named": true @@ -2809,30 +2559,16 @@ { "type": "else_conditional_analysis", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "ELSE", - "named": true - } - ] - } + "fields": {} }, { "type": "else_expression", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "ELSE", - "named": true - }, { "type": "condition_expression", "named": true @@ -2861,17 +2597,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "ELSE", - "named": true - }, - { - "type": "UNAFFECTED", - "named": true - }, { "type": "condition_expression", "named": true @@ -2903,10 +2631,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ELSE", - "named": true - }, { "type": "generate_body", "named": true @@ -2923,13 +2647,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "ELSE", - "named": true - }, { "type": "if_statement_body", "named": true @@ -2942,13 +2662,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "ELSE", - "named": true - }, { "type": "waveform", "named": true @@ -2961,17 +2677,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "ELSIF", - "named": true - }, - { - "type": "THEN", - "named": true - }, { "type": "conditional_analysis_expression", "named": true @@ -2987,10 +2695,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ELSIF", - "named": true - }, { "type": "condition_expression", "named": true @@ -3030,14 +2734,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ELSIF", - "named": true - }, - { - "type": "THEN", - "named": true - }, { "type": "condition_expression", "named": true @@ -3070,17 +2766,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "ARCHITECTURE", - "named": true - }, - { - "type": "END", - "named": true - }, { "type": "identifier", "named": true @@ -3105,17 +2793,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "BLOCK", - "named": true - }, - { - "type": "END", - "named": true - }, { "type": "label", "named": true @@ -3128,17 +2808,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "CASE", - "named": true - }, - { - "type": "END", - "named": true - }, { "type": "label", "named": true @@ -3151,17 +2823,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "COMPONENT", - "named": true - }, - { - "type": "END", - "named": true - }, { "type": "identifier", "named": true @@ -3184,38 +2848,16 @@ { "type": "end_conditional_analysis", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "END", - "named": true - }, - { - "type": "IF", - "named": true - } - ] - } + "fields": {} }, { "type": "end_configuration", "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "CONFIGURATION", - "named": true - }, - { - "type": "END", - "named": true - }, { "type": "identifier", "named": true @@ -3240,17 +2882,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "CONTEXT", - "named": true - }, - { - "type": "END", - "named": true - }, { "type": "identifier", "named": true @@ -3275,17 +2909,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "ENTITY", - "named": true - }, { "type": "identifier", "named": true @@ -3308,38 +2934,16 @@ { "type": "end_for", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "END", - "named": true - }, - { - "type": "FOR", - "named": true - } - ] - } + "fields": {} }, { "type": "end_generate", "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "GENERATE", - "named": true - }, { "type": "label", "named": true @@ -3352,17 +2956,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "IF", - "named": true - }, { "type": "label", "named": true @@ -3375,17 +2971,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "LOOP", - "named": true - }, { "type": "label", "named": true @@ -3398,17 +2986,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "PACKAGE", - "named": true - }, { "type": "identifier", "named": true @@ -3433,21 +3013,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "BODY", - "named": true - }, - { - "type": "END", - "named": true - }, - { - "type": "PACKAGE", - "named": true - }, { "type": "identifier", "named": true @@ -3472,21 +3040,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "POSTPONED", - "named": true - }, - { - "type": "PROCESS", - "named": true - }, { "type": "label", "named": true @@ -3499,17 +3055,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "RECORD", - "named": true - }, { "type": "identifier", "named": true @@ -3534,17 +3082,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "UNITS", - "named": true - }, { "type": "identifier", "named": true @@ -3569,17 +3109,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "VIEW", - "named": true - }, { "type": "identifier", "named": true @@ -3605,20 +3137,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "CONFIGURATION", - "named": true - }, - { - "type": "ENTITY", - "named": true - }, - { - "type": "OPEN", - "named": true - }, { "type": "identifier", "named": true @@ -3648,12 +3168,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "BEGIN", - "named": true - }, { "type": "concurrent_assertion_statement", "named": true @@ -3672,108 +3188,18 @@ { "type": "entity_class_entry", "named": true, + "fields": {} + }, + { + "type": "entity_class_entry_list", + "named": true, "fields": {}, "children": { "multiple": true, "required": true, "types": [ { - "type": "ARCHITECTURE", - "named": true - }, - { - "type": "COMPONENT", - "named": true - }, - { - "type": "CONFIGURATION", - "named": true - }, - { - "type": "CONSTANT", - "named": true - }, - { - "type": "ENTITY", - "named": true - }, - { - "type": "FILE", - "named": true - }, - { - "type": "FUNCTION", - "named": true - }, - { - "type": "GROUP", - "named": true - }, - { - "type": "LABEL", - "named": true - }, - { - "type": "LITERAL", - "named": true - }, - { - "type": "PACKAGE", - "named": true - }, - { - "type": "PROCEDURE", - "named": true - }, - { - "type": "PROPERTY", - "named": true - }, - { - "type": "SEQUENCE", - "named": true - }, - { - "type": "SIGNAL", - "named": true - }, - { - "type": "SUBTYPE", - "named": true - }, - { - "type": "TYPE", - "named": true - }, - { - "type": "UNITS", - "named": true - }, - { - "type": "VARIABLE", - "named": true - }, - { - "type": "VIEW", - "named": true - }, - { - "type": "box", - "named": true - } - ] - } - }, - { - "type": "entity_class_entry_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "entity_class_entry", + "type": "entity_class_entry", "named": true } ] @@ -3787,10 +3213,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ENTITY", - "named": true - }, { "type": "end_entity", "named": true @@ -3867,12 +3289,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "alias_declaration", "named": true @@ -3970,16 +3388,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "ALL", - "named": true - }, - { - "type": "OTHERS", - "named": true - }, { "type": "entity_designator", "named": true @@ -3992,89 +3402,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "ARCHITECTURE", - "named": true - }, - { - "type": "COMPONENT", - "named": true - }, - { - "type": "CONFIGURATION", - "named": true - }, - { - "type": "CONSTANT", - "named": true - }, - { - "type": "ENTITY", - "named": true - }, - { - "type": "FILE", - "named": true - }, - { - "type": "FUNCTION", - "named": true - }, - { - "type": "GROUP", - "named": true - }, - { - "type": "LABEL", - "named": true - }, - { - "type": "LITERAL", - "named": true - }, - { - "type": "PACKAGE", - "named": true - }, - { - "type": "PROCEDURE", - "named": true - }, - { - "type": "PROPERTY", - "named": true - }, - { - "type": "SEQUENCE", - "named": true - }, - { - "type": "SIGNAL", - "named": true - }, - { - "type": "SUBTYPE", - "named": true - }, - { - "type": "TYPE", - "named": true - }, - { - "type": "UNITS", - "named": true - }, - { - "type": "VARIABLE", - "named": true - }, - { - "type": "VIEW", - "named": true - }, { "type": "entity_name_list", "named": true @@ -4153,12 +3483,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "EXIT", - "named": true - }, { "type": "label", "named": true @@ -4182,10 +3508,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "CONSTANT", - "named": true - }, { "type": "absolute_pathname", "named": true @@ -4217,10 +3539,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "SIGNAL", - "named": true - }, { "type": "absolute_pathname", "named": true @@ -4252,10 +3570,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "VARIABLE", - "named": true - }, { "type": "absolute_pathname", "named": true @@ -4287,10 +3601,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FILE", - "named": true - }, { "type": "file_open_information", "named": true @@ -4311,17 +3621,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "FILE", - "named": true - }, - { - "type": "OF", - "named": true - }, { "type": "incomplete_type_mark", "named": true @@ -4368,14 +3670,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IS", - "named": true - }, - { - "type": "OPEN", - "named": true - }, { "type": "condition_expression", "named": true @@ -4408,17 +3702,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "FILE", - "named": true - }, - { - "type": "OF", - "named": true - }, { "type": "name", "named": true @@ -4429,21 +3715,7 @@ { "type": "floating_incomplete_type_definition", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "RANGE", - "named": true - }, - { - "type": "box", - "named": true - } - ] - } + "fields": {} }, { "type": "for_generate_statement", @@ -4477,13 +3749,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "FOR", - "named": true - }, { "type": "parameter_specification", "named": true @@ -4494,21 +3762,7 @@ { "type": "force_mode", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "IN", - "named": true - }, - { - "type": "OUT", - "named": true - } - ] - } + "fields": {} }, { "type": "function_call", @@ -4518,14 +3772,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "MAP", - "named": true - }, - { - "type": "PARAMETER", - "named": true - }, { "type": "generic_map_aspect", "named": true @@ -4545,26 +3791,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FUNCTION", - "named": true - }, - { - "type": "IMPURE", - "named": true - }, - { - "type": "OF", - "named": true - }, - { - "type": "PURE", - "named": true - }, - { - "type": "RETURN", - "named": true - }, { "type": "identifier", "named": true @@ -4606,12 +3832,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "BEGIN", - "named": true - }, { "type": "block_statement", "named": true @@ -4664,13 +3886,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, { "type": "label", "named": true @@ -4711,12 +3929,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "GENERATE", - "named": true - }, { "type": "block_statement", "named": true @@ -4770,14 +3984,10 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "GENERATE", - "named": true - }, - { - "type": "alias_declaration", + "type": "alias_declaration", "named": true }, { @@ -4872,13 +4082,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "GENERIC", - "named": true - }, { "type": "interface_list", "named": true @@ -4889,42 +4095,16 @@ { "type": "generic_map_any", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "GENERIC", - "named": true - }, - { - "type": "MAP", - "named": true - }, - { - "type": "box", - "named": true - } - ] - } + "fields": {} }, { "type": "generic_map_aspect", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "GENERIC", - "named": true - }, - { - "type": "MAP", - "named": true - }, { "type": "association_list", "named": true @@ -4935,25 +4115,7 @@ { "type": "generic_map_default", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "DEFAULT", - "named": true - }, - { - "type": "GENERIC", - "named": true - }, - { - "type": "MAP", - "named": true - } - ] - } + "fields": {} }, { "type": "group_constituent_list", @@ -4978,10 +4140,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "GROUP", - "named": true - }, { "type": "group_constituent_list", "named": true @@ -5017,14 +4175,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "GROUP", - "named": true - }, - { - "type": "IS", - "named": true - }, { "type": "entity_class_entry_list", "named": true @@ -5130,17 +4280,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "IF", - "named": true - }, - { - "type": "THEN", - "named": true - }, { "type": "conditional_analysis_expression", "named": true @@ -5156,10 +4298,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IF", - "named": true - }, { "type": "condition_expression", "named": true @@ -5230,14 +4368,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IF", - "named": true - }, - { - "type": "THEN", - "named": true - }, { "type": "condition_expression", "named": true @@ -5446,17 +4576,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "RANGE", - "named": true - }, - { - "type": "box", - "named": true - }, { "type": "name", "named": true @@ -5491,18 +4613,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "COMPONENT", - "named": true - }, - { - "type": "CONFIGURATION", - "named": true - }, - { - "type": "ENTITY", - "named": true - }, { "type": "architecture_identifier", "named": true @@ -5524,16 +4634,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "ALL", - "named": true - }, - { - "type": "OTHERS", - "named": true - }, { "type": "label", "named": true @@ -5544,21 +4646,7 @@ { "type": "integer_incomplete_type_definition", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "RANGE", - "named": true - }, - { - "type": "box", - "named": true - } - ] - } + "fields": {} }, { "type": "interface_constant_declaration", @@ -5568,10 +4656,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "CONSTANT", - "named": true - }, { "type": "array_mode_view_indication", "named": true @@ -5626,10 +4710,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FILE", - "named": true - }, { "type": "identifier_list", "named": true @@ -5649,22 +4729,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FUNCTION", - "named": true - }, - { - "type": "IMPURE", - "named": true - }, - { - "type": "PURE", - "named": true - }, - { - "type": "RETURN", - "named": true - }, { "type": "identifier", "named": true @@ -5747,18 +4811,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IS", - "named": true - }, - { - "type": "NEW", - "named": true - }, - { - "type": "PACKAGE", - "named": true - }, { "type": "generic_map_any", "named": true @@ -5802,10 +4854,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "PROCEDURE", - "named": true - }, { "type": "identifier", "named": true @@ -5841,10 +4889,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "SIGNAL", - "named": true - }, { "type": "array_mode_view_indication", "named": true @@ -5872,14 +4916,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IS", - "named": true - }, - { - "type": "box", - "named": true - }, { "type": "interface_function_specification", "named": true @@ -5903,14 +4939,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IS", - "named": true - }, - { - "type": "TYPE", - "named": true - }, { "type": "access_incomplete_type_definition", "named": true @@ -5974,10 +5002,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "VARIABLE", - "named": true - }, { "type": "array_mode_view_indication", "named": true @@ -6017,13 +5041,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "LIBRARY", - "named": true - }, { "type": "logical_name_list", "named": true @@ -6123,12 +5143,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "LOOP", - "named": true - }, { "type": "assertion_statement", "named": true @@ -6246,33 +5262,7 @@ { "type": "mode", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "BUFFER", - "named": true - }, - { - "type": "IN", - "named": true - }, - { - "type": "INOUT", - "named": true - }, - { - "type": "LINKAGE", - "named": true - }, - { - "type": "OUT", - "named": true - } - ] - } + "fields": {} }, { "type": "mode_view_body", @@ -6280,12 +5270,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "mode_view_element_definition", "named": true @@ -6301,14 +5287,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "OF", - "named": true - }, - { - "type": "VIEW", - "named": true - }, { "type": "end_view", "named": true @@ -6464,12 +5442,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "NEXT", - "named": true - }, { "type": "label", "named": true @@ -6490,13 +5464,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "NULL", - "named": true - }, { "type": "label_declaration", "named": true @@ -6512,10 +5482,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "PACKAGE", - "named": true - }, { "type": "end_package", "named": true @@ -6549,12 +5515,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "alias_declaration", "named": true @@ -6646,14 +5608,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "BODY", - "named": true - }, - { - "type": "PACKAGE", - "named": true - }, { "type": "end_package_body", "named": true @@ -6687,12 +5641,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "alias_declaration", "named": true @@ -6791,18 +5741,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IS", - "named": true - }, - { - "type": "NEW", - "named": true - }, - { - "type": "PACKAGE", - "named": true - }, { "type": "generic_map_aspect", "named": true @@ -6862,13 +5800,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "PARAMETER", - "named": true - }, { "type": "interface_list", "named": true @@ -6884,10 +5818,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IN", - "named": true - }, { "type": "condition_expression", "named": true @@ -7042,21 +5972,7 @@ { "type": "physical_incomplete_type_definition", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "UNITS", - "named": true - }, - { - "type": "box", - "named": true - } - ] - } + "fields": {} }, { "type": "physical_type_definition", @@ -7066,10 +5982,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "UNITS", - "named": true - }, { "type": "end_units", "named": true @@ -7094,13 +6006,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "PORT", - "named": true - }, { "type": "interface_list", "named": true @@ -7113,17 +6021,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "MAP", - "named": true - }, - { - "type": "PORT", - "named": true - }, { "type": "association_list", "named": true @@ -7161,30 +6061,16 @@ { "type": "private_incomplete_type_definition", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "PRIVATE", - "named": true - } - ] - } + "fields": {} }, { "type": "private_variable_declaration", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "PRIVATE", - "named": true - }, { "type": "variable_declaration", "named": true @@ -7219,10 +6105,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "PROCEDURE", - "named": true - }, { "type": "identifier", "named": true @@ -7260,12 +6142,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "alias_declaration", "named": true @@ -7345,14 +6223,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "POSTPONED", - "named": true - }, - { - "type": "PROCESS", - "named": true - }, { "type": "end_process", "named": true @@ -7403,14 +6273,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "BODY", - "named": true - }, - { - "type": "PROTECTED", - "named": true - }, { "type": "alias_declaration", "named": true @@ -7491,21 +6353,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "BODY", - "named": true - }, - { - "type": "END", - "named": true - }, - { - "type": "PROTECTED", - "named": true - }, { "type": "identifier", "named": true @@ -7533,10 +6383,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "PROTECTED", - "named": true - }, { "type": "alias_declaration", "named": true @@ -7577,17 +6423,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "PROTECTED", - "named": true - }, { "type": "identifier", "named": true @@ -7634,10 +6472,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "NEW", - "named": true - }, { "type": "generic_map_aspect", "named": true @@ -7654,13 +6488,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "RANGE", - "named": true - }, { "type": "condition_expression", "named": true @@ -7754,14 +6584,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "OF", - "named": true - }, - { - "type": "VIEW", - "named": true - }, { "type": "name", "named": true @@ -7796,10 +6618,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "RECORD", - "named": true - }, { "type": "element_declaration", "named": true @@ -7871,13 +6689,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "REPORT", - "named": true - }, { "type": "condition_expression", "named": true @@ -7953,12 +6767,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "RETURN", - "named": true - }, { "type": "conditional_or_unaffected_expression", "named": true @@ -7977,17 +6787,7 @@ { "type": "scalar_incomplete_type_definition", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "box", - "named": true - } - ] - } + "fields": {} }, { "type": "secondary_unit_declaration", @@ -8041,13 +6841,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "SELECT", - "named": true - }, { "type": "aggregate", "named": true @@ -8102,10 +6898,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FORCE", - "named": true - }, { "type": "force_mode", "named": true @@ -8141,10 +6933,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "ALL", - "named": true - }, { "type": "identifier", "named": true @@ -8274,12 +7062,8 @@ "fields": {}, "children": { "multiple": false, - "required": true, + "required": false, "types": [ - { - "type": "ALL", - "named": true - }, { "type": "character_literal", "named": true @@ -8300,13 +7084,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "ON", - "named": true - }, { "type": "sensitivity_list", "named": true @@ -8335,12 +7115,8 @@ "fields": {}, "children": { "multiple": false, - "required": true, + "required": false, "types": [ - { - "type": "ALL", - "named": true - }, { "type": "sensitivity_list", "named": true @@ -8354,12 +7130,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "BEGIN", - "named": true - }, { "type": "assertion_statement", "named": true @@ -8449,12 +7221,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "alias_declaration", "named": true @@ -8534,10 +7302,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "BLOCK", - "named": true - }, { "type": "end_block", "named": true @@ -8562,13 +7326,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "SEVERITY", - "named": true - }, { "type": "condition_expression", "named": true @@ -8650,10 +7410,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "SIGNAL", - "named": true - }, { "type": "identifier_list", "named": true @@ -8676,21 +7432,7 @@ { "type": "signal_kind", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "BUS", - "named": true - }, - { - "type": "REGISTER", - "named": true - } - ] - } + "fields": {} }, { "type": "signal_list", @@ -8698,16 +7440,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "ALL", - "named": true - }, - { - "type": "OTHERS", - "named": true - }, { "type": "name", "named": true @@ -8723,10 +7457,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "RETURN", - "named": true - }, { "type": "name", "named": true @@ -8740,12 +7470,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "NULL", - "named": true - }, { "type": "adding_operator", "named": true @@ -8861,10 +7587,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FORCE", - "named": true - }, { "type": "aggregate", "named": true @@ -8900,10 +7622,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "BUS", - "named": true - }, { "type": "initialiser", "named": true @@ -8931,14 +7649,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "DOWNTO", - "named": true - }, - { - "type": "TO", - "named": true - }, { "type": "simple_expression", "named": true @@ -8954,10 +7664,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "RELEASE", - "named": true - }, { "type": "aggregate", "named": true @@ -9102,21 +7808,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "END", - "named": true - }, - { - "type": "FUNCTION", - "named": true - }, - { - "type": "PROCEDURE", - "named": true - }, { "type": "identifier", "named": true @@ -9146,12 +7840,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "IS", - "named": true - }, { "type": "alias_declaration", "named": true @@ -9231,10 +7921,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "GENERIC", - "named": true - }, { "type": "generic_map_aspect", "named": true @@ -9254,22 +7940,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "FUNCTION", - "named": true - }, - { - "type": "IS", - "named": true - }, - { - "type": "NEW", - "named": true - }, - { - "type": "PROCEDURE", - "named": true - }, { "type": "generic_map_aspect", "named": true @@ -9314,19 +7984,11 @@ "required": true, "types": [ { - "type": "IS", + "type": "identifier", "named": true }, { - "type": "SUBTYPE", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", + "type": "library_constant", "named": true }, { @@ -9372,13 +8034,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "FOR", - "named": true - }, { "type": "condition_expression", "named": true @@ -9410,14 +8068,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "IS", - "named": true - }, - { - "type": "TYPE", - "named": true - }, { "type": "access_type_definition", "named": true @@ -9487,17 +8137,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "IS", - "named": true - }, - { - "type": "TYPE", - "named": true - }, { "type": "access_incomplete_type_definition", "named": true @@ -9545,10 +8187,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "USE", - "named": true - }, { "type": "selected_name", "named": true @@ -9595,14 +8233,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "SHARED", - "named": true - }, - { - "type": "VARIABLE", - "named": true - }, { "type": "generic_map_aspect", "named": true @@ -9627,17 +8257,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "USE", - "named": true - }, - { - "type": "VUNIT", - "named": true - }, { "type": "verification_unit_list", "named": true @@ -9666,12 +8288,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "WAIT", - "named": true - }, { "type": "condition_clause", "named": true @@ -9716,12 +8334,8 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "UNAFFECTED", - "named": true - }, { "type": "waveform_element", "named": true @@ -9737,10 +8351,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "AFTER", - "named": true - }, { "type": "condition_expression", "named": true @@ -9769,17 +8379,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "OTHERS", - "named": true - }, - { - "type": "WHEN", - "named": true - }, { "type": "choices", "named": true @@ -9816,13 +8418,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "WHEN", - "named": true - }, { "type": "condition_expression", "named": true @@ -9851,13 +8449,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "WHILE", - "named": true - }, { "type": "condition_expression", "named": true @@ -9886,13 +8480,9 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "WITH", - "named": true - }, { "type": "condition_expression", "named": true @@ -9980,6 +8570,10 @@ "type": "<=", "named": false }, + { + "type": "<>", + "named": false + }, { "type": "=", "named": false @@ -10033,572 +8627,568 @@ "named": false }, { - "type": "ACCESS", - "named": true - }, - { - "type": "AFTER", - "named": true + "type": "[", + "named": false }, { - "type": "ALIAS", - "named": true + "type": "]", + "named": false }, { - "type": "ALL", - "named": true + "type": "^", + "named": false }, { - "type": "ARCHITECTURE", - "named": true + "type": "access", + "named": false }, { - "type": "ARRAY", - "named": true + "type": "after", + "named": false }, { - "type": "ASSERT", - "named": true + "type": "alias", + "named": false }, { - "type": "ATTRIBUTE", - "named": true + "type": "all", + "named": false }, { - "type": "BEGIN", - "named": true + "type": "architecture", + "named": false }, { - "type": "BLOCK", - "named": true + "type": "array", + "named": false }, { - "type": "BODY", - "named": true + "type": "assert", + "named": false }, { - "type": "BUFFER", - "named": true + "type": "attribute", + "named": false }, { - "type": "BUS", + "type": "attribute_function", "named": true }, { - "type": "CASE", + "type": "attribute_identifier", "named": true }, { - "type": "COMPONENT", + "type": "attribute_impure_function", "named": true }, { - "type": "CONFIGURATION", + "type": "attribute_mode_view", "named": true }, { - "type": "CONSTANT", + "type": "attribute_pure_function", "named": true }, { - "type": "CONTEXT", + "type": "attribute_range", "named": true }, { - "type": "DEFAULT", + "type": "attribute_signal", "named": true }, { - "type": "DISCONNECT", + "type": "attribute_subtype", "named": true }, { - "type": "DOWNTO", + "type": "attribute_type", "named": true }, { - "type": "ELSE", + "type": "attribute_value", "named": true }, { - "type": "ELSIF", + "type": "based_base", "named": true }, { - "type": "END", + "type": "based_float", "named": true }, { - "type": "ENTITY", + "type": "based_integer", "named": true }, { - "type": "EXIT", - "named": true + "type": "begin", + "named": false }, { - "type": "FILE", + "type": "bit_string_base", "named": true }, { - "type": "FOR", + "type": "bit_string_length", "named": true }, { - "type": "FORCE", + "type": "bit_string_value", "named": true }, { - "type": "FUNCTION", - "named": true + "type": "block", + "named": false }, { - "type": "GENERATE", - "named": true + "type": "body", + "named": false }, { - "type": "GENERIC", - "named": true + "type": "buffer", + "named": false }, { - "type": "GROUP", - "named": true + "type": "bus", + "named": false }, { - "type": "GUARDED", - "named": true + "type": "case", + "named": false }, { - "type": "IF", + "type": "character_literal", "named": true }, { - "type": "IMPURE", + "type": "comment_content", "named": true }, { - "type": "IN", - "named": true + "type": "component", + "named": false }, { - "type": "INERTIAL", + "type": "condition_conversion", "named": true }, { - "type": "INOUT", - "named": true + "type": "configuration", + "named": false }, { - "type": "IS", - "named": true + "type": "constant", + "named": false }, { - "type": "LABEL", - "named": true + "type": "context", + "named": false }, { - "type": "LIBRARY", + "type": "decimal_float", "named": true }, { - "type": "LINKAGE", + "type": "decimal_integer", "named": true }, { - "type": "LITERAL", - "named": true + "type": "default", + "named": false }, { - "type": "LOOP", + "type": "directive_body", "named": true }, { - "type": "MAP", + "type": "directive_constant_builtin", "named": true }, { - "type": "NEW", + "type": "directive_error", "named": true }, { - "type": "NEXT", + "type": "directive_protect", "named": true }, { - "type": "NULL", + "type": "directive_warning", "named": true }, { - "type": "OF", - "named": true + "type": "disconnect", + "named": false }, { - "type": "ON", - "named": true + "type": "downto", + "named": false }, { - "type": "OPEN", - "named": true + "type": "else", + "named": false }, { - "type": "OTHERS", - "named": true + "type": "elsif", + "named": false }, { - "type": "OUT", - "named": true + "type": "end", + "named": false }, { - "type": "PACKAGE", - "named": true + "type": "entity", + "named": false }, { - "type": "PARAMETER", - "named": true + "type": "exit", + "named": false }, { - "type": "PORT", + "type": "exponentiate", "named": true }, { - "type": "POSTPONED", - "named": true + "type": "file", + "named": false }, { - "type": "PRIVATE", - "named": true + "type": "for", + "named": false }, { - "type": "PROCEDURE", - "named": true + "type": "force", + "named": false }, { - "type": "PROCESS", - "named": true + "type": "function", + "named": false }, { - "type": "PROPERTY", - "named": true + "type": "generate", + "named": false }, { - "type": "PROTECTED", - "named": true + "type": "generic", + "named": false }, { - "type": "PURE", - "named": true + "type": "group", + "named": false }, { - "type": "RANGE", - "named": true + "type": "guarded", + "named": false }, { - "type": "RECORD", + "type": "identifier", "named": true }, { - "type": "REGISTER", - "named": true + "type": "if", + "named": false }, { - "type": "REJECT", - "named": true + "type": "impure", + "named": false }, { - "type": "RELEASE", - "named": true + "type": "in", + "named": false }, { - "type": "REPORT", - "named": true + "type": "inertial", + "named": false }, { - "type": "RETURN", - "named": true + "type": "inout", + "named": false }, { - "type": "SELECT", - "named": true + "type": "is", + "named": false }, { - "type": "SEQUENCE", - "named": true + "type": "label", + "named": false }, { - "type": "SEVERITY", + "type": "label", "named": true }, { - "type": "SHARED", - "named": true + "type": "library", + "named": false }, { - "type": "SIGNAL", + "type": "library_attribute", "named": true }, { - "type": "SUBTYPE", + "type": "library_constant", "named": true }, { - "type": "THEN", + "type": "library_constant_boolean", "named": true }, { - "type": "TO", + "type": "library_constant_character", "named": true }, { - "type": "TRANSPORT", + "type": "library_constant_debug", "named": true }, { - "type": "TYPE", + "type": "library_constant_env", "named": true }, { - "type": "UNAFFECTED", + "type": "library_constant_standard", "named": true }, { - "type": "UNITS", + "type": "library_constant_std_logic", "named": true }, { - "type": "UNTIL", + "type": "library_constant_unit", "named": true }, { - "type": "USE", + "type": "library_function", "named": true }, { - "type": "VARIABLE", + "type": "library_namespace", "named": true }, { - "type": "VIEW", + "type": "library_type", "named": true }, { - "type": "VUNIT", - "named": true + "type": "linkage", + "named": false }, { - "type": "WAIT", - "named": true + "type": "literal", + "named": false }, { - "type": "WHEN", - "named": true + "type": "loop", + "named": false }, { - "type": "WHILE", - "named": true + "type": "map", + "named": false }, { - "type": "WITH", - "named": true + "type": "new", + "named": false }, { - "type": "[", + "type": "next", "named": false }, { - "type": "]", + "type": "null", "named": false }, { - "type": "^", + "type": "of", "named": false }, { - "type": "attribute_function", - "named": true + "type": "on", + "named": false }, { - "type": "attribute_identifier", - "named": true + "type": "open", + "named": false }, { - "type": "attribute_impure_function", + "type": "operator_symbol", "named": true }, { - "type": "attribute_mode_view", - "named": true + "type": "others", + "named": false }, { - "type": "attribute_pure_function", - "named": true + "type": "out", + "named": false }, { - "type": "attribute_range", - "named": true + "type": "package", + "named": false }, { - "type": "attribute_signal", - "named": true + "type": "parameter", + "named": false }, { - "type": "attribute_subtype", - "named": true + "type": "port", + "named": false }, { - "type": "attribute_type", - "named": true + "type": "postponed", + "named": false }, { - "type": "attribute_value", - "named": true + "type": "private", + "named": false }, { - "type": "based_base", - "named": true + "type": "procedure", + "named": false }, { - "type": "based_float", - "named": true + "type": "process", + "named": false }, { - "type": "based_integer", - "named": true + "type": "property", + "named": false }, { - "type": "bit_string_base", - "named": true + "type": "protected", + "named": false }, { - "type": "bit_string_length", - "named": true + "type": "pure", + "named": false }, { - "type": "bit_string_value", - "named": true + "type": "range", + "named": false }, { - "type": "box", - "named": true + "type": "record", + "named": false }, { - "type": "character_literal", - "named": true + "type": "register", + "named": false }, { - "type": "comment_content", - "named": true + "type": "reject", + "named": false }, { - "type": "condition_conversion", - "named": true + "type": "release", + "named": false }, { - "type": "decimal_float", - "named": true + "type": "report", + "named": false }, { - "type": "decimal_integer", - "named": true + "type": "return", + "named": false }, { - "type": "directive_body", - "named": true + "type": "select", + "named": false }, { - "type": "directive_constant_builtin", - "named": true + "type": "sequence", + "named": false }, { - "type": "directive_error", - "named": true + "type": "severity", + "named": false }, { - "type": "directive_protect", - "named": true + "type": "shared", + "named": false }, { - "type": "directive_warning", - "named": true + "type": "signal", + "named": false }, { - "type": "exponentiate", + "type": "string_literal", "named": true }, { - "type": "identifier", + "type": "string_literal_std_logic", "named": true }, { - "type": "label", - "named": true + "type": "subtype", + "named": false }, { - "type": "library_attribute", - "named": true + "type": "then", + "named": false }, { - "type": "library_constant", - "named": true + "type": "to", + "named": false }, { - "type": "library_constant_boolean", - "named": true + "type": "transport", + "named": false }, { - "type": "library_constant_character", - "named": true + "type": "type", + "named": false }, { - "type": "library_constant_debug", - "named": true + "type": "unaffected", + "named": false }, { - "type": "library_constant_env", + "type": "unit", "named": true }, { - "type": "library_constant_standard", - "named": true + "type": "units", + "named": false }, { - "type": "library_constant_std_logic", - "named": true + "type": "until", + "named": false }, { - "type": "library_constant_unit", - "named": true + "type": "use", + "named": false }, { - "type": "library_function", - "named": true + "type": "variable", + "named": false }, { - "type": "library_namespace", + "type": "variable_assignment", "named": true }, { - "type": "library_type", - "named": true + "type": "view", + "named": false }, { - "type": "operator_symbol", - "named": true + "type": "vunit", + "named": false }, { - "type": "string_literal", - "named": true + "type": "wait", + "named": false }, { - "type": "string_literal_std_logic", - "named": true + "type": "when", + "named": false }, { - "type": "unit", - "named": true + "type": "while", + "named": false }, { - "type": "variable_assignment", - "named": true + "type": "with", + "named": false }, { "type": "|", diff --git a/src/parser.c b/src/parser.c index a3d321a..f5a1423 100644 --- a/src/parser.c +++ b/src/parser.c @@ -665,119 +665,119 @@ static const char * const ts_symbol_names[] = { [anon_sym_PIPE] = "|", [sym_identifier] = "identifier", [sym__ABS] = "_ABS", - [sym_ACCESS] = "ACCESS", - [sym_AFTER] = "AFTER", - [sym_ALIAS] = "ALIAS", - [sym_ALL] = "ALL", + [sym_ACCESS] = "access", + [sym_AFTER] = "after", + [sym_ALIAS] = "alias", + [sym_ALL] = "all", [sym__AND] = "_AND", - [sym_ARCHITECTURE] = "ARCHITECTURE", - [sym_ARRAY] = "ARRAY", - [sym_ASSERT] = "ASSERT", + [sym_ARCHITECTURE] = "architecture", + [sym_ARRAY] = "array", + [sym_ASSERT] = "assert", [sym_ASSUME] = "ASSUME", - [sym_ATTRIBUTE] = "ATTRIBUTE", - [sym_BEGIN] = "BEGIN", - [sym_BLOCK] = "BLOCK", - [sym_BODY] = "BODY", - [sym_BUFFER] = "BUFFER", - [sym_BUS] = "BUS", - [sym_CASE] = "CASE", - [sym_COMPONENT] = "COMPONENT", - [sym_CONFIGURATION] = "CONFIGURATION", - [sym_CONSTANT] = "CONSTANT", - [sym_CONTEXT] = "CONTEXT", + [sym_ATTRIBUTE] = "attribute", + [sym_BEGIN] = "begin", + [sym_BLOCK] = "block", + [sym_BODY] = "body", + [sym_BUFFER] = "buffer", + [sym_BUS] = "bus", + [sym_CASE] = "case", + [sym_COMPONENT] = "component", + [sym_CONFIGURATION] = "configuration", + [sym_CONSTANT] = "constant", + [sym_CONTEXT] = "context", [sym_COVER] = "COVER", - [sym_DEFAULT] = "DEFAULT", - [sym_DISCONNECT] = "DISCONNECT", - [sym_DOWNTO] = "DOWNTO", - [sym_ELSE] = "ELSE", - [sym_ELSIF] = "ELSIF", - [sym_END] = "END", - [sym_ENTITY] = "ENTITY", - [sym_EXIT] = "EXIT", + [sym_DEFAULT] = "default", + [sym_DISCONNECT] = "disconnect", + [sym_DOWNTO] = "downto", + [sym_ELSE] = "else", + [sym_ELSIF] = "elsif", + [sym_END] = "end", + [sym_ENTITY] = "entity", + [sym_EXIT] = "exit", [sym_FAIRNESS] = "FAIRNESS", - [sym_FILE] = "FILE", - [sym_FOR] = "FOR", - [sym_FORCE] = "FORCE", - [sym_FUNCTION] = "FUNCTION", - [sym_GENERATE] = "GENERATE", - [sym_GENERIC] = "GENERIC", - [sym_GROUP] = "GROUP", - [sym_GUARDED] = "GUARDED", - [sym_IF] = "IF", - [sym_IMPURE] = "IMPURE", - [sym_IN] = "IN", - [sym_INERTIAL] = "INERTIAL", - [sym_INOUT] = "INOUT", - [sym_IS] = "IS", - [sym_LABEL] = "LABEL", - [sym_LIBRARY] = "LIBRARY", - [sym_LINKAGE] = "LINKAGE", - [sym_LITERAL] = "LITERAL", - [sym_LOOP] = "LOOP", - [sym_MAP] = "MAP", + [sym_FILE] = "file", + [sym_FOR] = "for", + [sym_FORCE] = "force", + [sym_FUNCTION] = "function", + [sym_GENERATE] = "generate", + [sym_GENERIC] = "generic", + [sym_GROUP] = "group", + [sym_GUARDED] = "guarded", + [sym_IF] = "if", + [sym_IMPURE] = "impure", + [sym_IN] = "in", + [sym_INERTIAL] = "inertial", + [sym_INOUT] = "inout", + [sym_IS] = "is", + [sym_LABEL] = "label", + [sym_LIBRARY] = "library", + [sym_LINKAGE] = "linkage", + [sym_LITERAL] = "literal", + [sym_LOOP] = "loop", + [sym_MAP] = "map", [sym__MOD] = "_MOD", [sym__NAND] = "_NAND", - [sym_NEW] = "NEW", - [sym_NEXT] = "NEXT", + [sym_NEW] = "new", + [sym_NEXT] = "next", [sym__NOR] = "_NOR", [sym__NOT] = "_NOT", - [sym_NULL] = "NULL", - [sym_OF] = "OF", - [sym_ON] = "ON", - [sym_OPEN] = "OPEN", + [sym_NULL] = "null", + [sym_OF] = "of", + [sym_ON] = "on", + [sym_OPEN] = "open", [sym__OR] = "_OR", - [sym_OTHERS] = "OTHERS", - [sym_OUT] = "OUT", - [sym_PACKAGE] = "PACKAGE", - [sym_PARAMETER] = "PARAMETER", - [sym_PORT] = "PORT", - [sym_POSTPONED] = "POSTPONED", - [sym_PROCEDURE] = "PROCEDURE", - [sym_PROCESS] = "PROCESS", - [sym_PROPERTY] = "PROPERTY", - [sym_PROTECTED] = "PROTECTED", - [sym_PRIVATE] = "PRIVATE", - [sym_PURE] = "PURE", - [sym_RANGE] = "RANGE", - [sym_RECORD] = "RECORD", - [sym_REGISTER] = "REGISTER", - [sym_REJECT] = "REJECT", - [sym_RELEASE] = "RELEASE", + [sym_OTHERS] = "others", + [sym_OUT] = "out", + [sym_PACKAGE] = "package", + [sym_PARAMETER] = "parameter", + [sym_PORT] = "port", + [sym_POSTPONED] = "postponed", + [sym_PROCEDURE] = "procedure", + [sym_PROCESS] = "process", + [sym_PROPERTY] = "property", + [sym_PROTECTED] = "protected", + [sym_PRIVATE] = "private", + [sym_PURE] = "pure", + [sym_RANGE] = "range", + [sym_RECORD] = "record", + [sym_REGISTER] = "register", + [sym_REJECT] = "reject", + [sym_RELEASE] = "release", [sym__REM] = "_REM", - [sym_REPORT] = "REPORT", + [sym_REPORT] = "report", [sym_RESTRICT] = "RESTRICT", - [sym_RETURN] = "RETURN", + [sym_RETURN] = "return", [sym__ROL] = "_ROL", [sym__ROR] = "_ROR", - [sym_SELECT] = "SELECT", - [sym_SEQUENCE] = "SEQUENCE", - [sym_SEVERITY] = "SEVERITY", - [sym_SIGNAL] = "SIGNAL", - [sym_SHARED] = "SHARED", + [sym_SELECT] = "select", + [sym_SEQUENCE] = "sequence", + [sym_SEVERITY] = "severity", + [sym_SIGNAL] = "signal", + [sym_SHARED] = "shared", [sym__SLA] = "_SLA", [sym__SLL] = "_SLL", [sym__SRA] = "_SRA", [sym__SRL] = "_SRL", [sym_STRONG] = "STRONG", - [sym_SUBTYPE] = "SUBTYPE", - [sym_THEN] = "THEN", - [sym_TO] = "TO", - [sym_TRANSPORT] = "TRANSPORT", - [sym_TYPE] = "TYPE", - [sym_UNAFFECTED] = "UNAFFECTED", - [sym_UNITS] = "UNITS", - [sym_UNTIL] = "UNTIL", - [sym_USE] = "USE", - [sym_VARIABLE] = "VARIABLE", - [sym_VIEW] = "VIEW", + [sym_SUBTYPE] = "subtype", + [sym_THEN] = "then", + [sym_TO] = "to", + [sym_TRANSPORT] = "transport", + [sym_TYPE] = "type", + [sym_UNAFFECTED] = "unaffected", + [sym_UNITS] = "units", + [sym_UNTIL] = "until", + [sym_USE] = "use", + [sym_VARIABLE] = "variable", + [sym_VIEW] = "view", [sym_VMODE] = "VMODE", [sym_VPKG] = "VPKG", [sym_VPROP] = "VPROP", - [sym_VUNIT] = "VUNIT", - [sym_WAIT] = "WAIT", - [sym_WHEN] = "WHEN", - [sym_WHILE] = "WHILE", - [sym_WITH] = "WITH", + [sym_VUNIT] = "vunit", + [sym_WAIT] = "wait", + [sym_WHEN] = "when", + [sym_WHILE] = "while", + [sym_WITH] = "with", [sym__XNOR] = "_XNOR", [sym__XOR] = "_XOR", [sym_reserved_end_marker] = "reserved_end_marker", @@ -788,7 +788,7 @@ static const char * const ts_symbol_names[] = { [sym_directive_warning] = "directive_warning", [sym__directive_newline] = "_directive_newline", [sym__grave_accent] = "_grave_accent", - [sym_box] = "box", + [sym_box] = "<>", [sym_delimiter_end_marker] = "delimiter_end_marker", [sym_decimal_integer] = "decimal_integer", [sym_decimal_float] = "decimal_float", @@ -2006,19 +2006,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_ACCESS] = { .visible = true, - .named = true, + .named = false, }, [sym_AFTER] = { .visible = true, - .named = true, + .named = false, }, [sym_ALIAS] = { .visible = true, - .named = true, + .named = false, }, [sym_ALL] = { .visible = true, - .named = true, + .named = false, }, [sym__AND] = { .visible = false, @@ -2026,15 +2026,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_ARCHITECTURE] = { .visible = true, - .named = true, + .named = false, }, [sym_ARRAY] = { .visible = true, - .named = true, + .named = false, }, [sym_ASSERT] = { .visible = true, - .named = true, + .named = false, }, [sym_ASSUME] = { .visible = true, @@ -2042,47 +2042,47 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_ATTRIBUTE] = { .visible = true, - .named = true, + .named = false, }, [sym_BEGIN] = { .visible = true, - .named = true, + .named = false, }, [sym_BLOCK] = { .visible = true, - .named = true, + .named = false, }, [sym_BODY] = { .visible = true, - .named = true, + .named = false, }, [sym_BUFFER] = { .visible = true, - .named = true, + .named = false, }, [sym_BUS] = { .visible = true, - .named = true, + .named = false, }, [sym_CASE] = { .visible = true, - .named = true, + .named = false, }, [sym_COMPONENT] = { .visible = true, - .named = true, + .named = false, }, [sym_CONFIGURATION] = { .visible = true, - .named = true, + .named = false, }, [sym_CONSTANT] = { .visible = true, - .named = true, + .named = false, }, [sym_CONTEXT] = { .visible = true, - .named = true, + .named = false, }, [sym_COVER] = { .visible = true, @@ -2090,35 +2090,35 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_DEFAULT] = { .visible = true, - .named = true, + .named = false, }, [sym_DISCONNECT] = { .visible = true, - .named = true, + .named = false, }, [sym_DOWNTO] = { .visible = true, - .named = true, + .named = false, }, [sym_ELSE] = { .visible = true, - .named = true, + .named = false, }, [sym_ELSIF] = { .visible = true, - .named = true, + .named = false, }, [sym_END] = { .visible = true, - .named = true, + .named = false, }, [sym_ENTITY] = { .visible = true, - .named = true, + .named = false, }, [sym_EXIT] = { .visible = true, - .named = true, + .named = false, }, [sym_FAIRNESS] = { .visible = true, @@ -2126,83 +2126,83 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_FILE] = { .visible = true, - .named = true, + .named = false, }, [sym_FOR] = { .visible = true, - .named = true, + .named = false, }, [sym_FORCE] = { .visible = true, - .named = true, + .named = false, }, [sym_FUNCTION] = { .visible = true, - .named = true, + .named = false, }, [sym_GENERATE] = { .visible = true, - .named = true, + .named = false, }, [sym_GENERIC] = { .visible = true, - .named = true, + .named = false, }, [sym_GROUP] = { .visible = true, - .named = true, + .named = false, }, [sym_GUARDED] = { .visible = true, - .named = true, + .named = false, }, [sym_IF] = { .visible = true, - .named = true, + .named = false, }, [sym_IMPURE] = { .visible = true, - .named = true, + .named = false, }, [sym_IN] = { .visible = true, - .named = true, + .named = false, }, [sym_INERTIAL] = { .visible = true, - .named = true, + .named = false, }, [sym_INOUT] = { .visible = true, - .named = true, + .named = false, }, [sym_IS] = { .visible = true, - .named = true, + .named = false, }, [sym_LABEL] = { .visible = true, - .named = true, + .named = false, }, [sym_LIBRARY] = { .visible = true, - .named = true, + .named = false, }, [sym_LINKAGE] = { .visible = true, - .named = true, + .named = false, }, [sym_LITERAL] = { .visible = true, - .named = true, + .named = false, }, [sym_LOOP] = { .visible = true, - .named = true, + .named = false, }, [sym_MAP] = { .visible = true, - .named = true, + .named = false, }, [sym__MOD] = { .visible = false, @@ -2214,11 +2214,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_NEW] = { .visible = true, - .named = true, + .named = false, }, [sym_NEXT] = { .visible = true, - .named = true, + .named = false, }, [sym__NOR] = { .visible = false, @@ -2230,19 +2230,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_NULL] = { .visible = true, - .named = true, + .named = false, }, [sym_OF] = { .visible = true, - .named = true, + .named = false, }, [sym_ON] = { .visible = true, - .named = true, + .named = false, }, [sym_OPEN] = { .visible = true, - .named = true, + .named = false, }, [sym__OR] = { .visible = false, @@ -2250,71 +2250,71 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_OTHERS] = { .visible = true, - .named = true, + .named = false, }, [sym_OUT] = { .visible = true, - .named = true, + .named = false, }, [sym_PACKAGE] = { .visible = true, - .named = true, + .named = false, }, [sym_PARAMETER] = { .visible = true, - .named = true, + .named = false, }, [sym_PORT] = { .visible = true, - .named = true, + .named = false, }, [sym_POSTPONED] = { .visible = true, - .named = true, + .named = false, }, [sym_PROCEDURE] = { .visible = true, - .named = true, + .named = false, }, [sym_PROCESS] = { .visible = true, - .named = true, + .named = false, }, [sym_PROPERTY] = { .visible = true, - .named = true, + .named = false, }, [sym_PROTECTED] = { .visible = true, - .named = true, + .named = false, }, [sym_PRIVATE] = { .visible = true, - .named = true, + .named = false, }, [sym_PURE] = { .visible = true, - .named = true, + .named = false, }, [sym_RANGE] = { .visible = true, - .named = true, + .named = false, }, [sym_RECORD] = { .visible = true, - .named = true, + .named = false, }, [sym_REGISTER] = { .visible = true, - .named = true, + .named = false, }, [sym_REJECT] = { .visible = true, - .named = true, + .named = false, }, [sym_RELEASE] = { .visible = true, - .named = true, + .named = false, }, [sym__REM] = { .visible = false, @@ -2322,7 +2322,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_REPORT] = { .visible = true, - .named = true, + .named = false, }, [sym_RESTRICT] = { .visible = true, @@ -2330,7 +2330,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_RETURN] = { .visible = true, - .named = true, + .named = false, }, [sym__ROL] = { .visible = false, @@ -2342,23 +2342,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_SELECT] = { .visible = true, - .named = true, + .named = false, }, [sym_SEQUENCE] = { .visible = true, - .named = true, + .named = false, }, [sym_SEVERITY] = { .visible = true, - .named = true, + .named = false, }, [sym_SIGNAL] = { .visible = true, - .named = true, + .named = false, }, [sym_SHARED] = { .visible = true, - .named = true, + .named = false, }, [sym__SLA] = { .visible = false, @@ -2382,47 +2382,47 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_SUBTYPE] = { .visible = true, - .named = true, + .named = false, }, [sym_THEN] = { .visible = true, - .named = true, + .named = false, }, [sym_TO] = { .visible = true, - .named = true, + .named = false, }, [sym_TRANSPORT] = { .visible = true, - .named = true, + .named = false, }, [sym_TYPE] = { .visible = true, - .named = true, + .named = false, }, [sym_UNAFFECTED] = { .visible = true, - .named = true, + .named = false, }, [sym_UNITS] = { .visible = true, - .named = true, + .named = false, }, [sym_UNTIL] = { .visible = true, - .named = true, + .named = false, }, [sym_USE] = { .visible = true, - .named = true, + .named = false, }, [sym_VARIABLE] = { .visible = true, - .named = true, + .named = false, }, [sym_VIEW] = { .visible = true, - .named = true, + .named = false, }, [sym_VMODE] = { .visible = true, @@ -2438,23 +2438,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_VUNIT] = { .visible = true, - .named = true, + .named = false, }, [sym_WAIT] = { .visible = true, - .named = true, + .named = false, }, [sym_WHEN] = { .visible = true, - .named = true, + .named = false, }, [sym_WHILE] = { .visible = true, - .named = true, + .named = false, }, [sym_WITH] = { .visible = true, - .named = true, + .named = false, }, [sym__XNOR] = { .visible = false, @@ -2498,7 +2498,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_box] = { .visible = true, - .named = true, + .named = false, }, [sym_delimiter_end_marker] = { .visible = true, diff --git a/test/corpus/architecture_basic.vhd b/test/corpus/architecture_basic.vhd index db89b4f..8c0e162 100644 --- a/test/corpus/architecture_basic.vhd +++ b/test/corpus/architecture_basic.vhd @@ -20,30 +20,22 @@ end EXAMPLE; (comment_content)) (design_unit (architecture_definition - (ARCHITECTURE) (identifier) - (OF) (name (identifier)) (architecture_head - (IS) (subtype_declaration - (SUBTYPE) (identifier) - (IS) (subtype_indication (name (library_type)) (range_constraint - (RANGE) (simple_range (simple_expression (decimal_integer)) - (TO) (simple_expression (decimal_integer))))))) (concurrent_block - (BEGIN) (concurrent_simple_signal_assignment (name (identifier)) @@ -55,6 +47,5 @@ end EXAMPLE; (line_comment (comment_content)) (end_architecture - (END) (identifier))))) diff --git a/test/corpus/entity.vhd b/test/corpus/entity.vhd index b5eccf4..c6e4b89 100644 --- a/test/corpus/entity.vhd +++ b/test/corpus/entity.vhd @@ -38,159 +38,130 @@ entity MyModule is port( (design_file (design_unit (entity_declaration - (ENTITY) (identifier) (entity_head - (IS) (port_clause - (PORT) (interface_list (interface_signal_declaration - (SIGNAL) (identifier_list (identifier) (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))))) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (OUT)) + (mode) (subtype_indication (name (library_type))))) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (INOUT)) + (mode) (subtype_indication (name (library_type))))) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (INOUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (INOUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (INOUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (INOUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (INOUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (INOUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (INOUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (OUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (OUT)) + (mode) (subtype_indication (name (library_type))))) (line_comment (comment_content)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))) @@ -202,12 +173,10 @@ entity MyModule is port( (bit_string_base) (bit_string_value))))))) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))) @@ -219,12 +188,10 @@ entity MyModule is port( (based_base) (based_integer))))))) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))) @@ -247,52 +214,41 @@ entity MyModule is port( (directive_body) (directive_body)) (if_conditional_analysis - (IF) (conditional_analysis_expression (conditional_analysis_relation (library_function) - (string_literal))) - (THEN)) + (string_literal)))) (warning_directive (directive_warning) (string_literal)) - (else_conditional_analysis - (ELSE)) + (else_conditional_analysis) (error_directive (directive_error) (string_literal)) - (end_conditional_analysis - (END) - (IF)) + (end_conditional_analysis) (protect_directive (directive_protect) (directive_body) (directive_body)) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type)) (range_constraint - (RANGE) (simple_range (simple_expression (decimal_integer)) - (TO) (simple_expression (decimal_integer))))))) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type) @@ -302,22 +258,18 @@ entity MyModule is port( (simple_range (simple_expression (decimal_integer)) - (DOWNTO) (simple_expression (decimal_integer))) (simple_range (simple_expression (decimal_integer)) - (DOWNTO) (simple_expression (decimal_integer)))))))))) (interface_signal_declaration - (SIGNAL) (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (resolution_indication (name @@ -325,7 +277,5 @@ entity MyModule is port( (name (library_type)))))))) (end_entity - (END) - (ENTITY) (identifier))))) diff --git a/test/corpus/if_generate.vhd b/test/corpus/if_generate.vhd index 719a926..5108584 100644 --- a/test/corpus/if_generate.vhd +++ b/test/corpus/if_generate.vhd @@ -18,7 +18,6 @@ end generate testGenerate; (label_declaration (label)) (if_generate - (IF) (relational_expression (simple_expression (name @@ -28,7 +27,6 @@ end generate testGenerate; (decimal_integer))) (generate_body (generate_direct_block - (GENERATE) (concurrent_simple_signal_assignment (name (identifier)) @@ -44,7 +42,6 @@ end generate testGenerate; (name (identifier)))))))))) (elsif_generate - (ELSIF) (relational_expression (simple_expression (name @@ -54,7 +51,6 @@ end generate testGenerate; (decimal_integer))) (generate_body (generate_direct_block - (GENERATE) (concurrent_simple_signal_assignment (name (identifier)) @@ -70,10 +66,8 @@ end generate testGenerate; (name (identifier)))))))))) (else_generate - (ELSE) (generate_body (generate_direct_block - (GENERATE) (concurrent_simple_signal_assignment (name (identifier)) @@ -89,7 +83,5 @@ end generate testGenerate; (name (identifier)))))))))) (end_generate - (END) - (GENERATE) (label))))) diff --git a/test/corpus/if_statement.vhd b/test/corpus/if_statement.vhd index bd097b3..a11b6b0 100644 --- a/test/corpus/if_statement.vhd +++ b/test/corpus/if_statement.vhd @@ -19,14 +19,10 @@ end process; (design_file (design_unit (process_statement - (PROCESS) - (sensitivity_specification - (ALL)) + (sensitivity_specification) (sequential_block - (BEGIN) (if_statement_block (if_statement - (IF) (relational_expression (simple_expression (name @@ -34,7 +30,6 @@ end process; (relational_operator) (simple_expression (decimal_integer))) - (THEN) (if_statement_body (simple_waveform_assignment (name @@ -51,7 +46,6 @@ end process; (name (identifier))))))))) (elsif_statement - (ELSIF) (relational_expression (simple_expression (name @@ -59,7 +53,6 @@ end process; (relational_operator) (simple_expression (decimal_integer))) - (THEN) (if_statement_body (simple_waveform_assignment (name @@ -76,7 +69,6 @@ end process; (name (identifier))))))))) (elsif_statement - (ELSIF) (relational_expression (simple_expression (name @@ -84,7 +76,6 @@ end process; (relational_operator) (simple_expression (decimal_integer))) - (THEN) (if_statement_body (simple_waveform_assignment (name @@ -101,7 +92,6 @@ end process; (name (identifier))))))))) (else_statement - (ELSE) (if_statement_body (simple_waveform_assignment (name @@ -117,10 +107,6 @@ end process; (simple_expression (name (identifier))))))))) - (end_if - (END) - (IF)))) - (end_process - (END) - (PROCESS))))) + (end_if))) + (end_process)))) diff --git a/test/corpus/library_constant_break.vhd b/test/corpus/library_constant_break.vhd index 7ac71da..955fddd 100644 --- a/test/corpus/library_constant_break.vhd +++ b/test/corpus/library_constant_break.vhd @@ -13,15 +13,11 @@ end Behaviour; (design_file (design_unit (architecture_definition - (ARCHITECTURE) (identifier) - (OF) (name (identifier)) - (architecture_head - (IS)) + (architecture_head) (concurrent_block - (BEGIN) (concurrent_simple_signal_assignment (name (identifier)) @@ -47,6 +43,5 @@ end Behaviour; (selection (identifier))))))))) (end_architecture - (END) (identifier))))) diff --git a/test/corpus/literals.vhd b/test/corpus/literals.vhd index b5383b9..794bf47 100644 --- a/test/corpus/literals.vhd +++ b/test/corpus/literals.vhd @@ -514,6 +514,5 @@ A <= null; (signal_assignment) (waveform (waveform_element - (simple_expression - (NULL))))))) + (simple_expression)))))) diff --git a/test/corpus/specification_examples/architecture.vhd b/test/corpus/specification_examples/architecture.vhd index c9497e7..52c8125 100644 --- a/test/corpus/specification_examples/architecture.vhd +++ b/test/corpus/specification_examples/architecture.vhd @@ -96,55 +96,42 @@ end architecture DataFlow; (design_file (design_unit (library_clause - (LIBRARY) (logical_name_list (library_namespace)))) (design_unit (use_clause - (USE) (selected_name (library_namespace) - (identifier) - (ALL)))) + (identifier)))) (design_unit (library_clause - (LIBRARY) (logical_name_list (library_namespace)))) (design_unit (use_clause - (USE) (selected_name (library_namespace) - (identifier) - (ALL)))) + (identifier)))) (design_unit (library_clause - (LIBRARY) (logical_name_list (library_namespace)))) (design_unit (use_clause - (USE) (selected_name (library_namespace) - (identifier) - (ALL)))) + (identifier)))) (design_unit (entity_declaration - (ENTITY) (identifier) (entity_head - (IS) (port_clause - (PORT) (interface_list (interface_declaration (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))))) @@ -152,28 +139,21 @@ end architecture DataFlow; (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type)))))))) (end_entity - (END) - (ENTITY) (identifier)))) (line_comment (comment_content)) (design_unit (architecture_definition - (ARCHITECTURE) (identifier) - (OF) (name (identifier)) (architecture_head - (IS) (signal_declaration - (SIGNAL) (identifier_list (identifier) (identifier)) @@ -182,7 +162,6 @@ end architecture DataFlow; (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -193,12 +172,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -209,12 +186,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -225,12 +200,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -241,12 +214,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -257,12 +228,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -273,12 +242,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -289,12 +256,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -305,12 +270,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -321,12 +284,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -337,12 +298,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -353,12 +312,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -369,12 +326,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -385,12 +340,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -401,12 +354,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -417,12 +368,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -433,12 +382,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -449,12 +396,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -465,12 +410,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -481,12 +424,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -497,12 +438,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -513,12 +452,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -529,12 +466,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -545,12 +480,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -561,12 +494,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -577,12 +508,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -593,12 +522,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -609,12 +536,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -625,12 +550,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -641,12 +564,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -657,12 +578,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -673,12 +592,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -689,12 +606,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -705,12 +620,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -721,12 +634,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -737,12 +648,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -753,12 +662,10 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type)))) (subprogram_declaration (function_specification - (FUNCTION) (identifier) (parameter_list_specification (interface_list @@ -769,22 +676,17 @@ end architecture DataFlow; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type))))) (concurrent_block - (BEGIN) (component_instantiation_statement (label_declaration (label)) (instantiated_unit - (ENTITY) (library_namespace) (name (identifier))) (port_map_aspect - (PORT) - (MAP) (association_list (association_element (name @@ -867,7 +769,6 @@ end architecture DataFlow; (name (identifier))))))))))))) (process_statement - (PROCESS) (sensitivity_specification (sensitivity_list (name @@ -877,9 +778,7 @@ end architecture DataFlow; (name (identifier)))) (process_head - (IS) (constant_declaration - (CONSTANT) (identifier_list (identifier)) (subtype_indication @@ -891,7 +790,6 @@ end architecture DataFlow; (simple_expression (decimal_float))))) (variable_declaration - (VARIABLE) (identifier_list (identifier)) (subtype_indication @@ -903,10 +801,8 @@ end architecture DataFlow; (simple_expression (decimal_integer)))))) (sequential_block - (BEGIN) (if_statement_block (if_statement - (IF) (simple_expression (parenthesis_expression (element_association_list @@ -923,7 +819,6 @@ end architecture DataFlow; (simple_expression (name (identifier))))))))))))))) - (THEN) (if_statement_body (simple_waveform_assignment (name @@ -934,7 +829,6 @@ end architecture DataFlow; (simple_expression (decimal_integer))))))) (else_statement - (ELSE) (if_statement_body (simple_waveform_assignment (name @@ -944,26 +838,19 @@ end architecture DataFlow; (waveform_element (simple_expression (decimal_integer))))))) - (end_if - (END) - (IF))) + (end_if)) (loop_statement (for_loop - (FOR) (parameter_specification (identifier) - (IN) (simple_range (simple_expression (decimal_integer)) - (TO) (simple_expression (decimal_integer))))) (loop_body - (LOOP) (case_statement (case_expression - (CASE) (simple_expression (parenthesis_expression (element_association_list @@ -987,10 +874,8 @@ end architecture DataFlow; (name (identifier)))))))))))))))) (case_body - (IS) (case_statement_alternative (when_element - (WHEN) (simple_expression (string_literal_std_logic))) (simple_waveform_assignment @@ -1016,7 +901,6 @@ end architecture DataFlow; (library_constant_std_logic))))))) (case_statement_alternative (when_element - (WHEN) (simple_expression (string_literal_std_logic))) (simple_waveform_assignment @@ -1041,9 +925,7 @@ end architecture DataFlow; (name (library_constant_std_logic))))))) (case_statement_alternative - (when_element - (WHEN) - (OTHERS)) + (when_element) (simple_waveform_assignment (name (identifier) @@ -1073,15 +955,9 @@ end architecture DataFlow; (simple_expression (name (identifier))))))))))))))) - (end_case - (END) - (CASE)))) - (end_loop - (END) - (LOOP)))) - (end_process - (END) - (PROCESS))) + (end_case))) + (end_loop))) + (end_process)) (concurrent_simple_signal_assignment (name (identifier)) @@ -1099,8 +975,5 @@ end architecture DataFlow; (name (identifier))))))))))))) (end_architecture - (END) - (ARCHITECTURE) (identifier))))) - diff --git a/test/corpus/specification_examples/entity.vhd b/test/corpus/specification_examples/entity.vhd index e36b027..a030a8a 100644 --- a/test/corpus/specification_examples/entity.vhd +++ b/test/corpus/specification_examples/entity.vhd @@ -11,12 +11,9 @@ end Full_Adder; (design_file (design_unit (entity_declaration - (ENTITY) (identifier) (entity_head - (IS) (port_clause - (PORT) (interface_list (interface_declaration (identifier_list @@ -24,8 +21,7 @@ end Full_Adder; (identifier) (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))))) @@ -34,13 +30,11 @@ end Full_Adder; (identifier) (identifier)) (simple_mode_indication - (mode - (OUT)) + (mode) (subtype_indication (name (library_type)))))))) (end_entity - (END) (identifier))))) ================================================================================ @@ -58,12 +52,9 @@ end entity AndGate; (design_file (design_unit (entity_declaration - (ENTITY) (identifier) (entity_head - (IS) (generic_clause - (GENERIC) (interface_list (interface_declaration (identifier_list @@ -78,14 +69,12 @@ end entity AndGate; (simple_expression (decimal_integer)))))))) (port_clause - (PORT) (interface_list (interface_declaration (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type) @@ -95,7 +84,6 @@ end entity AndGate; (simple_range (simple_expression (decimal_integer)) - (TO) (simple_expression (name (identifier))))))))))) @@ -103,14 +91,11 @@ end entity AndGate; (identifier_list (identifier)) (simple_mode_indication - (mode - (OUT)) + (mode) (subtype_indication (name (library_type)))))))) (end_entity - (END) - (ENTITY) (identifier))))) ================================================================================ @@ -125,12 +110,9 @@ end TestBench; (design_file (design_unit (entity_declaration - (ENTITY) (identifier) - (entity_head - (IS)) + (entity_head) (end_entity - (END) (identifier))))) ================================================================================ @@ -158,19 +140,15 @@ end ROM; (design_file (design_unit (entity_declaration - (ENTITY) (identifier) (entity_head - (IS) (port_clause - (PORT) (interface_list (interface_declaration (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (identifier))))) @@ -178,8 +156,7 @@ end ROM; (identifier_list (identifier)) (simple_mode_indication - (mode - (OUT)) + (mode) (subtype_indication (name (identifier))))) @@ -187,57 +164,41 @@ end ROM; (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))))))) (type_declaration - (TYPE) (identifier) - (IS) (array_type_definition - (ARRAY) (array_index_incomplete_type_list (index_constraint (simple_range (simple_expression (decimal_integer)) - (TO) (simple_expression (decimal_integer))))) - (OF) (subtype_indication (name (library_type))))) (type_declaration - (TYPE) (identifier) - (IS) (array_type_definition - (ARRAY) (array_index_incomplete_type_list (index_subtype_definition (name - (library_type)) - (RANGE) - (box))) - (OF) + (library_type)))) (subtype_indication (name (identifier))))) (use_clause - (USE) (selected_name (library_namespace) - (identifier) - (ALL)) + (identifier)) (selected_name (library_namespace) - (identifier) - (ALL))) + (identifier))) (constant_declaration - (CONSTANT) (identifier_list (identifier)) (subtype_indication @@ -337,7 +298,6 @@ end ROM; (line_comment (comment_content)))))))) (end_entity - (END) (identifier))))) ================================================================================ @@ -362,19 +322,15 @@ end; (design_file (design_unit (entity_declaration - (ENTITY) (identifier) (entity_head - (IS) (port_clause - (PORT) (interface_list (interface_declaration (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (identifier))))) @@ -382,8 +338,7 @@ end; (identifier_list (identifier)) (simple_mode_indication - (mode - (OUT)) + (mode) (subtype_indication (name (identifier))))) @@ -391,8 +346,7 @@ end; (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))))) @@ -400,13 +354,11 @@ end; (identifier_list (identifier)) (simple_mode_indication - (mode - (IN)) + (mode) (subtype_indication (name (library_type))))))) (constant_declaration - (CONSTANT) (identifier_list (identifier)) (subtype_indication @@ -419,7 +371,6 @@ end; (decimal_integer) (library_constant_unit))))) (constant_declaration - (CONSTANT) (identifier_list (identifier)) (subtype_indication @@ -432,16 +383,12 @@ end; (decimal_integer) (library_constant_unit))))) (use_clause - (USE) (selected_name (library_namespace) - (identifier) - (ALL)))) + (identifier)))) (entity_body - (BEGIN) (concurrent_assertion_statement (assertion - (ASSERT) (logical_expression (relational_expression (simple_expression @@ -495,5 +442,4 @@ end; (simple_expression (name (identifier))))))))))) - (end_entity - (END))))) + (end_entity)))) diff --git a/test/corpus/string_literal_std_logic.vhd b/test/corpus/string_literal_std_logic.vhd index 5fc3a19..59025f6 100644 --- a/test/corpus/string_literal_std_logic.vhd +++ b/test/corpus/string_literal_std_logic.vhd @@ -26,16 +26,12 @@ end Behaviour; (design_file (design_unit (architecture_definition - (ARCHITECTURE) (identifier) - (OF) (name (identifier)) (architecture_head - (IS) (subprogram_declaration (function_specification - (FUNCTION) (operator_symbol) (parameter_list_specification (interface_list @@ -47,11 +43,9 @@ end Behaviour; (subtype_indication (name (library_type))))))) - (RETURN) (name (library_type))))) (concurrent_block - (BEGIN) (concurrent_simple_signal_assignment (name (identifier)) @@ -185,6 +179,5 @@ end Behaviour; (line_comment (comment_content)) (end_architecture - (END) (identifier))))) diff --git a/test/corpus/tool_directives.vhd b/test/corpus/tool_directives.vhd index 97f58d8..0889160 100644 --- a/test/corpus/tool_directives.vhd +++ b/test/corpus/tool_directives.vhd @@ -19,32 +19,23 @@ end process; (design_file (design_unit (process_statement - (PROCESS) - (sensitivity_specification - (ALL)) + (sensitivity_specification) (sequential_block - (BEGIN) (if_conditional_analysis - (IF) (conditional_analysis_expression (conditional_analysis_relation (identifier) - (string_literal))) - (THEN)) + (string_literal)))) (loop_statement (for_loop - (FOR) (parameter_specification (identifier) - (IN) (simple_range (simple_expression (decimal_integer)) - (TO) (simple_expression (decimal_integer))))) (loop_body - (LOOP) (simple_variable_assignment (name (identifier)) @@ -66,25 +57,18 @@ end process; (simple_expression (name (identifier)))))))))))))) - (end_loop - (END) - (LOOP))) - (else_conditional_analysis - (ELSE)) + (end_loop)) + (else_conditional_analysis) (loop_statement (for_loop - (FOR) (parameter_specification (identifier) - (IN) (simple_range (simple_expression (decimal_integer)) - (TO) (simple_expression (decimal_integer))))) (loop_body - (LOOP) (simple_variable_assignment (name (identifier)) @@ -106,13 +90,7 @@ end process; (simple_expression (name (identifier)))))))))))))) - (end_loop - (END) - (LOOP)))) - (end_conditional_analysis - (END) - (IF)) - (end_process - (END) - (PROCESS))))) + (end_loop))) + (end_conditional_analysis) + (end_process)))) From ccaefd1d81365af96b45594a51b9d65ab4c33202 Mon Sep 17 00:00:00 2001 From: John-Philip Taylor Date: Sat, 6 Jul 2024 17:58:37 +0200 Subject: [PATCH 2/4] Removed the "double-alias" functions These sneaked in during the keyword->anonymous node find-and-replace --- grammar.js | 34 +++++------ src/grammar.json | 153 +++++++++++------------------------------------ 2 files changed, 51 insertions(+), 136 deletions(-) diff --git a/grammar.js b/grammar.js index 0994cb6..0030da5 100644 --- a/grammar.js +++ b/grammar.js @@ -249,7 +249,7 @@ module.exports = grammar({ ), selected_name: $ => seq( - $._logical_name, repeat(seq(".", choice($._identifier, alias(alias($.ALL, "all"), "all")))) + $._logical_name, repeat(seq(".", choice($._identifier, alias($.ALL, "all")))) ), // Library Units @@ -329,7 +329,7 @@ module.exports = grammar({ ), architecture_definition: $ => seq( - alias(alias($.ARCHITECTURE, "architecture"), "architecture"), $._identifier, alias($.OF, "of"), $.name, $.architecture_head, $.concurrent_block, $.end_architecture, ";" + alias($.ARCHITECTURE, "architecture"), $._identifier, alias($.OF, "of"), $.name, $.architecture_head, $.concurrent_block, $.end_architecture, ";" ), architecture_head: $ => seq( @@ -337,7 +337,7 @@ module.exports = grammar({ ), end_architecture: $ => seq( - alias($.END, "end"), optional(alias(alias($.ARCHITECTURE, "architecture"), "architecture")), optional($._identifier) + alias($.END, "end"), optional(alias($.ARCHITECTURE, "architecture")), optional($._identifier) ), package_definition: $ => seq( @@ -583,7 +583,7 @@ module.exports = grammar({ ), alias_declaration: $ => seq( - alias(alias($.ALIAS, "alias"), "alias"), $._alias_designator, optional(seq(":", $.subtype_indication)), alias($.IS, "is"), $.name, ";" + alias($.ALIAS, "alias"), $._alias_designator, optional(seq(":", $.subtype_indication)), alias($.IS, "is"), $.name, ";" ), component_declaration: $ => seq( @@ -609,7 +609,7 @@ module.exports = grammar({ ), disconnection_specification: $ => seq( - alias($.DISCONNECT, "disconnect"), $.guarded_signal_specification, alias(alias($.AFTER, "after"), "after"), $._expression, ";" + alias($.DISCONNECT, "disconnect"), $.guarded_signal_specification, alias($.AFTER, "after"), $._expression, ";" ), group_template_declaration: $ => seq( @@ -671,8 +671,8 @@ module.exports = grammar({ ), array_type_definition: $ => choice( - seq(alias(alias($.ARRAY, "array"), "array"), "(", $.array_index_incomplete_type_list, ")", alias($.OF, "of"), $._incomplete_subtype_indication), - seq(alias(alias($.ARRAY, "array"), "array"), $.index_constraint, alias($.OF, "of"), $.subtype_indication) + seq(alias($.ARRAY, "array"), "(", $.array_index_incomplete_type_list, ")", alias($.OF, "of"), $._incomplete_subtype_indication), + seq(alias($.ARRAY, "array"), $.index_constraint, alias($.OF, "of"), $.subtype_indication) ), array_index_incomplete_type_list: $ => seq( @@ -694,11 +694,11 @@ module.exports = grammar({ ), access_type_definition: $ => seq( - alias(alias($.ACCESS, "access"), "access"), $.subtype_indication, optional($.generic_map_aspect) + alias($.ACCESS, "access"), $.subtype_indication, optional($.generic_map_aspect) ), access_incomplete_type_definition: $ => seq( - alias(alias($.ACCESS, "access"), "access"), $._incomplete_subtype_indication + alias($.ACCESS, "access"), $._incomplete_subtype_indication ), file_type_definition: $ => seq( @@ -936,7 +936,7 @@ module.exports = grammar({ ), assertion: $ => seq( - alias(alias($.ASSERT, "assert"), "assert"), $._expression, optional($.report_expression), optional($.severity_expression) + alias($.ASSERT, "assert"), $._expression, optional($.report_expression), optional($.severity_expression) ), report_expression: $ => seq( @@ -1369,7 +1369,7 @@ module.exports = grammar({ $.identifier, $.character_literal, $.operator_symbol, - alias(alias($.ALL, "all"), "all") + alias($.ALL, "all") ), _literal: $ => choice( @@ -1717,7 +1717,7 @@ module.exports = grammar({ signal_list: $ => choice( seq($.name, repeat(seq(",", $.name))), alias($.OTHERS, "others"), - alias(alias($.ALL, "all"), "all") + alias($.ALL, "all") ), entity_specification: $ => seq( @@ -1726,7 +1726,7 @@ module.exports = grammar({ _entity_class: $ => choice( alias($.ENTITY, "entity"), - alias(alias($.ARCHITECTURE, "architecture"), "architecture"), + alias($.ARCHITECTURE, "architecture"), alias($.CONFIGURATION, "configuration"), alias($.PROCEDURE, "procedure"), alias($.FUNCTION, "function"), @@ -1750,7 +1750,7 @@ module.exports = grammar({ entity_name_list: $ => choice( seq($.entity_designator, repeat(seq(",", $.entity_designator))), alias($.OTHERS, "others"), - alias(alias($.ALL, "all"), "all") + alias($.ALL, "all") ), entity_designator: $ => seq( @@ -1859,7 +1859,7 @@ module.exports = grammar({ ), waveform_element: $ => seq( - $._expression, optional(seq(alias(alias($.AFTER, "after"), "after"), $._expression)), + $._expression, optional(seq(alias($.AFTER, "after"), $._expression)), ), force_mode: $ => choice( @@ -1970,7 +1970,7 @@ module.exports = grammar({ ), _process_sensitivity_list: $ => choice( - alias(alias($.ALL, "all"), "all"), + alias($.ALL, "all"), $.sensitivity_list ), @@ -1994,7 +1994,7 @@ module.exports = grammar({ instantiation_list: $ => choice( seq($._label, repeat(seq(",", $._label))), alias($.OTHERS, "others"), - alias(alias($.ALL, "all"), "all") + alias($.ALL, "all") ), binding_indication: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index d8def1c..279f1ab 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -256,13 +256,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" }, "named": false, "value": "all" @@ -921,13 +916,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ARCHITECTURE" - }, - "named": false, - "value": "architecture" + "type": "SYMBOL", + "name": "ARCHITECTURE" }, "named": false, "value": "architecture" @@ -1006,13 +996,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ARCHITECTURE" - }, - "named": false, - "value": "architecture" + "type": "SYMBOL", + "name": "ARCHITECTURE" }, "named": false, "value": "architecture" @@ -2394,13 +2379,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALIAS" - }, - "named": false, - "value": "alias" + "type": "SYMBOL", + "name": "ALIAS" }, "named": false, "value": "alias" @@ -2700,13 +2680,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "AFTER" - }, - "named": false, - "value": "after" + "type": "SYMBOL", + "name": "AFTER" }, "named": false, "value": "after" @@ -3080,13 +3055,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ARRAY" - }, - "named": false, - "value": "array" + "type": "SYMBOL", + "name": "ARRAY" }, "named": false, "value": "array" @@ -3124,13 +3094,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ARRAY" - }, - "named": false, - "value": "array" + "type": "SYMBOL", + "name": "ARRAY" }, "named": false, "value": "array" @@ -3260,13 +3225,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ACCESS" - }, - "named": false, - "value": "access" + "type": "SYMBOL", + "name": "ACCESS" }, "named": false, "value": "access" @@ -3295,13 +3255,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ACCESS" - }, - "named": false, - "value": "access" + "type": "SYMBOL", + "name": "ACCESS" }, "named": false, "value": "access" @@ -5030,13 +4985,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ASSERT" - }, - "named": false, - "value": "assert" + "type": "SYMBOL", + "name": "ASSERT" }, "named": false, "value": "assert" @@ -8037,13 +7987,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" }, "named": false, "value": "all" @@ -10076,13 +10021,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" }, "named": false, "value": "all" @@ -10121,13 +10061,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ARCHITECTURE" - }, - "named": false, - "value": "architecture" + "type": "SYMBOL", + "name": "ARCHITECTURE" }, "named": false, "value": "architecture" @@ -10336,13 +10271,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" }, "named": false, "value": "all" @@ -11018,13 +10948,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "AFTER" - }, - "named": false, - "value": "after" + "type": "SYMBOL", + "name": "AFTER" }, "named": false, "value": "after" @@ -11706,13 +11631,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" }, "named": false, "value": "all" @@ -11938,13 +11858,8 @@ { "type": "ALIAS", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" }, "named": false, "value": "all" From d315a62674118bc28224c91ba9de5e7c58086e9a Mon Sep 17 00:00:00 2001 From: John-Philip Taylor Date: Sat, 6 Jul 2024 18:07:55 +0200 Subject: [PATCH 3/4] Changed "all", "others", "default" and "open" back to explicit tree nodes --- grammar.js | 28 ++-- queries/Helix/highlights.scm | 8 +- queries/Neovim/highlights.scm | 8 +- src/grammar.json | 126 ++++-------------- src/node-types.json | 126 ++++++++++++++---- src/parser.c | 16 +-- test/corpus/if_statement.vhd | 3 +- .../specification_examples/architecture.vhd | 12 +- test/corpus/specification_examples/entity.vhd | 9 +- test/corpus/tool_directives.vhd | 3 +- 10 files changed, 176 insertions(+), 163 deletions(-) diff --git a/grammar.js b/grammar.js index 0030da5..df82908 100644 --- a/grammar.js +++ b/grammar.js @@ -249,7 +249,7 @@ module.exports = grammar({ ), selected_name: $ => seq( - $._logical_name, repeat(seq(".", choice($._identifier, alias($.ALL, "all")))) + $._logical_name, repeat(seq(".", choice($._identifier, $.ALL))) ), // Library Units @@ -1332,7 +1332,7 @@ module.exports = grammar({ _actual_part: $ => prec(21, choice( seq(optional(alias($.INERTIAL, "inertial")), $.conditional_expression), - alias($.OPEN, "open") + $.OPEN )), attribute: $ => seq( @@ -1369,7 +1369,7 @@ module.exports = grammar({ $.identifier, $.character_literal, $.operator_symbol, - alias($.ALL, "all") + $.ALL ), _literal: $ => choice( @@ -1421,7 +1421,7 @@ module.exports = grammar({ _element: $ => choice( $.simple_expression, $._range, - alias($.OTHERS, "others"), + $.OTHERS, $.choices ), @@ -1608,7 +1608,7 @@ module.exports = grammar({ ), generic_map_default: $ => seq( - alias($.GENERIC, "generic"), alias($.MAP, "map"), "(", alias($.DEFAULT, "default"), ")" + alias($.GENERIC, "generic"), alias($.MAP, "map"), "(", $.DEFAULT, ")" ), generic_map_aspect: $ => seq( @@ -1716,8 +1716,8 @@ module.exports = grammar({ signal_list: $ => choice( seq($.name, repeat(seq(",", $.name))), - alias($.OTHERS, "others"), - alias($.ALL, "all") + $.OTHERS, + $.ALL ), entity_specification: $ => seq( @@ -1749,8 +1749,8 @@ module.exports = grammar({ entity_name_list: $ => choice( seq($.entity_designator, repeat(seq(",", $.entity_designator))), - alias($.OTHERS, "others"), - alias($.ALL, "all") + $.OTHERS, + $.ALL ), entity_designator: $ => seq( @@ -1770,7 +1770,7 @@ module.exports = grammar({ ), file_open_information: $ => seq( - optional(seq(alias($.OPEN, "open"), $._expression)), alias($.IS, "is"), $.file_logical_name + optional(seq($.OPEN, $._expression)), alias($.IS, "is"), $.file_logical_name ), file_logical_name: $ => $._expression, @@ -1970,7 +1970,7 @@ module.exports = grammar({ ), _process_sensitivity_list: $ => choice( - alias($.ALL, "all"), + $.ALL, $.sensitivity_list ), @@ -1993,8 +1993,8 @@ module.exports = grammar({ instantiation_list: $ => choice( seq($._label, repeat(seq(",", $._label))), - alias($.OTHERS, "others"), - alias($.ALL, "all") + $.OTHERS, + $.ALL ), binding_indication: $ => seq( @@ -2004,7 +2004,7 @@ module.exports = grammar({ entity_aspect: $ => choice( seq(alias($.ENTITY, "entity"), $.name, optional(seq("(", $._identifier, ")"))), seq(alias($.CONFIGURATION, "configuration"), $.name), - alias($.OPEN, "open") + $.OPEN ), // Comments diff --git a/queries/Helix/highlights.scm b/queries/Helix/highlights.scm index 17090c7..079c48d 100644 --- a/queries/Helix/highlights.scm +++ b/queries/Helix/highlights.scm @@ -55,11 +55,11 @@ ] @keyword [ - "all" - "others" + (ALL) + (OTHERS) "<>" - "default" - "open" + (DEFAULT) + (OPEN) ] @constant.builtin [ diff --git a/queries/Neovim/highlights.scm b/queries/Neovim/highlights.scm index 5de07b5..9b075b3 100644 --- a/queries/Neovim/highlights.scm +++ b/queries/Neovim/highlights.scm @@ -57,11 +57,11 @@ ] @keyword [ - "all" - "others" + (ALL) + (OTHERS) "<>" - "default" - "open" + (DEFAULT) + (OPEN) ] @constant.builtin [ diff --git a/src/grammar.json b/src/grammar.json index 279f1ab..163b559 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -254,13 +254,8 @@ "name": "_identifier" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" } ] } @@ -7802,13 +7797,8 @@ ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "OPEN" - }, - "named": false, - "value": "open" + "type": "SYMBOL", + "name": "OPEN" } ] } @@ -7985,13 +7975,8 @@ "name": "operator_symbol" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" } ] }, @@ -8228,13 +8213,8 @@ "name": "_range" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "OTHERS" - }, - "named": false, - "value": "others" + "type": "SYMBOL", + "name": "OTHERS" }, { "type": "SYMBOL", @@ -9375,13 +9355,8 @@ "value": "(" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "DEFAULT" - }, - "named": false, - "value": "default" + "type": "SYMBOL", + "name": "DEFAULT" }, { "type": "STRING", @@ -10010,22 +9985,12 @@ ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "OTHERS" - }, - "named": false, - "value": "others" + "type": "SYMBOL", + "name": "OTHERS" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" } ] }, @@ -10260,22 +10225,12 @@ ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "OTHERS" - }, - "named": false, - "value": "others" + "type": "SYMBOL", + "name": "OTHERS" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" } ] }, @@ -10344,13 +10299,8 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "OPEN" - }, - "named": false, - "value": "open" + "type": "SYMBOL", + "name": "OPEN" }, { "type": "SYMBOL", @@ -11629,13 +11579,8 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" }, { "type": "SYMBOL", @@ -11847,22 +11792,12 @@ ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "OTHERS" - }, - "named": false, - "value": "others" + "type": "SYMBOL", + "name": "OTHERS" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "ALL" - }, - "named": false, - "value": "all" + "type": "SYMBOL", + "name": "ALL" } ] }, @@ -11990,13 +11925,8 @@ ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "OPEN" - }, - "named": false, - "value": "open" + "type": "SYMBOL", + "name": "OPEN" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 542af92..39744d1 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -432,8 +432,12 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ + { + "type": "OPEN", + "named": true + }, { "type": "conditional_expression", "named": true @@ -967,6 +971,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "OTHERS", + "named": true + }, { "type": "case_generate_body", "named": true @@ -1373,8 +1381,12 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ + { + "type": "OTHERS", + "named": true + }, { "type": "choices", "named": true @@ -2472,6 +2484,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "OTHERS", + "named": true + }, { "type": "choices", "named": true @@ -3137,8 +3153,12 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ + { + "type": "OPEN", + "named": true + }, { "type": "identifier", "named": true @@ -3388,8 +3408,16 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ + { + "type": "ALL", + "named": true + }, + { + "type": "OTHERS", + "named": true + }, { "type": "entity_designator", "named": true @@ -3670,6 +3698,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "OPEN", + "named": true + }, { "type": "condition_expression", "named": true @@ -4115,7 +4147,17 @@ { "type": "generic_map_default", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "DEFAULT", + "named": true + } + ] + } }, { "type": "group_constituent_list", @@ -4634,8 +4676,16 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ + { + "type": "ALL", + "named": true + }, + { + "type": "OTHERS", + "named": true + }, { "type": "label", "named": true @@ -6933,6 +6983,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "ALL", + "named": true + }, { "type": "identifier", "named": true @@ -7062,8 +7116,12 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ + { + "type": "ALL", + "named": true + }, { "type": "character_literal", "named": true @@ -7115,8 +7173,12 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ + { + "type": "ALL", + "named": true + }, { "type": "sensitivity_list", "named": true @@ -7440,8 +7502,16 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ + { + "type": "ALL", + "named": true + }, + { + "type": "OTHERS", + "named": true + }, { "type": "name", "named": true @@ -8380,8 +8450,12 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ + { + "type": "OTHERS", + "named": true + }, { "type": "choices", "named": true @@ -8626,6 +8700,22 @@ "type": "@", "named": false }, + { + "type": "ALL", + "named": true + }, + { + "type": "DEFAULT", + "named": true + }, + { + "type": "OPEN", + "named": true + }, + { + "type": "OTHERS", + "named": true + }, { "type": "[", "named": false @@ -8650,10 +8740,6 @@ "type": "alias", "named": false }, - { - "type": "all", - "named": false - }, { "type": "architecture", "named": false @@ -8794,10 +8880,6 @@ "type": "decimal_integer", "named": true }, - { - "type": "default", - "named": false - }, { "type": "directive_body", "named": true @@ -9006,18 +9088,10 @@ "type": "on", "named": false }, - { - "type": "open", - "named": false - }, { "type": "operator_symbol", "named": true }, - { - "type": "others", - "named": false - }, { "type": "out", "named": false diff --git a/src/parser.c b/src/parser.c index 6654fe5..6dd09e9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -668,7 +668,7 @@ static const char * const ts_symbol_names[] = { [sym_ACCESS] = "access", [sym_AFTER] = "after", [sym_ALIAS] = "alias", - [sym_ALL] = "all", + [sym_ALL] = "ALL", [sym__AND] = "_AND", [sym_ARCHITECTURE] = "architecture", [sym_ARRAY] = "array", @@ -686,7 +686,7 @@ static const char * const ts_symbol_names[] = { [sym_CONSTANT] = "constant", [sym_CONTEXT] = "context", [sym_COVER] = "COVER", - [sym_DEFAULT] = "default", + [sym_DEFAULT] = "DEFAULT", [sym_DISCONNECT] = "disconnect", [sym_DOWNTO] = "downto", [sym_ELSE] = "else", @@ -724,9 +724,9 @@ static const char * const ts_symbol_names[] = { [sym_NULL] = "null", [sym_OF] = "of", [sym_ON] = "on", - [sym_OPEN] = "open", + [sym_OPEN] = "OPEN", [sym__OR] = "_OR", - [sym_OTHERS] = "others", + [sym_OTHERS] = "OTHERS", [sym_OUT] = "out", [sym_PACKAGE] = "package", [sym_PARAMETER] = "parameter", @@ -2018,7 +2018,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_ALL] = { .visible = true, - .named = false, + .named = true, }, [sym__AND] = { .visible = false, @@ -2090,7 +2090,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_DEFAULT] = { .visible = true, - .named = false, + .named = true, }, [sym_DISCONNECT] = { .visible = true, @@ -2242,7 +2242,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_OPEN] = { .visible = true, - .named = false, + .named = true, }, [sym__OR] = { .visible = false, @@ -2250,7 +2250,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [sym_OTHERS] = { .visible = true, - .named = false, + .named = true, }, [sym_OUT] = { .visible = true, diff --git a/test/corpus/if_statement.vhd b/test/corpus/if_statement.vhd index a11b6b0..93bb30a 100644 --- a/test/corpus/if_statement.vhd +++ b/test/corpus/if_statement.vhd @@ -19,7 +19,8 @@ end process; (design_file (design_unit (process_statement - (sensitivity_specification) + (sensitivity_specification + (ALL)) (sequential_block (if_statement_block (if_statement diff --git a/test/corpus/specification_examples/architecture.vhd b/test/corpus/specification_examples/architecture.vhd index 59cc0fd..01a026c 100644 --- a/test/corpus/specification_examples/architecture.vhd +++ b/test/corpus/specification_examples/architecture.vhd @@ -101,21 +101,24 @@ end architecture DataFlow; (use_clause (selected_name (library_namespace) - (identifier))) + (identifier) + (ALL))) (library_clause (logical_name_list (library_namespace))) (use_clause (selected_name (library_namespace) - (identifier))) + (identifier) + (ALL))) (library_clause (logical_name_list (library_namespace))) (use_clause (selected_name (library_namespace) - (identifier))) + (identifier) + (ALL))) (entity_declaration (identifier) (entity_head @@ -919,7 +922,8 @@ end architecture DataFlow; (name (library_constant_std_logic))))))) (case_statement_alternative - (when_element) + (when_element + (OTHERS)) (simple_waveform_assignment (name (identifier) diff --git a/test/corpus/specification_examples/entity.vhd b/test/corpus/specification_examples/entity.vhd index a030a8a..0cc3279 100644 --- a/test/corpus/specification_examples/entity.vhd +++ b/test/corpus/specification_examples/entity.vhd @@ -194,10 +194,12 @@ end ROM; (use_clause (selected_name (library_namespace) - (identifier)) + (identifier) + (ALL)) (selected_name (library_namespace) - (identifier))) + (identifier) + (ALL))) (constant_declaration (identifier_list (identifier)) @@ -385,7 +387,8 @@ end; (use_clause (selected_name (library_namespace) - (identifier)))) + (identifier) + (ALL)))) (entity_body (concurrent_assertion_statement (assertion diff --git a/test/corpus/tool_directives.vhd b/test/corpus/tool_directives.vhd index 0889160..3a6940e 100644 --- a/test/corpus/tool_directives.vhd +++ b/test/corpus/tool_directives.vhd @@ -19,7 +19,8 @@ end process; (design_file (design_unit (process_statement - (sensitivity_specification) + (sensitivity_specification + (ALL)) (sequential_block (if_conditional_analysis (conditional_analysis_expression From 263fd49592ce78e79b4f69061765aa107ff20023 Mon Sep 17 00:00:00 2001 From: John-Philip Taylor Date: Sun, 7 Jul 2024 16:14:57 +0200 Subject: [PATCH 4/4] Added fields to various object names and identifiers --- grammar.js | 125 +- queries/Helix/highlights.scm | 98 +- queries/Neovim/highlights.scm | 106 +- src/grammar.json | 608 +- src/node-types.json | 2050 +- src/parser.c | 273144 ++++++++------- test/corpus/architecture_basic.vhd | 10 +- test/corpus/entity.vhd | 65 +- test/corpus/library_constant_break.vhd | 16 +- .../specification_examples/architecture.vhd | 376 +- .../specification_examples/configuration.vhd | 81 + test/corpus/specification_examples/entity.vhd | 155 +- test/corpus/string_literal_std_logic.vhd | 12 +- test/corpus/tool_directives.vhd | 30 +- test/highlight/architecture_basic.vhd | 18 +- 15 files changed, 143299 insertions(+), 133595 deletions(-) create mode 100644 test/corpus/specification_examples/configuration.vhd diff --git a/grammar.js b/grammar.js index df82908..64d951f 100644 --- a/grammar.js +++ b/grammar.js @@ -240,8 +240,8 @@ module.exports = grammar({ ), _logical_name: $ => choice( - $.library_namespace, - $._identifier + field("library", $.library_namespace), + field("library", $._identifier) ), selected_name_list: $ => seq( @@ -265,7 +265,7 @@ module.exports = grammar({ ), entity_declaration: $ => seq( - alias($.ENTITY, "entity"), $._identifier, $.entity_head, optional($.entity_body), $.end_entity, ";" + alias($.ENTITY, "entity"), field("entity", $._identifier), $.entity_head, optional($.entity_body), $.end_entity, ";" ), entity_head: $ => seq( @@ -281,11 +281,11 @@ module.exports = grammar({ ), end_entity: $ => seq( - alias($.END, "end"), optional(alias($.ENTITY, "entity")), optional($._identifier) + alias($.END, "end"), optional(alias($.ENTITY, "entity")), optional(field("entity", $._identifier)) ), configuration_declaration: $ => seq( - alias($.CONFIGURATION, "configuration"), $._identifier, alias($.OF, "of"), $.name, $.configuration_head, $.block_configuration, $.end_configuration, ";" + alias($.CONFIGURATION, "configuration"), field("configuration", $._identifier), alias($.OF, "of"), field("entity", $.name), $.configuration_head, $.block_configuration, $.end_configuration, ";" ), configuration_head: $ => seq( @@ -293,11 +293,11 @@ module.exports = grammar({ ), end_configuration: $ => seq( - alias($.END, "end"), optional(alias($.CONFIGURATION, "configuration")), optional($._identifier) + alias($.END, "end"), optional(alias($.CONFIGURATION, "configuration")), optional(field("configuration", $._identifier)) ), package_declaration: $ => seq( - alias($.PACKAGE, "package"), $._identifier, $.package_declaration_body, $.end_package, ";" + alias($.PACKAGE, "package"), field("package", $._identifier), $.package_declaration_body, $.end_package, ";" ), package_declaration_body: $ => seq( @@ -305,15 +305,15 @@ module.exports = grammar({ ), end_package: $ => seq( - alias($.END, "end"), optional(alias($.PACKAGE, "package")), optional($._identifier) + alias($.END, "end"), optional(alias($.PACKAGE, "package")), optional(field("package", $._identifier)) ), package_instantiation_declaration: $ => seq( - alias($.PACKAGE, "package"), $._identifier, alias($.IS, "is"), alias($.NEW, "new"), $.name, optional($.generic_map_aspect), ";" + alias($.PACKAGE, "package"), field("package", $._identifier), alias($.IS, "is"), alias($.NEW, "new"), $.name, optional($.generic_map_aspect), ";" ), interface_package_declaration: $ => seq( - alias($.PACKAGE, "package"), $._identifier, alias($.IS, "is"), alias($.NEW, "new"), $.name, $._interface_package_generic_map_aspect + alias($.PACKAGE, "package"), field("package", $._identifier), alias($.IS, "is"), alias($.NEW, "new"), $.name, $._interface_package_generic_map_aspect ), context_declaration: $ => seq( @@ -329,7 +329,7 @@ module.exports = grammar({ ), architecture_definition: $ => seq( - alias($.ARCHITECTURE, "architecture"), $._identifier, alias($.OF, "of"), $.name, $.architecture_head, $.concurrent_block, $.end_architecture, ";" + alias($.ARCHITECTURE, "architecture"), field("architecture", $._identifier), alias($.OF, "of"), field("entity", $.name), $.architecture_head, $.concurrent_block, $.end_architecture, ";" ), architecture_head: $ => seq( @@ -337,11 +337,11 @@ module.exports = grammar({ ), end_architecture: $ => seq( - alias($.END, "end"), optional(alias($.ARCHITECTURE, "architecture")), optional($._identifier) + alias($.END, "end"), optional(alias($.ARCHITECTURE, "architecture")), optional(field("architecture", $._identifier)) ), package_definition: $ => seq( - alias($.PACKAGE, "package"), alias($.BODY, "body"), $._identifier, $.package_definition_body, $.end_package_body, ";" + alias($.PACKAGE, "package"), alias($.BODY, "body"), field("package", $._identifier), $.package_definition_body, $.end_package_body, ";" ), package_definition_body: $ => seq( @@ -349,7 +349,7 @@ module.exports = grammar({ ), end_package_body: $ => seq( - alias($.END, "end"), optional(seq(alias($.PACKAGE, "package"), alias($.BODY, "body"))), optional($._identifier) + alias($.END, "end"), optional(seq(alias($.PACKAGE, "package"), alias($.BODY, "body"))), optional(field("package", $._identifier)) ), // Declaration Item Lists @@ -526,23 +526,26 @@ module.exports = grammar({ ), subprogram_end: $ => seq( - alias($.END, "end"), optional(choice(alias($.PROCEDURE, "procedure"), alias($.FUNCTION, "function"))), optional($._designator) + alias($.END, "end"), optional(choice(alias($.PROCEDURE, "procedure"), alias($.FUNCTION, "function"))), optional(field("function", $._designator)) ), subprogram_instantiation_declaration: $ => seq( - choice(alias($.PROCEDURE, "procedure"), alias($.FUNCTION, "function")), $._designator, alias($.IS, "is"), alias($.NEW, "new"), $.name, optional($.signature), optional($.generic_map_aspect), ";" + choice( + seq(alias($.PROCEDURE, "procedure"), field("procedure", $._designator)), + seq(alias($.FUNCTION, "function"), field("function", $._designator)) + ), alias($.IS, "is"), alias($.NEW, "new"), $.name, optional($.signature), optional($.generic_map_aspect), ";" ), type_declaration: $ => seq( - alias($.TYPE, "type"), $._identifier, optional(seq(alias($.IS, "is"), $._type_definition)), ";" + alias($.TYPE, "type"), field("type", $._identifier), optional(seq(alias($.IS, "is"), $._type_definition)), ";" ), subtype_declaration: $ => seq( - alias($.SUBTYPE, "subtype"), $._identifier, alias($.IS, "is"), $.subtype_indication, ";" + alias($.SUBTYPE, "subtype"), field("type", $._identifier), alias($.IS, "is"), $.subtype_indication, ";" ), mode_view_declaration: $ => seq( - alias($.VIEW, "view"), $._identifier, alias($.OF, "of"), $.subtype_indication, $.mode_view_body, $.end_view, ";" + alias($.VIEW, "view"), field("view", $._identifier), alias($.OF, "of"), $.subtype_indication, $.mode_view_body, $.end_view, ";" ), mode_view_body: $ => seq( @@ -550,7 +553,7 @@ module.exports = grammar({ ), end_view: $ => seq( - alias($.END, "end"), alias($.VIEW, "view"), optional($._identifier) + alias($.END, "end"), alias($.VIEW, "view"), optional(field("view", $._identifier)) ), constant_declaration: $ => seq( @@ -587,7 +590,7 @@ module.exports = grammar({ ), component_declaration: $ => seq( - alias($.COMPONENT, "component"), $._identifier, optional($.component_body), $.end_component, ";" + alias($.COMPONENT, "component"), field("component", $._identifier), optional($.component_body), $.end_component, ";" ), component_body: $ => choice( @@ -597,11 +600,11 @@ module.exports = grammar({ ), end_component: $ => seq( - alias($.END, "end"), optional(alias($.COMPONENT, "component")), optional($._identifier) + alias($.END, "end"), optional(alias($.COMPONENT, "component")), optional(field("component", $._identifier)) ), attribute_declaration: $ => seq( - alias($.ATTRIBUTE, "attribute"), $._identifier, ":", $.name, ";" + alias($.ATTRIBUTE, "attribute"), field("attribute", $._identifier), ":", field("type", $.name), ";" ), attribute_specification: $ => seq( @@ -635,7 +638,7 @@ module.exports = grammar({ ), interface_type_declaration: $ => seq( - alias($.TYPE, "type"), $._identifier, optional(seq(alias($.IS, "is"), $._incomplete_type_definition)) + alias($.TYPE, "type"), field("type", $._identifier), optional(seq(alias($.IS, "is"), $._incomplete_type_definition)) ), _incomplete_type_definition: $ => choice( @@ -690,7 +693,7 @@ module.exports = grammar({ )), index_subtype_definition: $ => seq( - $.name, alias($.RANGE, "range"), alias($.box, "<>") + field("type", $.name), alias($.RANGE, "range"), alias($.box, "<>") ), access_type_definition: $ => seq( @@ -702,15 +705,15 @@ module.exports = grammar({ ), file_type_definition: $ => seq( - alias($.FILE, "file"), alias($.OF, "of"), $.name + alias($.FILE, "file"), alias($.OF, "of"), field("type", $.name) ), file_incomplete_type_definition: $ => seq( - alias($.FILE, "file"), alias($.OF, "of"), $.incomplete_type_mark + alias($.FILE, "file"), alias($.OF, "of"), $._incomplete_type_mark ), subtype_indication: $ => seq( - optional($.resolution_indication), $.name, optional($.range_constraint) + optional($.resolution_indication), field("type", $.name), optional($.range_constraint) ), resolution_indication: $ => choice( @@ -736,8 +739,8 @@ module.exports = grammar({ $.unspecified_type_indication ), - incomplete_type_mark: $ => choice( - $.name, + _incomplete_type_mark: $ => choice( + field("type", $.name), $.unspecified_type_indication ), @@ -869,13 +872,9 @@ module.exports = grammar({ ), instantiated_unit: $ => choice( - seq(alias($.COMPONENT, "component"), $.name), // Optional "component" covered by procedure call - seq(alias($.ENTITY, "entity"), optional(seq($.library_namespace, ".")), $.name, optional($.architecture_identifier)), - seq(alias($.CONFIGURATION, "configuration"), $.name) - ), - - architecture_identifier: $ => seq( - "(", $._identifier, ")" + seq(alias($.COMPONENT, "component"), field("component", $.name)), // Optional "component" covered by procedure call + seq(alias($.ENTITY, "entity"), optional(seq(field("library", $.library_namespace), ".")), field("entity", $.name), optional(seq("(", field("architecture", $._identifier), ")"))), + seq(alias($.CONFIGURATION, "configuration"), field("configuration", $.name)) ), process_statement: $ => seq( @@ -1213,7 +1212,7 @@ module.exports = grammar({ ), name: $ => prec.left(21, seq( - seq($._direct_name, repeat($.name_selector)), + seq($._direct_name, repeat($._name_selector)), )), _direct_name: $ => prec.left(choice( @@ -1253,7 +1252,7 @@ module.exports = grammar({ $.library_type, ), - name_selector: $ => choice( + _name_selector: $ => choice( $.function_call, $.parenthesis_group, $.attribute, @@ -1344,21 +1343,21 @@ module.exports = grammar({ ), _attribute_designator: $ => choice( - $._attribute, - $.attribute_function, - $.attribute_impure_function, - $.attribute_mode_view, - $.attribute_pure_function, - $.attribute_range, - $.attribute_signal, - $.attribute_subtype, - $.attribute_type, - $.attribute_value, - $.library_attribute + field("attribute", $._attribute), + field("attribute", $.attribute_function), + field("attribute", $.attribute_impure_function), + field("attribute", $.attribute_mode_view), + field("attribute", $.attribute_pure_function), + field("attribute", $.attribute_range), + field("attribute", $.attribute_signal), + field("attribute", $.attribute_subtype), + field("attribute", $.attribute_type), + field("attribute", $.attribute_value), + field("attribute", $.library_attribute) ), signature: $ => seq( - "[", optional(seq($.name, repeat(seq(",", $.name)))), optional(seq(alias($.RETURN, "return"), $.name)), "]" + "[", optional(seq(field("type", $.name), repeat(seq(",", field("type", $.name))))), optional(seq(alias($.RETURN, "return"), field("type", $.name))), "]" ), selection: $ => seq( @@ -1373,7 +1372,7 @@ module.exports = grammar({ ), _literal: $ => choice( - seq($._abstract_literal, optional($._unit)), + seq($._abstract_literal, optional(field("unit", $._unit))), $.bit_string_literal, $.string_literal, $.string_literal_std_logic, @@ -1582,19 +1581,19 @@ module.exports = grammar({ ), procedure_specification: $ => prec.left(seq( - alias($.PROCEDURE, "procedure"), $._designator, optional($.subprogram_header), optional($.parameter_list_specification) + alias($.PROCEDURE, "procedure"), field("procedure", $._designator), optional($.subprogram_header), optional($.parameter_list_specification) )), interface_procedure_specification: $ => seq( - alias($.PROCEDURE, "procedure"), $._designator, optional($.parameter_list_specification) + alias($.PROCEDURE, "procedure"), field("procedure", $._designator), optional($.parameter_list_specification) ), function_specification: $ => seq( - optional(choice(alias($.PURE, "pure"), alias($.IMPURE, "impure"))), alias($.FUNCTION, "function"), $._designator, optional($.subprogram_header), optional($.parameter_list_specification), alias($.RETURN, "return"), optional(seq($._identifier, alias($.OF, "of"))), $.name + optional(choice(alias($.PURE, "pure"), alias($.IMPURE, "impure"))), alias($.FUNCTION, "function"), field("function", $._designator), optional($.subprogram_header), optional($.parameter_list_specification), alias($.RETURN, "return"), optional(seq($._identifier, alias($.OF, "of"))), field("type", $.name) ), interface_function_specification: $ => seq( - optional(choice(alias($.PURE, "pure"), alias($.IMPURE, "impure"))), alias($.FUNCTION, "function"), $._designator, optional($.parameter_list_specification), alias($.RETURN, "return"), $.name + optional(choice(alias($.PURE, "pure"), alias($.IMPURE, "impure"))), alias($.FUNCTION, "function"), field("function", $._designator), optional($.parameter_list_specification), alias($.RETURN, "return"), field("type", $.name) ), _interface_package_generic_map_aspect: $ => choice( @@ -1652,11 +1651,11 @@ module.exports = grammar({ ), record_mode_view_indication: $ => seq( - alias($.VIEW, "view"), $.name, optional(seq(alias($.OF, "of"), $.subtype_indication)) + alias($.VIEW, "view"), field("view", $.name), optional(seq(alias($.OF, "of"), $.subtype_indication)) ), array_mode_view_indication: $ => seq( - alias($.VIEW, "view"), "(", $.name, ")", optional(seq(alias($.OF, "of"), $.subtype_indication)) + alias($.VIEW, "view"), "(", field("view", $.name), ")", optional(seq(alias($.OF, "of"), $.subtype_indication)) ), mode_view_element_definition: $ => seq( @@ -1678,11 +1677,11 @@ module.exports = grammar({ ), element_record_mode_view_indication: $ => seq( - alias($.VIEW, "view"), $.name + alias($.VIEW, "view"), field("view", $.name) ), element_array_mode_view_indication: $ => seq( - alias($.VIEW, "view"), "(", $.name, ")" + alias($.VIEW, "view"), "(", field("view", $.name), ")" ), mode: $ => choice( @@ -1711,7 +1710,7 @@ module.exports = grammar({ ), guarded_signal_specification: $ => seq( - $.signal_list, ":", $.name + $.signal_list, ":", field("type", $.name) ), signal_list: $ => choice( @@ -2002,8 +2001,8 @@ module.exports = grammar({ ), entity_aspect: $ => choice( - seq(alias($.ENTITY, "entity"), $.name, optional(seq("(", $._identifier, ")"))), - seq(alias($.CONFIGURATION, "configuration"), $.name), + seq(alias($.ENTITY, "entity"), field("entity", $.name), optional(seq("(", field("architecture", $._identifier), ")"))), + seq(alias($.CONFIGURATION, "configuration"), field("configuration", $.name)), $.OPEN ), diff --git a/queries/Helix/highlights.scm b/queries/Helix/highlights.scm index 079c48d..d0b6d4f 100644 --- a/queries/Helix/highlights.scm +++ b/queries/Helix/highlights.scm @@ -298,25 +298,10 @@ (library_constant_std_logic) @constant.builtin -[ - (attribute_function) - (attribute_impure_function) - (attribute_mode_view) - (attribute_pure_function) - (attribute_range) - (attribute_signal) - (attribute_subtype) - (attribute_type) - (attribute_value) - (library_attribute) -] @attribute - (library_constant) @constant.builtin (library_function) @function.builtin -(library_type) @type.builtin - (library_constant_boolean) @constant.builtin.boolean (library_constant_character) @character @@ -337,79 +322,32 @@ "port" @constructor "map" @constructor) -(subtype_indication - (name - (identifier))) @type - (selection (identifier) @variable.other.member) -(attribute_identifier) @attribute - -(library_namespace) @namespace - -(library_clause - (logical_name_list - (identifier) @namespace)) - (use_clause (selected_name . (identifier) @namespace)) -(instantiated_unit - (name - . - (identifier) @namespace)) - -(function_specification - (operator_symbol) @function.builtin) - -(function_specification - (identifier) @function) - -(procedure_specification - (identifier) @function.method) - -(type_declaration - (identifier) @type) +(_ view: (_) @type) +(_ type: (_) @type) +(_ library: (_) @namespace) +(_ package: (_) @namespace) +(_ entity: (_) @namespace) +(_ component: (_) @namespace) +(_ configuration: (_) @type.parameter) +(_ architecture: (_) @type.parameter) +(_ function: (_) @function) +(_ procedure: (_) @function.method) +(_ attribute: (_) @attribute) + +(_ view: (name (_)) @type) +(_ type: (name (_)) @type) +(_ entity: (name (_)) @namespace) +(_ component: (name (_)) @namespace) +(_ configuration: (name (_)) @namespace) -(mode_view_declaration - (identifier) @type) - -(record_mode_view_indication - (name - (identifier) @type)) - -(package_declaration - (identifier) @namespace) - -(package_definition - (identifier) @namespace) - -(end_package - (identifier) @namespace) - -(end_package_body - (identifier) @namespace) - -(entity_declaration - (identifier) @namespace) - -(end_entity - (identifier) @namespace) - -(architecture_definition - "architecture" - (identifier) @type.parameter - "of" - (name - (identifier) @namespace)) - -(end_architecture - (identifier) @type.parameter) - -(subprogram_end - (identifier) @function) +(library_type) @type.builtin (ERROR) @error diff --git a/queries/Neovim/highlights.scm b/queries/Neovim/highlights.scm index 9b075b3..0dfb9ac 100644 --- a/queries/Neovim/highlights.scm +++ b/queries/Neovim/highlights.scm @@ -300,25 +300,10 @@ (library_constant_std_logic) @constant.builtin -[ - (attribute_function) - (attribute_impure_function) - (attribute_mode_view) - (attribute_pure_function) - (attribute_range) - (attribute_signal) - (attribute_subtype) - (attribute_type) - (attribute_value) - (library_attribute) -] @attribute.builtin - (library_constant) @constant.builtin (library_function) @function.builtin -(library_type) @type.builtin - (library_constant_boolean) @boolean (library_constant_character) @character @@ -339,39 +324,51 @@ "port" @constructor "map" @constructor) -(subtype_indication - (name - (identifier))) @type - (selection (identifier) @variable.member) -(attribute_identifier) @attribute - -(library_namespace) @module.builtin - -(library_clause - (logical_name_list - (identifier) @module)) - (use_clause (selected_name . (identifier) @module)) -(instantiated_unit - (name - . - (identifier) @module)) +(_ view: (_) @type) +(_ type: (_) @type) +(_ library: (_) @module) +(_ package: (_) @module) +(_ entity: (_) @module) +(_ component: (_) @module) +(_ configuration: (_) @property) +(_ architecture: (_) @property) +(_ function: (_) @function) +(_ procedure: (_) @function.method) +(_ attribute: (_) @attribute) + +(_ view: (name (_)) @type) +(_ type: (name (_)) @type) +(_ entity: (name (_)) @module) +(_ component: (name (_)) @module) +(_ configuration: (name (_)) @module) -(function_specification - (operator_symbol) @function.builtin) +(library_type) @type.builtin + +[ + (attribute_function) + (attribute_impure_function) + (attribute_mode_view) + (attribute_pure_function) + (attribute_range) + (attribute_signal) + (attribute_subtype) + (attribute_type) + (attribute_value) + (library_attribute) +] @attribute.builtin -(function_specification - (identifier) @function) +(library_namespace) @module.builtin -(procedure_specification - (identifier) @function.method) +(subtype_declaration + (identifier) @type.definition) (type_declaration (identifier) @type.definition) @@ -379,39 +376,4 @@ (mode_view_declaration (identifier) @type.definition) -(record_mode_view_indication - (name - (identifier) @type)) - -(package_declaration - (identifier) @module) - -(package_definition - (identifier) @module) - -(end_package - (identifier) @module) - -(end_package_body - (identifier) @module) - -(entity_declaration - (identifier) @module) - -(end_entity - (identifier) @module) - -(architecture_definition - "architecture" - (identifier) @property - "of" - (name - (identifier) @module)) - -(end_architecture - (identifier) @property) - -(subprogram_end - (identifier) @function) - (ERROR) @error diff --git a/src/grammar.json b/src/grammar.json index 163b559..a46f425 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -196,12 +196,20 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "library_namespace" + "type": "FIELD", + "name": "library", + "content": { + "type": "SYMBOL", + "name": "library_namespace" + } }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "library", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } } ] }, @@ -310,8 +318,12 @@ "value": "entity" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "entity", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "SYMBOL", @@ -468,8 +480,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "entity", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "BLANK" @@ -491,8 +507,12 @@ "value": "configuration" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "configuration", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "ALIAS", @@ -504,8 +524,12 @@ "value": "of" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "entity", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "SYMBOL", @@ -595,8 +619,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "configuration", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "BLANK" @@ -618,8 +646,12 @@ "value": "package" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "package", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "SYMBOL", @@ -701,8 +733,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "package", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "BLANK" @@ -724,8 +760,12 @@ "value": "package" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "package", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "ALIAS", @@ -780,8 +820,12 @@ "value": "package" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "package", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "ALIAS", @@ -918,8 +962,12 @@ "value": "architecture" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "architecture", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "ALIAS", @@ -931,8 +979,12 @@ "value": "of" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "entity", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "SYMBOL", @@ -1006,8 +1058,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "architecture", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "BLANK" @@ -1038,8 +1094,12 @@ "value": "body" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "package", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "SYMBOL", @@ -1123,8 +1183,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "package", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "BLANK" @@ -1823,8 +1887,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_designator" + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "_designator" + } }, { "type": "BLANK" @@ -1840,29 +1908,51 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "PROCEDURE" - }, - "named": false, - "value": "procedure" + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "PROCEDURE" + }, + "named": false, + "value": "procedure" + }, + { + "type": "FIELD", + "name": "procedure", + "content": { + "type": "SYMBOL", + "name": "_designator" + } + } + ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "FUNCTION" - }, - "named": false, - "value": "function" + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "FUNCTION" + }, + "named": false, + "value": "function" + }, + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "_designator" + } + } + ] } ] }, - { - "type": "SYMBOL", - "name": "_designator" - }, { "type": "ALIAS", "content": { @@ -1928,8 +2018,12 @@ "value": "type" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "CHOICE", @@ -1976,8 +2070,12 @@ "value": "subtype" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "ALIAS", @@ -2011,8 +2109,12 @@ "value": "view" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "view", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "ALIAS", @@ -2087,8 +2189,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "view", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "BLANK" @@ -2437,8 +2543,12 @@ "value": "component" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "component", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "CHOICE", @@ -2568,8 +2678,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "component", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "BLANK" @@ -2591,16 +2705,24 @@ "value": "attribute" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "STRING", "value": ":" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "STRING", @@ -2847,8 +2969,12 @@ "value": "type" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "CHOICE", @@ -3191,8 +3317,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "ALIAS", @@ -3284,8 +3414,12 @@ "value": "of" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] }, @@ -3312,7 +3446,7 @@ }, { "type": "SYMBOL", - "name": "incomplete_type_mark" + "name": "_incomplete_type_mark" } ] }, @@ -3332,8 +3466,12 @@ ] }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "CHOICE", @@ -3439,12 +3577,16 @@ } ] }, - "incomplete_type_mark": { + "_incomplete_type_mark": { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "SYMBOL", @@ -4375,8 +4517,12 @@ "value": "component" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "component", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] }, @@ -4399,8 +4545,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "library_namespace" + "type": "FIELD", + "name": "library", + "content": { + "type": "SYMBOL", + "name": "library_namespace" + } }, { "type": "STRING", @@ -4414,15 +4564,36 @@ ] }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "entity", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "architecture_identifier" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "architecture", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] }, { "type": "BLANK" @@ -4444,30 +4615,17 @@ "value": "configuration" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "configuration", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] } ] }, - "architecture_identifier": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, "process_statement": { "type": "SEQ", "members": [ @@ -7078,7 +7236,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "name_selector" + "name": "_name_selector" } } ] @@ -7263,7 +7421,7 @@ } ] }, - "name_selector": { + "_name_selector": { "type": "CHOICE", "members": [ { @@ -7829,48 +7987,92 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_attribute" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_attribute" + } }, { - "type": "SYMBOL", - "name": "attribute_function" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_function" + } }, { - "type": "SYMBOL", - "name": "attribute_impure_function" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_impure_function" + } }, { - "type": "SYMBOL", - "name": "attribute_mode_view" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_mode_view" + } }, { - "type": "SYMBOL", - "name": "attribute_pure_function" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_pure_function" + } }, { - "type": "SYMBOL", - "name": "attribute_range" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_range" + } }, { - "type": "SYMBOL", - "name": "attribute_signal" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_signal" + } }, { - "type": "SYMBOL", - "name": "attribute_subtype" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_subtype" + } }, { - "type": "SYMBOL", - "name": "attribute_type" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_type" + } }, { - "type": "SYMBOL", - "name": "attribute_value" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "attribute_value" + } }, { - "type": "SYMBOL", - "name": "library_attribute" + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "library_attribute" + } } ] }, @@ -7888,8 +8090,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "REPEAT", @@ -7901,8 +8107,12 @@ "value": "," }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] } @@ -7930,8 +8140,12 @@ "value": "return" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] }, @@ -7994,8 +8208,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_unit" + "type": "FIELD", + "name": "unit", + "content": { + "type": "SYMBOL", + "name": "_unit" + } }, { "type": "BLANK" @@ -9026,8 +9244,12 @@ "value": "procedure" }, { - "type": "SYMBOL", - "name": "_designator" + "type": "FIELD", + "name": "procedure", + "content": { + "type": "SYMBOL", + "name": "_designator" + } }, { "type": "CHOICE", @@ -9069,8 +9291,12 @@ "value": "procedure" }, { - "type": "SYMBOL", - "name": "_designator" + "type": "FIELD", + "name": "procedure", + "content": { + "type": "SYMBOL", + "name": "_designator" + } }, { "type": "CHOICE", @@ -9130,8 +9356,12 @@ "value": "function" }, { - "type": "SYMBOL", - "name": "_designator" + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "_designator" + } }, { "type": "CHOICE", @@ -9193,8 +9423,12 @@ ] }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] }, @@ -9242,8 +9476,12 @@ "value": "function" }, { - "type": "SYMBOL", - "name": "_designator" + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "_designator" + } }, { "type": "CHOICE", @@ -9267,8 +9505,12 @@ "value": "return" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] }, @@ -9596,8 +9838,12 @@ "value": "view" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "view", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "CHOICE", @@ -9644,8 +9890,12 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "view", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "STRING", @@ -9764,8 +10014,12 @@ "value": "view" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "view", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] }, @@ -9786,8 +10040,12 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "view", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "STRING", @@ -9951,8 +10209,12 @@ "value": ":" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] }, @@ -11876,8 +12138,12 @@ "value": "entity" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "entity", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { "type": "CHOICE", @@ -11890,8 +12156,12 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "_identifier" + "type": "FIELD", + "name": "architecture", + "content": { + "type": "SYMBOL", + "name": "_identifier" + } }, { "type": "STRING", @@ -11919,8 +12189,12 @@ "value": "configuration" }, { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "configuration", + "content": { + "type": "SYMBOL", + "name": "name" + } } ] }, diff --git a/src/node-types.json b/src/node-types.json index 39744d1..ec0eb2c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -133,7 +133,40 @@ { "type": "architecture_definition", "named": true, - "fields": {}, + "fields": { + "architecture": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + }, + "entity": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -149,26 +182,6 @@ { "type": "end_architecture", "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, - { - "type": "name", - "named": true } ] } @@ -272,33 +285,6 @@ ] } }, - { - "type": "architecture_identifier", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - } - ] - } - }, { "type": "array_index_incomplete_type_list", "named": true, @@ -325,15 +311,22 @@ { "type": "array_mode_view_indication", "named": true, - "fields": {}, + "fields": { + "view": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "name", - "named": true - }, { "type": "subtype_indication", "named": true @@ -506,55 +499,62 @@ { "type": "attribute", "named": true, - "fields": {}, + "fields": { + "attribute": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_function", + "named": true + }, + { + "type": "attribute_identifier", + "named": true + }, + { + "type": "attribute_impure_function", + "named": true + }, + { + "type": "attribute_mode_view", + "named": true + }, + { + "type": "attribute_pure_function", + "named": true + }, + { + "type": "attribute_range", + "named": true + }, + { + "type": "attribute_signal", + "named": true + }, + { + "type": "attribute_subtype", + "named": true + }, + { + "type": "attribute_type", + "named": true + }, + { + "type": "attribute_value", + "named": true + }, + { + "type": "library_attribute", + "named": true + } + ] + } + }, "children": { "multiple": false, - "required": true, + "required": false, "types": [ - { - "type": "attribute_function", - "named": true - }, - { - "type": "attribute_identifier", - "named": true - }, - { - "type": "attribute_impure_function", - "named": true - }, - { - "type": "attribute_mode_view", - "named": true - }, - { - "type": "attribute_pure_function", - "named": true - }, - { - "type": "attribute_range", - "named": true - }, - { - "type": "attribute_signal", - "named": true - }, - { - "type": "attribute_subtype", - "named": true - }, - { - "type": "attribute_type", - "named": true - }, - { - "type": "attribute_value", - "named": true - }, - { - "type": "library_attribute", - "named": true - }, { "type": "parenthesis_expression", "named": true @@ -565,82 +565,100 @@ { "type": "attribute_declaration", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, - { - "type": "name", - "named": true - } - ] + "fields": { + "attribute": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } } }, { "type": "attribute_specification", "named": true, - "fields": {}, + "fields": { + "attribute": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attribute_function", + "named": true + }, + { + "type": "attribute_identifier", + "named": true + }, + { + "type": "attribute_impure_function", + "named": true + }, + { + "type": "attribute_mode_view", + "named": true + }, + { + "type": "attribute_pure_function", + "named": true + }, + { + "type": "attribute_range", + "named": true + }, + { + "type": "attribute_signal", + "named": true + }, + { + "type": "attribute_subtype", + "named": true + }, + { + "type": "attribute_type", + "named": true + }, + { + "type": "attribute_value", + "named": true + }, + { + "type": "library_attribute", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, "types": [ - { - "type": "attribute_function", - "named": true - }, - { - "type": "attribute_identifier", - "named": true - }, - { - "type": "attribute_impure_function", - "named": true - }, - { - "type": "attribute_mode_view", - "named": true - }, - { - "type": "attribute_pure_function", - "named": true - }, - { - "type": "attribute_range", - "named": true - }, - { - "type": "attribute_signal", - "named": true - }, - { - "type": "attribute_subtype", - "named": true - }, - { - "type": "attribute_type", - "named": true - }, - { - "type": "attribute_value", - "named": true - }, { "type": "conditional_expression", "named": true @@ -648,10 +666,6 @@ { "type": "entity_specification", "named": true - }, - { - "type": "library_attribute", - "named": true } ] } @@ -1471,7 +1485,30 @@ { "type": "component_declaration", "named": true, - "fields": {}, + "fields": { + "component": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -1483,22 +1520,6 @@ { "type": "end_component", "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true } ] } @@ -2018,7 +2039,40 @@ { "type": "configuration_declaration", "named": true, - "fields": {}, + "fields": { + "configuration": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + }, + "entity": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -2034,26 +2088,6 @@ { "type": "end_configuration", "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, - { - "type": "name", - "named": true } ] } @@ -2464,16 +2498,17 @@ { "type": "element_array_mode_view_indication", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "name", - "named": true - } - ] + "fields": { + "view": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } } }, { @@ -2560,16 +2595,17 @@ { "type": "element_record_mode_view_indication", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "name", - "named": true - } - ] + "fields": { + "view": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } } }, { @@ -2780,28 +2816,29 @@ { "type": "end_architecture", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - } - ] + "fields": { + "architecture": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } } }, { @@ -2837,6 +2874,67 @@ { "type": "end_component", "named": true, + "fields": { + "component": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + } + }, + { + "type": "end_conditional_analysis", + "named": true, + "fields": {} + }, + { + "type": "end_configuration", + "named": true, + "fields": { + "configuration": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + } + }, + { + "type": "end_context", + "named": true, "fields": {}, "children": { "multiple": false, @@ -2862,98 +2960,40 @@ } }, { - "type": "end_conditional_analysis", + "type": "end_entity", + "named": true, + "fields": { + "entity": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + } + }, + { + "type": "end_for", "named": true, "fields": {} }, { - "type": "end_configuration", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - } - ] - } - }, - { - "type": "end_context", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - } - ] - } - }, - { - "type": "end_entity", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - } - ] - } - }, - { - "type": "end_for", - "named": true, - "fields": {} - }, - { - "type": "end_generate", + "type": "end_generate", "named": true, "fields": {}, "children": { @@ -3000,55 +3040,57 @@ { "type": "end_package", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - } - ] + "fields": { + "package": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } } }, { "type": "end_package_body", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - } - ] + "fields": { + "package": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } } }, { @@ -3123,61 +3165,85 @@ { "type": "end_view", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - } - ] + "fields": { + "view": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } } }, { "type": "entity_aspect", "named": true, - "fields": {}, + "fields": { + "architecture": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + }, + "configuration": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "entity": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ { "type": "OPEN", "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, - { - "type": "name", - "named": true } ] } @@ -3228,7 +3294,30 @@ { "type": "entity_declaration", "named": true, - "fields": {}, + "fields": { + "entity": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -3244,22 +3333,6 @@ { "type": "entity_head", "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true } ] } @@ -3647,13 +3720,24 @@ { "type": "file_incomplete_type_definition", "named": true, - "fields": {}, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "incomplete_type_mark", + "type": "unspecified_type_indication", "named": true } ] @@ -3732,16 +3816,17 @@ { "type": "file_type_definition", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "name", - "named": true - } - ] + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } } }, { @@ -3818,10 +3903,47 @@ { "type": "function_specification", "named": true, - "fields": {}, + "fields": { + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + }, + { + "type": "operator_symbol", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3839,14 +3961,6 @@ "type": "library_type", "named": true }, - { - "type": "name", - "named": true - }, - { - "type": "operator_symbol", - "named": true - }, { "type": "parameter_list_specification", "named": true @@ -4274,15 +4388,22 @@ { "type": "guarded_signal_specification", "named": true, - "fields": {}, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "name", - "named": true - }, { "type": "signal_list", "named": true @@ -4559,25 +4680,6 @@ ] } }, - { - "type": "incomplete_type_mark", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "name", - "named": true - }, - { - "type": "unspecified_type_indication", - "named": true - } - ] - } - }, { "type": "index_constraint", "named": true, @@ -4616,16 +4718,17 @@ { "type": "index_subtype_definition", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "name", - "named": true - } - ] + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } } }, { @@ -4650,24 +4753,69 @@ { "type": "instantiated_unit", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "architecture_identifier", - "named": true - }, - { - "type": "library_namespace", - "named": true - }, - { - "type": "name", - "named": true - } - ] + "fields": { + "architecture": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + }, + "component": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "configuration": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "entity": { + "multiple": false, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "library": { + "multiple": false, + "required": false, + "types": [ + { + "type": "library_namespace", + "named": true + } + ] + } } }, { @@ -4774,35 +4922,48 @@ { "type": "interface_function_specification", "named": true, - "fields": {}, + "fields": { + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + }, + { + "type": "operator_symbol", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, - { - "type": "name", - "named": true - }, - { - "type": "operator_symbol", - "named": true - }, { "type": "parameter_list_specification", "named": true @@ -4856,7 +5017,30 @@ { "type": "interface_package_declaration", "named": true, - "fields": {}, + "fields": { + "package": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -4873,22 +5057,6 @@ "type": "generic_map_default", "named": true }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "name", "named": true @@ -4899,31 +5067,38 @@ { "type": "interface_procedure_specification", "named": true, - "fields": {}, + "fields": { + "procedure": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + }, + { + "type": "operator_symbol", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, - { - "type": "operator_symbol", - "named": true - }, { "type": "parameter_list_specification", "named": true @@ -4984,10 +5159,33 @@ { "type": "interface_type_declaration", "named": true, - "fields": {}, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ { "type": "access_incomplete_type_definition", @@ -5009,26 +5207,10 @@ "type": "floating_incomplete_type_definition", "named": true }, - { - "type": "identifier", - "named": true - }, { "type": "integer_incomplete_type_definition", "named": true }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "physical_incomplete_type_definition", "named": true @@ -5137,51 +5319,52 @@ "named": true }, { - "type": "relational_expression", - "named": true - }, - { - "type": "shift_expression", - "named": true - }, - { - "type": "simple_expression", - "named": true - } - ] - } - }, - { - "type": "logical_name_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", + "type": "relational_expression", "named": true }, { - "type": "library_namespace", + "type": "shift_expression", "named": true }, { - "type": "library_type", + "type": "simple_expression", "named": true } ] } }, + { + "type": "logical_name_list", + "named": true, + "fields": { + "library": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_namespace", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + } + }, { "type": "logical_operator", "named": true, @@ -5332,7 +5515,30 @@ { "type": "mode_view_declaration", "named": true, - "fields": {}, + "fields": { + "view": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -5341,22 +5547,6 @@ "type": "end_view", "named": true }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "mode_view_body", "named": true @@ -5408,6 +5598,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "attribute", + "named": true + }, { "type": "character_literal", "named": true @@ -5424,6 +5618,10 @@ "type": "external_variable_name", "named": true }, + { + "type": "function_call", + "named": true + }, { "type": "identifier", "named": true @@ -5444,32 +5642,9 @@ "type": "library_type", "named": true }, - { - "type": "name_selector", - "named": true - }, { "type": "operator_symbol", "named": true - } - ] - } - }, - { - "type": "name_selector", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "function_call", - "named": true }, { "type": "parenthesis_group", @@ -5527,7 +5702,30 @@ { "type": "package_declaration", "named": true, - "fields": {}, + "fields": { + "package": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -5536,22 +5734,6 @@ "type": "end_package", "named": true }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "package_declaration_body", "named": true @@ -5653,7 +5835,30 @@ { "type": "package_definition", "named": true, - "fields": {}, + "fields": { + "package": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -5662,22 +5867,6 @@ "type": "end_package_body", "named": true }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "package_definition_body", "named": true @@ -5786,7 +5975,30 @@ { "type": "package_instantiation_declaration", "named": true, - "fields": {}, + "fields": { + "package": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -5795,22 +6007,6 @@ "type": "generic_map_aspect", "named": true }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "name", "named": true @@ -6150,31 +6346,38 @@ { "type": "procedure_specification", "named": true, - "fields": {}, + "fields": { + "procedure": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + }, + { + "type": "operator_symbol", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, - { - "type": "operator_symbol", - "named": true - }, { "type": "parameter_list_specification", "named": true @@ -6629,15 +6832,22 @@ { "type": "record_mode_view_indication", "named": true, - "fields": {}, + "fields": { + "view": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "name", - "named": true - }, { "type": "subtype_indication", "named": true @@ -6978,10 +7188,37 @@ { "type": "selected_name", "named": true, - "fields": {}, + "fields": { + "library": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_namespace", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "ALL", @@ -6999,10 +7236,6 @@ "type": "library_function", "named": true }, - { - "type": "library_namespace", - "named": true - }, { "type": "library_type", "named": true @@ -7522,22 +7755,38 @@ { "type": "signature", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "name", - "named": true - } - ] + "fields": { + "type": { + "multiple": true, + "required": false, + "types": [ + { + "type": "name", + "named": true + } + ] + } } }, { "type": "simple_expression", "named": true, - "fields": {}, + "fields": { + "unit": { + "multiple": false, + "required": false, + "types": [ + { + "type": "library_constant_unit", + "named": true + }, + { + "type": "unit", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -7594,10 +7843,6 @@ "type": "library_constant_standard", "named": true }, - { - "type": "library_constant_unit", - "named": true - }, { "type": "logical_expression", "named": true @@ -7641,10 +7886,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unit", - "named": true } ] } @@ -7876,32 +8117,33 @@ { "type": "subprogram_end", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, - { - "type": "operator_symbol", - "named": true - } - ] + "fields": { + "function": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + }, + { + "type": "operator_symbol", + "named": true + } + ] + } } }, { @@ -8005,7 +8247,60 @@ { "type": "subprogram_instantiation_declaration", "named": true, - "fields": {}, + "fields": { + "function": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + }, + { + "type": "operator_symbol", + "named": true + } + ] + }, + "procedure": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + }, + { + "type": "operator_symbol", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -8014,30 +8309,10 @@ "type": "generic_map_aspect", "named": true }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "name", "named": true }, - { - "type": "operator_symbol", - "named": true - }, { "type": "signature", "named": true @@ -8048,27 +8323,34 @@ { "type": "subtype_declaration", "named": true, - "fields": {}, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "subtype_indication", "named": true @@ -8079,15 +8361,22 @@ { "type": "subtype_indication", "named": true, - "fields": {}, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ - { - "type": "name", - "named": true - }, { "type": "range_constraint", "named": true @@ -8133,10 +8422,33 @@ { "type": "type_declaration", "named": true, - "fields": {}, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "library_constant", + "named": true + }, + { + "type": "library_function", + "named": true + }, + { + "type": "library_type", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ { "type": "access_type_definition", @@ -8154,22 +8466,6 @@ "type": "file_type_definition", "named": true }, - { - "type": "identifier", - "named": true - }, - { - "type": "library_constant", - "named": true - }, - { - "type": "library_function", - "named": true - }, - { - "type": "library_type", - "named": true - }, { "type": "physical_type_definition", "named": true diff --git a/src/parser.c b/src/parser.c index 6dd09e9..9109d52 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8131 +#define STATE_COUNT 8352 #define LARGE_STATE_COUNT 366 #define SYMBOL_COUNT 605 #define ALIAS_COUNT 3 #define TOKEN_COUNT 204 #define EXTERNAL_TOKEN_COUNT 167 -#define FIELD_COUNT 0 +#define FIELD_COUNT 12 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 5 +#define PRODUCTION_ID_COUNT 53 enum ts_symbol_identifiers { anon_sym_SEMI = 1, @@ -312,7 +312,7 @@ enum ts_symbol_identifiers { sym_record_resolution = 294, sym_record_element_resolution = 295, sym__incomplete_subtype_indication = 296, - sym_incomplete_type_mark = 297, + sym__incomplete_type_mark = 297, sym_concurrent_block = 298, sym_sequential_block = 299, sym_generate_body = 300, @@ -335,277 +335,277 @@ enum ts_symbol_identifiers { sym_sequential_block_head = 317, sym_component_instantiation_statement = 318, sym_instantiated_unit = 319, - sym_architecture_identifier = 320, - sym_process_statement = 321, - sym_sensitivity_specification = 322, - sym_process_head = 323, - sym_end_process = 324, - sym_case_generate_statement = 325, - sym_case_generate_block = 326, - sym_for_generate_statement = 327, - sym_if_generate_statement = 328, - sym_if_generate = 329, - sym_elsif_generate = 330, - sym_else_generate = 331, - sym_end_generate = 332, - sym_assertion_statement = 333, - sym_concurrent_assertion_statement = 334, - sym_assertion = 335, - sym_report_expression = 336, - sym_severity_expression = 337, - sym_case_statement = 338, - sym_case_expression = 339, - sym_case_body = 340, - sym_end_case = 341, - sym_exit_statement = 342, - sym_when_expression = 343, - sym_if_statement_block = 344, - sym_if_statement = 345, - sym_if_statement_body = 346, - sym_elsif_statement = 347, - sym_else_statement = 348, - sym_end_if = 349, - sym_loop_statement = 350, - sym__iteration_scheme = 351, - sym_loop_body = 352, - sym_end_loop = 353, - sym_next_statement = 354, - sym_null_statement = 355, - sym_procedure_call_statement = 356, - sym_concurrent_procedure_call_statement = 357, - sym_report_statement = 358, - sym_return_statement = 359, - sym_signal_assignment = 360, - sym_simple_waveform_assignment = 361, - sym_simple_variable_assignment = 362, - sym_concurrent_simple_signal_assignment = 363, - sym_simple_force_assignment = 364, - sym_simple_release_assignment = 365, - sym_conditional_signal_assignment = 366, - sym_concurrent_conditional_signal_assignment = 367, - sym_selected_waveform_assignment = 368, - sym_concurrent_selected_signal_assignment = 369, - sym_selected_force_assignment = 370, - sym_selected_variable_assignment = 371, - sym_with_expression = 372, - sym_select_target = 373, - sym_wait_statement = 374, - sym_conditional_expression = 375, - sym_else_expression = 376, - sym__expression = 377, - sym_condition_expression = 378, - sym_logical_expression = 379, - sym_relational_expression = 380, - sym_shift_expression = 381, - sym_simple_expression = 382, - sym_unary_operator = 383, - sym_logical_operator = 384, - sym_relational_operator = 385, - sym_shift_operator = 386, - sym_sign = 387, - sym_adding_operator = 388, - sym_multiplying_operator = 389, - sym__primary = 390, - sym_name = 391, - sym__direct_name = 392, - sym__label = 393, - sym__attribute = 394, - sym__unit = 395, - sym__identifier = 396, - sym_name_selector = 397, - sym__external_name = 398, - sym_external_constant_name = 399, - sym_external_signal_name = 400, - sym_external_variable_name = 401, - sym__external_pathname = 402, - sym_package_pathname = 403, - sym_absolute_pathname = 404, - sym_relative_pathname = 405, - sym_partial_pathname = 406, - sym_pathname_element = 407, - sym_function_call = 408, - sym_parenthesis_group = 409, - sym_association_or_range_list = 410, - sym__association_or_range = 411, - sym_association_element = 412, - sym__actual_part = 413, - sym_attribute = 414, - sym__attribute_designator = 415, - sym_signature = 416, - sym_selection = 417, - sym__suffix = 418, - sym__literal = 419, - sym_bit_string_literal = 420, - sym__abstract_literal = 421, - sym_based_literal = 422, - sym_allocator = 423, - sym_parenthesis_expression = 424, - sym_element_association_list = 425, - sym_element_association = 426, - sym__element = 427, - sym_choices = 428, - sym__range = 429, - sym_simple_range = 430, - sym__direction = 431, - sym__tool_directive = 432, - sym__directive = 433, - sym_user_directive = 434, - sym_protect_directive = 435, - sym_warning_directive = 436, - sym_error_directive = 437, - sym_if_conditional_analysis = 438, - sym_elsif_conditional_analysis = 439, - sym_else_conditional_analysis = 440, - sym_end_conditional_analysis = 441, - sym_conditional_analysis_expression = 442, - sym_conditional_analysis_relation = 443, - sym__conditional_analysis_operator = 444, - sym__conditional_analysis_identifier = 445, - sym__configuration_declarative_item = 446, - sym__configuration_item = 447, - sym_block_configuration = 448, - sym_component_configuration = 449, - sym_end_for = 450, - sym_interface_list = 451, - sym__interface_declaration = 452, - sym_interface_declaration = 453, - sym_interface_constant_declaration = 454, - sym_interface_signal_declaration = 455, - sym_interface_variable_declaration = 456, - sym_interface_subprogram_declaration = 457, - sym__interface_subprogram_specification = 458, - sym_procedure_specification = 459, - sym_interface_procedure_specification = 460, - sym_function_specification = 461, - sym_interface_function_specification = 462, - sym__interface_package_generic_map_aspect = 463, - sym_generic_map_any = 464, - sym_generic_map_default = 465, - sym_generic_map_aspect = 466, - sym_port_map_aspect = 467, - sym_association_list = 468, - sym__interface_subprogram_default = 469, - sym__designator = 470, - sym_identifier_list = 471, - sym__mode_indication = 472, - sym_simple_mode_indication = 473, - sym__mode_view_indication = 474, - sym_record_mode_view_indication = 475, - sym_array_mode_view_indication = 476, - sym_mode_view_element_definition = 477, - sym_record_element_list = 478, - sym__element_mode_indication = 479, - sym__element_mode_view_indication = 480, - sym_element_record_mode_view_indication = 481, - sym_element_array_mode_view_indication = 482, - sym_mode = 483, - sym_range_constraint = 484, - sym_group_constituent_list = 485, - sym_entity_class_entry_list = 486, - sym_entity_class_entry = 487, - sym_guarded_signal_specification = 488, - sym_signal_list = 489, - sym_entity_specification = 490, - sym__entity_class = 491, - sym_entity_name_list = 492, - sym_entity_designator = 493, - sym__entity_tag = 494, - sym__alias_designator = 495, - sym_file_open_information = 496, - sym_file_logical_name = 497, - sym_package_header = 498, - sym_generic_clause = 499, - sym_subprogram_header = 500, - sym__subprogram_specification = 501, - sym_parameter_list_specification = 502, - sym__type_definition = 503, - sym_protected_type_instantiation_definition = 504, - sym_protected_type_declaration = 505, - sym_protected_type_declaration_end = 506, - sym_protected_type_header = 507, - sym_protected_type_body = 508, - sym_protected_type_body_end = 509, - sym_while_loop = 510, - sym_for_loop = 511, - sym_parameter_specification = 512, - sym_case_statement_alternative = 513, - sym_selected_waveforms = 514, - sym_waveform = 515, - sym_waveform_element = 516, - sym_force_mode = 517, - sym_selected_expressions = 518, - sym_when_element = 519, - sym_conditional_waveforms = 520, - sym_else_waveform = 521, - sym_delay_mechanism = 522, - sym__target = 523, - sym_aggregate = 524, - sym_conditional_or_unaffected_expression = 525, - sym_else_expression_or_unaffected = 526, - sym__expression_or_unaffected = 527, - sym_label_declaration = 528, - sym_sensitivity_clause = 529, - sym_sensitivity_list = 530, - sym_condition_clause = 531, - sym_timeout_clause = 532, - sym_physical_type_definition = 533, - sym_primary_unit_declaration = 534, - sym_secondary_unit_declaration = 535, - sym_end_units = 536, - sym_enumeration_type_definition = 537, - sym_enumeration_literal = 538, - sym_record_type_definition = 539, - sym_end_record = 540, - sym_element_declaration = 541, - sym__process_sensitivity_list = 542, - sym_configuration_specification = 543, - sym_verification_unit_binding_indication = 544, - sym_verification_unit_list = 545, - sym_component_specification = 546, - sym_instantiation_list = 547, - sym_binding_indication = 548, - sym_entity_aspect = 549, - sym_line_comment = 550, - sym_block_comment = 551, - aux_sym_design_file_repeat1 = 552, - aux_sym_design_unit_repeat1 = 553, - aux_sym_design_unit_repeat2 = 554, - aux_sym_design_unit_repeat3 = 555, - aux_sym_use_clause_repeat1 = 556, - aux_sym_logical_name_list_repeat1 = 557, - aux_sym_selected_name_repeat1 = 558, - aux_sym_entity_head_repeat1 = 559, - aux_sym_entity_body_repeat1 = 560, - aux_sym_configuration_head_repeat1 = 561, - aux_sym_configuration_head_repeat2 = 562, - aux_sym_package_declaration_body_repeat1 = 563, - aux_sym_package_definition_body_repeat1 = 564, - aux_sym_subprogram_head_repeat1 = 565, - aux_sym_mode_view_body_repeat1 = 566, - aux_sym_array_index_incomplete_type_list_repeat1 = 567, - aux_sym_index_constraint_repeat1 = 568, - aux_sym_record_resolution_repeat1 = 569, - aux_sym_sequential_block_repeat1 = 570, - aux_sym_sequential_block_head_repeat1 = 571, - aux_sym_case_generate_block_repeat1 = 572, - aux_sym_if_generate_statement_repeat1 = 573, - aux_sym_case_body_repeat1 = 574, - aux_sym_if_statement_block_repeat1 = 575, - aux_sym_conditional_expression_repeat1 = 576, - aux_sym_name_repeat1 = 577, - aux_sym_package_pathname_repeat1 = 578, - aux_sym_relative_pathname_repeat1 = 579, - aux_sym_partial_pathname_repeat1 = 580, - aux_sym_association_or_range_list_repeat1 = 581, - aux_sym_signature_repeat1 = 582, - aux_sym_element_association_list_repeat1 = 583, - aux_sym_user_directive_repeat1 = 584, - aux_sym_conditional_analysis_expression_repeat1 = 585, - aux_sym_block_configuration_repeat1 = 586, - aux_sym_block_configuration_repeat2 = 587, - aux_sym_interface_list_repeat1 = 588, - aux_sym_association_list_repeat1 = 589, - aux_sym_identifier_list_repeat1 = 590, + sym_process_statement = 320, + sym_sensitivity_specification = 321, + sym_process_head = 322, + sym_end_process = 323, + sym_case_generate_statement = 324, + sym_case_generate_block = 325, + sym_for_generate_statement = 326, + sym_if_generate_statement = 327, + sym_if_generate = 328, + sym_elsif_generate = 329, + sym_else_generate = 330, + sym_end_generate = 331, + sym_assertion_statement = 332, + sym_concurrent_assertion_statement = 333, + sym_assertion = 334, + sym_report_expression = 335, + sym_severity_expression = 336, + sym_case_statement = 337, + sym_case_expression = 338, + sym_case_body = 339, + sym_end_case = 340, + sym_exit_statement = 341, + sym_when_expression = 342, + sym_if_statement_block = 343, + sym_if_statement = 344, + sym_if_statement_body = 345, + sym_elsif_statement = 346, + sym_else_statement = 347, + sym_end_if = 348, + sym_loop_statement = 349, + sym__iteration_scheme = 350, + sym_loop_body = 351, + sym_end_loop = 352, + sym_next_statement = 353, + sym_null_statement = 354, + sym_procedure_call_statement = 355, + sym_concurrent_procedure_call_statement = 356, + sym_report_statement = 357, + sym_return_statement = 358, + sym_signal_assignment = 359, + sym_simple_waveform_assignment = 360, + sym_simple_variable_assignment = 361, + sym_concurrent_simple_signal_assignment = 362, + sym_simple_force_assignment = 363, + sym_simple_release_assignment = 364, + sym_conditional_signal_assignment = 365, + sym_concurrent_conditional_signal_assignment = 366, + sym_selected_waveform_assignment = 367, + sym_concurrent_selected_signal_assignment = 368, + sym_selected_force_assignment = 369, + sym_selected_variable_assignment = 370, + sym_with_expression = 371, + sym_select_target = 372, + sym_wait_statement = 373, + sym_conditional_expression = 374, + sym_else_expression = 375, + sym__expression = 376, + sym_condition_expression = 377, + sym_logical_expression = 378, + sym_relational_expression = 379, + sym_shift_expression = 380, + sym_simple_expression = 381, + sym_unary_operator = 382, + sym_logical_operator = 383, + sym_relational_operator = 384, + sym_shift_operator = 385, + sym_sign = 386, + sym_adding_operator = 387, + sym_multiplying_operator = 388, + sym__primary = 389, + sym_name = 390, + sym__direct_name = 391, + sym__label = 392, + sym__attribute = 393, + sym__unit = 394, + sym__identifier = 395, + sym__name_selector = 396, + sym__external_name = 397, + sym_external_constant_name = 398, + sym_external_signal_name = 399, + sym_external_variable_name = 400, + sym__external_pathname = 401, + sym_package_pathname = 402, + sym_absolute_pathname = 403, + sym_relative_pathname = 404, + sym_partial_pathname = 405, + sym_pathname_element = 406, + sym_function_call = 407, + sym_parenthesis_group = 408, + sym_association_or_range_list = 409, + sym__association_or_range = 410, + sym_association_element = 411, + sym__actual_part = 412, + sym_attribute = 413, + sym__attribute_designator = 414, + sym_signature = 415, + sym_selection = 416, + sym__suffix = 417, + sym__literal = 418, + sym_bit_string_literal = 419, + sym__abstract_literal = 420, + sym_based_literal = 421, + sym_allocator = 422, + sym_parenthesis_expression = 423, + sym_element_association_list = 424, + sym_element_association = 425, + sym__element = 426, + sym_choices = 427, + sym__range = 428, + sym_simple_range = 429, + sym__direction = 430, + sym__tool_directive = 431, + sym__directive = 432, + sym_user_directive = 433, + sym_protect_directive = 434, + sym_warning_directive = 435, + sym_error_directive = 436, + sym_if_conditional_analysis = 437, + sym_elsif_conditional_analysis = 438, + sym_else_conditional_analysis = 439, + sym_end_conditional_analysis = 440, + sym_conditional_analysis_expression = 441, + sym_conditional_analysis_relation = 442, + sym__conditional_analysis_operator = 443, + sym__conditional_analysis_identifier = 444, + sym__configuration_declarative_item = 445, + sym__configuration_item = 446, + sym_block_configuration = 447, + sym_component_configuration = 448, + sym_end_for = 449, + sym_interface_list = 450, + sym__interface_declaration = 451, + sym_interface_declaration = 452, + sym_interface_constant_declaration = 453, + sym_interface_signal_declaration = 454, + sym_interface_variable_declaration = 455, + sym_interface_subprogram_declaration = 456, + sym__interface_subprogram_specification = 457, + sym_procedure_specification = 458, + sym_interface_procedure_specification = 459, + sym_function_specification = 460, + sym_interface_function_specification = 461, + sym__interface_package_generic_map_aspect = 462, + sym_generic_map_any = 463, + sym_generic_map_default = 464, + sym_generic_map_aspect = 465, + sym_port_map_aspect = 466, + sym_association_list = 467, + sym__interface_subprogram_default = 468, + sym__designator = 469, + sym_identifier_list = 470, + sym__mode_indication = 471, + sym_simple_mode_indication = 472, + sym__mode_view_indication = 473, + sym_record_mode_view_indication = 474, + sym_array_mode_view_indication = 475, + sym_mode_view_element_definition = 476, + sym_record_element_list = 477, + sym__element_mode_indication = 478, + sym__element_mode_view_indication = 479, + sym_element_record_mode_view_indication = 480, + sym_element_array_mode_view_indication = 481, + sym_mode = 482, + sym_range_constraint = 483, + sym_group_constituent_list = 484, + sym_entity_class_entry_list = 485, + sym_entity_class_entry = 486, + sym_guarded_signal_specification = 487, + sym_signal_list = 488, + sym_entity_specification = 489, + sym__entity_class = 490, + sym_entity_name_list = 491, + sym_entity_designator = 492, + sym__entity_tag = 493, + sym__alias_designator = 494, + sym_file_open_information = 495, + sym_file_logical_name = 496, + sym_package_header = 497, + sym_generic_clause = 498, + sym_subprogram_header = 499, + sym__subprogram_specification = 500, + sym_parameter_list_specification = 501, + sym__type_definition = 502, + sym_protected_type_instantiation_definition = 503, + sym_protected_type_declaration = 504, + sym_protected_type_declaration_end = 505, + sym_protected_type_header = 506, + sym_protected_type_body = 507, + sym_protected_type_body_end = 508, + sym_while_loop = 509, + sym_for_loop = 510, + sym_parameter_specification = 511, + sym_case_statement_alternative = 512, + sym_selected_waveforms = 513, + sym_waveform = 514, + sym_waveform_element = 515, + sym_force_mode = 516, + sym_selected_expressions = 517, + sym_when_element = 518, + sym_conditional_waveforms = 519, + sym_else_waveform = 520, + sym_delay_mechanism = 521, + sym__target = 522, + sym_aggregate = 523, + sym_conditional_or_unaffected_expression = 524, + sym_else_expression_or_unaffected = 525, + sym__expression_or_unaffected = 526, + sym_label_declaration = 527, + sym_sensitivity_clause = 528, + sym_sensitivity_list = 529, + sym_condition_clause = 530, + sym_timeout_clause = 531, + sym_physical_type_definition = 532, + sym_primary_unit_declaration = 533, + sym_secondary_unit_declaration = 534, + sym_end_units = 535, + sym_enumeration_type_definition = 536, + sym_enumeration_literal = 537, + sym_record_type_definition = 538, + sym_end_record = 539, + sym_element_declaration = 540, + sym__process_sensitivity_list = 541, + sym_configuration_specification = 542, + sym_verification_unit_binding_indication = 543, + sym_verification_unit_list = 544, + sym_component_specification = 545, + sym_instantiation_list = 546, + sym_binding_indication = 547, + sym_entity_aspect = 548, + sym_line_comment = 549, + sym_block_comment = 550, + aux_sym_design_file_repeat1 = 551, + aux_sym_design_unit_repeat1 = 552, + aux_sym_design_unit_repeat2 = 553, + aux_sym_design_unit_repeat3 = 554, + aux_sym_use_clause_repeat1 = 555, + aux_sym_logical_name_list_repeat1 = 556, + aux_sym_selected_name_repeat1 = 557, + aux_sym_entity_head_repeat1 = 558, + aux_sym_entity_body_repeat1 = 559, + aux_sym_configuration_head_repeat1 = 560, + aux_sym_configuration_head_repeat2 = 561, + aux_sym_package_declaration_body_repeat1 = 562, + aux_sym_package_definition_body_repeat1 = 563, + aux_sym_subprogram_head_repeat1 = 564, + aux_sym_mode_view_body_repeat1 = 565, + aux_sym_array_index_incomplete_type_list_repeat1 = 566, + aux_sym_index_constraint_repeat1 = 567, + aux_sym_record_resolution_repeat1 = 568, + aux_sym_sequential_block_repeat1 = 569, + aux_sym_sequential_block_head_repeat1 = 570, + aux_sym_case_generate_block_repeat1 = 571, + aux_sym_if_generate_statement_repeat1 = 572, + aux_sym_case_body_repeat1 = 573, + aux_sym_if_statement_block_repeat1 = 574, + aux_sym_conditional_expression_repeat1 = 575, + aux_sym_name_repeat1 = 576, + aux_sym_package_pathname_repeat1 = 577, + aux_sym_relative_pathname_repeat1 = 578, + aux_sym_partial_pathname_repeat1 = 579, + aux_sym_association_or_range_list_repeat1 = 580, + aux_sym_signature_repeat1 = 581, + aux_sym_element_association_list_repeat1 = 582, + aux_sym_user_directive_repeat1 = 583, + aux_sym_conditional_analysis_expression_repeat1 = 584, + aux_sym_block_configuration_repeat1 = 585, + aux_sym_block_configuration_repeat2 = 586, + aux_sym_interface_list_repeat1 = 587, + aux_sym_association_list_repeat1 = 588, + aux_sym_identifier_list_repeat1 = 589, + aux_sym_group_constituent_list_repeat1 = 590, aux_sym_entity_class_entry_list_repeat1 = 591, aux_sym_entity_name_list_repeat1 = 592, aux_sym_protected_type_declaration_repeat1 = 593, @@ -923,7 +923,7 @@ static const char * const ts_symbol_names[] = { [sym_record_resolution] = "record_resolution", [sym_record_element_resolution] = "record_element_resolution", [sym__incomplete_subtype_indication] = "_incomplete_subtype_indication", - [sym_incomplete_type_mark] = "incomplete_type_mark", + [sym__incomplete_type_mark] = "_incomplete_type_mark", [sym_concurrent_block] = "concurrent_block", [sym_sequential_block] = "sequential_block", [sym_generate_body] = "generate_body", @@ -946,7 +946,6 @@ static const char * const ts_symbol_names[] = { [sym_sequential_block_head] = "sequential_block_head", [sym_component_instantiation_statement] = "component_instantiation_statement", [sym_instantiated_unit] = "instantiated_unit", - [sym_architecture_identifier] = "architecture_identifier", [sym_process_statement] = "process_statement", [sym_sensitivity_specification] = "sensitivity_specification", [sym_process_head] = "process_head", @@ -1023,7 +1022,7 @@ static const char * const ts_symbol_names[] = { [sym__attribute] = "_attribute", [sym__unit] = "_unit", [sym__identifier] = "_identifier", - [sym_name_selector] = "name_selector", + [sym__name_selector] = "_name_selector", [sym__external_name] = "_external_name", [sym_external_constant_name] = "external_constant_name", [sym_external_signal_name] = "external_signal_name", @@ -1217,6 +1216,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_interface_list_repeat1] = "interface_list_repeat1", [aux_sym_association_list_repeat1] = "association_list_repeat1", [aux_sym_identifier_list_repeat1] = "identifier_list_repeat1", + [aux_sym_group_constituent_list_repeat1] = "group_constituent_list_repeat1", [aux_sym_entity_class_entry_list_repeat1] = "entity_class_entry_list_repeat1", [aux_sym_entity_name_list_repeat1] = "entity_name_list_repeat1", [aux_sym_protected_type_declaration_repeat1] = "protected_type_declaration_repeat1", @@ -1534,7 +1534,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_record_resolution] = sym_record_resolution, [sym_record_element_resolution] = sym_record_element_resolution, [sym__incomplete_subtype_indication] = sym__incomplete_subtype_indication, - [sym_incomplete_type_mark] = sym_incomplete_type_mark, + [sym__incomplete_type_mark] = sym__incomplete_type_mark, [sym_concurrent_block] = sym_concurrent_block, [sym_sequential_block] = sym_sequential_block, [sym_generate_body] = sym_generate_body, @@ -1557,7 +1557,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_sequential_block_head] = sym_sequential_block_head, [sym_component_instantiation_statement] = sym_component_instantiation_statement, [sym_instantiated_unit] = sym_instantiated_unit, - [sym_architecture_identifier] = sym_architecture_identifier, [sym_process_statement] = sym_process_statement, [sym_sensitivity_specification] = sym_sensitivity_specification, [sym_process_head] = sym_process_head, @@ -1634,7 +1633,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__attribute] = sym__attribute, [sym__unit] = sym__unit, [sym__identifier] = sym__identifier, - [sym_name_selector] = sym_name_selector, + [sym__name_selector] = sym__name_selector, [sym__external_name] = sym__external_name, [sym_external_constant_name] = sym_external_constant_name, [sym_external_signal_name] = sym_external_signal_name, @@ -1828,6 +1827,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_interface_list_repeat1] = aux_sym_interface_list_repeat1, [aux_sym_association_list_repeat1] = aux_sym_association_list_repeat1, [aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1, + [aux_sym_group_constituent_list_repeat1] = aux_sym_group_constituent_list_repeat1, [aux_sym_entity_class_entry_list_repeat1] = aux_sym_entity_class_entry_list_repeat1, [aux_sym_entity_name_list_repeat1] = aux_sym_entity_name_list_repeat1, [aux_sym_protected_type_declaration_repeat1] = aux_sym_protected_type_declaration_repeat1, @@ -3036,8 +3036,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_incomplete_type_mark] = { - .visible = true, + [sym__incomplete_type_mark] = { + .visible = false, .named = true, }, [sym_concurrent_block] = { @@ -3128,10 +3128,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_architecture_identifier] = { - .visible = true, - .named = true, - }, [sym_process_statement] = { .visible = true, .named = true, @@ -3436,8 +3432,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_name_selector] = { - .visible = true, + [sym__name_selector] = { + .visible = false, .named = true, }, [sym__external_name] = { @@ -4212,6 +4208,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_group_constituent_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_entity_class_entry_list_repeat1] = { .visible = false, .named = false, @@ -4282,18 +4282,222 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; +enum ts_field_identifiers { + field_architecture = 1, + field_attribute = 2, + field_component = 3, + field_configuration = 4, + field_entity = 5, + field_function = 6, + field_library = 7, + field_package = 8, + field_procedure = 9, + field_type = 10, + field_unit = 11, + field_view = 12, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_architecture] = "architecture", + [field_attribute] = "attribute", + [field_component] = "component", + [field_configuration] = "configuration", + [field_entity] = "entity", + [field_function] = "function", + [field_library] = "library", + [field_package] = "package", + [field_procedure] = "procedure", + [field_type] = "type", + [field_unit] = "unit", + [field_view] = "view", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [2] = {.index = 0, .length = 1}, + [4] = {.index = 1, .length = 1}, + [5] = {.index = 2, .length = 1}, + [6] = {.index = 3, .length = 1}, + [7] = {.index = 4, .length = 1}, + [9] = {.index = 5, .length = 1}, + [10] = {.index = 6, .length = 2}, + [11] = {.index = 8, .length = 1}, + [12] = {.index = 9, .length = 1}, + [13] = {.index = 10, .length = 1}, + [14] = {.index = 11, .length = 1}, + [15] = {.index = 12, .length = 1}, + [16] = {.index = 13, .length = 1}, + [17] = {.index = 14, .length = 1}, + [18] = {.index = 15, .length = 2}, + [19] = {.index = 17, .length = 1}, + [20] = {.index = 18, .length = 2}, + [21] = {.index = 20, .length = 1}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 23, .length = 2}, + [24] = {.index = 25, .length = 1}, + [25] = {.index = 26, .length = 2}, + [26] = {.index = 28, .length = 2}, + [27] = {.index = 30, .length = 1}, + [28] = {.index = 31, .length = 2}, + [30] = {.index = 33, .length = 1}, + [31] = {.index = 34, .length = 2}, + [32] = {.index = 36, .length = 2}, + [33] = {.index = 38, .length = 1}, + [34] = {.index = 39, .length = 2}, + [35] = {.index = 41, .length = 1}, + [36] = {.index = 42, .length = 2}, + [37] = {.index = 44, .length = 1}, + [38] = {.index = 45, .length = 2}, + [39] = {.index = 47, .length = 2}, + [40] = {.index = 49, .length = 3}, + [41] = {.index = 52, .length = 1}, + [42] = {.index = 53, .length = 2}, + [43] = {.index = 55, .length = 2}, + [44] = {.index = 57, .length = 2}, + [45] = {.index = 59, .length = 2}, + [46] = {.index = 61, .length = 1}, + [47] = {.index = 62, .length = 1}, + [48] = {.index = 63, .length = 3}, + [49] = {.index = 66, .length = 1}, + [50] = {.index = 67, .length = 1}, + [51] = {.index = 68, .length = 1}, + [52] = {.index = 69, .length = 2}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_unit, 0, .inherited = true}, + [1] = + {field_attribute, 0}, + [2] = + {field_library, 0}, + [3] = + {field_library, 0, .inherited = true}, + [4] = + {field_procedure, 1}, + [5] = + {field_unit, 1}, + [6] = + {field_library, 0, .inherited = true}, + {field_library, 1, .inherited = true}, + [8] = + {field_type, 1}, + [9] = + {field_attribute, 1, .inherited = true}, + [10] = + {field_component, 1}, + [11] = + {field_configuration, 1}, + [12] = + {field_entity, 1}, + [13] = + {field_type, 0}, + [14] = + {field_type, 2}, + [15] = + {field_function, 1}, + {field_type, 3}, + [17] = + {field_library, 1, .inherited = true}, + [18] = + {field_attribute, 1}, + {field_type, 3}, + [20] = + {field_component, 2}, + [21] = + {field_function, 1}, + {field_type, 4}, + [23] = + {field_function, 2}, + {field_type, 4}, + [25] = + {field_package, 1}, + [26] = + {field_type, 1}, + {field_type, 2, .inherited = true}, + [28] = + {field_type, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + [30] = + {field_function, 1}, + [31] = + {field_entity, 3}, + {field_library, 1}, + [33] = + {field_entity, 2}, + [34] = + {field_function, 1}, + {field_type, 5}, + [36] = + {field_function, 2}, + {field_type, 5}, + [38] = + {field_package, 2}, + [39] = + {field_type, 1}, + {field_type, 3}, + [41] = + {field_function, 2}, + [42] = + {field_architecture, 3}, + {field_entity, 1}, + [44] = + {field_view, 1}, + [45] = + {field_function, 1}, + {field_type, 6}, + [47] = + {field_function, 2}, + {field_type, 6}, + [49] = + {field_type, 1}, + {field_type, 2, .inherited = true}, + {field_type, 4}, + [52] = + {field_architecture, 1}, + [53] = + {field_architecture, 1}, + {field_entity, 3}, + [55] = + {field_configuration, 1}, + {field_entity, 3}, + [57] = + {field_function, 1}, + {field_type, 7}, + [59] = + {field_function, 2}, + {field_type, 7}, + [61] = + {field_package, 3}, + [62] = + {field_view, 2}, + [63] = + {field_architecture, 5}, + {field_entity, 3}, + {field_library, 1}, + [66] = + {field_architecture, 2}, + [67] = + {field_configuration, 2}, + [68] = + {field_type, 2, .inherited = true}, + [69] = + {field_function, 2}, + {field_type, 8}, +}; + static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = alias_sym_label, }, - [2] = { + [3] = { [0] = alias_sym_attribute_identifier, }, - [3] = { + [8] = { [0] = alias_sym_unit, }, - [4] = { + [29] = { [0] = sym_unary_operator, }, }; @@ -4324,205 +4528,205 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [18] = 18, [19] = 19, [20] = 20, - [21] = 17, - [22] = 17, + [21] = 18, + [22] = 19, [23] = 23, - [24] = 24, - [25] = 17, - [26] = 26, + [24] = 19, + [25] = 25, + [26] = 19, [27] = 27, - [28] = 28, - [29] = 26, - [30] = 30, - [31] = 17, - [32] = 18, - [33] = 17, - [34] = 17, + [28] = 19, + [29] = 19, + [30] = 20, + [31] = 27, + [32] = 19, + [33] = 33, + [34] = 33, [35] = 19, - [36] = 17, - [37] = 37, - [38] = 38, + [36] = 36, + [37] = 19, + [38] = 19, [39] = 19, - [40] = 28, - [41] = 20, - [42] = 17, - [43] = 17, - [44] = 20, - [45] = 17, - [46] = 37, - [47] = 17, - [48] = 26, - [49] = 12, - [50] = 17, - [51] = 28, - [52] = 30, - [53] = 18, - [54] = 17, - [55] = 17, - [56] = 17, - [57] = 17, - [58] = 17, - [59] = 17, - [60] = 30, - [61] = 17, - [62] = 37, - [63] = 63, - [64] = 17, - [65] = 17, + [40] = 40, + [41] = 25, + [42] = 19, + [43] = 19, + [44] = 33, + [45] = 23, + [46] = 19, + [47] = 19, + [48] = 19, + [49] = 18, + [50] = 19, + [51] = 20, + [52] = 11, + [53] = 19, + [54] = 54, + [55] = 55, + [56] = 19, + [57] = 19, + [58] = 12, + [59] = 19, + [60] = 60, + [61] = 19, + [62] = 27, + [63] = 19, + [64] = 19, + [65] = 19, [66] = 19, - [67] = 20, - [68] = 17, - [69] = 17, - [70] = 17, - [71] = 71, - [72] = 17, - [73] = 17, - [74] = 17, - [75] = 11, - [76] = 17, - [77] = 17, - [78] = 28, - [79] = 17, - [80] = 17, - [81] = 17, - [82] = 17, - [83] = 17, - [84] = 17, - [85] = 17, - [86] = 17, - [87] = 17, - [88] = 17, - [89] = 17, - [90] = 17, - [91] = 17, - [92] = 17, - [93] = 17, - [94] = 17, - [95] = 17, - [96] = 17, - [97] = 17, - [98] = 17, - [99] = 17, + [67] = 19, + [68] = 19, + [69] = 19, + [70] = 19, + [71] = 19, + [72] = 19, + [73] = 19, + [74] = 19, + [75] = 60, + [76] = 19, + [77] = 19, + [78] = 19, + [79] = 19, + [80] = 19, + [81] = 19, + [82] = 19, + [83] = 19, + [84] = 33, + [85] = 20, + [86] = 19, + [87] = 19, + [88] = 19, + [89] = 19, + [90] = 90, + [91] = 19, + [92] = 19, + [93] = 25, + [94] = 60, + [95] = 23, + [96] = 25, + [97] = 19, + [98] = 19, + [99] = 19, [100] = 100, [101] = 101, - [102] = 101, - [103] = 103, + [102] = 102, + [103] = 101, [104] = 104, - [105] = 104, - [106] = 106, + [105] = 105, + [106] = 104, [107] = 107, - [108] = 108, + [108] = 102, [109] = 109, - [110] = 104, - [111] = 100, - [112] = 103, + [110] = 105, + [111] = 109, + [112] = 104, [113] = 109, - [114] = 100, - [115] = 103, - [116] = 107, - [117] = 104, - [118] = 101, - [119] = 100, - [120] = 109, + [114] = 109, + [115] = 102, + [116] = 102, + [117] = 117, + [118] = 104, + [119] = 105, + [120] = 107, [121] = 107, - [122] = 109, - [123] = 101, - [124] = 103, - [125] = 107, + [122] = 107, + [123] = 105, + [124] = 101, + [125] = 101, [126] = 126, - [127] = 127, - [128] = 127, - [129] = 129, - [130] = 127, - [131] = 127, - [132] = 127, - [133] = 133, - [134] = 127, - [135] = 127, - [136] = 127, - [137] = 127, - [138] = 127, - [139] = 127, - [140] = 127, - [141] = 127, - [142] = 127, - [143] = 127, - [144] = 127, - [145] = 127, - [146] = 127, - [147] = 127, + [127] = 126, + [128] = 126, + [129] = 126, + [130] = 126, + [131] = 126, + [132] = 126, + [133] = 126, + [134] = 126, + [135] = 126, + [136] = 126, + [137] = 126, + [138] = 138, + [139] = 126, + [140] = 126, + [141] = 126, + [142] = 126, + [143] = 126, + [144] = 126, + [145] = 126, + [146] = 126, + [147] = 126, [148] = 126, - [149] = 127, - [150] = 127, - [151] = 127, - [152] = 127, - [153] = 127, - [154] = 127, - [155] = 127, - [156] = 127, - [157] = 127, - [158] = 127, - [159] = 127, - [160] = 127, - [161] = 127, - [162] = 127, - [163] = 127, - [164] = 127, - [165] = 127, - [166] = 127, - [167] = 127, - [168] = 129, - [169] = 127, - [170] = 127, - [171] = 127, - [172] = 127, - [173] = 127, - [174] = 127, - [175] = 127, - [176] = 127, - [177] = 127, - [178] = 127, - [179] = 127, - [180] = 127, - [181] = 127, - [182] = 127, - [183] = 127, - [184] = 184, - [185] = 127, - [186] = 129, - [187] = 127, - [188] = 127, - [189] = 127, - [190] = 127, - [191] = 127, - [192] = 133, - [193] = 127, - [194] = 127, - [195] = 127, - [196] = 127, - [197] = 127, - [198] = 127, - [199] = 133, - [200] = 127, - [201] = 127, + [149] = 126, + [150] = 126, + [151] = 126, + [152] = 126, + [153] = 126, + [154] = 126, + [155] = 126, + [156] = 156, + [157] = 156, + [158] = 126, + [159] = 126, + [160] = 126, + [161] = 126, + [162] = 138, + [163] = 126, + [164] = 126, + [165] = 126, + [166] = 126, + [167] = 167, + [168] = 126, + [169] = 126, + [170] = 126, + [171] = 126, + [172] = 126, + [173] = 167, + [174] = 126, + [175] = 156, + [176] = 126, + [177] = 167, + [178] = 126, + [179] = 126, + [180] = 126, + [181] = 126, + [182] = 126, + [183] = 126, + [184] = 138, + [185] = 126, + [186] = 126, + [187] = 126, + [188] = 126, + [189] = 126, + [190] = 126, + [191] = 126, + [192] = 126, + [193] = 126, + [194] = 126, + [195] = 126, + [196] = 126, + [197] = 126, + [198] = 126, + [199] = 126, + [200] = 200, + [201] = 126, [202] = 126, - [203] = 127, - [204] = 133, - [205] = 127, - [206] = 127, - [207] = 127, - [208] = 127, - [209] = 129, - [210] = 127, - [211] = 127, + [203] = 138, + [204] = 126, + [205] = 167, + [206] = 126, + [207] = 126, + [208] = 126, + [209] = 156, + [210] = 126, + [211] = 126, [212] = 126, - [213] = 127, - [214] = 127, - [215] = 127, - [216] = 127, - [217] = 127, - [218] = 127, - [219] = 127, + [213] = 126, + [214] = 126, + [215] = 126, + [216] = 126, + [217] = 126, + [218] = 126, + [219] = 126, [220] = 220, [221] = 221, [222] = 222, @@ -4530,7910 +4734,8131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [224] = 224, [225] = 225, [226] = 226, - [227] = 227, + [227] = 226, [228] = 228, - [229] = 227, - [230] = 230, - [231] = 230, - [232] = 228, - [233] = 226, - [234] = 230, - [235] = 227, - [236] = 226, + [229] = 229, + [230] = 228, + [231] = 231, + [232] = 229, + [233] = 231, + [234] = 226, + [235] = 229, + [236] = 231, [237] = 228, [238] = 238, [239] = 239, - [240] = 240, - [241] = 240, - [242] = 239, - [243] = 243, - [244] = 244, - [245] = 240, - [246] = 246, - [247] = 240, - [248] = 239, - [249] = 240, - [250] = 240, - [251] = 240, - [252] = 240, - [253] = 240, - [254] = 240, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 240, - [259] = 240, - [260] = 240, - [261] = 246, - [262] = 262, - [263] = 240, - [264] = 264, - [265] = 240, - [266] = 240, - [267] = 240, - [268] = 257, - [269] = 256, - [270] = 240, - [271] = 240, - [272] = 240, - [273] = 264, - [274] = 240, - [275] = 240, - [276] = 255, - [277] = 240, - [278] = 240, - [279] = 240, - [280] = 240, - [281] = 246, - [282] = 240, - [283] = 240, - [284] = 240, - [285] = 240, - [286] = 240, - [287] = 264, - [288] = 240, - [289] = 240, - [290] = 240, - [291] = 243, - [292] = 240, - [293] = 255, - [294] = 240, - [295] = 244, - [296] = 240, - [297] = 240, - [298] = 240, - [299] = 240, - [300] = 255, - [301] = 239, - [302] = 243, - [303] = 240, - [304] = 240, - [305] = 244, - [306] = 240, - [307] = 240, - [308] = 240, - [309] = 240, - [310] = 240, - [311] = 256, - [312] = 312, - [313] = 257, - [314] = 240, - [315] = 246, - [316] = 240, - [317] = 240, - [318] = 240, - [319] = 319, - [320] = 240, - [321] = 240, - [322] = 240, - [323] = 240, - [324] = 240, - [325] = 264, + [240] = 238, + [241] = 238, + [242] = 238, + [243] = 238, + [244] = 238, + [245] = 238, + [246] = 238, + [247] = 238, + [248] = 238, + [249] = 238, + [250] = 238, + [251] = 238, + [252] = 252, + [253] = 238, + [254] = 238, + [255] = 238, + [256] = 238, + [257] = 238, + [258] = 238, + [259] = 259, + [260] = 238, + [261] = 261, + [262] = 238, + [263] = 263, + [264] = 238, + [265] = 265, + [266] = 238, + [267] = 267, + [268] = 259, + [269] = 269, + [270] = 238, + [271] = 239, + [272] = 238, + [273] = 239, + [274] = 274, + [275] = 238, + [276] = 276, + [277] = 263, + [278] = 238, + [279] = 238, + [280] = 265, + [281] = 238, + [282] = 238, + [283] = 238, + [284] = 252, + [285] = 238, + [286] = 261, + [287] = 238, + [288] = 238, + [289] = 238, + [290] = 276, + [291] = 238, + [292] = 259, + [293] = 238, + [294] = 238, + [295] = 238, + [296] = 238, + [297] = 274, + [298] = 238, + [299] = 238, + [300] = 239, + [301] = 301, + [302] = 259, + [303] = 238, + [304] = 304, + [305] = 238, + [306] = 263, + [307] = 261, + [308] = 265, + [309] = 238, + [310] = 252, + [311] = 238, + [312] = 238, + [313] = 238, + [314] = 238, + [315] = 238, + [316] = 238, + [317] = 263, + [318] = 238, + [319] = 238, + [320] = 238, + [321] = 252, + [322] = 238, + [323] = 276, + [324] = 274, + [325] = 238, [326] = 326, [327] = 327, [328] = 328, [329] = 329, - [330] = 330, + [330] = 329, [331] = 331, - [332] = 327, - [333] = 333, - [334] = 334, - [335] = 327, - [336] = 326, - [337] = 329, - [338] = 329, - [339] = 326, - [340] = 333, - [341] = 331, - [342] = 342, - [343] = 329, - [344] = 333, - [345] = 326, - [346] = 342, - [347] = 342, - [348] = 342, - [349] = 327, - [350] = 331, + [332] = 331, + [333] = 328, + [334] = 327, + [335] = 328, + [336] = 336, + [337] = 327, + [338] = 338, + [339] = 329, + [340] = 331, + [341] = 336, + [342] = 336, + [343] = 327, + [344] = 344, + [345] = 336, + [346] = 331, + [347] = 347, + [348] = 326, + [349] = 328, + [350] = 326, [351] = 351, [352] = 352, - [353] = 352, - [354] = 351, - [355] = 355, + [353] = 351, + [354] = 354, + [355] = 354, [356] = 356, - [357] = 352, - [358] = 355, + [357] = 351, + [358] = 352, [359] = 359, [360] = 356, - [361] = 355, - [362] = 362, - [363] = 362, - [364] = 362, - [365] = 351, + [361] = 352, + [362] = 356, + [363] = 359, + [364] = 359, + [365] = 365, [366] = 366, [367] = 367, [368] = 368, [369] = 369, - [370] = 370, + [370] = 366, [371] = 371, [372] = 366, - [373] = 369, - [374] = 374, - [375] = 370, - [376] = 376, - [377] = 377, - [378] = 377, - [379] = 370, - [380] = 377, - [381] = 368, - [382] = 371, - [383] = 383, - [384] = 367, - [385] = 368, - [386] = 370, - [387] = 370, - [388] = 370, - [389] = 367, - [390] = 370, - [391] = 366, + [373] = 366, + [374] = 371, + [375] = 375, + [376] = 366, + [377] = 367, + [378] = 378, + [379] = 379, + [380] = 371, + [381] = 381, + [382] = 366, + [383] = 366, + [384] = 381, + [385] = 378, + [386] = 381, + [387] = 375, + [388] = 388, + [389] = 379, + [390] = 375, + [391] = 367, [392] = 392, [393] = 393, - [394] = 392, + [394] = 394, [395] = 395, [396] = 396, - [397] = 392, - [398] = 392, - [399] = 395, + [397] = 397, + [398] = 398, + [399] = 396, [400] = 395, - [401] = 392, - [402] = 402, + [401] = 395, + [402] = 396, [403] = 403, [404] = 404, - [405] = 392, - [406] = 406, - [407] = 392, - [408] = 395, + [405] = 395, + [406] = 395, + [407] = 395, + [408] = 396, [409] = 409, - [410] = 410, - [411] = 411, - [412] = 392, + [410] = 395, + [411] = 395, + [412] = 412, [413] = 413, [414] = 414, [415] = 415, - [416] = 413, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 419, - [421] = 421, - [422] = 421, - [423] = 423, - [424] = 418, + [416] = 416, + [417] = 413, + [418] = 413, + [419] = 416, + [420] = 420, + [421] = 413, + [422] = 422, + [423] = 414, + [424] = 424, [425] = 413, [426] = 426, - [427] = 427, - [428] = 428, + [427] = 416, + [428] = 422, [429] = 429, - [430] = 429, - [431] = 428, - [432] = 426, - [433] = 426, - [434] = 426, - [435] = 415, - [436] = 421, - [437] = 423, - [438] = 423, - [439] = 421, - [440] = 428, + [430] = 413, + [431] = 416, + [432] = 414, + [433] = 422, + [434] = 415, + [435] = 413, + [436] = 416, + [437] = 437, + [438] = 416, + [439] = 437, + [440] = 414, [441] = 441, - [442] = 415, - [443] = 426, - [444] = 413, - [445] = 418, - [446] = 446, - [447] = 419, - [448] = 428, - [449] = 421, - [450] = 423, - [451] = 429, - [452] = 413, - [453] = 421, - [454] = 429, - [455] = 429, - [456] = 428, - [457] = 426, - [458] = 458, - [459] = 428, - [460] = 429, - [461] = 418, - [462] = 423, - [463] = 421, - [464] = 429, - [465] = 428, - [466] = 419, - [467] = 426, - [468] = 426, - [469] = 428, - [470] = 429, - [471] = 423, - [472] = 423, - [473] = 421, - [474] = 421, - [475] = 423, - [476] = 415, - [477] = 423, - [478] = 478, - [479] = 428, - [480] = 415, - [481] = 426, + [442] = 442, + [443] = 443, + [444] = 414, + [445] = 445, + [446] = 415, + [447] = 447, + [448] = 448, + [449] = 422, + [450] = 415, + [451] = 414, + [452] = 422, + [453] = 453, + [454] = 454, + [455] = 415, + [456] = 416, + [457] = 413, + [458] = 414, + [459] = 415, + [460] = 422, + [461] = 437, + [462] = 422, + [463] = 414, + [464] = 415, + [465] = 414, + [466] = 416, + [467] = 467, + [468] = 413, + [469] = 413, + [470] = 416, + [471] = 414, + [472] = 422, + [473] = 415, + [474] = 422, + [475] = 415, + [476] = 416, + [477] = 437, + [478] = 414, + [479] = 448, + [480] = 442, + [481] = 441, [482] = 429, - [483] = 428, - [484] = 426, - [485] = 413, - [486] = 418, - [487] = 423, - [488] = 426, - [489] = 421, - [490] = 429, - [491] = 429, - [492] = 428, - [493] = 426, - [494] = 419, - [495] = 415, - [496] = 428, - [497] = 429, - [498] = 423, - [499] = 419, - [500] = 478, - [501] = 423, - [502] = 421, - [503] = 421, - [504] = 413, - [505] = 426, - [506] = 418, - [507] = 419, - [508] = 428, - [509] = 509, - [510] = 415, - [511] = 421, - [512] = 423, - [513] = 429, - [514] = 418, - [515] = 413, - [516] = 516, - [517] = 415, - [518] = 413, - [519] = 415, - [520] = 478, - [521] = 418, - [522] = 414, - [523] = 419, - [524] = 426, - [525] = 429, - [526] = 428, - [527] = 426, - [528] = 413, - [529] = 421, - [530] = 423, - [531] = 421, - [532] = 418, - [533] = 415, - [534] = 423, - [535] = 419, - [536] = 421, - [537] = 421, - [538] = 428, - [539] = 421, - [540] = 423, - [541] = 429, - [542] = 428, - [543] = 426, - [544] = 544, - [545] = 429, - [546] = 413, - [547] = 547, - [548] = 423, - [549] = 421, - [550] = 516, - [551] = 429, - [552] = 429, - [553] = 428, - [554] = 419, - [555] = 418, - [556] = 426, - [557] = 509, - [558] = 426, - [559] = 428, - [560] = 426, - [561] = 428, - [562] = 418, - [563] = 423, + [483] = 413, + [484] = 448, + [485] = 415, + [486] = 442, + [487] = 441, + [488] = 422, + [489] = 429, + [490] = 414, + [491] = 413, + [492] = 448, + [493] = 442, + [494] = 441, + [495] = 429, + [496] = 416, + [497] = 448, + [498] = 442, + [499] = 441, + [500] = 429, + [501] = 413, + [502] = 448, + [503] = 442, + [504] = 416, + [505] = 441, + [506] = 429, + [507] = 416, + [508] = 414, + [509] = 415, + [510] = 422, + [511] = 416, + [512] = 448, + [513] = 442, + [514] = 441, + [515] = 429, + [516] = 415, + [517] = 448, + [518] = 442, + [519] = 441, + [520] = 429, + [521] = 422, + [522] = 448, + [523] = 414, + [524] = 442, + [525] = 441, + [526] = 429, + [527] = 448, + [528] = 448, + [529] = 442, + [530] = 413, + [531] = 441, + [532] = 415, + [533] = 429, + [534] = 442, + [535] = 448, + [536] = 442, + [537] = 441, + [538] = 429, + [539] = 441, + [540] = 448, + [541] = 442, + [542] = 441, + [543] = 429, + [544] = 422, + [545] = 448, + [546] = 442, + [547] = 441, + [548] = 429, + [549] = 467, + [550] = 448, + [551] = 442, + [552] = 441, + [553] = 429, + [554] = 415, + [555] = 448, + [556] = 442, + [557] = 441, + [558] = 429, + [559] = 422, + [560] = 560, + [561] = 448, + [562] = 442, + [563] = 441, [564] = 429, - [565] = 428, - [566] = 426, - [567] = 419, + [565] = 415, + [566] = 422, + [567] = 448, [568] = 415, - [569] = 423, - [570] = 421, - [571] = 413, - [572] = 423, - [573] = 421, - [574] = 429, - [575] = 418, - [576] = 419, - [577] = 415, - [578] = 578, - [579] = 419, - [580] = 509, - [581] = 421, - [582] = 423, - [583] = 415, - [584] = 413, - [585] = 418, - [586] = 419, - [587] = 413, - [588] = 509, - [589] = 415, - [590] = 413, - [591] = 423, - [592] = 418, - [593] = 413, - [594] = 594, - [595] = 418, - [596] = 596, - [597] = 419, - [598] = 418, - [599] = 419, - [600] = 509, - [601] = 415, - [602] = 415, - [603] = 415, - [604] = 426, - [605] = 421, - [606] = 413, - [607] = 414, - [608] = 608, - [609] = 423, - [610] = 421, - [611] = 418, - [612] = 419, - [613] = 429, - [614] = 428, - [615] = 426, - [616] = 509, - [617] = 428, - [618] = 415, - [619] = 429, - [620] = 415, + [569] = 442, + [570] = 441, + [571] = 429, + [572] = 572, + [573] = 448, + [574] = 414, + [575] = 422, + [576] = 442, + [577] = 441, + [578] = 422, + [579] = 429, + [580] = 415, + [581] = 414, + [582] = 448, + [583] = 442, + [584] = 414, + [585] = 585, + [586] = 422, + [587] = 441, + [588] = 429, + [589] = 414, + [590] = 415, + [591] = 414, + [592] = 445, + [593] = 416, + [594] = 448, + [595] = 442, + [596] = 441, + [597] = 429, + [598] = 413, + [599] = 416, + [600] = 445, + [601] = 601, + [602] = 413, + [603] = 603, + [604] = 448, + [605] = 442, + [606] = 441, + [607] = 429, + [608] = 416, + [609] = 415, + [610] = 445, + [611] = 422, + [612] = 448, + [613] = 442, + [614] = 467, + [615] = 615, + [616] = 441, + [617] = 429, + [618] = 414, + [619] = 413, + [620] = 445, [621] = 413, - [622] = 418, - [623] = 419, - [624] = 509, - [625] = 625, - [626] = 423, - [627] = 415, - [628] = 423, - [629] = 421, - [630] = 413, - [631] = 413, + [622] = 448, + [623] = 442, + [624] = 441, + [625] = 429, + [626] = 413, + [627] = 416, + [628] = 416, + [629] = 416, + [630] = 416, + [631] = 445, [632] = 632, - [633] = 429, - [634] = 428, - [635] = 419, - [636] = 418, - [637] = 413, - [638] = 426, - [639] = 418, - [640] = 419, - [641] = 418, - [642] = 642, - [643] = 421, - [644] = 644, - [645] = 429, - [646] = 423, - [647] = 509, - [648] = 419, - [649] = 415, - [650] = 419, - [651] = 413, - [652] = 418, - [653] = 428, - [654] = 426, - [655] = 426, - [656] = 419, - [657] = 429, - [658] = 428, - [659] = 659, - [660] = 429, - [661] = 418, - [662] = 423, - [663] = 509, - [664] = 415, - [665] = 413, - [666] = 429, - [667] = 428, - [668] = 428, - [669] = 418, - [670] = 426, - [671] = 429, - [672] = 421, - [673] = 413, - [674] = 674, - [675] = 428, - [676] = 423, - [677] = 421, - [678] = 415, - [679] = 419, - [680] = 426, - [681] = 509, - [682] = 415, - [683] = 414, - [684] = 413, - [685] = 426, - [686] = 418, - [687] = 419, - [688] = 419, - [689] = 415, - [690] = 413, - [691] = 418, - [692] = 419, - [693] = 415, - [694] = 429, - [695] = 428, - [696] = 478, - [697] = 426, - [698] = 421, - [699] = 423, - [700] = 423, - [701] = 421, - [702] = 415, - [703] = 413, - [704] = 418, - [705] = 419, - [706] = 706, - [707] = 418, - [708] = 415, - [709] = 413, - [710] = 418, + [633] = 413, + [634] = 448, + [635] = 442, + [636] = 441, + [637] = 429, + [638] = 413, + [639] = 414, + [640] = 445, + [641] = 415, + [642] = 422, + [643] = 448, + [644] = 442, + [645] = 441, + [646] = 429, + [647] = 414, + [648] = 467, + [649] = 422, + [650] = 415, + [651] = 445, + [652] = 415, + [653] = 415, + [654] = 448, + [655] = 442, + [656] = 422, + [657] = 441, + [658] = 429, + [659] = 414, + [660] = 414, + [661] = 422, + [662] = 415, + [663] = 422, + [664] = 445, + [665] = 429, + [666] = 666, + [667] = 416, + [668] = 413, + [669] = 413, + [670] = 413, + [671] = 448, + [672] = 442, + [673] = 441, + [674] = 429, + [675] = 416, + [676] = 416, + [677] = 422, + [678] = 413, + [679] = 414, + [680] = 416, + [681] = 681, + [682] = 429, + [683] = 413, + [684] = 445, + [685] = 447, + [686] = 413, + [687] = 416, + [688] = 415, + [689] = 416, + [690] = 690, + [691] = 422, + [692] = 414, + [693] = 414, + [694] = 441, + [695] = 414, + [696] = 442, + [697] = 448, + [698] = 422, + [699] = 415, + [700] = 422, + [701] = 416, + [702] = 414, + [703] = 422, + [704] = 415, + [705] = 413, + [706] = 415, + [707] = 429, + [708] = 708, + [709] = 415, + [710] = 413, [711] = 413, - [712] = 419, - [713] = 415, - [714] = 419, - [715] = 415, - [716] = 413, - [717] = 426, - [718] = 428, - [719] = 429, - [720] = 418, + [712] = 422, + [713] = 416, + [714] = 714, + [715] = 448, + [716] = 442, + [717] = 441, + [718] = 414, + [719] = 416, + [720] = 415, [721] = 721, - [722] = 721, + [722] = 722, [723] = 721, [724] = 724, [725] = 725, - [726] = 726, + [726] = 721, [727] = 721, [728] = 725, [729] = 724, - [730] = 726, - [731] = 726, - [732] = 725, - [733] = 726, + [730] = 722, + [731] = 725, + [732] = 722, + [733] = 725, [734] = 724, [735] = 724, - [736] = 725, - [737] = 726, - [738] = 726, + [736] = 722, + [737] = 722, + [738] = 722, [739] = 739, [740] = 740, - [741] = 725, - [742] = 724, + [741] = 741, + [742] = 722, [743] = 724, - [744] = 726, - [745] = 745, - [746] = 746, - [747] = 724, - [748] = 725, - [749] = 725, - [750] = 724, - [751] = 725, - [752] = 726, - [753] = 726, - [754] = 724, - [755] = 725, + [744] = 725, + [745] = 724, + [746] = 725, + [747] = 725, + [748] = 748, + [749] = 724, + [750] = 722, + [751] = 724, + [752] = 725, + [753] = 724, + [754] = 725, + [755] = 722, [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 726, - [761] = 726, + [757] = 722, + [758] = 725, + [759] = 725, + [760] = 760, + [761] = 725, [762] = 724, - [763] = 763, - [764] = 725, - [765] = 725, - [766] = 725, - [767] = 725, - [768] = 726, - [769] = 726, - [770] = 725, - [771] = 724, - [772] = 725, + [763] = 722, + [764] = 764, + [765] = 724, + [766] = 766, + [767] = 722, + [768] = 725, + [769] = 724, + [770] = 722, + [771] = 771, + [772] = 772, [773] = 773, - [774] = 726, - [775] = 775, - [776] = 724, + [774] = 724, + [775] = 724, + [776] = 725, [777] = 724, - [778] = 724, - [779] = 726, - [780] = 725, - [781] = 724, - [782] = 724, - [783] = 726, - [784] = 726, + [778] = 722, + [779] = 725, + [780] = 724, + [781] = 722, + [782] = 782, + [783] = 724, + [784] = 724, [785] = 725, - [786] = 786, - [787] = 726, - [788] = 725, - [789] = 726, - [790] = 724, + [786] = 725, + [787] = 722, + [788] = 724, + [789] = 722, + [790] = 725, [791] = 724, - [792] = 725, - [793] = 724, - [794] = 726, + [792] = 722, + [793] = 722, + [794] = 725, [795] = 725, [796] = 796, [797] = 797, [798] = 798, - [799] = 724, - [800] = 796, - [801] = 726, - [802] = 802, + [799] = 722, + [800] = 800, + [801] = 725, + [802] = 724, [803] = 725, - [804] = 726, + [804] = 804, [805] = 805, - [806] = 725, + [806] = 806, [807] = 807, - [808] = 726, - [809] = 725, + [808] = 808, + [809] = 55, [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 796, - [817] = 817, - [818] = 71, - [819] = 819, - [820] = 724, - [821] = 821, - [822] = 822, - [823] = 725, - [824] = 724, + [811] = 808, + [812] = 725, + [813] = 724, + [814] = 724, + [815] = 722, + [816] = 816, + [817] = 724, + [818] = 818, + [819] = 725, + [820] = 808, + [821] = 724, + [822] = 725, + [823] = 823, + [824] = 722, [825] = 724, - [826] = 726, - [827] = 725, - [828] = 726, - [829] = 796, - [830] = 830, - [831] = 796, - [832] = 725, + [826] = 808, + [827] = 827, + [828] = 725, + [829] = 829, + [830] = 808, + [831] = 831, + [832] = 832, [833] = 833, - [834] = 724, - [835] = 796, + [834] = 722, + [835] = 808, [836] = 836, - [837] = 726, - [838] = 724, + [837] = 722, + [838] = 838, [839] = 839, [840] = 840, [841] = 841, [842] = 842, - [843] = 843, - [844] = 724, - [845] = 845, + [843] = 725, + [844] = 844, + [845] = 724, [846] = 846, - [847] = 725, + [847] = 847, [848] = 848, - [849] = 815, - [850] = 726, - [851] = 851, - [852] = 724, + [849] = 722, + [850] = 850, + [851] = 725, + [852] = 852, [853] = 853, [854] = 854, - [855] = 855, - [856] = 726, + [855] = 796, + [856] = 722, [857] = 857, [858] = 858, - [859] = 724, + [859] = 725, [860] = 860, - [861] = 861, + [861] = 722, [862] = 862, - [863] = 863, - [864] = 726, - [865] = 725, + [863] = 725, + [864] = 724, + [865] = 724, [866] = 866, - [867] = 867, - [868] = 724, + [867] = 725, + [868] = 868, [869] = 869, - [870] = 725, - [871] = 726, + [870] = 724, + [871] = 724, [872] = 872, - [873] = 873, - [874] = 874, + [873] = 725, + [874] = 722, [875] = 875, - [876] = 726, - [877] = 726, - [878] = 725, - [879] = 725, - [880] = 725, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 722, + [880] = 880, [881] = 881, - [882] = 882, - [883] = 724, + [882] = 724, + [883] = 722, [884] = 884, [885] = 885, - [886] = 851, - [887] = 874, - [888] = 815, - [889] = 860, - [890] = 882, - [891] = 841, - [892] = 885, - [893] = 893, + [886] = 886, + [887] = 887, + [888] = 850, + [889] = 889, + [890] = 875, + [891] = 881, + [892] = 839, + [893] = 844, [894] = 894, - [895] = 884, - [896] = 896, - [897] = 843, + [895] = 887, + [896] = 884, + [897] = 878, [898] = 898, - [899] = 861, - [900] = 875, - [901] = 873, + [899] = 899, + [900] = 900, + [901] = 846, [902] = 902, - [903] = 903, - [904] = 855, - [905] = 845, - [906] = 842, - [907] = 854, - [908] = 853, - [909] = 857, - [910] = 867, - [911] = 858, - [912] = 846, - [913] = 872, + [903] = 847, + [904] = 796, + [905] = 905, + [906] = 853, + [907] = 848, + [908] = 840, + [909] = 852, + [910] = 854, + [911] = 911, + [912] = 857, + [913] = 862, [914] = 914, - [915] = 815, + [915] = 858, [916] = 916, - [917] = 917, - [918] = 862, - [919] = 866, - [920] = 920, - [921] = 921, - [922] = 848, - [923] = 863, - [924] = 840, - [925] = 869, - [926] = 815, - [927] = 815, - [928] = 884, - [929] = 840, - [930] = 869, - [931] = 931, - [932] = 860, - [933] = 853, - [934] = 885, - [935] = 839, - [936] = 875, - [937] = 863, - [938] = 938, - [939] = 872, - [940] = 873, - [941] = 866, - [942] = 815, - [943] = 874, - [944] = 843, - [945] = 882, - [946] = 842, - [947] = 861, - [948] = 866, - [949] = 867, - [950] = 862, - [951] = 861, - [952] = 858, - [953] = 857, - [954] = 854, - [955] = 839, - [956] = 867, - [957] = 842, - [958] = 846, - [959] = 959, - [960] = 855, - [961] = 851, - [962] = 848, - [963] = 846, - [964] = 882, - [965] = 862, - [966] = 863, - [967] = 840, - [968] = 845, - [969] = 841, - [970] = 858, - [971] = 843, - [972] = 885, - [973] = 874, - [974] = 854, - [975] = 873, - [976] = 857, - [977] = 845, - [978] = 872, - [979] = 869, - [980] = 855, - [981] = 851, - [982] = 982, - [983] = 853, - [984] = 875, - [985] = 848, - [986] = 860, - [987] = 987, - [988] = 841, - [989] = 884, - [990] = 990, - [991] = 991, - [992] = 861, - [993] = 875, - [994] = 845, - [995] = 869, - [996] = 841, - [997] = 914, - [998] = 896, - [999] = 898, - [1000] = 902, - [1001] = 916, - [1002] = 1002, - [1003] = 893, - [1004] = 841, - [1005] = 894, - [1006] = 860, - [1007] = 843, - [1008] = 839, - [1009] = 863, - [1010] = 853, - [1011] = 866, - [1012] = 862, - [1013] = 841, - [1014] = 815, - [1015] = 867, - [1016] = 840, - [1017] = 854, - [1018] = 866, - [1019] = 842, - [1020] = 903, - [1021] = 1021, - [1022] = 845, - [1023] = 840, - [1024] = 840, - [1025] = 884, - [1026] = 869, - [1027] = 1027, - [1028] = 885, - [1029] = 869, - [1030] = 860, - [1031] = 853, + [917] = 838, + [918] = 860, + [919] = 868, + [920] = 869, + [921] = 877, + [922] = 880, + [923] = 876, + [924] = 872, + [925] = 886, + [926] = 885, + [927] = 796, + [928] = 928, + [929] = 866, + [930] = 881, + [931] = 875, + [932] = 880, + [933] = 885, + [934] = 844, + [935] = 857, + [936] = 853, + [937] = 841, + [938] = 854, + [939] = 939, + [940] = 876, + [941] = 852, + [942] = 881, + [943] = 872, + [944] = 796, + [945] = 850, + [946] = 868, + [947] = 947, + [948] = 858, + [949] = 839, + [950] = 887, + [951] = 951, + [952] = 952, + [953] = 866, + [954] = 796, + [955] = 885, + [956] = 846, + [957] = 847, + [958] = 844, + [959] = 875, + [960] = 846, + [961] = 876, + [962] = 962, + [963] = 880, + [964] = 840, + [965] = 886, + [966] = 850, + [967] = 853, + [968] = 884, + [969] = 878, + [970] = 848, + [971] = 841, + [972] = 877, + [973] = 852, + [974] = 862, + [975] = 854, + [976] = 869, + [977] = 877, + [978] = 857, + [979] = 796, + [980] = 886, + [981] = 848, + [982] = 858, + [983] = 862, + [984] = 860, + [985] = 869, + [986] = 878, + [987] = 840, + [988] = 839, + [989] = 872, + [990] = 838, + [991] = 860, + [992] = 887, + [993] = 847, + [994] = 866, + [995] = 838, + [996] = 996, + [997] = 884, + [998] = 868, + [999] = 872, + [1000] = 898, + [1001] = 914, + [1002] = 853, + [1003] = 866, + [1004] = 847, + [1005] = 886, + [1006] = 877, + [1007] = 853, + [1008] = 846, + [1009] = 869, + [1010] = 844, + [1011] = 846, + [1012] = 844, + [1013] = 875, + [1014] = 847, + [1015] = 889, + [1016] = 872, + [1017] = 911, + [1018] = 900, + [1019] = 905, + [1020] = 875, + [1021] = 878, + [1022] = 881, + [1023] = 916, + [1024] = 841, + [1025] = 868, + [1026] = 796, + [1027] = 928, + [1028] = 796, + [1029] = 876, + [1030] = 1030, + [1031] = 914, [1032] = 1032, - [1033] = 884, - [1034] = 853, - [1035] = 875, - [1036] = 917, - [1037] = 839, - [1038] = 872, - [1039] = 873, - [1040] = 893, - [1041] = 885, - [1042] = 874, - [1043] = 884, - [1044] = 916, - [1045] = 914, - [1046] = 875, - [1047] = 882, - [1048] = 1048, - [1049] = 872, - [1050] = 873, - [1051] = 872, - [1052] = 858, - [1053] = 921, - [1054] = 873, - [1055] = 894, - [1056] = 857, - [1057] = 855, - [1058] = 874, - [1059] = 851, - [1060] = 882, - [1061] = 848, - [1062] = 846, - [1063] = 874, - [1064] = 861, - [1065] = 920, - [1066] = 843, - [1067] = 882, - [1068] = 896, - [1069] = 858, - [1070] = 863, - [1071] = 862, - [1072] = 842, - [1073] = 885, - [1074] = 917, - [1075] = 857, - [1076] = 861, - [1077] = 867, - [1078] = 863, - [1079] = 854, - [1080] = 898, - [1081] = 903, - [1082] = 920, - [1083] = 902, - [1084] = 845, - [1085] = 855, - [1086] = 842, - [1087] = 851, - [1088] = 815, - [1089] = 839, - [1090] = 858, - [1091] = 857, - [1092] = 854, - [1093] = 843, - [1094] = 848, - [1095] = 867, - [1096] = 855, - [1097] = 866, - [1098] = 862, - [1099] = 921, - [1100] = 846, - [1101] = 848, - [1102] = 851, - [1103] = 846, - [1104] = 1104, - [1105] = 860, - [1106] = 853, - [1107] = 902, - [1108] = 855, - [1109] = 1109, - [1110] = 920, - [1111] = 921, - [1112] = 914, - [1113] = 916, - [1114] = 857, - [1115] = 893, - [1116] = 858, - [1117] = 845, - [1118] = 1118, - [1119] = 846, - [1120] = 848, - [1121] = 854, - [1122] = 1122, - [1123] = 903, - [1124] = 861, - [1125] = 1125, - [1126] = 917, - [1127] = 882, - [1128] = 917, - [1129] = 815, - [1130] = 1122, - [1131] = 839, - [1132] = 874, - [1133] = 873, - [1134] = 872, - [1135] = 903, - [1136] = 843, - [1137] = 1125, - [1138] = 920, - [1139] = 921, - [1140] = 860, - [1141] = 863, - [1142] = 885, - [1143] = 862, - [1144] = 884, - [1145] = 867, - [1146] = 854, - [1147] = 869, - [1148] = 875, - [1149] = 1122, - [1150] = 842, - [1151] = 851, - [1152] = 840, - [1153] = 1118, - [1154] = 1154, - [1155] = 843, - [1156] = 1122, - [1157] = 914, - [1158] = 845, - [1159] = 916, - [1160] = 893, - [1161] = 894, - [1162] = 846, - [1163] = 848, - [1164] = 896, - [1165] = 842, - [1166] = 1125, - [1167] = 851, - [1168] = 867, - [1169] = 855, - [1170] = 898, - [1171] = 902, - [1172] = 862, - [1173] = 857, - [1174] = 858, - [1175] = 863, - [1176] = 894, - [1177] = 861, - [1178] = 882, - [1179] = 874, - [1180] = 873, - [1181] = 872, - [1182] = 853, - [1183] = 860, - [1184] = 839, - [1185] = 875, - [1186] = 884, - [1187] = 885, - [1188] = 869, - [1189] = 896, - [1190] = 840, - [1191] = 1118, - [1192] = 1118, - [1193] = 1122, - [1194] = 898, - [1195] = 815, - [1196] = 893, - [1197] = 916, - [1198] = 914, - [1199] = 921, + [1033] = 885, + [1034] = 880, + [1035] = 850, + [1036] = 840, + [1037] = 880, + [1038] = 899, + [1039] = 877, + [1040] = 898, + [1041] = 846, + [1042] = 885, + [1043] = 850, + [1044] = 876, + [1045] = 839, + [1046] = 847, + [1047] = 844, + [1048] = 916, + [1049] = 886, + [1050] = 911, + [1051] = 887, + [1052] = 866, + [1053] = 889, + [1054] = 894, + [1055] = 885, + [1056] = 848, + [1057] = 905, + [1058] = 880, + [1059] = 877, + [1060] = 853, + [1061] = 894, + [1062] = 899, + [1063] = 875, + [1064] = 881, + [1065] = 869, + [1066] = 868, + [1067] = 866, + [1068] = 869, + [1069] = 1069, + [1070] = 1070, + [1071] = 839, + [1072] = 881, + [1073] = 887, + [1074] = 860, + [1075] = 852, + [1076] = 884, + [1077] = 854, + [1078] = 857, + [1079] = 838, + [1080] = 902, + [1081] = 928, + [1082] = 858, + [1083] = 850, + [1084] = 857, + [1085] = 878, + [1086] = 876, + [1087] = 854, + [1088] = 1088, + [1089] = 852, + [1090] = 862, + [1091] = 872, + [1092] = 862, + [1093] = 1093, + [1094] = 900, + [1095] = 868, + [1096] = 860, + [1097] = 886, + [1098] = 838, + [1099] = 884, + [1100] = 1100, + [1101] = 858, + [1102] = 841, + [1103] = 839, + [1104] = 841, + [1105] = 852, + [1106] = 840, + [1107] = 848, + [1108] = 884, + [1109] = 840, + [1110] = 878, + [1111] = 862, + [1112] = 902, + [1113] = 860, + [1114] = 838, + [1115] = 858, + [1116] = 857, + [1117] = 887, + [1118] = 848, + [1119] = 854, + [1120] = 840, + [1121] = 899, + [1122] = 898, + [1123] = 1123, + [1124] = 848, + [1125] = 796, + [1126] = 862, + [1127] = 899, + [1128] = 900, + [1129] = 862, + [1130] = 869, + [1131] = 853, + [1132] = 1132, + [1133] = 1133, + [1134] = 841, + [1135] = 928, + [1136] = 848, + [1137] = 914, + [1138] = 1132, + [1139] = 928, + [1140] = 911, + [1141] = 900, + [1142] = 1142, + [1143] = 852, + [1144] = 854, + [1145] = 850, + [1146] = 841, + [1147] = 857, + [1148] = 796, + [1149] = 899, + [1150] = 796, + [1151] = 905, + [1152] = 898, + [1153] = 1123, + [1154] = 858, + [1155] = 916, + [1156] = 916, + [1157] = 889, + [1158] = 894, + [1159] = 838, + [1160] = 860, + [1161] = 914, + [1162] = 1133, + [1163] = 911, + [1164] = 905, + [1165] = 868, + [1166] = 1132, + [1167] = 876, + [1168] = 869, + [1169] = 875, + [1170] = 902, + [1171] = 900, + [1172] = 847, + [1173] = 1123, + [1174] = 881, + [1175] = 877, + [1176] = 796, + [1177] = 846, + [1178] = 914, + [1179] = 911, + [1180] = 850, + [1181] = 876, + [1182] = 839, + [1183] = 887, + [1184] = 884, + [1185] = 905, + [1186] = 872, + [1187] = 844, + [1188] = 872, + [1189] = 886, + [1190] = 878, + [1191] = 886, + [1192] = 889, + [1193] = 1132, + [1194] = 894, + [1195] = 1133, + [1196] = 866, + [1197] = 885, + [1198] = 1133, + [1199] = 847, [1200] = 902, - [1201] = 920, - [1202] = 1125, - [1203] = 917, - [1204] = 903, - [1205] = 841, - [1206] = 1125, - [1207] = 815, - [1208] = 841, - [1209] = 898, - [1210] = 896, - [1211] = 815, - [1212] = 815, - [1213] = 1118, - [1214] = 894, - [1215] = 866, - [1216] = 866, - [1217] = 903, - [1218] = 842, - [1219] = 872, - [1220] = 853, - [1221] = 860, - [1222] = 869, - [1223] = 872, - [1224] = 840, - [1225] = 873, - [1226] = 874, - [1227] = 882, - [1228] = 861, - [1229] = 917, - [1230] = 841, - [1231] = 841, - [1232] = 858, - [1233] = 857, - [1234] = 855, - [1235] = 851, - [1236] = 866, - [1237] = 848, - [1238] = 846, - [1239] = 839, - [1240] = 840, - [1241] = 869, - [1242] = 860, - [1243] = 845, - [1244] = 860, - [1245] = 853, - [1246] = 874, - [1247] = 1247, - [1248] = 872, - [1249] = 873, - [1250] = 874, - [1251] = 843, - [1252] = 841, - [1253] = 882, - [1254] = 861, - [1255] = 920, - [1256] = 882, - [1257] = 853, - [1258] = 921, - [1259] = 841, - [1260] = 839, - [1261] = 858, - [1262] = 867, - [1263] = 857, - [1264] = 855, - [1265] = 851, - [1266] = 848, - [1267] = 846, - [1268] = 914, - [1269] = 916, - [1270] = 845, - [1271] = 893, - [1272] = 815, - [1273] = 861, - [1274] = 840, - [1275] = 815, - [1276] = 843, - [1277] = 839, - [1278] = 866, - [1279] = 842, - [1280] = 869, - [1281] = 869, - [1282] = 875, - [1283] = 840, - [1284] = 858, - [1285] = 866, - [1286] = 854, - [1287] = 1287, - [1288] = 867, - [1289] = 860, - [1290] = 815, - [1291] = 884, - [1292] = 862, - [1293] = 885, - [1294] = 863, - [1295] = 857, - [1296] = 855, - [1297] = 853, - [1298] = 851, - [1299] = 866, - [1300] = 848, - [1301] = 815, - [1302] = 873, - [1303] = 846, - [1304] = 875, - [1305] = 854, - [1306] = 885, - [1307] = 867, - [1308] = 884, - [1309] = 862, - [1310] = 885, - [1311] = 863, - [1312] = 884, - [1313] = 845, - [1314] = 875, - [1315] = 863, - [1316] = 862, - [1317] = 872, - [1318] = 867, - [1319] = 873, - [1320] = 854, - [1321] = 843, - [1322] = 842, - [1323] = 841, - [1324] = 885, - [1325] = 894, - [1326] = 884, - [1327] = 866, - [1328] = 875, - [1329] = 843, - [1330] = 839, - [1331] = 845, - [1332] = 846, - [1333] = 874, - [1334] = 815, - [1335] = 843, - [1336] = 848, - [1337] = 882, - [1338] = 903, - [1339] = 851, - [1340] = 106, - [1341] = 855, - [1342] = 842, - [1343] = 857, - [1344] = 858, - [1345] = 861, - [1346] = 893, - [1347] = 916, - [1348] = 902, - [1349] = 896, - [1350] = 898, - [1351] = 861, - [1352] = 896, - [1353] = 882, - [1354] = 898, - [1355] = 914, - [1356] = 858, - [1357] = 902, - [1358] = 857, - [1359] = 874, - [1360] = 873, - [1361] = 885, - [1362] = 884, - [1363] = 872, - [1364] = 854, - [1365] = 917, - [1366] = 867, - [1367] = 853, - [1368] = 855, + [1201] = 866, + [1202] = 885, + [1203] = 880, + [1204] = 846, + [1205] = 844, + [1206] = 902, + [1207] = 880, + [1208] = 796, + [1209] = 877, + [1210] = 1210, + [1211] = 1132, + [1212] = 1123, + [1213] = 875, + [1214] = 928, + [1215] = 894, + [1216] = 881, + [1217] = 853, + [1218] = 889, + [1219] = 840, + [1220] = 916, + [1221] = 1123, + [1222] = 839, + [1223] = 887, + [1224] = 852, + [1225] = 854, + [1226] = 857, + [1227] = 858, + [1228] = 884, + [1229] = 878, + [1230] = 838, + [1231] = 860, + [1232] = 898, + [1233] = 1133, + [1234] = 868, + [1235] = 1235, + [1236] = 847, + [1237] = 884, + [1238] = 839, + [1239] = 853, + [1240] = 878, + [1241] = 846, + [1242] = 887, + [1243] = 840, + [1244] = 844, + [1245] = 885, + [1246] = 881, + [1247] = 875, + [1248] = 796, + [1249] = 840, + [1250] = 844, + [1251] = 846, + [1252] = 847, + [1253] = 894, + [1254] = 889, + [1255] = 841, + [1256] = 914, + [1257] = 911, + [1258] = 875, + [1259] = 847, + [1260] = 881, + [1261] = 905, + [1262] = 846, + [1263] = 916, + [1264] = 853, + [1265] = 848, + [1266] = 796, + [1267] = 854, + [1268] = 852, + [1269] = 854, + [1270] = 857, + [1271] = 858, + [1272] = 857, + [1273] = 839, + [1274] = 887, + [1275] = 884, + [1276] = 858, + [1277] = 848, + [1278] = 838, + [1279] = 860, + [1280] = 862, + [1281] = 844, + [1282] = 848, + [1283] = 869, + [1284] = 878, + [1285] = 877, + [1286] = 880, + [1287] = 838, + [1288] = 860, + [1289] = 841, + [1290] = 852, + [1291] = 868, + [1292] = 847, + [1293] = 866, + [1294] = 796, + [1295] = 869, + [1296] = 877, + [1297] = 868, + [1298] = 902, + [1299] = 880, + [1300] = 886, + [1301] = 885, + [1302] = 866, + [1303] = 875, + [1304] = 872, + [1305] = 847, + [1306] = 881, + [1307] = 876, + [1308] = 846, + [1309] = 841, + [1310] = 850, + [1311] = 905, + [1312] = 911, + [1313] = 839, + [1314] = 887, + [1315] = 884, + [1316] = 914, + [1317] = 862, + [1318] = 844, + [1319] = 898, + [1320] = 886, + [1321] = 878, + [1322] = 899, + [1323] = 872, + [1324] = 853, + [1325] = 902, + [1326] = 928, + [1327] = 848, + [1328] = 876, + [1329] = 796, + [1330] = 850, + [1331] = 848, + [1332] = 840, + [1333] = 875, + [1334] = 841, + [1335] = 900, + [1336] = 852, + [1337] = 854, + [1338] = 857, + [1339] = 858, + [1340] = 838, + [1341] = 860, + [1342] = 881, + [1343] = 850, + [1344] = 876, + [1345] = 1345, + [1346] = 844, + [1347] = 868, + [1348] = 900, + [1349] = 872, + [1350] = 928, + [1351] = 869, + [1352] = 877, + [1353] = 853, + [1354] = 880, + [1355] = 885, + [1356] = 886, + [1357] = 866, + [1358] = 899, + [1359] = 886, + [1360] = 872, + [1361] = 840, + [1362] = 898, + [1363] = 841, + [1364] = 916, + [1365] = 889, + [1366] = 876, + [1367] = 850, + [1368] = 862, [1369] = 894, - [1370] = 842, - [1371] = 851, - [1372] = 848, - [1373] = 846, - [1374] = 860, - [1375] = 862, - [1376] = 1376, - [1377] = 863, - [1378] = 845, - [1379] = 839, - [1380] = 875, - [1381] = 862, - [1382] = 863, - [1383] = 840, - [1384] = 869, - [1385] = 920, - [1386] = 854, - [1387] = 921, - [1388] = 874, - [1389] = 1389, - [1390] = 1390, - [1391] = 863, - [1392] = 862, - [1393] = 815, - [1394] = 894, - [1395] = 894, - [1396] = 863, - [1397] = 885, - [1398] = 867, - [1399] = 854, - [1400] = 839, - [1401] = 839, - [1402] = 845, - [1403] = 1403, - [1404] = 866, - [1405] = 1405, - [1406] = 902, - [1407] = 885, - [1408] = 898, - [1409] = 884, - [1410] = 842, - [1411] = 896, - [1412] = 898, - [1413] = 902, - [1414] = 1414, - [1415] = 903, - [1416] = 1416, - [1417] = 903, - [1418] = 862, - [1419] = 815, + [1370] = 840, + [1371] = 866, + [1372] = 852, + [1373] = 854, + [1374] = 857, + [1375] = 858, + [1376] = 839, + [1377] = 887, + [1378] = 884, + [1379] = 838, + [1380] = 860, + [1381] = 885, + [1382] = 880, + [1383] = 853, + [1384] = 877, + [1385] = 1385, + [1386] = 869, + [1387] = 868, + [1388] = 878, + [1389] = 878, + [1390] = 862, + [1391] = 869, + [1392] = 877, + [1393] = 881, + [1394] = 880, + [1395] = 885, + [1396] = 866, + [1397] = 852, + [1398] = 886, + [1399] = 872, + [1400] = 854, + [1401] = 876, + [1402] = 850, + [1403] = 857, + [1404] = 858, + [1405] = 839, + [1406] = 887, + [1407] = 884, + [1408] = 838, + [1409] = 868, + [1410] = 860, + [1411] = 117, + [1412] = 846, + [1413] = 875, + [1414] = 862, + [1415] = 796, + [1416] = 914, + [1417] = 1417, + [1418] = 1418, + [1419] = 850, [1420] = 1420, - [1421] = 884, - [1422] = 1405, - [1423] = 1423, - [1424] = 846, - [1425] = 848, - [1426] = 851, + [1421] = 894, + [1422] = 889, + [1423] = 928, + [1424] = 898, + [1425] = 1425, + [1426] = 899, [1427] = 875, - [1428] = 1414, - [1429] = 841, - [1430] = 839, - [1431] = 917, - [1432] = 1002, - [1433] = 1433, - [1434] = 839, - [1435] = 920, - [1436] = 921, - [1437] = 893, - [1438] = 914, - [1439] = 916, - [1440] = 843, - [1441] = 815, - [1442] = 866, - [1443] = 916, - [1444] = 893, - [1445] = 1445, - [1446] = 1433, - [1447] = 845, - [1448] = 893, - [1449] = 863, - [1450] = 1414, - [1451] = 917, - [1452] = 855, - [1453] = 894, - [1454] = 867, - [1455] = 1414, - [1456] = 1002, - [1457] = 1433, - [1458] = 846, - [1459] = 1389, - [1460] = 920, - [1461] = 862, - [1462] = 867, - [1463] = 902, - [1464] = 898, - [1465] = 896, - [1466] = 854, - [1467] = 848, - [1468] = 851, - [1469] = 914, - [1470] = 921, - [1471] = 920, - [1472] = 1472, - [1473] = 914, - [1474] = 855, - [1475] = 921, - [1476] = 841, - [1477] = 857, - [1478] = 858, - [1479] = 842, - [1480] = 866, - [1481] = 815, - [1482] = 861, - [1483] = 917, - [1484] = 882, - [1485] = 1405, - [1486] = 873, - [1487] = 872, - [1488] = 1488, - [1489] = 1414, - [1490] = 815, - [1491] = 853, - [1492] = 841, - [1493] = 845, - [1494] = 1494, - [1495] = 860, - [1496] = 869, - [1497] = 894, - [1498] = 866, - [1499] = 839, - [1500] = 921, - [1501] = 840, - [1502] = 863, - [1503] = 885, - [1504] = 862, - [1505] = 884, - [1506] = 867, - [1507] = 854, - [1508] = 875, - [1509] = 920, - [1510] = 842, - [1511] = 841, + [1428] = 900, + [1429] = 1429, + [1430] = 847, + [1431] = 885, + [1432] = 872, + [1433] = 796, + [1434] = 1434, + [1435] = 886, + [1436] = 866, + [1437] = 885, + [1438] = 900, + [1439] = 894, + [1440] = 847, + [1441] = 840, + [1442] = 846, + [1443] = 1100, + [1444] = 1444, + [1445] = 880, + [1446] = 877, + [1447] = 889, + [1448] = 1444, + [1449] = 869, + [1450] = 1450, + [1451] = 914, + [1452] = 911, + [1453] = 905, + [1454] = 868, + [1455] = 860, + [1456] = 838, + [1457] = 911, + [1458] = 1444, + [1459] = 1459, + [1460] = 905, + [1461] = 916, + [1462] = 1462, + [1463] = 1463, + [1464] = 844, + [1465] = 881, + [1466] = 846, + [1467] = 928, + [1468] = 1468, + [1469] = 852, + [1470] = 854, + [1471] = 1463, + [1472] = 848, + [1473] = 847, + [1474] = 902, + [1475] = 846, + [1476] = 1476, + [1477] = 850, + [1478] = 899, + [1479] = 796, + [1480] = 857, + [1481] = 898, + [1482] = 898, + [1483] = 858, + [1484] = 899, + [1485] = 876, + [1486] = 872, + [1487] = 886, + [1488] = 866, + [1489] = 902, + [1490] = 885, + [1491] = 880, + [1492] = 928, + [1493] = 877, + [1494] = 869, + [1495] = 868, + [1496] = 857, + [1497] = 796, + [1498] = 914, + [1499] = 911, + [1500] = 860, + [1501] = 916, + [1502] = 838, + [1503] = 858, + [1504] = 905, + [1505] = 889, + [1506] = 894, + [1507] = 857, + [1508] = 854, + [1509] = 852, + [1510] = 902, + [1511] = 854, [1512] = 841, - [1513] = 903, - [1514] = 841, - [1515] = 1405, - [1516] = 846, - [1517] = 863, - [1518] = 885, - [1519] = 862, - [1520] = 884, - [1521] = 848, - [1522] = 851, - [1523] = 854, - [1524] = 857, - [1525] = 858, - [1526] = 875, - [1527] = 917, - [1528] = 867, - [1529] = 854, - [1530] = 914, - [1531] = 855, - [1532] = 875, - [1533] = 857, - [1534] = 1534, - [1535] = 896, - [1536] = 842, - [1537] = 903, - [1538] = 893, - [1539] = 898, - [1540] = 866, - [1541] = 843, - [1542] = 902, - [1543] = 858, - [1544] = 916, - [1545] = 914, - [1546] = 916, - [1547] = 875, - [1548] = 845, - [1549] = 893, - [1550] = 1550, - [1551] = 861, - [1552] = 840, - [1553] = 1403, - [1554] = 1405, - [1555] = 869, - [1556] = 896, - [1557] = 846, - [1558] = 848, - [1559] = 851, - [1560] = 855, - [1561] = 898, + [1513] = 850, + [1514] = 1514, + [1515] = 1434, + [1516] = 876, + [1517] = 858, + [1518] = 900, + [1519] = 840, + [1520] = 841, + [1521] = 872, + [1522] = 886, + [1523] = 1523, + [1524] = 900, + [1525] = 1525, + [1526] = 839, + [1527] = 866, + [1528] = 852, + [1529] = 880, + [1530] = 928, + [1531] = 853, + [1532] = 887, + [1533] = 876, + [1534] = 844, + [1535] = 877, + [1536] = 894, + [1537] = 889, + [1538] = 869, + [1539] = 852, + [1540] = 868, + [1541] = 916, + [1542] = 860, + [1543] = 838, + [1544] = 899, + [1545] = 898, + [1546] = 848, + [1547] = 898, + [1548] = 899, + [1549] = 1463, + [1550] = 862, + [1551] = 858, + [1552] = 1429, + [1553] = 916, + [1554] = 928, + [1555] = 857, + [1556] = 854, + [1557] = 914, + [1558] = 840, + [1559] = 911, + [1560] = 889, + [1561] = 853, [1562] = 1562, - [1563] = 902, - [1564] = 857, - [1565] = 858, - [1566] = 882, - [1567] = 106, - [1568] = 861, - [1569] = 884, - [1570] = 882, - [1571] = 843, - [1572] = 874, - [1573] = 873, - [1574] = 872, - [1575] = 874, - [1576] = 860, - [1577] = 840, - [1578] = 885, - [1579] = 853, - [1580] = 853, - [1581] = 873, - [1582] = 860, - [1583] = 845, - [1584] = 1584, - [1585] = 869, - [1586] = 869, - [1587] = 1587, - [1588] = 872, - [1589] = 872, - [1590] = 1403, - [1591] = 1591, - [1592] = 1592, - [1593] = 1593, - [1594] = 1594, - [1595] = 921, - [1596] = 861, - [1597] = 840, - [1598] = 842, - [1599] = 882, - [1600] = 843, + [1563] = 894, + [1564] = 900, + [1565] = 878, + [1566] = 844, + [1567] = 884, + [1568] = 887, + [1569] = 839, + [1570] = 846, + [1571] = 881, + [1572] = 905, + [1573] = 847, + [1574] = 862, + [1575] = 840, + [1576] = 902, + [1577] = 853, + [1578] = 1476, + [1579] = 914, + [1580] = 875, + [1581] = 841, + [1582] = 911, + [1583] = 905, + [1584] = 884, + [1585] = 838, + [1586] = 860, + [1587] = 878, + [1588] = 844, + [1589] = 844, + [1590] = 884, + [1591] = 1429, + [1592] = 887, + [1593] = 1434, + [1594] = 796, + [1595] = 839, + [1596] = 846, + [1597] = 841, + [1598] = 881, + [1599] = 847, + [1600] = 875, [1601] = 1601, - [1602] = 1433, - [1603] = 846, - [1604] = 848, - [1605] = 860, - [1606] = 853, - [1607] = 843, - [1608] = 1472, - [1609] = 839, - [1610] = 851, - [1611] = 853, - [1612] = 855, - [1613] = 920, - [1614] = 874, - [1615] = 873, - [1616] = 872, - [1617] = 873, - [1618] = 874, - [1619] = 860, - [1620] = 917, - [1621] = 894, - [1622] = 896, - [1623] = 1433, - [1624] = 869, - [1625] = 882, - [1626] = 861, - [1627] = 1389, - [1628] = 903, - [1629] = 1472, - [1630] = 840, - [1631] = 916, - [1632] = 857, - [1633] = 858, - [1634] = 840, - [1635] = 884, - [1636] = 896, - [1637] = 863, - [1638] = 858, - [1639] = 917, + [1602] = 902, + [1603] = 850, + [1604] = 841, + [1605] = 841, + [1606] = 862, + [1607] = 862, + [1608] = 850, + [1609] = 875, + [1610] = 876, + [1611] = 872, + [1612] = 881, + [1613] = 878, + [1614] = 117, + [1615] = 886, + [1616] = 876, + [1617] = 839, + [1618] = 868, + [1619] = 878, + [1620] = 869, + [1621] = 877, + [1622] = 866, + [1623] = 1623, + [1624] = 885, + [1625] = 1434, + [1626] = 853, + [1627] = 880, + [1628] = 1476, + [1629] = 1434, + [1630] = 877, + [1631] = 869, + [1632] = 868, + [1633] = 860, + [1634] = 838, + [1635] = 858, + [1636] = 857, + [1637] = 872, + [1638] = 886, + [1639] = 854, [1640] = 1640, - [1641] = 885, - [1642] = 884, - [1643] = 898, - [1644] = 875, - [1645] = 920, - [1646] = 862, - [1647] = 1647, - [1648] = 867, - [1649] = 106, - [1650] = 921, + [1641] = 852, + [1642] = 840, + [1643] = 887, + [1644] = 1429, + [1645] = 862, + [1646] = 884, + [1647] = 1459, + [1648] = 880, + [1649] = 853, + [1650] = 1100, [1651] = 1651, - [1652] = 902, - [1653] = 842, - [1654] = 843, - [1655] = 921, - [1656] = 875, - [1657] = 845, - [1658] = 845, - [1659] = 846, - [1660] = 920, - [1661] = 1109, - [1662] = 921, - [1663] = 920, - [1664] = 846, - [1665] = 1665, - [1666] = 848, - [1667] = 851, - [1668] = 914, - [1669] = 896, - [1670] = 898, - [1671] = 863, - [1672] = 855, - [1673] = 857, - [1674] = 842, - [1675] = 839, - [1676] = 862, - [1677] = 858, - [1678] = 845, - [1679] = 894, - [1680] = 894, - [1681] = 861, - [1682] = 882, - [1683] = 846, - [1684] = 848, - [1685] = 851, - [1686] = 902, - [1687] = 916, - [1688] = 855, - [1689] = 867, - [1690] = 854, - [1691] = 867, - [1692] = 843, - [1693] = 893, - [1694] = 884, - [1695] = 874, - [1696] = 917, - [1697] = 854, - [1698] = 873, - [1699] = 857, - [1700] = 885, - [1701] = 858, - [1702] = 861, - [1703] = 841, + [1652] = 885, + [1653] = 1653, + [1654] = 1463, + [1655] = 1459, + [1656] = 796, + [1657] = 1657, + [1658] = 866, + [1659] = 884, + [1660] = 848, + [1661] = 848, + [1662] = 875, + [1663] = 1429, + [1664] = 848, + [1665] = 881, + [1666] = 916, + [1667] = 878, + [1668] = 1668, + [1669] = 848, + [1670] = 887, + [1671] = 839, + [1672] = 1463, + [1673] = 898, + [1674] = 872, + [1675] = 846, + [1676] = 847, + [1677] = 862, + [1678] = 872, + [1679] = 850, + [1680] = 1680, + [1681] = 848, + [1682] = 117, + [1683] = 1683, + [1684] = 840, + [1685] = 1345, + [1686] = 894, + [1687] = 889, + [1688] = 914, + [1689] = 911, + [1690] = 841, + [1691] = 844, + [1692] = 866, + [1693] = 905, + [1694] = 900, + [1695] = 1695, + [1696] = 916, + [1697] = 862, + [1698] = 885, + [1699] = 900, + [1700] = 880, + [1701] = 850, + [1702] = 1210, + [1703] = 876, [1704] = 862, - [1705] = 841, - [1706] = 843, - [1707] = 1707, - [1708] = 863, - [1709] = 842, - [1710] = 894, - [1711] = 842, - [1712] = 872, - [1713] = 917, - [1714] = 863, - [1715] = 882, - [1716] = 885, - [1717] = 843, - [1718] = 874, - [1719] = 862, - [1720] = 855, - [1721] = 873, - [1722] = 872, - [1723] = 853, - [1724] = 875, - [1725] = 867, - [1726] = 854, - [1727] = 884, - [1728] = 885, - [1729] = 860, - [1730] = 860, - [1731] = 854, - [1732] = 815, - [1733] = 869, - [1734] = 839, - [1735] = 903, - [1736] = 869, - [1737] = 914, - [1738] = 839, - [1739] = 875, - [1740] = 840, - [1741] = 875, - [1742] = 841, - [1743] = 1743, - [1744] = 916, - [1745] = 842, - [1746] = 884, - [1747] = 893, - [1748] = 863, - [1749] = 903, - [1750] = 921, - [1751] = 840, - [1752] = 896, - [1753] = 898, - [1754] = 902, - [1755] = 869, - [1756] = 841, - [1757] = 846, - [1758] = 860, - [1759] = 853, - [1760] = 848, - [1761] = 839, - [1762] = 851, - [1763] = 1763, - [1764] = 845, - [1765] = 1765, - [1766] = 843, - [1767] = 903, - [1768] = 1768, - [1769] = 866, - [1770] = 869, - [1771] = 894, - [1772] = 893, - [1773] = 916, - [1774] = 902, - [1775] = 866, - [1776] = 866, - [1777] = 917, - [1778] = 861, - [1779] = 898, - [1780] = 896, - [1781] = 914, - [1782] = 920, - [1783] = 921, - [1784] = 903, - [1785] = 860, - [1786] = 853, - [1787] = 1787, - [1788] = 841, - [1789] = 872, - [1790] = 815, - [1791] = 917, - [1792] = 914, - [1793] = 894, - [1794] = 845, - [1795] = 873, - [1796] = 874, - [1797] = 882, - [1798] = 861, - [1799] = 896, - [1800] = 854, - [1801] = 920, - [1802] = 921, - [1803] = 914, - [1804] = 896, - [1805] = 898, - [1806] = 902, - [1807] = 916, - [1808] = 1247, - [1809] = 1809, - [1810] = 893, - [1811] = 867, - [1812] = 866, - [1813] = 846, - [1814] = 848, - [1815] = 851, - [1816] = 855, - [1817] = 857, - [1818] = 858, - [1819] = 1819, - [1820] = 1820, - [1821] = 898, - [1822] = 902, - [1823] = 857, - [1824] = 872, - [1825] = 873, - [1826] = 1002, - [1827] = 858, - [1828] = 815, - [1829] = 857, - [1830] = 815, - [1831] = 853, - [1832] = 916, - [1833] = 874, - [1834] = 866, - [1835] = 903, - [1836] = 903, - [1837] = 815, - [1838] = 916, - [1839] = 917, - [1840] = 861, - [1841] = 882, - [1842] = 874, - [1843] = 873, - [1844] = 1844, - [1845] = 851, - [1846] = 872, - [1847] = 1002, - [1848] = 893, - [1849] = 882, - [1850] = 920, - [1851] = 894, - [1852] = 855, - [1853] = 862, - [1854] = 848, - [1855] = 853, - [1856] = 860, - [1857] = 840, - [1858] = 885, - [1859] = 893, - [1860] = 815, - [1861] = 869, - [1862] = 839, - [1863] = 840, - [1864] = 914, - [1865] = 1865, - [1866] = 862, - [1867] = 861, - [1868] = 842, - [1869] = 882, - [1870] = 843, - [1871] = 874, - [1872] = 873, - [1873] = 872, - [1874] = 1874, - [1875] = 853, - [1876] = 860, - [1877] = 845, - [1878] = 869, - [1879] = 840, - [1880] = 858, - [1881] = 857, - [1882] = 854, - [1883] = 846, + [1705] = 875, + [1706] = 841, + [1707] = 881, + [1708] = 852, + [1709] = 854, + [1710] = 847, + [1711] = 847, + [1712] = 846, + [1713] = 872, + [1714] = 898, + [1715] = 853, + [1716] = 899, + [1717] = 886, + [1718] = 900, + [1719] = 796, + [1720] = 928, + [1721] = 1721, + [1722] = 877, + [1723] = 857, + [1724] = 928, + [1725] = 902, + [1726] = 899, + [1727] = 898, + [1728] = 869, + [1729] = 862, + [1730] = 899, + [1731] = 898, + [1732] = 902, + [1733] = 878, + [1734] = 846, + [1735] = 1735, + [1736] = 916, + [1737] = 928, + [1738] = 844, + [1739] = 866, + [1740] = 796, + [1741] = 916, + [1742] = 914, + [1743] = 911, + [1744] = 905, + [1745] = 889, + [1746] = 894, + [1747] = 868, + [1748] = 905, + [1749] = 885, + [1750] = 1100, + [1751] = 880, + [1752] = 858, + [1753] = 839, + [1754] = 844, + [1755] = 877, + [1756] = 796, + [1757] = 911, + [1758] = 869, + [1759] = 914, + [1760] = 868, + [1761] = 928, + [1762] = 889, + [1763] = 894, + [1764] = 902, + [1765] = 860, + [1766] = 902, + [1767] = 1767, + [1768] = 838, + [1769] = 875, + [1770] = 858, + [1771] = 796, + [1772] = 881, + [1773] = 900, + [1774] = 1774, + [1775] = 1100, + [1776] = 857, + [1777] = 848, + [1778] = 854, + [1779] = 796, + [1780] = 900, + [1781] = 1781, + [1782] = 852, + [1783] = 841, + [1784] = 900, + [1785] = 886, + [1786] = 1786, + [1787] = 928, + [1788] = 1788, + [1789] = 899, + [1790] = 899, + [1791] = 887, + [1792] = 928, + [1793] = 848, + [1794] = 848, + [1795] = 876, + [1796] = 840, + [1797] = 875, + [1798] = 881, + [1799] = 872, + [1800] = 894, + [1801] = 889, + [1802] = 914, + [1803] = 839, + [1804] = 887, + [1805] = 884, + [1806] = 911, + [1807] = 905, + [1808] = 899, + [1809] = 898, + [1810] = 914, + [1811] = 911, + [1812] = 905, + [1813] = 916, + [1814] = 886, + [1815] = 916, + [1816] = 1816, + [1817] = 916, + [1818] = 878, + [1819] = 889, + [1820] = 894, + [1821] = 850, + [1822] = 889, + [1823] = 894, + [1824] = 876, + [1825] = 866, + [1826] = 885, + [1827] = 880, + [1828] = 853, + [1829] = 877, + [1830] = 872, + [1831] = 850, + [1832] = 869, + [1833] = 839, + [1834] = 853, + [1835] = 868, + [1836] = 887, + [1837] = 886, + [1838] = 844, + [1839] = 846, + [1840] = 850, + [1841] = 866, + [1842] = 860, + [1843] = 884, + [1844] = 876, + [1845] = 885, + [1846] = 880, + [1847] = 860, + [1848] = 838, + [1849] = 877, + [1850] = 869, + [1851] = 868, + [1852] = 902, + [1853] = 1853, + [1854] = 875, + [1855] = 847, + [1856] = 881, + [1857] = 878, + [1858] = 846, + [1859] = 858, + [1860] = 840, + [1861] = 841, + [1862] = 857, + [1863] = 839, + [1864] = 860, + [1865] = 838, + [1866] = 838, + [1867] = 858, + [1868] = 854, + [1869] = 852, + [1870] = 857, + [1871] = 854, + [1872] = 796, + [1873] = 852, + [1874] = 898, + [1875] = 886, + [1876] = 876, + [1877] = 884, + [1878] = 862, + [1879] = 887, + [1880] = 884, + [1881] = 844, + [1882] = 885, + [1883] = 840, [1884] = 848, - [1885] = 851, - [1886] = 855, - [1887] = 867, - [1888] = 855, - [1889] = 857, - [1890] = 858, - [1891] = 840, - [1892] = 851, - [1893] = 861, - [1894] = 848, - [1895] = 869, - [1896] = 882, - [1897] = 1562, - [1898] = 843, - [1899] = 874, - [1900] = 873, - [1901] = 872, - [1902] = 846, - [1903] = 1584, - [1904] = 1587, - [1905] = 853, - [1906] = 860, - [1907] = 862, - [1908] = 1908, - [1909] = 863, - [1910] = 869, - [1911] = 860, - [1912] = 853, - [1913] = 840, - [1914] = 840, - [1915] = 869, - [1916] = 845, - [1917] = 1651, - [1918] = 860, - [1919] = 1591, - [1920] = 853, - [1921] = 1592, - [1922] = 1922, + [1885] = 853, + [1886] = 878, + [1887] = 884, + [1888] = 902, + [1889] = 852, + [1890] = 854, + [1891] = 857, + [1892] = 847, + [1893] = 878, + [1894] = 858, + [1895] = 838, + [1896] = 860, + [1897] = 840, + [1898] = 887, + [1899] = 839, + [1900] = 914, + [1901] = 911, + [1902] = 905, + [1903] = 1903, + [1904] = 841, + [1905] = 866, + [1906] = 1906, + [1907] = 868, + [1908] = 869, + [1909] = 881, + [1910] = 875, + [1911] = 853, + [1912] = 877, + [1913] = 880, + [1914] = 1914, + [1915] = 850, + [1916] = 1916, + [1917] = 847, + [1918] = 846, + [1919] = 844, + [1920] = 1774, + [1921] = 1916, + [1922] = 841, [1923] = 1923, - [1924] = 872, - [1925] = 873, - [1926] = 874, - [1927] = 843, - [1928] = 882, - [1929] = 842, - [1930] = 861, - [1931] = 1593, - [1932] = 1594, - [1933] = 1601, - [1934] = 902, - [1935] = 898, - [1936] = 896, - [1937] = 1937, - [1938] = 1938, - [1939] = 875, - [1940] = 894, - [1941] = 872, - [1942] = 873, - [1943] = 874, - [1944] = 858, - [1945] = 843, - [1946] = 882, - [1947] = 842, - [1948] = 861, - [1949] = 857, - [1950] = 854, - [1951] = 867, - [1952] = 1488, - [1953] = 841, - [1954] = 855, - [1955] = 866, - [1956] = 851, - [1957] = 848, - [1958] = 846, - [1959] = 884, - [1960] = 862, - [1961] = 885, - [1962] = 863, - [1963] = 893, - [1964] = 916, - [1965] = 902, - [1966] = 898, - [1967] = 896, - [1968] = 914, - [1969] = 921, - [1970] = 920, + [1924] = 1924, + [1925] = 1925, + [1926] = 900, + [1927] = 1927, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, + [1931] = 1931, + [1932] = 900, + [1933] = 1933, + [1934] = 844, + [1935] = 1935, + [1936] = 1936, + [1937] = 846, + [1938] = 847, + [1939] = 850, + [1940] = 928, + [1941] = 902, + [1942] = 1916, + [1943] = 876, + [1944] = 899, + [1945] = 1668, + [1946] = 898, + [1947] = 1947, + [1948] = 1948, + [1949] = 840, + [1950] = 841, + [1951] = 1657, + [1952] = 1653, + [1953] = 1651, + [1954] = 1954, + [1955] = 862, + [1956] = 1683, + [1957] = 875, + [1958] = 916, + [1959] = 881, + [1960] = 872, + [1961] = 886, + [1962] = 905, + [1963] = 852, + [1964] = 854, + [1965] = 857, + [1966] = 1683, + [1967] = 858, + [1968] = 1601, + [1969] = 839, + [1970] = 1562, [1971] = 894, - [1972] = 917, - [1973] = 845, - [1974] = 903, - [1975] = 1975, - [1976] = 1002, - [1977] = 902, - [1978] = 858, - [1979] = 857, - [1980] = 854, - [1981] = 898, - [1982] = 896, - [1983] = 841, - [1984] = 1984, - [1985] = 894, - [1986] = 839, - [1987] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 842, - [1992] = 893, - [1993] = 916, - [1994] = 902, - [1995] = 898, - [1996] = 896, - [1997] = 914, - [1998] = 1998, - [1999] = 1999, - [2000] = 921, - [2001] = 920, - [2002] = 894, - [2003] = 917, - [2004] = 2004, - [2005] = 903, - [2006] = 885, - [2007] = 884, - [2008] = 2008, - [2009] = 875, - [2010] = 854, - [2011] = 867, - [2012] = 884, - [2013] = 866, - [2014] = 862, - [2015] = 875, - [2016] = 885, - [2017] = 867, - [2018] = 855, - [2019] = 863, - [2020] = 1820, - [2021] = 1651, + [1972] = 887, + [1973] = 884, + [1974] = 838, + [1975] = 860, + [1976] = 1976, + [1977] = 911, + [1978] = 928, + [1979] = 848, + [1980] = 1418, + [1981] = 1514, + [1982] = 1468, + [1983] = 868, + [1984] = 899, + [1985] = 898, + [1986] = 878, + [1987] = 869, + [1988] = 877, + [1989] = 853, + [1990] = 866, + [1991] = 885, + [1992] = 880, + [1993] = 1774, + [1994] = 853, + [1995] = 877, + [1996] = 869, + [1997] = 878, + [1998] = 868, + [1999] = 880, + [2000] = 885, + [2001] = 866, + [2002] = 1417, + [2003] = 848, + [2004] = 914, + [2005] = 886, + [2006] = 872, + [2007] = 889, + [2008] = 841, + [2009] = 894, + [2010] = 875, + [2011] = 847, + [2012] = 881, + [2013] = 846, + [2014] = 839, + [2015] = 887, + [2016] = 884, + [2017] = 844, + [2018] = 876, + [2019] = 2019, + [2020] = 850, + [2021] = 2021, [2022] = 2022, - [2023] = 839, - [2024] = 2024, + [2023] = 2023, + [2024] = 1100, [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, + [2026] = 860, + [2027] = 838, + [2028] = 884, [2029] = 2029, - [2030] = 2030, + [2030] = 1916, [2031] = 2031, - [2032] = 845, - [2033] = 839, + [2032] = 1417, + [2033] = 878, [2034] = 2034, - [2035] = 866, - [2036] = 2036, - [2037] = 863, - [2038] = 862, - [2039] = 875, - [2040] = 846, - [2041] = 848, - [2042] = 851, - [2043] = 855, - [2044] = 867, - [2045] = 854, - [2046] = 857, - [2047] = 858, - [2048] = 2048, - [2049] = 841, - [2050] = 2050, - [2051] = 861, - [2052] = 842, - [2053] = 851, - [2054] = 848, - [2055] = 846, - [2056] = 882, - [2057] = 862, - [2058] = 843, - [2059] = 1820, - [2060] = 874, - [2061] = 873, - [2062] = 872, - [2063] = 2063, - [2064] = 2064, - [2065] = 2065, - [2066] = 853, - [2067] = 860, - [2068] = 2068, + [2035] = 2035, + [2036] = 1468, + [2037] = 916, + [2038] = 889, + [2039] = 1514, + [2040] = 850, + [2041] = 876, + [2042] = 1418, + [2043] = 1562, + [2044] = 900, + [2045] = 1601, + [2046] = 2046, + [2047] = 840, + [2048] = 1651, + [2049] = 1653, + [2050] = 1657, + [2051] = 2051, + [2052] = 1525, + [2053] = 1668, + [2054] = 2054, + [2055] = 872, + [2056] = 2056, + [2057] = 886, + [2058] = 875, + [2059] = 847, + [2060] = 881, + [2061] = 846, + [2062] = 852, + [2063] = 854, + [2064] = 857, + [2065] = 887, + [2066] = 839, + [2067] = 858, + [2068] = 858, [2069] = 839, - [2070] = 2070, - [2071] = 869, - [2072] = 840, - [2073] = 2073, - [2074] = 2074, + [2070] = 887, + [2071] = 884, + [2072] = 838, + [2073] = 860, + [2074] = 844, [2075] = 2075, - [2076] = 2076, - [2077] = 884, + [2076] = 928, + [2077] = 2077, [2078] = 2078, - [2079] = 1488, - [2080] = 1923, - [2081] = 885, - [2082] = 1601, - [2083] = 1594, - [2084] = 1593, - [2085] = 1592, - [2086] = 2086, - [2087] = 1591, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 868, + [2085] = 878, + [2086] = 869, + [2087] = 877, [2088] = 2088, - [2089] = 2089, - [2090] = 1587, - [2091] = 1584, - [2092] = 2092, - [2093] = 1534, - [2094] = 1562, - [2095] = 863, - [2096] = 866, - [2097] = 1923, - [2098] = 2098, - [2099] = 2099, - [2100] = 866, - [2101] = 903, - [2102] = 2102, - [2103] = 2103, - [2104] = 917, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 920, - [2109] = 921, - [2110] = 2110, - [2111] = 893, - [2112] = 916, - [2113] = 885, - [2114] = 884, - [2115] = 902, - [2116] = 898, - [2117] = 896, - [2118] = 875, - [2119] = 914, - [2120] = 1002, - [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 2124, - [2125] = 921, - [2126] = 920, - [2127] = 2127, - [2128] = 894, - [2129] = 917, - [2130] = 1534, - [2131] = 2131, - [2132] = 914, - [2133] = 2133, - [2134] = 2134, - [2135] = 2135, - [2136] = 845, - [2137] = 916, - [2138] = 2138, - [2139] = 2139, - [2140] = 841, - [2141] = 903, - [2142] = 893, - [2143] = 2143, - [2144] = 2144, - [2145] = 2145, - [2146] = 841, - [2147] = 840, - [2148] = 2148, - [2149] = 2149, - [2150] = 2150, - [2151] = 869, - [2152] = 903, - [2153] = 1923, - [2154] = 2154, - [2155] = 2155, - [2156] = 860, - [2157] = 853, - [2158] = 917, - [2159] = 2159, + [2089] = 853, + [2090] = 880, + [2091] = 885, + [2092] = 866, + [2093] = 2093, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 894, + [2099] = 889, + [2100] = 914, + [2101] = 911, + [2102] = 899, + [2103] = 857, + [2104] = 854, + [2105] = 852, + [2106] = 905, + [2107] = 881, + [2108] = 898, + [2109] = 916, + [2110] = 848, + [2111] = 2111, + [2112] = 886, + [2113] = 872, + [2114] = 840, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 866, + [2120] = 885, + [2121] = 898, + [2122] = 880, + [2123] = 899, + [2124] = 877, + [2125] = 876, + [2126] = 869, + [2127] = 850, + [2128] = 875, + [2129] = 881, + [2130] = 852, + [2131] = 854, + [2132] = 857, + [2133] = 858, + [2134] = 839, + [2135] = 887, + [2136] = 884, + [2137] = 838, + [2138] = 860, + [2139] = 868, + [2140] = 2140, + [2141] = 916, + [2142] = 889, + [2143] = 894, + [2144] = 860, + [2145] = 902, + [2146] = 875, + [2147] = 838, + [2148] = 868, + [2149] = 878, + [2150] = 869, + [2151] = 877, + [2152] = 853, + [2153] = 880, + [2154] = 885, + [2155] = 866, + [2156] = 928, + [2157] = 2157, + [2158] = 2158, + [2159] = 1100, [2160] = 2160, [2161] = 2161, - [2162] = 2162, - [2163] = 920, - [2164] = 921, - [2165] = 839, + [2162] = 858, + [2163] = 857, + [2164] = 854, + [2165] = 2165, [2166] = 2166, - [2167] = 2167, + [2167] = 900, [2168] = 2168, - [2169] = 872, - [2170] = 885, - [2171] = 873, - [2172] = 874, + [2169] = 886, + [2170] = 872, + [2171] = 840, + [2172] = 2172, [2173] = 2173, - [2174] = 884, - [2175] = 882, - [2176] = 861, - [2177] = 1787, + [2174] = 2174, + [2175] = 2175, + [2176] = 848, + [2177] = 2177, [2178] = 2178, - [2179] = 914, - [2180] = 839, - [2181] = 2181, - [2182] = 916, - [2183] = 893, - [2184] = 858, - [2185] = 857, - [2186] = 855, - [2187] = 851, - [2188] = 2188, - [2189] = 848, - [2190] = 875, - [2191] = 841, + [2179] = 2179, + [2180] = 848, + [2181] = 852, + [2182] = 1525, + [2183] = 2183, + [2184] = 2184, + [2185] = 841, + [2186] = 2186, + [2187] = 2187, + [2188] = 902, + [2189] = 840, + [2190] = 2190, + [2191] = 2191, [2192] = 2192, [2193] = 2193, - [2194] = 2194, + [2194] = 848, [2195] = 2195, [2196] = 2196, [2197] = 2197, - [2198] = 846, + [2198] = 2198, [2199] = 2199, [2200] = 2200, - [2201] = 845, + [2201] = 2201, [2202] = 2202, [2203] = 2203, - [2204] = 841, + [2204] = 2204, [2205] = 2205, [2206] = 2206, - [2207] = 2207, + [2207] = 840, [2208] = 2208, [2209] = 2209, - [2210] = 2210, + [2210] = 841, [2211] = 2211, - [2212] = 843, + [2212] = 2212, [2213] = 2213, - [2214] = 842, - [2215] = 841, - [2216] = 2216, - [2217] = 2217, - [2218] = 2218, - [2219] = 854, - [2220] = 2220, - [2221] = 867, - [2222] = 866, - [2223] = 2223, - [2224] = 863, - [2225] = 902, - [2226] = 916, - [2227] = 2227, - [2228] = 1488, - [2229] = 1591, - [2230] = 914, - [2231] = 903, - [2232] = 1593, - [2233] = 1594, - [2234] = 1601, - [2235] = 1601, - [2236] = 1587, - [2237] = 1820, - [2238] = 2238, - [2239] = 893, - [2240] = 916, - [2241] = 1584, - [2242] = 1594, - [2243] = 902, - [2244] = 1592, - [2245] = 1562, - [2246] = 1593, - [2247] = 921, - [2248] = 2248, - [2249] = 920, - [2250] = 2250, - [2251] = 898, - [2252] = 896, - [2253] = 1534, - [2254] = 893, - [2255] = 916, - [2256] = 902, - [2257] = 898, - [2258] = 896, - [2259] = 902, - [2260] = 914, - [2261] = 894, - [2262] = 917, - [2263] = 1592, - [2264] = 1591, - [2265] = 898, - [2266] = 896, - [2267] = 914, - [2268] = 2268, - [2269] = 2269, - [2270] = 903, + [2214] = 2214, + [2215] = 862, + [2216] = 848, + [2217] = 876, + [2218] = 850, + [2219] = 852, + [2220] = 905, + [2221] = 911, + [2222] = 914, + [2223] = 847, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 900, + [2228] = 846, + [2229] = 928, + [2230] = 854, + [2231] = 857, + [2232] = 902, + [2233] = 2233, + [2234] = 899, + [2235] = 853, + [2236] = 878, + [2237] = 898, + [2238] = 1735, + [2239] = 841, + [2240] = 858, + [2241] = 838, + [2242] = 916, + [2243] = 905, + [2244] = 844, + [2245] = 911, + [2246] = 914, + [2247] = 889, + [2248] = 860, + [2249] = 894, + [2250] = 862, + [2251] = 2251, + [2252] = 884, + [2253] = 887, + [2254] = 839, + [2255] = 2255, + [2256] = 2256, + [2257] = 881, + [2258] = 868, + [2259] = 869, + [2260] = 877, + [2261] = 853, + [2262] = 880, + [2263] = 885, + [2264] = 866, + [2265] = 2265, + [2266] = 902, + [2267] = 2267, + [2268] = 875, + [2269] = 862, + [2270] = 2270, [2271] = 2271, - [2272] = 921, - [2273] = 920, - [2274] = 1587, - [2275] = 894, - [2276] = 917, - [2277] = 1584, + [2272] = 2272, + [2273] = 2273, + [2274] = 2274, + [2275] = 905, + [2276] = 911, + [2277] = 914, [2278] = 2278, - [2279] = 1594, - [2280] = 917, - [2281] = 2281, - [2282] = 2282, - [2283] = 1820, - [2284] = 916, - [2285] = 1601, - [2286] = 914, - [2287] = 894, - [2288] = 2288, - [2289] = 893, - [2290] = 903, - [2291] = 920, - [2292] = 2292, - [2293] = 921, - [2294] = 1488, - [2295] = 1593, - [2296] = 921, - [2297] = 2297, - [2298] = 2298, - [2299] = 1562, - [2300] = 2300, - [2301] = 920, - [2302] = 2302, - [2303] = 903, - [2304] = 2304, - [2305] = 914, - [2306] = 2306, - [2307] = 893, - [2308] = 894, - [2309] = 896, - [2310] = 898, - [2311] = 916, - [2312] = 902, - [2313] = 921, - [2314] = 920, - [2315] = 917, + [2279] = 2279, + [2280] = 2280, + [2281] = 886, + [2282] = 872, + [2283] = 862, + [2284] = 846, + [2285] = 2285, + [2286] = 847, + [2287] = 876, + [2288] = 848, + [2289] = 862, + [2290] = 844, + [2291] = 2291, + [2292] = 1418, + [2293] = 894, + [2294] = 889, + [2295] = 914, + [2296] = 911, + [2297] = 905, + [2298] = 916, + [2299] = 1525, + [2300] = 898, + [2301] = 899, + [2302] = 902, + [2303] = 928, + [2304] = 900, + [2305] = 1468, + [2306] = 1514, + [2307] = 1418, + [2308] = 1562, + [2309] = 1601, + [2310] = 1657, + [2311] = 894, + [2312] = 889, + [2313] = 914, + [2314] = 911, + [2315] = 905, [2316] = 916, - [2317] = 893, - [2318] = 921, - [2319] = 1534, - [2320] = 920, - [2321] = 917, - [2322] = 2306, - [2323] = 894, - [2324] = 1592, + [2317] = 1774, + [2318] = 898, + [2319] = 899, + [2320] = 902, + [2321] = 928, + [2322] = 2322, + [2323] = 2323, + [2324] = 1525, [2325] = 2325, - [2326] = 1591, - [2327] = 1534, - [2328] = 1002, - [2329] = 1002, - [2330] = 903, - [2331] = 2306, - [2332] = 2332, - [2333] = 2333, - [2334] = 917, - [2335] = 2306, - [2336] = 1002, - [2337] = 894, - [2338] = 1998, - [2339] = 1820, - [2340] = 841, - [2341] = 2341, - [2342] = 903, + [2326] = 900, + [2327] = 1651, + [2328] = 1653, + [2329] = 2329, + [2330] = 894, + [2331] = 889, + [2332] = 914, + [2333] = 911, + [2334] = 905, + [2335] = 916, + [2336] = 1657, + [2337] = 1668, + [2338] = 898, + [2339] = 899, + [2340] = 902, + [2341] = 928, + [2342] = 900, [2343] = 2343, - [2344] = 1562, - [2345] = 896, - [2346] = 898, - [2347] = 1584, - [2348] = 841, - [2349] = 896, - [2350] = 1587, - [2351] = 2351, + [2344] = 2344, + [2345] = 1774, + [2346] = 2346, + [2347] = 2347, + [2348] = 2291, + [2349] = 2349, + [2350] = 2350, + [2351] = 1668, [2352] = 2352, [2353] = 2353, - [2354] = 893, - [2355] = 2355, - [2356] = 841, - [2357] = 902, - [2358] = 1488, - [2359] = 2359, - [2360] = 898, - [2361] = 2361, - [2362] = 914, + [2354] = 2354, + [2355] = 1653, + [2356] = 1651, + [2357] = 2357, + [2358] = 2358, + [2359] = 1417, + [2360] = 2291, + [2361] = 848, + [2362] = 2362, [2363] = 2363, - [2364] = 1820, - [2365] = 2363, - [2366] = 1534, - [2367] = 2363, - [2368] = 1488, - [2369] = 2363, - [2370] = 841, - [2371] = 1768, - [2372] = 1820, - [2373] = 2363, - [2374] = 2363, - [2375] = 2363, - [2376] = 1601, - [2377] = 1594, - [2378] = 1593, - [2379] = 1562, - [2380] = 1534, - [2381] = 2363, - [2382] = 1584, - [2383] = 841, - [2384] = 2363, - [2385] = 2363, - [2386] = 1592, - [2387] = 1591, - [2388] = 1587, - [2389] = 1587, - [2390] = 1591, - [2391] = 1584, - [2392] = 1592, - [2393] = 1562, - [2394] = 1593, - [2395] = 1594, - [2396] = 1601, - [2397] = 1488, - [2398] = 1601, - [2399] = 1534, - [2400] = 1601, - [2401] = 1488, - [2402] = 841, - [2403] = 1593, - [2404] = 1594, - [2405] = 1594, - [2406] = 1593, - [2407] = 1999, - [2408] = 1594, - [2409] = 1593, - [2410] = 1562, - [2411] = 1587, - [2412] = 841, - [2413] = 841, - [2414] = 1488, - [2415] = 1562, - [2416] = 1592, - [2417] = 1820, - [2418] = 1534, - [2419] = 1562, - [2420] = 1534, - [2421] = 1820, - [2422] = 1592, - [2423] = 1601, - [2424] = 1591, - [2425] = 841, - [2426] = 1591, - [2427] = 1584, - [2428] = 1587, - [2429] = 1591, - [2430] = 1592, - [2431] = 1488, - [2432] = 841, - [2433] = 1601, - [2434] = 1584, - [2435] = 1584, - [2436] = 1594, - [2437] = 1593, - [2438] = 1999, - [2439] = 1562, - [2440] = 1593, - [2441] = 1594, - [2442] = 1488, - [2443] = 1592, - [2444] = 1587, - [2445] = 1601, - [2446] = 1562, - [2447] = 1584, - [2448] = 1592, - [2449] = 1534, - [2450] = 1587, - [2451] = 1584, - [2452] = 1534, - [2453] = 1587, - [2454] = 1488, - [2455] = 1591, - [2456] = 2288, - [2457] = 1591, - [2458] = 1820, - [2459] = 1488, - [2460] = 1601, - [2461] = 841, - [2462] = 1584, - [2463] = 1584, - [2464] = 1534, - [2465] = 1562, - [2466] = 1488, - [2467] = 1587, - [2468] = 1591, - [2469] = 1587, - [2470] = 1562, - [2471] = 1488, - [2472] = 1587, + [2364] = 2364, + [2365] = 2291, + [2366] = 1601, + [2367] = 902, + [2368] = 1562, + [2369] = 1100, + [2370] = 2370, + [2371] = 1774, + [2372] = 1418, + [2373] = 2373, + [2374] = 1514, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 2056, + [2379] = 1468, + [2380] = 905, + [2381] = 911, + [2382] = 914, + [2383] = 1417, + [2384] = 2384, + [2385] = 848, + [2386] = 1525, + [2387] = 1668, + [2388] = 1100, + [2389] = 2389, + [2390] = 2390, + [2391] = 900, + [2392] = 2392, + [2393] = 1657, + [2394] = 1653, + [2395] = 1651, + [2396] = 894, + [2397] = 900, + [2398] = 928, + [2399] = 889, + [2400] = 914, + [2401] = 911, + [2402] = 1100, + [2403] = 905, + [2404] = 916, + [2405] = 894, + [2406] = 889, + [2407] = 914, + [2408] = 911, + [2409] = 905, + [2410] = 916, + [2411] = 1601, + [2412] = 1562, + [2413] = 848, + [2414] = 899, + [2415] = 1417, + [2416] = 898, + [2417] = 898, + [2418] = 899, + [2419] = 902, + [2420] = 928, + [2421] = 928, + [2422] = 2422, + [2423] = 902, + [2424] = 899, + [2425] = 894, + [2426] = 898, + [2427] = 889, + [2428] = 916, + [2429] = 1468, + [2430] = 1514, + [2431] = 900, + [2432] = 1653, + [2433] = 2433, + [2434] = 848, + [2435] = 1668, + [2436] = 1668, + [2437] = 1525, + [2438] = 1657, + [2439] = 1651, + [2440] = 1601, + [2441] = 1514, + [2442] = 1525, + [2443] = 1562, + [2444] = 1418, + [2445] = 1514, + [2446] = 1468, + [2447] = 1417, + [2448] = 2433, + [2449] = 1418, + [2450] = 2433, + [2451] = 2433, + [2452] = 1417, + [2453] = 1562, + [2454] = 2433, + [2455] = 2433, + [2456] = 1774, + [2457] = 1468, + [2458] = 1721, + [2459] = 1601, + [2460] = 2433, + [2461] = 2433, + [2462] = 2433, + [2463] = 2433, + [2464] = 1653, + [2465] = 1657, + [2466] = 1651, + [2467] = 1774, + [2468] = 848, + [2469] = 2346, + [2470] = 1774, + [2471] = 1514, + [2472] = 1468, [2473] = 1562, - [2474] = 1593, - [2475] = 1584, - [2476] = 1534, - [2477] = 1584, - [2478] = 1534, - [2479] = 1593, - [2480] = 1587, - [2481] = 1591, - [2482] = 841, - [2483] = 841, - [2484] = 1592, - [2485] = 1534, - [2486] = 1592, - [2487] = 1594, - [2488] = 1601, - [2489] = 1999, - [2490] = 1592, - [2491] = 1592, - [2492] = 1591, - [2493] = 2493, - [2494] = 1593, - [2495] = 1594, - [2496] = 1534, - [2497] = 841, - [2498] = 1999, - [2499] = 1587, - [2500] = 1488, - [2501] = 2501, - [2502] = 1562, - [2503] = 1584, - [2504] = 2504, - [2505] = 1591, - [2506] = 1587, - [2507] = 1592, - [2508] = 1562, - [2509] = 2509, - [2510] = 1488, - [2511] = 2511, - [2512] = 1591, - [2513] = 1562, - [2514] = 1601, - [2515] = 841, - [2516] = 1584, - [2517] = 1592, - [2518] = 1601, - [2519] = 1594, - [2520] = 1593, - [2521] = 1593, - [2522] = 1488, - [2523] = 1594, - [2524] = 1534, - [2525] = 841, - [2526] = 1591, - [2527] = 1594, - [2528] = 1593, - [2529] = 1594, - [2530] = 1601, - [2531] = 1601, - [2532] = 1488, - [2533] = 1562, - [2534] = 2534, - [2535] = 1591, - [2536] = 2536, - [2537] = 2537, - [2538] = 1594, - [2539] = 2539, - [2540] = 2540, - [2541] = 1594, - [2542] = 1587, - [2543] = 1584, - [2544] = 2544, - [2545] = 1593, - [2546] = 1594, - [2547] = 1593, - [2548] = 1562, - [2549] = 1593, - [2550] = 1488, - [2551] = 841, - [2552] = 1601, - [2553] = 1999, - [2554] = 841, - [2555] = 841, - [2556] = 1592, - [2557] = 1591, - [2558] = 1601, - [2559] = 1594, - [2560] = 1593, - [2561] = 2493, - [2562] = 1587, - [2563] = 1592, - [2564] = 2564, - [2565] = 1488, - [2566] = 1591, - [2567] = 1584, - [2568] = 1587, - [2569] = 1584, - [2570] = 2540, - [2571] = 2571, - [2572] = 1534, - [2573] = 1562, - [2574] = 1534, - [2575] = 2540, - [2576] = 1999, - [2577] = 1562, - [2578] = 1592, - [2579] = 1591, - [2580] = 1601, - [2581] = 1587, - [2582] = 1584, - [2583] = 1488, - [2584] = 1601, - [2585] = 1594, - [2586] = 1593, - [2587] = 1592, - [2588] = 2504, - [2589] = 1562, - [2590] = 841, - [2591] = 1591, - [2592] = 1534, - [2593] = 1592, - [2594] = 2540, - [2595] = 2595, - [2596] = 1488, - [2597] = 1587, - [2598] = 1584, - [2599] = 1534, - [2600] = 841, - [2601] = 1601, - [2602] = 1534, - [2603] = 2603, - [2604] = 2604, - [2605] = 1594, - [2606] = 1587, - [2607] = 1601, - [2608] = 1594, - [2609] = 1591, - [2610] = 1593, - [2611] = 1562, - [2612] = 2612, - [2613] = 841, - [2614] = 2614, + [2474] = 1601, + [2475] = 1562, + [2476] = 1525, + [2477] = 2075, + [2478] = 1417, + [2479] = 848, + [2480] = 1418, + [2481] = 1417, + [2482] = 1468, + [2483] = 1418, + [2484] = 1657, + [2485] = 1514, + [2486] = 1418, + [2487] = 1653, + [2488] = 1657, + [2489] = 848, + [2490] = 1525, + [2491] = 1562, + [2492] = 1525, + [2493] = 1668, + [2494] = 1514, + [2495] = 1668, + [2496] = 1417, + [2497] = 1468, + [2498] = 848, + [2499] = 1514, + [2500] = 1525, + [2501] = 1418, + [2502] = 1601, + [2503] = 1651, + [2504] = 1657, + [2505] = 1651, + [2506] = 1514, + [2507] = 848, + [2508] = 1601, + [2509] = 1651, + [2510] = 1653, + [2511] = 1774, + [2512] = 1651, + [2513] = 1653, + [2514] = 1653, + [2515] = 1601, + [2516] = 1562, + [2517] = 1562, + [2518] = 1468, + [2519] = 1668, + [2520] = 1601, + [2521] = 1417, + [2522] = 1525, + [2523] = 2075, + [2524] = 1774, + [2525] = 848, + [2526] = 1651, + [2527] = 1468, + [2528] = 1657, + [2529] = 1653, + [2530] = 1417, + [2531] = 1668, + [2532] = 1668, + [2533] = 1418, + [2534] = 1657, + [2535] = 1417, + [2536] = 1657, + [2537] = 1653, + [2538] = 848, + [2539] = 1651, + [2540] = 1651, + [2541] = 1668, + [2542] = 2542, + [2543] = 1668, + [2544] = 1525, + [2545] = 1417, + [2546] = 1468, + [2547] = 1468, + [2548] = 1657, + [2549] = 1653, + [2550] = 1601, + [2551] = 1651, + [2552] = 1514, + [2553] = 1601, + [2554] = 1657, + [2555] = 1653, + [2556] = 1562, + [2557] = 1525, + [2558] = 2075, + [2559] = 1514, + [2560] = 1651, + [2561] = 1418, + [2562] = 1601, + [2563] = 1514, + [2564] = 1562, + [2565] = 1468, + [2566] = 1417, + [2567] = 1653, + [2568] = 1525, + [2569] = 1562, + [2570] = 1525, + [2571] = 1418, + [2572] = 1514, + [2573] = 1468, + [2574] = 1417, + [2575] = 1418, + [2576] = 2576, + [2577] = 1651, + [2578] = 1418, + [2579] = 1514, + [2580] = 1468, + [2581] = 1562, + [2582] = 1601, + [2583] = 1562, + [2584] = 848, + [2585] = 1601, + [2586] = 2586, + [2587] = 1417, + [2588] = 1668, + [2589] = 1468, + [2590] = 1417, + [2591] = 1562, + [2592] = 848, + [2593] = 1653, + [2594] = 1657, + [2595] = 1418, + [2596] = 848, + [2597] = 1653, + [2598] = 1651, + [2599] = 2075, + [2600] = 2600, + [2601] = 2601, + [2602] = 1668, + [2603] = 848, + [2604] = 1668, + [2605] = 1418, + [2606] = 848, + [2607] = 1668, + [2608] = 1514, + [2609] = 1601, + [2610] = 1525, + [2611] = 1525, + [2612] = 1657, + [2613] = 1657, + [2614] = 848, [2615] = 1562, - [2616] = 2616, - [2617] = 1534, + [2616] = 1668, + [2617] = 1601, [2618] = 1562, - [2619] = 1562, - [2620] = 1534, - [2621] = 1593, - [2622] = 1592, - [2623] = 1584, - [2624] = 1587, - [2625] = 1592, - [2626] = 1534, - [2627] = 1584, - [2628] = 1591, - [2629] = 1488, - [2630] = 1584, - [2631] = 1488, - [2632] = 1591, - [2633] = 1587, - [2634] = 1592, - [2635] = 1587, - [2636] = 841, - [2637] = 1587, - [2638] = 1584, - [2639] = 1591, - [2640] = 1592, - [2641] = 1593, - [2642] = 1594, - [2643] = 1601, - [2644] = 1587, - [2645] = 1534, - [2646] = 1584, - [2647] = 1488, - [2648] = 1562, - [2649] = 1593, + [2619] = 1525, + [2620] = 1657, + [2621] = 2600, + [2622] = 2622, + [2623] = 2623, + [2624] = 1418, + [2625] = 1514, + [2626] = 1468, + [2627] = 2627, + [2628] = 1668, + [2629] = 848, + [2630] = 1525, + [2631] = 1657, + [2632] = 1653, + [2633] = 1651, + [2634] = 848, + [2635] = 848, + [2636] = 1417, + [2637] = 848, + [2638] = 1468, + [2639] = 1601, + [2640] = 1514, + [2641] = 1418, + [2642] = 1417, + [2643] = 2576, + [2644] = 1668, + [2645] = 1651, + [2646] = 1653, + [2647] = 1657, + [2648] = 1653, + [2649] = 1651, [2650] = 1601, - [2651] = 1594, - [2652] = 1601, - [2653] = 1592, - [2654] = 1488, - [2655] = 841, - [2656] = 1594, - [2657] = 1534, - [2658] = 841, - [2659] = 1488, - [2660] = 1488, - [2661] = 1534, - [2662] = 1591, - [2663] = 1999, - [2664] = 1562, - [2665] = 1584, - [2666] = 1999, - [2667] = 841, - [2668] = 841, - [2669] = 1999, - [2670] = 1593, - [2671] = 1591, - [2672] = 1601, - [2673] = 1601, - [2674] = 1594, - [2675] = 1593, - [2676] = 1592, - [2677] = 2677, - [2678] = 2677, - [2679] = 2679, - [2680] = 2679, + [2651] = 1657, + [2652] = 2652, + [2653] = 1562, + [2654] = 1601, + [2655] = 2075, + [2656] = 1601, + [2657] = 1668, + [2658] = 1562, + [2659] = 1651, + [2660] = 1417, + [2661] = 1418, + [2662] = 1418, + [2663] = 1514, + [2664] = 1514, + [2665] = 1468, + [2666] = 2622, + [2667] = 1562, + [2668] = 1651, + [2669] = 1653, + [2670] = 1657, + [2671] = 1468, + [2672] = 1525, + [2673] = 2673, + [2674] = 1418, + [2675] = 2675, + [2676] = 2676, + [2677] = 1653, + [2678] = 1668, + [2679] = 2622, + [2680] = 2680, [2681] = 2681, - [2682] = 2682, - [2683] = 2682, - [2684] = 2677, - [2685] = 2685, - [2686] = 2685, - [2687] = 2681, - [2688] = 2679, - [2689] = 2681, - [2690] = 2682, - [2691] = 2681, - [2692] = 2685, - [2693] = 2693, - [2694] = 2694, - [2695] = 2681, - [2696] = 726, - [2697] = 725, - [2698] = 2698, - [2699] = 724, - [2700] = 2700, - [2701] = 724, - [2702] = 725, - [2703] = 724, - [2704] = 2704, - [2705] = 2705, - [2706] = 725, - [2707] = 726, - [2708] = 726, + [2682] = 1468, + [2683] = 2683, + [2684] = 1525, + [2685] = 1417, + [2686] = 1417, + [2687] = 1514, + [2688] = 1525, + [2689] = 2075, + [2690] = 2622, + [2691] = 1668, + [2692] = 1525, + [2693] = 1562, + [2694] = 1651, + [2695] = 1653, + [2696] = 1657, + [2697] = 1525, + [2698] = 1668, + [2699] = 1668, + [2700] = 1418, + [2701] = 1525, + [2702] = 2702, + [2703] = 1657, + [2704] = 1653, + [2705] = 1651, + [2706] = 1601, + [2707] = 1468, + [2708] = 1418, [2709] = 2709, - [2710] = 2710, - [2711] = 2711, - [2712] = 2712, + [2710] = 1514, + [2711] = 1418, + [2712] = 1601, [2713] = 2713, - [2714] = 2714, - [2715] = 2715, - [2716] = 2716, - [2717] = 2717, - [2718] = 2718, + [2714] = 1562, + [2715] = 2075, + [2716] = 848, + [2717] = 1562, + [2718] = 1514, [2719] = 2719, - [2720] = 2720, - [2721] = 2721, - [2722] = 2722, - [2723] = 2723, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 2727, - [2728] = 2728, - [2729] = 2729, - [2730] = 2730, - [2731] = 2731, - [2732] = 2732, - [2733] = 2733, - [2734] = 2734, - [2735] = 2735, - [2736] = 2736, - [2737] = 2737, - [2738] = 2738, - [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 724, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, - [2755] = 2755, - [2756] = 2756, - [2757] = 2757, - [2758] = 2758, - [2759] = 2759, - [2760] = 2760, - [2761] = 2761, - [2762] = 2762, - [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 725, + [2720] = 1468, + [2721] = 1418, + [2722] = 1514, + [2723] = 1468, + [2724] = 2075, + [2725] = 1668, + [2726] = 1657, + [2727] = 1653, + [2728] = 1417, + [2729] = 1651, + [2730] = 1417, + [2731] = 1601, + [2732] = 1601, + [2733] = 1418, + [2734] = 1417, + [2735] = 1417, + [2736] = 848, + [2737] = 1514, + [2738] = 1468, + [2739] = 1514, + [2740] = 1657, + [2741] = 1562, + [2742] = 1468, + [2743] = 1468, + [2744] = 1651, + [2745] = 1514, + [2746] = 1418, + [2747] = 848, + [2748] = 1417, + [2749] = 848, + [2750] = 848, + [2751] = 1417, + [2752] = 1601, + [2753] = 1653, + [2754] = 848, + [2755] = 2075, + [2756] = 1668, + [2757] = 1525, + [2758] = 1562, + [2759] = 1657, + [2760] = 1653, + [2761] = 1651, + [2762] = 1651, + [2763] = 1653, + [2764] = 1657, + [2765] = 1601, + [2766] = 1525, + [2767] = 1562, + [2768] = 1668, + [2769] = 1525, [2770] = 2770, - [2771] = 726, + [2771] = 2771, [2772] = 2772, - [2773] = 2744, - [2774] = 2734, - [2775] = 2709, - [2776] = 725, - [2777] = 2731, - [2778] = 2727, - [2779] = 2726, - [2780] = 2764, - [2781] = 726, - [2782] = 2762, - [2783] = 2725, - [2784] = 2724, - [2785] = 2756, - [2786] = 2761, - [2787] = 2721, - [2788] = 2745, - [2789] = 2739, - [2790] = 2755, - [2791] = 2754, - [2792] = 2752, - [2793] = 2758, - [2794] = 2772, - [2795] = 2765, - [2796] = 2763, - [2797] = 2732, - [2798] = 2753, - [2799] = 2720, - [2800] = 2730, - [2801] = 2718, - [2802] = 2729, - [2803] = 2757, - [2804] = 2751, - [2805] = 2749, - [2806] = 2723, - [2807] = 2736, - [2808] = 2728, - [2809] = 2742, - [2810] = 2719, - [2811] = 2717, - [2812] = 2748, - [2813] = 2715, - [2814] = 2743, - [2815] = 2713, - [2816] = 2716, - [2817] = 2767, - [2818] = 2741, - [2819] = 2746, - [2820] = 2710, - [2821] = 2747, - [2822] = 2722, - [2823] = 2712, - [2824] = 2770, - [2825] = 2759, - [2826] = 2760, - [2827] = 2714, - [2828] = 2738, + [2773] = 2772, + [2774] = 2774, + [2775] = 2775, + [2776] = 2770, + [2777] = 2777, + [2778] = 2772, + [2779] = 2775, + [2780] = 2777, + [2781] = 2777, + [2782] = 2771, + [2783] = 2771, + [2784] = 2772, + [2785] = 2775, + [2786] = 2772, + [2787] = 2787, + [2788] = 2770, + [2789] = 724, + [2790] = 2790, + [2791] = 722, + [2792] = 725, + [2793] = 724, + [2794] = 725, + [2795] = 722, + [2796] = 722, + [2797] = 2797, + [2798] = 724, + [2799] = 2799, + [2800] = 2800, + [2801] = 725, + [2802] = 2802, + [2803] = 725, + [2804] = 2804, + [2805] = 2805, + [2806] = 2806, + [2807] = 2807, + [2808] = 2808, + [2809] = 2809, + [2810] = 724, + [2811] = 2811, + [2812] = 2812, + [2813] = 2813, + [2814] = 2814, + [2815] = 2815, + [2816] = 2816, + [2817] = 2817, + [2818] = 2818, + [2819] = 2819, + [2820] = 2820, + [2821] = 2821, + [2822] = 2822, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2827, + [2828] = 2828, [2829] = 2829, - [2830] = 2737, - [2831] = 2711, - [2832] = 2735, - [2833] = 2740, - [2834] = 2768, - [2835] = 2733, - [2836] = 2766, - [2837] = 2737, - [2838] = 2753, - [2839] = 2755, - [2840] = 2710, - [2841] = 2758, - [2842] = 2747, - [2843] = 2772, - [2844] = 2752, - [2845] = 2741, - [2846] = 1287, - [2847] = 725, - [2848] = 2733, - [2849] = 2734, - [2850] = 724, - [2851] = 2760, - [2852] = 2738, - [2853] = 2759, - [2854] = 726, - [2855] = 2715, - [2856] = 2732, - [2857] = 2730, - [2858] = 2714, - [2859] = 2729, - [2860] = 2744, - [2861] = 2728, - [2862] = 2746, - [2863] = 2722, - [2864] = 2745, - [2865] = 2765, - [2866] = 2764, - [2867] = 2763, - [2868] = 2762, - [2869] = 2742, - [2870] = 2756, - [2871] = 2720, - [2872] = 2766, - [2873] = 2768, - [2874] = 2736, - [2875] = 2718, - [2876] = 2743, - [2877] = 2757, - [2878] = 2709, - [2879] = 2761, - [2880] = 2740, - [2881] = 2739, - [2882] = 2731, - [2883] = 2727, - [2884] = 2721, - [2885] = 2726, - [2886] = 2725, - [2887] = 2754, - [2888] = 2723, - [2889] = 2719, - [2890] = 2770, - [2891] = 2735, - [2892] = 2717, - [2893] = 2724, - [2894] = 2894, - [2895] = 2767, - [2896] = 2713, - [2897] = 2751, - [2898] = 2749, - [2899] = 2716, - [2900] = 2748, - [2901] = 2712, - [2902] = 2711, - [2903] = 2903, - [2904] = 2904, - [2905] = 2905, - [2906] = 2905, - [2907] = 2905, - [2908] = 2908, - [2909] = 2904, - [2910] = 2904, - [2911] = 2911, - [2912] = 2911, - [2913] = 2905, - [2914] = 2904, - [2915] = 2904, - [2916] = 2911, - [2917] = 2911, - [2918] = 2904, - [2919] = 2504, - [2920] = 725, - [2921] = 2921, - [2922] = 1844, - [2923] = 2923, - [2924] = 1819, - [2925] = 2925, - [2926] = 724, - [2927] = 1640, - [2928] = 726, - [2929] = 1647, - [2930] = 1665, - [2931] = 2931, - [2932] = 2932, - [2933] = 2933, - [2934] = 2934, - [2935] = 2933, - [2936] = 2936, - [2937] = 2034, - [2938] = 2936, - [2939] = 2931, - [2940] = 2931, - [2941] = 815, - [2942] = 2931, - [2943] = 2943, - [2944] = 2933, - [2945] = 2931, - [2946] = 2933, - [2947] = 2933, - [2948] = 2936, - [2949] = 2200, - [2950] = 2931, - [2951] = 2933, - [2952] = 2931, - [2953] = 2936, - [2954] = 2933, - [2955] = 2931, - [2956] = 2936, - [2957] = 2205, - [2958] = 2931, - [2959] = 2931, - [2960] = 2933, - [2961] = 2936, - [2962] = 2933, - [2963] = 2936, - [2964] = 2149, - [2965] = 2933, - [2966] = 2931, - [2967] = 2933, - [2968] = 2936, - [2969] = 2148, - [2970] = 2933, - [2971] = 2931, - [2972] = 2936, - [2973] = 2936, - [2974] = 2931, - [2975] = 2936, - [2976] = 2933, - [2977] = 2931, - [2978] = 2931, - [2979] = 2936, - [2980] = 2933, - [2981] = 2931, - [2982] = 2931, - [2983] = 2933, - [2984] = 2936, - [2985] = 2931, - [2986] = 2936, - [2987] = 2145, - [2988] = 2933, - [2989] = 2989, - [2990] = 2936, - [2991] = 2936, - [2992] = 2931, - [2993] = 2048, - [2994] = 2994, - [2995] = 2995, - [2996] = 2933, - [2997] = 2931, - [2998] = 2936, - [2999] = 2933, - [3000] = 2931, - [3001] = 2933, - [3002] = 2933, - [3003] = 2936, - [3004] = 2936, - [3005] = 2936, - [3006] = 2933, - [3007] = 2936, - [3008] = 2209, - [3009] = 2931, - [3010] = 2931, - [3011] = 2931, - [3012] = 2933, - [3013] = 2936, - [3014] = 2933, - [3015] = 2107, - [3016] = 2220, - [3017] = 1990, - [3018] = 1922, - [3019] = 2931, - [3020] = 2933, - [3021] = 2931, - [3022] = 2936, - [3023] = 2903, - [3024] = 2933, - [3025] = 2936, - [3026] = 3026, - [3027] = 2216, - [3028] = 2933, - [3029] = 2931, - [3030] = 2933, - [3031] = 2936, - [3032] = 2931, - [3033] = 2933, - [3034] = 2936, - [3035] = 2931, - [3036] = 2933, - [3037] = 2144, - [3038] = 2933, - [3039] = 2936, - [3040] = 2936, - [3041] = 2931, - [3042] = 2050, - [3043] = 2932, - [3044] = 2933, - [3045] = 2068, - [3046] = 2160, - [3047] = 2936, - [3048] = 2931, - [3049] = 2933, - [3050] = 3026, - [3051] = 2036, - [3052] = 2139, - [3053] = 2936, - [3054] = 2931, - [3055] = 3055, - [3056] = 2936, - [3057] = 2933, - [3058] = 2936, - [3059] = 2931, - [3060] = 2936, - [3061] = 2073, - [3062] = 1937, - [3063] = 2223, - [3064] = 2931, - [3065] = 1938, - [3066] = 2211, - [3067] = 2933, - [3068] = 2936, - [3069] = 2931, - [3070] = 2168, - [3071] = 2931, - [3072] = 2931, - [3073] = 2931, - [3074] = 2105, - [3075] = 2173, - [3076] = 2936, - [3077] = 2933, - [3078] = 2933, - [3079] = 2203, - [3080] = 2936, - [3081] = 2936, - [3082] = 2933, - [3083] = 2931, - [3084] = 2933, - [3085] = 2933, - [3086] = 2936, - [3087] = 2933, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, + [2839] = 2839, + [2840] = 2840, + [2841] = 722, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 2849, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 2863, + [2864] = 2864, + [2865] = 2865, + [2866] = 2838, + [2867] = 2852, + [2868] = 2845, + [2869] = 2846, + [2870] = 2856, + [2871] = 2847, + [2872] = 725, + [2873] = 724, + [2874] = 2874, + [2875] = 2840, + [2876] = 2837, + [2877] = 2836, + [2878] = 2833, + [2879] = 2832, + [2880] = 2850, + [2881] = 2853, + [2882] = 2831, + [2883] = 2830, + [2884] = 2829, + [2885] = 2860, + [2886] = 2828, + [2887] = 2859, + [2888] = 2858, + [2889] = 2857, + [2890] = 2802, + [2891] = 2865, + [2892] = 2861, + [2893] = 2855, + [2894] = 2854, + [2895] = 2821, + [2896] = 2818, + [2897] = 2823, + [2898] = 2825, + [2899] = 2824, + [2900] = 2822, + [2901] = 2848, + [2902] = 2849, + [2903] = 2843, + [2904] = 2826, + [2905] = 2842, + [2906] = 2827, + [2907] = 2807, + [2908] = 2805, + [2909] = 2806, + [2910] = 2809, + [2911] = 2812, + [2912] = 2804, + [2913] = 2834, + [2914] = 2808, + [2915] = 2835, + [2916] = 2814, + [2917] = 2817, + [2918] = 2820, + [2919] = 2815, + [2920] = 2816, + [2921] = 2819, + [2922] = 2813, + [2923] = 2811, + [2924] = 2864, + [2925] = 2863, + [2926] = 2862, + [2927] = 2851, + [2928] = 2839, + [2929] = 2844, + [2930] = 2842, + [2931] = 2809, + [2932] = 2835, + [2933] = 2843, + [2934] = 2845, + [2935] = 2846, + [2936] = 2844, + [2937] = 2856, + [2938] = 2847, + [2939] = 2852, + [2940] = 2861, + [2941] = 2862, + [2942] = 2848, + [2943] = 2849, + [2944] = 722, + [2945] = 2863, + [2946] = 2851, + [2947] = 2827, + [2948] = 2864, + [2949] = 2949, + [2950] = 2822, + [2951] = 2824, + [2952] = 724, + [2953] = 2821, + [2954] = 2828, + [2955] = 2829, + [2956] = 2830, + [2957] = 2831, + [2958] = 2807, + [2959] = 2805, + [2960] = 2811, + [2961] = 2832, + [2962] = 2806, + [2963] = 2825, + [2964] = 2812, + [2965] = 2804, + [2966] = 2833, + [2967] = 2808, + [2968] = 2814, + [2969] = 2817, + [2970] = 2820, + [2971] = 2815, + [2972] = 2816, + [2973] = 2858, + [2974] = 2819, + [2975] = 2813, + [2976] = 2836, + [2977] = 2859, + [2978] = 2850, + [2979] = 2853, + [2980] = 2837, + [2981] = 2838, + [2982] = 2840, + [2983] = 725, + [2984] = 2854, + [2985] = 1385, + [2986] = 2818, + [2987] = 2855, + [2988] = 2834, + [2989] = 2857, + [2990] = 2823, + [2991] = 2839, + [2992] = 2802, + [2993] = 2865, + [2994] = 2860, + [2995] = 2826, + [2996] = 2996, + [2997] = 2996, + [2998] = 2998, + [2999] = 2576, + [3000] = 2996, + [3001] = 3001, + [3002] = 2998, + [3003] = 2996, + [3004] = 3004, + [3005] = 2998, + [3006] = 2998, + [3007] = 3004, + [3008] = 2998, + [3009] = 3009, + [3010] = 3004, + [3011] = 2998, + [3012] = 3004, + [3013] = 722, + [3014] = 3014, + [3015] = 725, + [3016] = 1788, + [3017] = 1781, + [3018] = 1786, + [3019] = 1816, + [3020] = 724, + [3021] = 3021, + [3022] = 1767, + [3023] = 3023, + [3024] = 3024, + [3025] = 3024, + [3026] = 3024, + [3027] = 3027, + [3028] = 3028, + [3029] = 3024, + [3030] = 3027, + [3031] = 2160, + [3032] = 3028, + [3033] = 2165, + [3034] = 2166, + [3035] = 3024, + [3036] = 2172, + [3037] = 2177, + [3038] = 2179, + [3039] = 2183, + [3040] = 796, + [3041] = 3027, + [3042] = 3028, + [3043] = 3024, + [3044] = 3027, + [3045] = 3028, + [3046] = 3024, + [3047] = 2184, + [3048] = 2186, + [3049] = 3049, + [3050] = 3027, + [3051] = 3051, + [3052] = 2193, + [3053] = 3053, + [3054] = 2197, + [3055] = 3027, + [3056] = 3028, + [3057] = 3028, + [3058] = 2203, + [3059] = 3024, + [3060] = 3024, + [3061] = 3027, + [3062] = 3028, + [3063] = 2204, + [3064] = 3001, + [3065] = 3024, + [3066] = 2205, + [3067] = 2206, + [3068] = 2208, + [3069] = 2115, + [3070] = 2097, + [3071] = 3024, + [3072] = 3072, + [3073] = 3027, + [3074] = 2214, + [3075] = 2093, + [3076] = 2088, + [3077] = 3077, + [3078] = 2226, + [3079] = 3028, + [3080] = 3024, + [3081] = 3027, + [3082] = 3028, + [3083] = 2083, + [3084] = 3024, + [3085] = 2265, + [3086] = 2267, + [3087] = 2271, [3088] = 3088, - [3089] = 2903, - [3090] = 2931, - [3091] = 2933, - [3092] = 2933, - [3093] = 2931, - [3094] = 2931, - [3095] = 2936, - [3096] = 2933, - [3097] = 2936, - [3098] = 2070, - [3099] = 2181, - [3100] = 2086, - [3101] = 2933, - [3102] = 2936, - [3103] = 2931, - [3104] = 2931, - [3105] = 2933, - [3106] = 2936, - [3107] = 2936, - [3108] = 2936, - [3109] = 2161, - [3110] = 2022, - [3111] = 2933, - [3112] = 2936, - [3113] = 2931, - [3114] = 2933, - [3115] = 2936, - [3116] = 2931, - [3117] = 2931, - [3118] = 2936, - [3119] = 2088, - [3120] = 2931, - [3121] = 2098, - [3122] = 2936, - [3123] = 2099, - [3124] = 2193, - [3125] = 2933, - [3126] = 2122, - [3127] = 2931, - [3128] = 2936, - [3129] = 2933, - [3130] = 2064, - [3131] = 2936, - [3132] = 2931, - [3133] = 2936, - [3134] = 2188, - [3135] = 2933, - [3136] = 2933, - [3137] = 2931, - [3138] = 884, - [3139] = 2036, - [3140] = 2050, - [3141] = 2086, - [3142] = 2022, - [3143] = 2064, - [3144] = 2034, - [3145] = 2068, - [3146] = 2160, - [3147] = 2139, - [3148] = 1938, - [3149] = 2073, - [3150] = 1937, - [3151] = 2034, - [3152] = 3152, - [3153] = 2504, - [3154] = 3154, - [3155] = 3155, - [3156] = 2086, - [3157] = 2921, - [3158] = 2088, - [3159] = 2098, - [3160] = 3160, - [3161] = 815, - [3162] = 885, - [3163] = 2200, - [3164] = 1990, - [3165] = 875, - [3166] = 2220, - [3167] = 2099, - [3168] = 2223, - [3169] = 2211, - [3170] = 2205, - [3171] = 2022, - [3172] = 2036, - [3173] = 2050, - [3174] = 3160, - [3175] = 2068, - [3176] = 2205, - [3177] = 2203, - [3178] = 2073, - [3179] = 2088, - [3180] = 2200, - [3181] = 2098, - [3182] = 2099, - [3183] = 2139, - [3184] = 2144, - [3185] = 2145, - [3186] = 2149, - [3187] = 2064, - [3188] = 2168, - [3189] = 2216, - [3190] = 2188, - [3191] = 2048, - [3192] = 863, - [3193] = 2173, - [3194] = 862, - [3195] = 725, - [3196] = 1922, - [3197] = 2181, - [3198] = 2181, - [3199] = 867, - [3200] = 2173, - [3201] = 2168, - [3202] = 854, - [3203] = 866, - [3204] = 2188, - [3205] = 2216, - [3206] = 2203, - [3207] = 842, - [3208] = 2211, - [3209] = 2223, - [3210] = 2220, - [3211] = 1938, - [3212] = 724, - [3213] = 3213, - [3214] = 2161, - [3215] = 2122, - [3216] = 815, - [3217] = 845, - [3218] = 1990, - [3219] = 3219, - [3220] = 2161, - [3221] = 846, - [3222] = 848, - [3223] = 851, - [3224] = 2160, - [3225] = 855, - [3226] = 3226, - [3227] = 857, - [3228] = 858, - [3229] = 1937, - [3230] = 840, - [3231] = 869, - [3232] = 861, - [3233] = 882, - [3234] = 2149, - [3235] = 2148, - [3236] = 843, - [3237] = 726, - [3238] = 2145, - [3239] = 874, - [3240] = 873, - [3241] = 872, - [3242] = 841, - [3243] = 853, - [3244] = 2144, - [3245] = 860, - [3246] = 3246, - [3247] = 860, - [3248] = 840, - [3249] = 3249, - [3250] = 841, - [3251] = 724, - [3252] = 3249, - [3253] = 3249, - [3254] = 866, - [3255] = 3249, - [3256] = 724, - [3257] = 885, - [3258] = 884, - [3259] = 3259, - [3260] = 875, - [3261] = 725, - [3262] = 726, - [3263] = 3249, - [3264] = 3264, - [3265] = 840, - [3266] = 869, - [3267] = 853, - [3268] = 872, - [3269] = 873, - [3270] = 874, - [3271] = 882, - [3272] = 861, - [3273] = 863, - [3274] = 862, - [3275] = 858, - [3276] = 867, - [3277] = 866, - [3278] = 854, - [3279] = 857, - [3280] = 3264, - [3281] = 855, - [3282] = 851, - [3283] = 848, - [3284] = 846, - [3285] = 845, - [3286] = 843, - [3287] = 841, - [3288] = 842, - [3289] = 726, - [3290] = 725, - [3291] = 3249, - [3292] = 842, - [3293] = 3264, - [3294] = 726, - [3295] = 725, - [3296] = 854, - [3297] = 867, - [3298] = 845, - [3299] = 724, - [3300] = 862, - [3301] = 863, - [3302] = 882, - [3303] = 869, - [3304] = 857, - [3305] = 861, - [3306] = 885, - [3307] = 848, - [3308] = 3264, - [3309] = 846, - [3310] = 855, - [3311] = 851, - [3312] = 858, - [3313] = 815, - [3314] = 875, - [3315] = 860, - [3316] = 3316, - [3317] = 853, - [3318] = 872, - [3319] = 884, - [3320] = 873, - [3321] = 874, - [3322] = 843, - [3323] = 725, - [3324] = 3324, - [3325] = 857, - [3326] = 3326, - [3327] = 861, - [3328] = 3328, - [3329] = 882, - [3330] = 843, - [3331] = 874, - [3332] = 873, - [3333] = 872, - [3334] = 3334, - [3335] = 853, - [3336] = 860, - [3337] = 869, - [3338] = 3338, - [3339] = 840, - [3340] = 3324, - [3341] = 3341, - [3342] = 3342, - [3343] = 3343, - [3344] = 3324, - [3345] = 3324, - [3346] = 3346, - [3347] = 3324, - [3348] = 3348, - [3349] = 3324, - [3350] = 3350, - [3351] = 3328, - [3352] = 3324, - [3353] = 3324, - [3354] = 3341, - [3355] = 3324, - [3356] = 3346, - [3357] = 3324, - [3358] = 3324, - [3359] = 3348, - [3360] = 3360, - [3361] = 3326, - [3362] = 3324, - [3363] = 3350, - [3364] = 724, - [3365] = 884, - [3366] = 3324, - [3367] = 3324, - [3368] = 3341, - [3369] = 3343, - [3370] = 3350, - [3371] = 3324, - [3372] = 3372, - [3373] = 3324, - [3374] = 3346, - [3375] = 3348, - [3376] = 3324, - [3377] = 3328, - [3378] = 3324, - [3379] = 3324, - [3380] = 3348, - [3381] = 3324, - [3382] = 3346, - [3383] = 3341, - [3384] = 3324, - [3385] = 3324, - [3386] = 3324, - [3387] = 885, - [3388] = 3350, - [3389] = 3324, - [3390] = 3328, - [3391] = 3350, - [3392] = 855, - [3393] = 851, - [3394] = 3324, - [3395] = 3328, - [3396] = 848, - [3397] = 846, - [3398] = 3398, - [3399] = 3324, - [3400] = 724, - [3401] = 3324, - [3402] = 3324, - [3403] = 3328, - [3404] = 3404, - [3405] = 3360, - [3406] = 3324, - [3407] = 3324, - [3408] = 726, - [3409] = 724, - [3410] = 3410, - [3411] = 845, - [3412] = 3412, - [3413] = 3324, - [3414] = 3326, - [3415] = 3360, - [3416] = 3326, - [3417] = 3404, - [3418] = 3350, - [3419] = 858, - [3420] = 3324, - [3421] = 3421, - [3422] = 3324, - [3423] = 3324, - [3424] = 3341, - [3425] = 842, - [3426] = 3343, - [3427] = 725, - [3428] = 3324, - [3429] = 726, - [3430] = 3326, - [3431] = 3346, - [3432] = 854, - [3433] = 3324, + [3089] = 3089, + [3090] = 3027, + [3091] = 3028, + [3092] = 3024, + [3093] = 2274, + [3094] = 3094, + [3095] = 3027, + [3096] = 3028, + [3097] = 3027, + [3098] = 3024, + [3099] = 2054, + [3100] = 3027, + [3101] = 3028, + [3102] = 3024, + [3103] = 3103, + [3104] = 3028, + [3105] = 3024, + [3106] = 3027, + [3107] = 3028, + [3108] = 3024, + [3109] = 3027, + [3110] = 3027, + [3111] = 3028, + [3112] = 3028, + [3113] = 3024, + [3114] = 3024, + [3115] = 2029, + [3116] = 3027, + [3117] = 2025, + [3118] = 3028, + [3119] = 3024, + [3120] = 3027, + [3121] = 3027, + [3122] = 3024, + [3123] = 3028, + [3124] = 3027, + [3125] = 3027, + [3126] = 3027, + [3127] = 1954, + [3128] = 3028, + [3129] = 3024, + [3130] = 3024, + [3131] = 3028, + [3132] = 3027, + [3133] = 3027, + [3134] = 3028, + [3135] = 3024, + [3136] = 3024, + [3137] = 2256, + [3138] = 3094, + [3139] = 3027, + [3140] = 3028, + [3141] = 3024, + [3142] = 3024, + [3143] = 3028, + [3144] = 3027, + [3145] = 3028, + [3146] = 3024, + [3147] = 3027, + [3148] = 3028, + [3149] = 2273, + [3150] = 2225, + [3151] = 3049, + [3152] = 3024, + [3153] = 3027, + [3154] = 3028, + [3155] = 3028, + [3156] = 3024, + [3157] = 3027, + [3158] = 1931, + [3159] = 3027, + [3160] = 2233, + [3161] = 1933, + [3162] = 3028, + [3163] = 3024, + [3164] = 3027, + [3165] = 3028, + [3166] = 3024, + [3167] = 3027, + [3168] = 3028, + [3169] = 3024, + [3170] = 3028, + [3171] = 3024, + [3172] = 3024, + [3173] = 3027, + [3174] = 3028, + [3175] = 3027, + [3176] = 3028, + [3177] = 3024, + [3178] = 3027, + [3179] = 3028, + [3180] = 3028, + [3181] = 3028, + [3182] = 3024, + [3183] = 3027, + [3184] = 3028, + [3185] = 3024, + [3186] = 3027, + [3187] = 3028, + [3188] = 3024, + [3189] = 2035, + [3190] = 3027, + [3191] = 3024, + [3192] = 3027, + [3193] = 3027, + [3194] = 3028, + [3195] = 3027, + [3196] = 3028, + [3197] = 3024, + [3198] = 3027, + [3199] = 2196, + [3200] = 3028, + [3201] = 3024, + [3202] = 3024, + [3203] = 3027, + [3204] = 3028, + [3205] = 3024, + [3206] = 3027, + [3207] = 2157, + [3208] = 2095, + [3209] = 3027, + [3210] = 2111, + [3211] = 3028, + [3212] = 3027, + [3213] = 3024, + [3214] = 3028, + [3215] = 3028, + [3216] = 3024, + [3217] = 3027, + [3218] = 3027, + [3219] = 3024, + [3220] = 3028, + [3221] = 3028, + [3222] = 3024, + [3223] = 2158, + [3224] = 3024, + [3225] = 3027, + [3226] = 3028, + [3227] = 3028, + [3228] = 3028, + [3229] = 3027, + [3230] = 3027, + [3231] = 3028, + [3232] = 3001, + [3233] = 3024, + [3234] = 860, + [3235] = 2184, + [3236] = 3236, + [3237] = 2158, + [3238] = 2204, + [3239] = 2203, + [3240] = 850, + [3241] = 876, + [3242] = 725, + [3243] = 724, + [3244] = 2214, + [3245] = 872, + [3246] = 2225, + [3247] = 2226, + [3248] = 2265, + [3249] = 2267, + [3250] = 2271, + [3251] = 2274, + [3252] = 3252, + [3253] = 3253, + [3254] = 847, + [3255] = 846, + [3256] = 886, + [3257] = 844, + [3258] = 1954, + [3259] = 2054, + [3260] = 2197, + [3261] = 2196, + [3262] = 2193, + [3263] = 2025, + [3264] = 2029, + [3265] = 3265, + [3266] = 2029, + [3267] = 2186, + [3268] = 862, + [3269] = 3269, + [3270] = 2183, + [3271] = 2179, + [3272] = 866, + [3273] = 2177, + [3274] = 885, + [3275] = 3275, + [3276] = 848, + [3277] = 2054, + [3278] = 880, + [3279] = 2172, + [3280] = 2196, + [3281] = 2166, + [3282] = 2165, + [3283] = 853, + [3284] = 2160, + [3285] = 2158, + [3286] = 722, + [3287] = 875, + [3288] = 877, + [3289] = 2115, + [3290] = 2097, + [3291] = 2083, + [3292] = 2095, + [3293] = 2093, + [3294] = 2088, + [3295] = 881, + [3296] = 869, + [3297] = 2083, + [3298] = 868, + [3299] = 3299, + [3300] = 839, + [3301] = 887, + [3302] = 884, + [3303] = 2274, + [3304] = 2088, + [3305] = 2093, + [3306] = 2097, + [3307] = 2115, + [3308] = 2576, + [3309] = 2160, + [3310] = 2271, + [3311] = 2035, + [3312] = 3023, + [3313] = 2165, + [3314] = 3265, + [3315] = 2267, + [3316] = 2265, + [3317] = 2193, + [3318] = 2025, + [3319] = 2226, + [3320] = 878, + [3321] = 1954, + [3322] = 2166, + [3323] = 796, + [3324] = 2208, + [3325] = 838, + [3326] = 2177, + [3327] = 2179, + [3328] = 2183, + [3329] = 2186, + [3330] = 2273, + [3331] = 2095, + [3332] = 2205, + [3333] = 2206, + [3334] = 858, + [3335] = 840, + [3336] = 857, + [3337] = 2157, + [3338] = 796, + [3339] = 2197, + [3340] = 854, + [3341] = 852, + [3342] = 2225, + [3343] = 2214, + [3344] = 2203, + [3345] = 2204, + [3346] = 2273, + [3347] = 3347, + [3348] = 2208, + [3349] = 2206, + [3350] = 2205, + [3351] = 725, + [3352] = 724, + [3353] = 848, + [3354] = 885, + [3355] = 866, + [3356] = 3356, + [3357] = 876, + [3358] = 850, + [3359] = 722, + [3360] = 725, + [3361] = 862, + [3362] = 872, + [3363] = 724, + [3364] = 886, + [3365] = 853, + [3366] = 3366, + [3367] = 852, + [3368] = 885, + [3369] = 880, + [3370] = 877, + [3371] = 869, + [3372] = 868, + [3373] = 877, + [3374] = 860, + [3375] = 847, + [3376] = 838, + [3377] = 858, + [3378] = 796, + [3379] = 3356, + [3380] = 860, + [3381] = 838, + [3382] = 722, + [3383] = 858, + [3384] = 857, + [3385] = 854, + [3386] = 886, + [3387] = 872, + [3388] = 857, + [3389] = 866, + [3390] = 3390, + [3391] = 869, + [3392] = 880, + [3393] = 840, + [3394] = 3356, + [3395] = 854, + [3396] = 852, + [3397] = 840, + [3398] = 878, + [3399] = 884, + [3400] = 887, + [3401] = 3366, + [3402] = 853, + [3403] = 839, + [3404] = 3366, + [3405] = 878, + [3406] = 884, + [3407] = 887, + [3408] = 839, + [3409] = 881, + [3410] = 875, + [3411] = 881, + [3412] = 3366, + [3413] = 3356, + [3414] = 844, + [3415] = 875, + [3416] = 846, + [3417] = 868, + [3418] = 3356, + [3419] = 724, + [3420] = 725, + [3421] = 844, + [3422] = 3356, + [3423] = 862, + [3424] = 722, + [3425] = 846, + [3426] = 847, + [3427] = 848, + [3428] = 850, + [3429] = 3429, + [3430] = 876, + [3431] = 3431, + [3432] = 3432, + [3433] = 3432, [3434] = 3434, - [3435] = 3360, - [3436] = 867, - [3437] = 3324, - [3438] = 3324, - [3439] = 3348, - [3440] = 841, - [3441] = 3324, - [3442] = 866, - [3443] = 3326, - [3444] = 3324, - [3445] = 3445, - [3446] = 3324, - [3447] = 875, - [3448] = 3324, - [3449] = 3449, - [3450] = 3334, - [3451] = 3324, - [3452] = 862, - [3453] = 3324, - [3454] = 725, - [3455] = 726, - [3456] = 3324, - [3457] = 3324, - [3458] = 3324, - [3459] = 3449, - [3460] = 3328, - [3461] = 3324, - [3462] = 3462, - [3463] = 3324, - [3464] = 863, - [3465] = 3465, - [3466] = 3324, - [3467] = 3348, - [3468] = 3326, - [3469] = 3350, - [3470] = 3346, - [3471] = 3343, - [3472] = 3341, - [3473] = 3324, - [3474] = 726, - [3475] = 3475, - [3476] = 3475, - [3477] = 724, - [3478] = 725, - [3479] = 726, - [3480] = 3475, - [3481] = 726, - [3482] = 3475, - [3483] = 3483, - [3484] = 3475, - [3485] = 3475, - [3486] = 3475, - [3487] = 725, - [3488] = 3475, - [3489] = 3475, - [3490] = 3475, - [3491] = 3475, - [3492] = 3475, - [3493] = 3475, - [3494] = 3475, - [3495] = 3475, - [3496] = 3483, - [3497] = 3475, - [3498] = 3475, - [3499] = 3475, - [3500] = 3475, - [3501] = 3475, - [3502] = 3502, - [3503] = 724, - [3504] = 3475, - [3505] = 3483, - [3506] = 3475, - [3507] = 815, - [3508] = 3475, - [3509] = 3475, - [3510] = 3475, - [3511] = 3483, - [3512] = 725, - [3513] = 3475, - [3514] = 724, - [3515] = 724, - [3516] = 3483, - [3517] = 3483, - [3518] = 3475, - [3519] = 3475, - [3520] = 3475, - [3521] = 3521, - [3522] = 3522, - [3523] = 726, - [3524] = 3475, - [3525] = 3475, - [3526] = 3475, - [3527] = 3475, - [3528] = 3475, - [3529] = 3475, - [3530] = 3475, - [3531] = 3475, - [3532] = 725, - [3533] = 3475, - [3534] = 3475, - [3535] = 725, - [3536] = 3475, - [3537] = 3475, - [3538] = 726, - [3539] = 724, - [3540] = 3475, - [3541] = 3475, - [3542] = 3475, - [3543] = 3475, - [3544] = 725, - [3545] = 3475, - [3546] = 3475, - [3547] = 726, - [3548] = 3475, - [3549] = 3475, - [3550] = 3475, - [3551] = 3475, - [3552] = 3475, - [3553] = 724, - [3554] = 3475, - [3555] = 726, - [3556] = 725, - [3557] = 3557, - [3558] = 3558, - [3559] = 2148, - [3560] = 2122, - [3561] = 3561, - [3562] = 3557, - [3563] = 3563, - [3564] = 3558, - [3565] = 3561, - [3566] = 3557, - [3567] = 3558, - [3568] = 3561, - [3569] = 3557, - [3570] = 3558, - [3571] = 3557, - [3572] = 3558, - [3573] = 3561, - [3574] = 3557, - [3575] = 3558, - [3576] = 3561, - [3577] = 3561, - [3578] = 3558, - [3579] = 3557, - [3580] = 3557, - [3581] = 3558, - [3582] = 3561, - [3583] = 3557, - [3584] = 3558, - [3585] = 3561, - [3586] = 3557, - [3587] = 3561, - [3588] = 3558, - [3589] = 3557, - [3590] = 3558, - [3591] = 866, - [3592] = 3561, - [3593] = 3561, - [3594] = 3558, - [3595] = 3557, - [3596] = 2213, - [3597] = 3557, - [3598] = 724, - [3599] = 3561, - [3600] = 3558, - [3601] = 3601, - [3602] = 3558, - [3603] = 3561, - [3604] = 2194, - [3605] = 3605, - [3606] = 3557, - [3607] = 3558, - [3608] = 3561, - [3609] = 3557, - [3610] = 3561, - [3611] = 3557, - [3612] = 3558, - [3613] = 3558, - [3614] = 2150, - [3615] = 3561, - [3616] = 3557, - [3617] = 3557, - [3618] = 3558, - [3619] = 3561, - [3620] = 3557, - [3621] = 3561, - [3622] = 3558, - [3623] = 3558, - [3624] = 2074, - [3625] = 3561, - [3626] = 3557, - [3627] = 3558, - [3628] = 3561, - [3629] = 3557, - [3630] = 3558, - [3631] = 3561, - [3632] = 3557, - [3633] = 2029, - [3634] = 2028, - [3635] = 3558, - [3636] = 2004, - [3637] = 3561, - [3638] = 3557, - [3639] = 3558, - [3640] = 3557, - [3641] = 3561, - [3642] = 3557, - [3643] = 3561, - [3644] = 3558, - [3645] = 3558, - [3646] = 3561, - [3647] = 3557, - [3648] = 3558, - [3649] = 1989, - [3650] = 1975, - [3651] = 3561, - [3652] = 2026, - [3653] = 2027, - [3654] = 3557, - [3655] = 3558, - [3656] = 3561, - [3657] = 3557, - [3658] = 2036, - [3659] = 3558, - [3660] = 3660, - [3661] = 3561, - [3662] = 875, - [3663] = 3663, - [3664] = 3557, - [3665] = 3558, - [3666] = 885, - [3667] = 2192, - [3668] = 3561, - [3669] = 2202, - [3670] = 3557, - [3671] = 3558, - [3672] = 2210, - [3673] = 3561, - [3674] = 3557, - [3675] = 2217, - [3676] = 3557, - [3677] = 2206, - [3678] = 3558, - [3679] = 2197, - [3680] = 2196, - [3681] = 2195, - [3682] = 3561, - [3683] = 3561, - [3684] = 3557, - [3685] = 3558, - [3686] = 3558, - [3687] = 3561, - [3688] = 3557, - [3689] = 2022, - [3690] = 884, - [3691] = 845, - [3692] = 2167, - [3693] = 2166, - [3694] = 2162, - [3695] = 1874, - [3696] = 2155, - [3697] = 1865, - [3698] = 2154, - [3699] = 3558, - [3700] = 863, - [3701] = 3561, - [3702] = 3557, - [3703] = 862, - [3704] = 846, - [3705] = 848, - [3706] = 3706, - [3707] = 1938, - [3708] = 851, - [3709] = 855, - [3710] = 867, - [3711] = 854, - [3712] = 2138, - [3713] = 2135, - [3714] = 2134, - [3715] = 2124, - [3716] = 857, - [3717] = 858, - [3718] = 861, - [3719] = 842, - [3720] = 3558, - [3721] = 882, - [3722] = 3561, - [3723] = 843, - [3724] = 3557, - [3725] = 874, - [3726] = 3558, - [3727] = 3706, - [3728] = 3561, - [3729] = 3557, - [3730] = 725, - [3731] = 3561, - [3732] = 2106, - [3733] = 3557, - [3734] = 2076, - [3735] = 2075, - [3736] = 3558, - [3737] = 3561, - [3738] = 873, - [3739] = 3557, - [3740] = 872, - [3741] = 3557, - [3742] = 3561, - [3743] = 3558, - [3744] = 3558, - [3745] = 726, - [3746] = 2031, - [3747] = 2030, - [3748] = 726, - [3749] = 3749, - [3750] = 2025, - [3751] = 2024, - [3752] = 3561, - [3753] = 3557, - [3754] = 853, - [3755] = 3558, - [3756] = 3561, - [3757] = 3557, - [3758] = 3558, - [3759] = 3759, - [3760] = 3760, - [3761] = 3561, - [3762] = 3557, - [3763] = 860, - [3764] = 3558, - [3765] = 3561, - [3766] = 3557, - [3767] = 3558, - [3768] = 869, - [3769] = 725, - [3770] = 840, - [3771] = 3561, - [3772] = 2098, + [3435] = 840, + [3436] = 3436, + [3437] = 3437, + [3438] = 3432, + [3439] = 852, + [3440] = 3432, + [3441] = 854, + [3442] = 3432, + [3443] = 857, + [3444] = 858, + [3445] = 3432, + [3446] = 3432, + [3447] = 3432, + [3448] = 838, + [3449] = 3434, + [3450] = 860, + [3451] = 868, + [3452] = 3452, + [3453] = 3437, + [3454] = 3452, + [3455] = 869, + [3456] = 877, + [3457] = 3432, + [3458] = 3458, + [3459] = 3459, + [3460] = 3460, + [3461] = 3461, + [3462] = 3437, + [3463] = 3434, + [3464] = 3434, + [3465] = 3460, + [3466] = 3436, + [3467] = 853, + [3468] = 3468, + [3469] = 880, + [3470] = 3432, + [3471] = 885, + [3472] = 3472, + [3473] = 3473, + [3474] = 3472, + [3475] = 3432, + [3476] = 866, + [3477] = 3477, + [3478] = 3468, + [3479] = 3468, + [3480] = 3472, + [3481] = 848, + [3482] = 886, + [3483] = 872, + [3484] = 3432, + [3485] = 3485, + [3486] = 3436, + [3487] = 3436, + [3488] = 3477, + [3489] = 3432, + [3490] = 3460, + [3491] = 3434, + [3492] = 3432, + [3493] = 3432, + [3494] = 3436, + [3495] = 3432, + [3496] = 847, + [3497] = 3497, + [3498] = 3460, + [3499] = 846, + [3500] = 3432, + [3501] = 3501, + [3502] = 3452, + [3503] = 3434, + [3504] = 876, + [3505] = 3432, + [3506] = 3432, + [3507] = 3432, + [3508] = 844, + [3509] = 3477, + [3510] = 3472, + [3511] = 3497, + [3512] = 3473, + [3513] = 3452, + [3514] = 878, + [3515] = 3432, + [3516] = 3516, + [3517] = 850, + [3518] = 3518, + [3519] = 725, + [3520] = 724, + [3521] = 3432, + [3522] = 3460, + [3523] = 3436, + [3524] = 3472, + [3525] = 722, + [3526] = 3468, + [3527] = 3468, + [3528] = 3432, + [3529] = 3432, + [3530] = 3432, + [3531] = 3452, + [3532] = 3432, + [3533] = 3477, + [3534] = 3432, + [3535] = 3472, + [3536] = 722, + [3537] = 3432, + [3538] = 3432, + [3539] = 3432, + [3540] = 884, + [3541] = 3541, + [3542] = 3432, + [3543] = 887, + [3544] = 3431, + [3545] = 3432, + [3546] = 3432, + [3547] = 839, + [3548] = 3437, + [3549] = 3549, + [3550] = 3432, + [3551] = 3432, + [3552] = 3432, + [3553] = 3432, + [3554] = 3432, + [3555] = 3452, + [3556] = 3468, + [3557] = 3432, + [3558] = 3432, + [3559] = 724, + [3560] = 881, + [3561] = 725, + [3562] = 3432, + [3563] = 862, + [3564] = 3432, + [3565] = 875, + [3566] = 3452, + [3567] = 3432, + [3568] = 722, + [3569] = 3432, + [3570] = 3432, + [3571] = 3432, + [3572] = 3460, + [3573] = 3573, + [3574] = 725, + [3575] = 3432, + [3576] = 3432, + [3577] = 724, + [3578] = 3434, + [3579] = 3432, + [3580] = 3432, + [3581] = 3581, + [3582] = 3432, + [3583] = 3468, + [3584] = 3584, + [3585] = 3584, + [3586] = 724, + [3587] = 3584, + [3588] = 3584, + [3589] = 3584, + [3590] = 724, + [3591] = 3584, + [3592] = 3584, + [3593] = 3584, + [3594] = 725, + [3595] = 3584, + [3596] = 724, + [3597] = 725, + [3598] = 3584, + [3599] = 3584, + [3600] = 3584, + [3601] = 3584, + [3602] = 3584, + [3603] = 3584, + [3604] = 3584, + [3605] = 722, + [3606] = 3584, + [3607] = 3584, + [3608] = 3584, + [3609] = 3584, + [3610] = 3584, + [3611] = 3584, + [3612] = 3584, + [3613] = 3584, + [3614] = 3584, + [3615] = 3584, + [3616] = 3584, + [3617] = 3584, + [3618] = 725, + [3619] = 3584, + [3620] = 3584, + [3621] = 3584, + [3622] = 724, + [3623] = 722, + [3624] = 3584, + [3625] = 3584, + [3626] = 3584, + [3627] = 725, + [3628] = 724, + [3629] = 3629, + [3630] = 3630, + [3631] = 3584, + [3632] = 3584, + [3633] = 3584, + [3634] = 3584, + [3635] = 3584, + [3636] = 3584, + [3637] = 722, + [3638] = 3584, + [3639] = 722, + [3640] = 3584, + [3641] = 3584, + [3642] = 796, + [3643] = 3643, + [3644] = 3584, + [3645] = 3584, + [3646] = 725, + [3647] = 722, + [3648] = 3648, + [3649] = 3584, + [3650] = 3643, + [3651] = 3643, + [3652] = 3643, + [3653] = 722, + [3654] = 3643, + [3655] = 3584, + [3656] = 724, + [3657] = 725, + [3658] = 3584, + [3659] = 724, + [3660] = 3584, + [3661] = 725, + [3662] = 3584, + [3663] = 3584, + [3664] = 3584, + [3665] = 3643, + [3666] = 3584, + [3667] = 3667, + [3668] = 3668, + [3669] = 3669, + [3670] = 3668, + [3671] = 2175, + [3672] = 2195, + [3673] = 2174, + [3674] = 2173, + [3675] = 2211, + [3676] = 2054, + [3677] = 2190, + [3678] = 2191, + [3679] = 2192, + [3680] = 3680, + [3681] = 3667, + [3682] = 2200, + [3683] = 2201, + [3684] = 3668, + [3685] = 2082, + [3686] = 2202, + [3687] = 2118, + [3688] = 2117, + [3689] = 3680, + [3690] = 3690, + [3691] = 839, + [3692] = 2212, + [3693] = 2083, + [3694] = 875, + [3695] = 2213, + [3696] = 881, + [3697] = 852, + [3698] = 3680, + [3699] = 2029, + [3700] = 2025, + [3701] = 3701, + [3702] = 2088, + [3703] = 854, + [3704] = 3668, + [3705] = 3667, + [3706] = 3668, + [3707] = 3667, + [3708] = 3680, + [3709] = 2093, + [3710] = 857, + [3711] = 1914, + [3712] = 2270, + [3713] = 3713, + [3714] = 2279, + [3715] = 2280, + [3716] = 858, + [3717] = 3713, + [3718] = 2081, + [3719] = 2078, + [3720] = 722, + [3721] = 887, + [3722] = 1954, + [3723] = 884, + [3724] = 838, + [3725] = 2097, + [3726] = 2077, + [3727] = 3727, + [3728] = 3728, + [3729] = 860, + [3730] = 2285, + [3731] = 3713, + [3732] = 868, + [3733] = 2209, + [3734] = 878, + [3735] = 869, + [3736] = 877, + [3737] = 853, + [3738] = 880, + [3739] = 885, + [3740] = 866, + [3741] = 725, + [3742] = 886, + [3743] = 872, + [3744] = 876, + [3745] = 3713, + [3746] = 3680, + [3747] = 724, + [3748] = 850, + [3749] = 3667, + [3750] = 1947, + [3751] = 3668, + [3752] = 1948, + [3753] = 2022, + [3754] = 3754, + [3755] = 2023, + [3756] = 3713, + [3757] = 844, + [3758] = 2115, + [3759] = 3680, + [3760] = 3667, + [3761] = 2031, + [3762] = 840, + [3763] = 3668, + [3764] = 2051, + [3765] = 3680, + [3766] = 846, + [3767] = 3713, + [3768] = 2160, + [3769] = 3667, + [3770] = 3668, + [3771] = 847, + [3772] = 2079, [3773] = 3773, - [3774] = 3557, - [3775] = 3775, - [3776] = 3558, + [3774] = 3774, + [3775] = 3680, + [3776] = 3667, [3777] = 3777, - [3778] = 3561, - [3779] = 3773, - [3780] = 3773, - [3781] = 3557, - [3782] = 1990, - [3783] = 3558, - [3784] = 3561, - [3785] = 3557, - [3786] = 3558, - [3787] = 3561, - [3788] = 2102, - [3789] = 2103, - [3790] = 2139, - [3791] = 3773, - [3792] = 2050, - [3793] = 3557, - [3794] = 3558, - [3795] = 3561, - [3796] = 3796, - [3797] = 3557, - [3798] = 3558, - [3799] = 3773, - [3800] = 3561, - [3801] = 1937, - [3802] = 3773, - [3803] = 3558, - [3804] = 3561, - [3805] = 2220, - [3806] = 3557, - [3807] = 3773, - [3808] = 2223, - [3809] = 3809, - [3810] = 2068, - [3811] = 3811, - [3812] = 2073, - [3813] = 3558, - [3814] = 2088, - [3815] = 2211, - [3816] = 3561, - [3817] = 2022, - [3818] = 2034, - [3819] = 2099, - [3820] = 3557, - [3821] = 2220, - [3822] = 2188, - [3823] = 1938, - [3824] = 2203, - [3825] = 841, - [3826] = 1937, - [3827] = 2223, - [3828] = 2211, - [3829] = 3829, - [3830] = 2216, - [3831] = 2203, - [3832] = 2216, - [3833] = 2188, - [3834] = 1990, - [3835] = 2034, - [3836] = 2036, - [3837] = 2050, - [3838] = 2068, - [3839] = 2073, - [3840] = 2088, - [3841] = 2098, - [3842] = 2099, - [3843] = 2122, - [3844] = 2181, - [3845] = 2173, - [3846] = 2144, - [3847] = 2168, - [3848] = 2181, - [3849] = 2139, - [3850] = 2144, - [3851] = 2145, - [3852] = 2173, - [3853] = 2168, - [3854] = 2161, - [3855] = 2149, - [3856] = 2148, - [3857] = 2149, - [3858] = 2161, - [3859] = 2145, - [3860] = 3860, - [3861] = 3861, - [3862] = 3862, - [3863] = 3863, - [3864] = 3864, - [3865] = 3864, - [3866] = 2074, - [3867] = 3867, - [3868] = 2029, - [3869] = 3864, - [3870] = 2028, - [3871] = 3871, - [3872] = 3872, - [3873] = 3873, - [3874] = 3861, - [3875] = 3862, - [3876] = 3864, - [3877] = 3861, - [3878] = 3878, - [3879] = 3862, - [3880] = 3880, - [3881] = 3881, - [3882] = 3864, - [3883] = 3883, - [3884] = 3884, - [3885] = 3862, - [3886] = 3861, - [3887] = 3861, - [3888] = 3864, - [3889] = 3862, - [3890] = 3864, - [3891] = 3861, - [3892] = 3862, - [3893] = 3864, - [3894] = 3862, - [3895] = 3861, - [3896] = 3864, - [3897] = 3897, - [3898] = 3861, - [3899] = 3899, - [3900] = 3862, - [3901] = 3864, - [3902] = 3861, - [3903] = 3884, - [3904] = 725, - [3905] = 3862, - [3906] = 3864, - [3907] = 3861, - [3908] = 3908, - [3909] = 2004, - [3910] = 3899, - [3911] = 3911, - [3912] = 726, - [3913] = 3861, - [3914] = 3862, - [3915] = 3878, - [3916] = 3862, - [3917] = 3864, - [3918] = 3880, - [3919] = 3861, - [3920] = 3861, - [3921] = 3864, - [3922] = 3862, - [3923] = 3923, - [3924] = 3862, - [3925] = 3862, - [3926] = 3926, - [3927] = 3899, - [3928] = 3861, - [3929] = 3864, - [3930] = 3860, - [3931] = 3864, - [3932] = 3932, - [3933] = 3861, - [3934] = 3934, - [3935] = 3864, - [3936] = 3862, - [3937] = 725, - [3938] = 3861, - [3939] = 3862, - [3940] = 3864, - [3941] = 3864, - [3942] = 3861, - [3943] = 3862, - [3944] = 726, - [3945] = 3864, - [3946] = 3946, - [3947] = 2024, - [3948] = 1989, - [3949] = 3911, - [3950] = 3861, - [3951] = 1975, - [3952] = 3932, - [3953] = 3953, - [3954] = 3862, - [3955] = 3899, - [3956] = 3864, - [3957] = 3862, - [3958] = 3861, - [3959] = 3861, - [3960] = 3926, - [3961] = 3862, - [3962] = 3864, - [3963] = 3908, - [3964] = 3861, - [3965] = 3862, - [3966] = 3966, - [3967] = 3864, - [3968] = 2026, - [3969] = 815, - [3970] = 866, - [3971] = 2027, - [3972] = 3972, - [3973] = 3861, - [3974] = 3861, - [3975] = 3864, - [3976] = 3899, - [3977] = 3862, - [3978] = 3867, - [3979] = 3864, - [3980] = 3862, - [3981] = 3864, - [3982] = 3911, - [3983] = 3880, - [3984] = 3984, - [3985] = 3861, - [3986] = 3863, - [3987] = 3884, - [3988] = 3862, - [3989] = 3864, - [3990] = 3861, - [3991] = 3861, - [3992] = 3992, - [3993] = 2192, - [3994] = 3994, - [3995] = 3864, - [3996] = 3862, - [3997] = 3861, - [3998] = 3862, - [3999] = 2202, - [4000] = 3864, - [4001] = 3861, - [4002] = 3862, - [4003] = 3861, - [4004] = 3911, - [4005] = 3864, - [4006] = 3861, - [4007] = 3862, - [4008] = 3864, - [4009] = 3861, - [4010] = 3881, - [4011] = 3861, - [4012] = 3881, - [4013] = 3862, - [4014] = 3881, - [4015] = 3864, - [4016] = 3864, - [4017] = 2210, - [4018] = 3881, - [4019] = 3899, - [4020] = 3862, - [4021] = 3864, - [4022] = 3861, - [4023] = 3881, - [4024] = 3862, - [4025] = 3864, - [4026] = 3881, - [4027] = 3861, - [4028] = 3862, - [4029] = 3899, - [4030] = 3880, - [4031] = 3867, - [4032] = 3878, - [4033] = 4033, - [4034] = 3899, - [4035] = 3899, - [4036] = 3862, - [4037] = 3899, - [4038] = 2217, - [4039] = 2206, - [4040] = 3862, - [4041] = 3861, - [4042] = 2197, - [4043] = 3878, - [4044] = 3864, - [4045] = 3862, - [4046] = 3861, - [4047] = 3872, - [4048] = 3861, - [4049] = 4049, - [4050] = 3864, - [4051] = 3862, - [4052] = 2196, - [4053] = 3861, - [4054] = 3864, - [4055] = 3862, - [4056] = 3861, - [4057] = 2195, - [4058] = 2167, - [4059] = 3899, - [4060] = 2166, - [4061] = 3908, - [4062] = 3899, - [4063] = 3932, - [4064] = 3932, - [4065] = 3864, - [4066] = 3899, - [4067] = 2162, - [4068] = 3862, - [4069] = 3899, - [4070] = 3899, - [4071] = 4071, - [4072] = 3861, - [4073] = 3864, - [4074] = 3908, - [4075] = 3862, - [4076] = 3899, - [4077] = 3899, - [4078] = 3861, - [4079] = 2155, - [4080] = 1865, - [4081] = 2154, - [4082] = 3899, - [4083] = 3953, - [4084] = 3899, - [4085] = 3899, - [4086] = 2138, - [4087] = 3899, - [4088] = 2135, - [4089] = 2134, - [4090] = 2124, - [4091] = 2106, - [4092] = 3899, - [4093] = 3864, - [4094] = 3862, - [4095] = 3862, - [4096] = 3861, - [4097] = 2076, - [4098] = 3864, - [4099] = 2075, - [4100] = 3864, - [4101] = 3864, - [4102] = 3862, - [4103] = 3861, - [4104] = 3899, - [4105] = 3864, - [4106] = 3867, - [4107] = 3880, - [4108] = 3862, - [4109] = 3861, - [4110] = 3864, - [4111] = 4111, - [4112] = 3862, - [4113] = 3861, - [4114] = 3864, - [4115] = 3899, - [4116] = 2031, - [4117] = 3862, - [4118] = 3861, - [4119] = 2150, - [4120] = 3864, - [4121] = 2030, - [4122] = 4033, - [4123] = 3862, - [4124] = 2025, - [4125] = 3932, - [4126] = 3861, - [4127] = 3862, - [4128] = 3861, - [4129] = 3864, - [4130] = 3862, - [4131] = 1874, - [4132] = 3911, - [4133] = 3861, - [4134] = 3864, - [4135] = 3862, - [4136] = 3861, - [4137] = 3878, - [4138] = 3864, + [3778] = 3668, + [3779] = 3680, + [3780] = 2165, + [3781] = 2166, + [3782] = 3713, + [3783] = 2080, + [3784] = 3667, + [3785] = 3668, + [3786] = 3667, + [3787] = 3680, + [3788] = 3668, + [3789] = 3680, + [3790] = 3668, + [3791] = 3667, + [3792] = 3668, + [3793] = 2172, + [3794] = 3794, + [3795] = 3680, + [3796] = 3667, + [3797] = 3668, + [3798] = 3680, + [3799] = 3667, + [3800] = 3667, + [3801] = 3668, + [3802] = 3680, + [3803] = 2160, + [3804] = 3667, + [3805] = 3680, + [3806] = 3668, + [3807] = 3680, + [3808] = 3668, + [3809] = 1936, + [3810] = 2204, + [3811] = 3667, + [3812] = 3667, + [3813] = 3813, + [3814] = 3680, + [3815] = 3668, + [3816] = 3667, + [3817] = 3668, + [3818] = 1935, + [3819] = 3680, + [3820] = 3667, + [3821] = 3668, + [3822] = 3822, + [3823] = 3680, + [3824] = 3680, + [3825] = 3667, + [3826] = 3668, + [3827] = 3667, + [3828] = 3680, + [3829] = 3668, + [3830] = 3668, + [3831] = 2177, + [3832] = 3667, + [3833] = 3680, + [3834] = 2179, + [3835] = 3667, + [3836] = 2274, + [3837] = 2271, + [3838] = 3668, + [3839] = 3680, + [3840] = 2172, + [3841] = 3667, + [3842] = 2183, + [3843] = 3668, + [3844] = 2267, + [3845] = 3680, + [3846] = 3668, + [3847] = 3667, + [3848] = 2029, + [3849] = 3680, + [3850] = 2184, + [3851] = 2116, + [3852] = 3667, + [3853] = 3668, + [3854] = 3680, + [3855] = 3667, + [3856] = 2265, + [3857] = 3668, + [3858] = 3680, + [3859] = 3667, + [3860] = 3668, + [3861] = 2054, + [3862] = 3680, + [3863] = 3667, + [3864] = 3668, + [3865] = 2184, + [3866] = 724, + [3867] = 3668, + [3868] = 3680, + [3869] = 3667, + [3870] = 3680, + [3871] = 3668, + [3872] = 2168, + [3873] = 3667, + [3874] = 3680, + [3875] = 3668, + [3876] = 3668, + [3877] = 3667, + [3878] = 2186, + [3879] = 3680, + [3880] = 3754, + [3881] = 3680, + [3882] = 725, + [3883] = 3680, + [3884] = 3667, + [3885] = 3668, + [3886] = 3667, + [3887] = 3680, + [3888] = 3668, + [3889] = 3667, + [3890] = 3890, + [3891] = 3668, + [3892] = 3680, + [3893] = 3680, + [3894] = 2214, + [3895] = 3667, + [3896] = 3668, + [3897] = 3680, + [3898] = 3667, + [3899] = 2187, + [3900] = 3668, + [3901] = 3680, + [3902] = 2193, + [3903] = 2197, + [3904] = 2208, + [3905] = 3667, + [3906] = 3668, + [3907] = 3668, + [3908] = 3667, + [3909] = 2206, + [3910] = 1954, + [3911] = 2025, + [3912] = 2274, + [3913] = 2271, + [3914] = 3680, + [3915] = 3667, + [3916] = 2083, + [3917] = 3917, + [3918] = 2267, + [3919] = 2265, + [3920] = 3668, + [3921] = 2203, + [3922] = 2088, + [3923] = 3680, + [3924] = 3667, + [3925] = 3668, + [3926] = 2093, + [3927] = 2097, + [3928] = 3680, + [3929] = 2115, + [3930] = 3668, + [3931] = 2226, + [3932] = 3680, + [3933] = 2165, + [3934] = 2166, + [3935] = 862, + [3936] = 2177, + [3937] = 2179, + [3938] = 3667, + [3939] = 2183, + [3940] = 3680, + [3941] = 3668, + [3942] = 3667, + [3943] = 2186, + [3944] = 2226, + [3945] = 3680, + [3946] = 3668, + [3947] = 2193, + [3948] = 3667, + [3949] = 3667, + [3950] = 3680, + [3951] = 3668, + [3952] = 2197, + [3953] = 2278, + [3954] = 3667, + [3955] = 2214, + [3956] = 2205, + [3957] = 3957, + [3958] = 3680, + [3959] = 2203, + [3960] = 3667, + [3961] = 2204, + [3962] = 3667, + [3963] = 3668, + [3964] = 3680, + [3965] = 3668, + [3966] = 848, + [3967] = 3680, + [3968] = 3667, + [3969] = 3668, + [3970] = 3667, + [3971] = 3680, + [3972] = 3668, + [3973] = 2205, + [3974] = 2206, + [3975] = 2208, + [3976] = 3667, + [3977] = 3680, + [3978] = 3978, + [3979] = 3979, + [3980] = 3980, + [3981] = 3979, + [3982] = 3980, + [3983] = 3978, + [3984] = 2191, + [3985] = 3985, + [3986] = 3986, + [3987] = 3979, + [3988] = 3978, + [3989] = 3979, + [3990] = 3980, + [3991] = 3991, + [3992] = 2192, + [3993] = 3993, + [3994] = 2200, + [3995] = 3979, + [3996] = 3978, + [3997] = 3980, + [3998] = 3998, + [3999] = 3978, + [4000] = 4000, + [4001] = 3979, + [4002] = 3978, + [4003] = 3980, + [4004] = 3980, + [4005] = 3980, + [4006] = 2201, + [4007] = 4007, + [4008] = 3978, + [4009] = 4009, + [4010] = 3979, + [4011] = 3979, + [4012] = 3998, + [4013] = 3978, + [4014] = 3980, + [4015] = 3980, + [4016] = 4016, + [4017] = 3980, + [4018] = 3978, + [4019] = 3979, + [4020] = 3978, + [4021] = 3998, + [4022] = 4022, + [4023] = 3980, + [4024] = 2190, + [4025] = 3979, + [4026] = 3980, + [4027] = 4027, + [4028] = 3979, + [4029] = 3978, + [4030] = 3980, + [4031] = 2278, + [4032] = 3978, + [4033] = 3998, + [4034] = 3980, + [4035] = 3980, + [4036] = 3978, + [4037] = 4037, + [4038] = 3979, + [4039] = 3979, + [4040] = 4040, + [4041] = 4041, + [4042] = 2175, + [4043] = 3998, + [4044] = 3980, + [4045] = 3978, + [4046] = 4046, + [4047] = 3979, + [4048] = 4037, + [4049] = 724, + [4050] = 3979, + [4051] = 3978, + [4052] = 2195, + [4053] = 2174, + [4054] = 3980, + [4055] = 2209, + [4056] = 3980, + [4057] = 725, + [4058] = 3978, + [4059] = 3979, + [4060] = 2031, + [4061] = 3978, + [4062] = 2173, + [4063] = 3979, + [4064] = 3980, + [4065] = 4065, + [4066] = 3979, + [4067] = 3978, + [4068] = 3979, + [4069] = 4037, + [4070] = 3978, + [4071] = 2168, + [4072] = 3980, + [4073] = 4073, + [4074] = 4074, + [4075] = 3998, + [4076] = 4076, + [4077] = 3998, + [4078] = 4000, + [4079] = 2118, + [4080] = 4080, + [4081] = 3998, + [4082] = 3979, + [4083] = 3978, + [4084] = 724, + [4085] = 4000, + [4086] = 3980, + [4087] = 3980, + [4088] = 3980, + [4089] = 3998, + [4090] = 2187, + [4091] = 725, + [4092] = 3979, + [4093] = 3979, + [4094] = 3980, + [4095] = 3978, + [4096] = 3979, + [4097] = 3993, + [4098] = 4000, + [4099] = 4022, + [4100] = 3979, + [4101] = 4041, + [4102] = 3978, + [4103] = 3980, + [4104] = 4016, + [4105] = 3978, + [4106] = 3978, + [4107] = 4037, + [4108] = 3980, + [4109] = 3979, + [4110] = 4022, + [4111] = 3979, + [4112] = 3998, + [4113] = 4041, + [4114] = 3979, + [4115] = 2082, + [4116] = 3979, + [4117] = 4117, + [4118] = 4009, + [4119] = 862, + [4120] = 3998, + [4121] = 3980, + [4122] = 2202, + [4123] = 3978, + [4124] = 3991, + [4125] = 3979, + [4126] = 4126, + [4127] = 3978, + [4128] = 4040, + [4129] = 3980, + [4130] = 796, + [4131] = 3998, + [4132] = 722, + [4133] = 4133, + [4134] = 3979, + [4135] = 3980, + [4136] = 2116, + [4137] = 3978, + [4138] = 3978, [4139] = 4139, - [4140] = 3862, - [4141] = 3871, - [4142] = 3862, - [4143] = 3861, - [4144] = 3932, - [4145] = 3878, - [4146] = 3864, - [4147] = 3862, - [4148] = 726, - [4149] = 3911, - [4150] = 3899, - [4151] = 3908, - [4152] = 3899, - [4153] = 3861, - [4154] = 3867, - [4155] = 3864, + [4140] = 3980, + [4141] = 4141, + [4142] = 4142, + [4143] = 3978, + [4144] = 3998, + [4145] = 4117, + [4146] = 3978, + [4147] = 3979, + [4148] = 3978, + [4149] = 3980, + [4150] = 3978, + [4151] = 3980, + [4152] = 3978, + [4153] = 3979, + [4154] = 4154, + [4155] = 4000, [4156] = 4156, - [4157] = 3867, - [4158] = 3932, - [4159] = 3862, - [4160] = 3899, - [4161] = 3908, - [4162] = 3911, - [4163] = 3861, - [4164] = 2102, - [4165] = 3899, - [4166] = 3873, - [4167] = 3934, - [4168] = 3880, - [4169] = 3867, - [4170] = 3864, - [4171] = 725, - [4172] = 2103, - [4173] = 2194, - [4174] = 4174, - [4175] = 4175, - [4176] = 724, - [4177] = 3899, - [4178] = 3899, - [4179] = 2213, - [4180] = 860, - [4181] = 2196, - [4182] = 1865, - [4183] = 2154, - [4184] = 2150, - [4185] = 2166, - [4186] = 885, - [4187] = 2167, - [4188] = 2138, - [4189] = 2135, - [4190] = 863, - [4191] = 725, - [4192] = 726, - [4193] = 841, - [4194] = 2134, - [4195] = 2124, - [4196] = 2106, - [4197] = 2076, - [4198] = 2075, - [4199] = 2074, - [4200] = 2031, - [4201] = 862, - [4202] = 884, - [4203] = 2030, - [4204] = 2029, - [4205] = 2028, - [4206] = 2025, - [4207] = 3972, - [4208] = 2024, - [4209] = 3972, - [4210] = 2004, - [4211] = 2194, - [4212] = 2195, - [4213] = 846, - [4214] = 1874, - [4215] = 2026, - [4216] = 848, - [4217] = 851, - [4218] = 2197, - [4219] = 1989, - [4220] = 1975, - [4221] = 2206, - [4222] = 2155, - [4223] = 2027, - [4224] = 855, - [4225] = 861, - [4226] = 845, - [4227] = 842, - [4228] = 2102, - [4229] = 2103, - [4230] = 866, - [4231] = 2217, - [4232] = 2213, - [4233] = 2162, - [4234] = 2210, - [4235] = 853, - [4236] = 867, - [4237] = 869, - [4238] = 854, - [4239] = 882, - [4240] = 2202, - [4241] = 843, - [4242] = 857, - [4243] = 874, - [4244] = 858, - [4245] = 875, - [4246] = 840, - [4247] = 873, - [4248] = 2192, - [4249] = 872, - [4250] = 4250, - [4251] = 4250, - [4252] = 4250, - [4253] = 4253, - [4254] = 3972, - [4255] = 4250, - [4256] = 4250, - [4257] = 4250, - [4258] = 866, - [4259] = 4250, - [4260] = 3972, - [4261] = 815, - [4262] = 4250, - [4263] = 1989, - [4264] = 872, - [4265] = 866, - [4266] = 1975, - [4267] = 815, - [4268] = 4268, - [4269] = 2004, - [4270] = 860, - [4271] = 853, - [4272] = 2028, - [4273] = 2029, - [4274] = 2074, - [4275] = 862, - [4276] = 855, - [4277] = 2026, - [4278] = 846, - [4279] = 4279, - [4280] = 867, - [4281] = 854, - [4282] = 842, - [4283] = 841, - [4284] = 869, - [4285] = 815, - [4286] = 873, - [4287] = 874, - [4288] = 843, - [4289] = 882, - [4290] = 2150, - [4291] = 815, - [4292] = 861, - [4293] = 845, - [4294] = 2194, - [4295] = 885, - [4296] = 2213, - [4297] = 840, - [4298] = 2027, - [4299] = 858, - [4300] = 875, - [4301] = 857, - [4302] = 848, - [4303] = 851, - [4304] = 884, - [4305] = 863, - [4306] = 851, - [4307] = 874, - [4308] = 4308, - [4309] = 4309, - [4310] = 873, - [4311] = 872, - [4312] = 853, - [4313] = 858, - [4314] = 860, - [4315] = 869, - [4316] = 840, - [4317] = 863, - [4318] = 885, - [4319] = 862, - [4320] = 884, - [4321] = 867, - [4322] = 854, - [4323] = 4323, - [4324] = 815, - [4325] = 875, - [4326] = 842, - [4327] = 841, + [4157] = 2081, + [4158] = 3980, + [4159] = 724, + [4160] = 3980, + [4161] = 2080, + [4162] = 3979, + [4163] = 4163, + [4164] = 4164, + [4165] = 3998, + [4166] = 3978, + [4167] = 2079, + [4168] = 3978, + [4169] = 3980, + [4170] = 4117, + [4171] = 4171, + [4172] = 2051, + [4173] = 3979, + [4174] = 3979, + [4175] = 3978, + [4176] = 3980, + [4177] = 3998, + [4178] = 3998, + [4179] = 4179, + [4180] = 2211, + [4181] = 4179, + [4182] = 2212, + [4183] = 2078, + [4184] = 2077, + [4185] = 3991, + [4186] = 3979, + [4187] = 3978, + [4188] = 3980, + [4189] = 3985, + [4190] = 4179, + [4191] = 4037, + [4192] = 2213, + [4193] = 725, + [4194] = 4041, + [4195] = 3998, + [4196] = 3979, + [4197] = 4022, + [4198] = 4040, + [4199] = 3998, + [4200] = 4171, + [4201] = 4201, + [4202] = 4117, + [4203] = 3978, + [4204] = 4179, + [4205] = 3980, + [4206] = 4179, + [4207] = 3979, + [4208] = 4179, + [4209] = 4041, + [4210] = 4022, + [4211] = 3979, + [4212] = 3978, + [4213] = 1936, + [4214] = 3980, + [4215] = 4037, + [4216] = 1935, + [4217] = 3998, + [4218] = 2023, + [4219] = 3998, + [4220] = 2022, + [4221] = 3991, + [4222] = 3980, + [4223] = 3978, + [4224] = 3979, + [4225] = 3978, + [4226] = 3980, + [4227] = 3979, + [4228] = 4164, + [4229] = 1914, + [4230] = 4041, + [4231] = 3998, + [4232] = 4156, + [4233] = 3979, + [4234] = 3978, + [4235] = 3979, + [4236] = 3978, + [4237] = 3980, + [4238] = 2270, + [4239] = 4117, + [4240] = 3979, + [4241] = 3991, + [4242] = 3978, + [4243] = 3980, + [4244] = 3980, + [4245] = 3991, + [4246] = 1948, + [4247] = 1947, + [4248] = 3979, + [4249] = 3978, + [4250] = 3980, + [4251] = 4000, + [4252] = 4252, + [4253] = 3998, + [4254] = 4040, + [4255] = 4255, + [4256] = 3979, + [4257] = 3980, + [4258] = 3979, + [4259] = 3978, + [4260] = 3980, + [4261] = 3978, + [4262] = 3979, + [4263] = 4179, + [4264] = 4041, + [4265] = 3978, + [4266] = 4266, + [4267] = 3980, + [4268] = 3979, + [4269] = 3980, + [4270] = 3998, + [4271] = 2117, + [4272] = 4272, + [4273] = 4117, + [4274] = 4040, + [4275] = 4275, + [4276] = 3979, + [4277] = 4022, + [4278] = 4252, + [4279] = 3978, + [4280] = 4255, + [4281] = 4037, + [4282] = 3998, + [4283] = 3980, + [4284] = 3978, + [4285] = 3979, + [4286] = 3979, + [4287] = 4040, + [4288] = 4076, + [4289] = 3998, + [4290] = 4290, + [4291] = 4073, + [4292] = 4292, + [4293] = 3998, + [4294] = 3978, + [4295] = 3980, + [4296] = 4040, + [4297] = 3980, + [4298] = 3998, + [4299] = 2285, + [4300] = 3978, + [4301] = 3998, + [4302] = 4065, + [4303] = 4074, + [4304] = 2280, + [4305] = 3998, + [4306] = 3979, + [4307] = 4307, + [4308] = 4080, + [4309] = 3978, + [4310] = 4310, + [4311] = 3980, + [4312] = 3998, + [4313] = 2279, + [4314] = 4000, + [4315] = 839, + [4316] = 1935, + [4317] = 887, + [4318] = 848, + [4319] = 868, + [4320] = 878, + [4321] = 869, + [4322] = 877, + [4323] = 853, + [4324] = 880, + [4325] = 872, + [4326] = 4275, + [4327] = 886, [4328] = 885, - [4329] = 4323, - [4330] = 841, - [4331] = 843, - [4332] = 845, - [4333] = 866, - [4334] = 884, - [4335] = 4335, - [4336] = 875, - [4337] = 4337, - [4338] = 866, - [4339] = 840, - [4340] = 882, - [4341] = 869, - [4342] = 861, - [4343] = 846, - [4344] = 860, - [4345] = 853, - [4346] = 848, - [4347] = 2504, - [4348] = 872, - [4349] = 873, - [4350] = 874, - [4351] = 855, - [4352] = 882, + [4329] = 866, + [4330] = 857, + [4331] = 854, + [4332] = 850, + [4333] = 852, + [4334] = 846, + [4335] = 876, + [4336] = 881, + [4337] = 4275, + [4338] = 724, + [4339] = 725, + [4340] = 2280, + [4341] = 858, + [4342] = 862, + [4343] = 2285, + [4344] = 2187, + [4345] = 2279, + [4346] = 2278, + [4347] = 2270, + [4348] = 1914, + [4349] = 2213, + [4350] = 2201, + [4351] = 1936, + [4352] = 875, [4353] = 840, - [4354] = 861, - [4355] = 815, - [4356] = 866, - [4357] = 1109, - [4358] = 858, - [4359] = 857, - [4360] = 815, - [4361] = 885, - [4362] = 855, - [4363] = 851, - [4364] = 848, - [4365] = 846, - [4366] = 884, - [4367] = 875, - [4368] = 841, - [4369] = 858, - [4370] = 4370, - [4371] = 857, - [4372] = 4372, - [4373] = 863, - [4374] = 845, - [4375] = 857, - [4376] = 4376, - [4377] = 862, - [4378] = 869, - [4379] = 855, - [4380] = 851, - [4381] = 863, - [4382] = 843, - [4383] = 862, - [4384] = 867, - [4385] = 867, - [4386] = 854, - [4387] = 3972, - [4388] = 861, - [4389] = 854, - [4390] = 848, - [4391] = 842, - [4392] = 882, - [4393] = 846, - [4394] = 860, - [4395] = 853, - [4396] = 842, - [4397] = 845, - [4398] = 874, - [4399] = 872, - [4400] = 843, - [4401] = 873, - [4402] = 4376, - [4403] = 858, - [4404] = 862, - [4405] = 842, - [4406] = 857, - [4407] = 4407, - [4408] = 841, - [4409] = 854, - [4410] = 867, - [4411] = 855, - [4412] = 842, - [4413] = 851, - [4414] = 848, - [4415] = 862, - [4416] = 861, - [4417] = 846, - [4418] = 840, - [4419] = 863, + [4354] = 2212, + [4355] = 847, + [4356] = 1947, + [4357] = 1948, + [4358] = 844, + [4359] = 860, + [4360] = 838, + [4361] = 2022, + [4362] = 2023, + [4363] = 884, + [4364] = 2031, + [4365] = 2051, + [4366] = 2077, + [4367] = 2078, + [4368] = 2079, + [4369] = 2080, + [4370] = 2081, + [4371] = 2082, + [4372] = 2116, + [4373] = 2211, + [4374] = 2209, + [4375] = 2117, + [4376] = 2118, + [4377] = 2202, + [4378] = 2168, + [4379] = 2173, + [4380] = 2174, + [4381] = 2195, + [4382] = 2175, + [4383] = 2190, + [4384] = 2191, + [4385] = 2192, + [4386] = 2200, + [4387] = 4387, + [4388] = 4387, + [4389] = 4387, + [4390] = 796, + [4391] = 4275, + [4392] = 4387, + [4393] = 4393, + [4394] = 4275, + [4395] = 862, + [4396] = 4387, + [4397] = 4387, + [4398] = 4387, + [4399] = 4387, + [4400] = 2187, + [4401] = 860, + [4402] = 876, + [4403] = 872, + [4404] = 886, + [4405] = 866, + [4406] = 1947, + [4407] = 2209, + [4408] = 2022, + [4409] = 2023, + [4410] = 2051, + [4411] = 885, + [4412] = 2079, + [4413] = 880, + [4414] = 2080, + [4415] = 877, + [4416] = 2116, + [4417] = 2278, + [4418] = 869, + [4419] = 868, [4420] = 4420, - [4421] = 815, - [4422] = 882, - [4423] = 842, - [4424] = 869, - [4425] = 874, - [4426] = 841, - [4427] = 4427, - [4428] = 873, - [4429] = 875, - [4430] = 4430, - [4431] = 4431, - [4432] = 875, - [4433] = 872, - [4434] = 884, - [4435] = 845, - [4436] = 860, - [4437] = 853, - [4438] = 885, - [4439] = 854, - [4440] = 867, - [4441] = 815, - [4442] = 885, - [4443] = 4427, - [4444] = 872, - [4445] = 815, - [4446] = 873, - [4447] = 874, - [4448] = 4448, - [4449] = 884, - [4450] = 843, - [4451] = 843, - [4452] = 853, - [4453] = 882, - [4454] = 4407, - [4455] = 861, - [4456] = 815, - [4457] = 858, - [4458] = 857, - [4459] = 854, - [4460] = 867, - [4461] = 855, - [4462] = 4462, - [4463] = 851, - [4464] = 848, - [4465] = 846, - [4466] = 862, - [4467] = 863, - [4468] = 885, - [4469] = 863, - [4470] = 860, - [4471] = 4471, - [4472] = 866, - [4473] = 845, - [4474] = 840, - [4475] = 869, - [4476] = 860, - [4477] = 853, - [4478] = 841, - [4479] = 872, - [4480] = 873, - [4481] = 874, - [4482] = 843, - [4483] = 882, - [4484] = 861, - [4485] = 1109, - [4486] = 858, - [4487] = 857, - [4488] = 855, - [4489] = 851, - [4490] = 848, - [4491] = 846, - [4492] = 875, - [4493] = 2903, + [4421] = 796, + [4422] = 862, + [4423] = 850, + [4424] = 838, + [4425] = 858, + [4426] = 857, + [4427] = 848, + [4428] = 854, + [4429] = 852, + [4430] = 847, + [4431] = 840, + [4432] = 846, + [4433] = 796, + [4434] = 844, + [4435] = 853, + [4436] = 1948, + [4437] = 878, + [4438] = 884, + [4439] = 887, + [4440] = 839, + [4441] = 796, + [4442] = 875, + [4443] = 4443, + [4444] = 881, + [4445] = 854, + [4446] = 840, + [4447] = 847, + [4448] = 847, + [4449] = 846, + [4450] = 846, + [4451] = 875, + [4452] = 4452, + [4453] = 796, + [4454] = 844, + [4455] = 4455, + [4456] = 796, + [4457] = 862, + [4458] = 850, + [4459] = 876, + [4460] = 839, + [4461] = 872, + [4462] = 886, + [4463] = 1210, + [4464] = 4464, + [4465] = 887, + [4466] = 4466, + [4467] = 866, + [4468] = 4468, + [4469] = 885, + [4470] = 880, + [4471] = 875, + [4472] = 881, + [4473] = 877, + [4474] = 869, + [4475] = 884, + [4476] = 868, + [4477] = 839, + [4478] = 887, + [4479] = 884, + [4480] = 796, + [4481] = 844, + [4482] = 860, + [4483] = 838, + [4484] = 878, + [4485] = 858, + [4486] = 857, + [4487] = 4487, + [4488] = 878, + [4489] = 854, + [4490] = 852, + [4491] = 840, + [4492] = 853, + [4493] = 853, [4494] = 869, - [4495] = 866, - [4496] = 815, - [4497] = 845, - [4498] = 815, - [4499] = 866, - [4500] = 4448, - [4501] = 884, - [4502] = 840, - [4503] = 4503, - [4504] = 4504, - [4505] = 4505, - [4506] = 869, - [4507] = 843, - [4508] = 854, + [4495] = 878, + [4496] = 4275, + [4497] = 881, + [4498] = 4498, + [4499] = 840, + [4500] = 884, + [4501] = 887, + [4502] = 839, + [4503] = 850, + [4504] = 876, + [4505] = 4464, + [4506] = 872, + [4507] = 886, + [4508] = 881, [4509] = 4509, - [4510] = 867, - [4511] = 855, - [4512] = 882, - [4513] = 884, - [4514] = 866, - [4515] = 841, - [4516] = 848, - [4517] = 4517, - [4518] = 840, - [4519] = 872, - [4520] = 860, - [4521] = 846, + [4510] = 848, + [4511] = 875, + [4512] = 850, + [4513] = 2576, + [4514] = 876, + [4515] = 848, + [4516] = 866, + [4517] = 872, + [4518] = 886, + [4519] = 844, + [4520] = 885, + [4521] = 866, [4522] = 885, - [4523] = 862, - [4524] = 853, - [4525] = 4525, - [4526] = 842, - [4527] = 874, - [4528] = 863, - [4529] = 861, - [4530] = 858, - [4531] = 4531, - [4532] = 4532, - [4533] = 873, - [4534] = 857, - [4535] = 873, - [4536] = 874, - [4537] = 860, - [4538] = 875, - [4539] = 843, - [4540] = 882, - [4541] = 845, - [4542] = 861, - [4543] = 815, - [4544] = 853, - [4545] = 874, - [4546] = 4546, + [4523] = 880, + [4524] = 880, + [4525] = 877, + [4526] = 869, + [4527] = 877, + [4528] = 868, + [4529] = 848, + [4530] = 846, + [4531] = 868, + [4532] = 860, + [4533] = 838, + [4534] = 862, + [4535] = 847, + [4536] = 862, + [4537] = 858, + [4538] = 857, + [4539] = 854, + [4540] = 852, + [4541] = 853, + [4542] = 4487, + [4543] = 860, + [4544] = 838, + [4545] = 852, + [4546] = 857, [4547] = 858, [4548] = 4548, - [4549] = 869, - [4550] = 857, - [4551] = 855, - [4552] = 4552, - [4553] = 840, - [4554] = 4554, - [4555] = 875, - [4556] = 851, - [4557] = 872, - [4558] = 848, - [4559] = 846, - [4560] = 858, - [4561] = 840, - [4562] = 869, - [4563] = 4563, - [4564] = 4564, - [4565] = 863, - [4566] = 885, - [4567] = 862, - [4568] = 855, - [4569] = 884, - [4570] = 860, - [4571] = 866, - [4572] = 853, - [4573] = 867, - [4574] = 854, - [4575] = 4575, - [4576] = 875, - [4577] = 872, - [4578] = 866, - [4579] = 842, - [4580] = 841, - [4581] = 873, - [4582] = 840, - [4583] = 866, - [4584] = 869, - [4585] = 840, - [4586] = 4586, - [4587] = 882, - [4588] = 860, - [4589] = 4589, - [4590] = 853, - [4591] = 4591, - [4592] = 861, - [4593] = 4593, - [4594] = 845, - [4595] = 858, - [4596] = 841, - [4597] = 866, - [4598] = 4598, - [4599] = 857, - [4600] = 851, - [4601] = 855, - [4602] = 851, - [4603] = 848, - [4604] = 846, - [4605] = 845, - [4606] = 843, - [4607] = 885, - [4608] = 2022, - [4609] = 863, - [4610] = 845, - [4611] = 4611, - [4612] = 872, - [4613] = 863, - [4614] = 843, - [4615] = 873, - [4616] = 874, - [4617] = 4617, - [4618] = 843, - [4619] = 862, - [4620] = 903, - [4621] = 846, - [4622] = 848, - [4623] = 917, - [4624] = 841, - [4625] = 882, - [4626] = 851, - [4627] = 842, - [4628] = 861, - [4629] = 4629, - [4630] = 841, - [4631] = 858, - [4632] = 841, - [4633] = 855, - [4634] = 857, - [4635] = 854, - [4636] = 867, - [4637] = 4505, - [4638] = 2034, - [4639] = 854, - [4640] = 857, - [4641] = 858, - [4642] = 4642, - [4643] = 884, - [4644] = 842, - [4645] = 861, - [4646] = 2099, - [4647] = 842, - [4648] = 867, - [4649] = 882, - [4650] = 854, - [4651] = 874, - [4652] = 873, - [4653] = 4653, - [4654] = 4563, - [4655] = 872, - [4656] = 2145, - [4657] = 2161, - [4658] = 885, - [4659] = 884, - [4660] = 867, - [4661] = 853, - [4662] = 851, - [4663] = 848, - [4664] = 846, - [4665] = 4642, - [4666] = 1021, - [4667] = 884, - [4668] = 862, - [4669] = 875, - [4670] = 2168, + [4549] = 887, + [4550] = 4548, + [4551] = 839, + [4552] = 876, + [4553] = 887, + [4554] = 850, + [4555] = 884, + [4556] = 846, + [4557] = 4557, + [4558] = 4558, + [4559] = 796, + [4560] = 881, + [4561] = 844, + [4562] = 862, + [4563] = 878, + [4564] = 3001, + [4565] = 4565, + [4566] = 847, + [4567] = 847, + [4568] = 846, + [4569] = 844, + [4570] = 875, + [4571] = 848, + [4572] = 796, + [4573] = 848, + [4574] = 862, + [4575] = 847, + [4576] = 846, + [4577] = 4577, + [4578] = 844, + [4579] = 853, + [4580] = 875, + [4581] = 881, + [4582] = 4582, + [4583] = 839, + [4584] = 887, + [4585] = 884, + [4586] = 848, + [4587] = 878, + [4588] = 850, + [4589] = 840, + [4590] = 875, + [4591] = 876, + [4592] = 881, + [4593] = 852, + [4594] = 854, + [4595] = 796, + [4596] = 872, + [4597] = 857, + [4598] = 858, + [4599] = 886, + [4600] = 839, + [4601] = 4582, + [4602] = 4602, + [4603] = 866, + [4604] = 4604, + [4605] = 884, + [4606] = 838, + [4607] = 796, + [4608] = 885, + [4609] = 853, + [4610] = 860, + [4611] = 880, + [4612] = 877, + [4613] = 869, + [4614] = 868, + [4615] = 862, + [4616] = 868, + [4617] = 860, + [4618] = 838, + [4619] = 878, + [4620] = 840, + [4621] = 869, + [4622] = 877, + [4623] = 853, + [4624] = 852, + [4625] = 854, + [4626] = 796, + [4627] = 857, + [4628] = 858, + [4629] = 880, + [4630] = 4557, + [4631] = 872, + [4632] = 886, + [4633] = 885, + [4634] = 866, + [4635] = 866, + [4636] = 858, + [4637] = 885, + [4638] = 796, + [4639] = 880, + [4640] = 1210, + [4641] = 877, + [4642] = 869, + [4643] = 857, + [4644] = 868, + [4645] = 886, + [4646] = 854, + [4647] = 872, + [4648] = 840, + [4649] = 852, + [4650] = 860, + [4651] = 850, + [4652] = 838, + [4653] = 876, + [4654] = 4654, + [4655] = 846, + [4656] = 840, + [4657] = 844, + [4658] = 850, + [4659] = 850, + [4660] = 876, + [4661] = 4661, + [4662] = 857, + [4663] = 872, + [4664] = 886, + [4665] = 1954, + [4666] = 846, + [4667] = 4667, + [4668] = 847, + [4669] = 4669, + [4670] = 866, [4671] = 4671, - [4672] = 2173, - [4673] = 2181, - [4674] = 2203, + [4672] = 2274, + [4673] = 866, + [4674] = 4674, [4675] = 885, - [4676] = 863, - [4677] = 2211, - [4678] = 2220, - [4679] = 866, - [4680] = 845, - [4681] = 4653, - [4682] = 845, - [4683] = 1990, - [4684] = 875, - [4685] = 866, - [4686] = 884, - [4687] = 885, - [4688] = 1937, - [4689] = 866, - [4690] = 840, - [4691] = 860, - [4692] = 869, - [4693] = 863, - [4694] = 860, - [4695] = 853, - [4696] = 4504, - [4697] = 862, - [4698] = 862, - [4699] = 846, - [4700] = 848, - [4701] = 851, - [4702] = 855, - [4703] = 867, - [4704] = 854, - [4705] = 857, - [4706] = 869, - [4707] = 861, - [4708] = 842, - [4709] = 875, - [4710] = 882, - [4711] = 843, - [4712] = 874, - [4713] = 873, - [4714] = 872, - [4715] = 4715, - [4716] = 866, - [4717] = 862, - [4718] = 863, + [4676] = 885, + [4677] = 880, + [4678] = 880, + [4679] = 840, + [4680] = 853, + [4681] = 877, + [4682] = 869, + [4683] = 878, + [4684] = 858, + [4685] = 868, + [4686] = 839, + [4687] = 860, + [4688] = 838, + [4689] = 884, + [4690] = 869, + [4691] = 848, + [4692] = 2083, + [4693] = 4693, + [4694] = 2166, + [4695] = 887, + [4696] = 887, + [4697] = 846, + [4698] = 4698, + [4699] = 862, + [4700] = 886, + [4701] = 872, + [4702] = 881, + [4703] = 4703, + [4704] = 876, + [4705] = 875, + [4706] = 4706, + [4707] = 858, + [4708] = 2183, + [4709] = 2193, + [4710] = 847, + [4711] = 2197, + [4712] = 846, + [4713] = 844, + [4714] = 853, + [4715] = 848, + [4716] = 4716, + [4717] = 857, + [4718] = 872, [4719] = 4719, - [4720] = 4720, - [4721] = 842, - [4722] = 4722, - [4723] = 848, - [4724] = 4724, - [4725] = 846, - [4726] = 4531, - [4727] = 815, - [4728] = 4724, - [4729] = 4715, - [4730] = 4730, - [4731] = 4731, - [4732] = 845, - [4733] = 4720, - [4734] = 851, - [4735] = 4735, - [4736] = 4724, - [4737] = 843, - [4738] = 4738, - [4739] = 4629, - [4740] = 854, - [4741] = 867, - [4742] = 4742, - [4743] = 4724, - [4744] = 855, - [4745] = 4724, - [4746] = 857, - [4747] = 858, - [4748] = 4720, - [4749] = 4724, - [4750] = 4730, - [4751] = 4730, - [4752] = 4715, - [4753] = 861, - [4754] = 4719, - [4755] = 4755, - [4756] = 4525, - [4757] = 882, - [4758] = 875, - [4759] = 4742, - [4760] = 4724, - [4761] = 4724, - [4762] = 4724, - [4763] = 4742, - [4764] = 4764, - [4765] = 874, - [4766] = 4720, - [4767] = 4548, - [4768] = 873, - [4769] = 872, - [4770] = 841, - [4771] = 860, - [4772] = 840, - [4773] = 4764, - [4774] = 884, - [4775] = 4720, - [4776] = 885, - [4777] = 4724, - [4778] = 4720, - [4779] = 4755, - [4780] = 4719, - [4781] = 4781, - [4782] = 4755, - [4783] = 4720, - [4784] = 869, - [4785] = 853, - [4786] = 4786, - [4787] = 885, - [4788] = 4788, - [4789] = 841, - [4790] = 4788, - [4791] = 4791, - [4792] = 4788, - [4793] = 4793, - [4794] = 4794, - [4795] = 4795, - [4796] = 875, - [4797] = 4797, - [4798] = 4798, - [4799] = 4793, - [4800] = 4800, - [4801] = 4801, - [4802] = 4802, - [4803] = 4803, - [4804] = 4804, - [4805] = 4802, - [4806] = 4806, - [4807] = 2534, - [4808] = 863, + [4720] = 886, + [4721] = 875, + [4722] = 881, + [4723] = 853, + [4724] = 884, + [4725] = 838, + [4726] = 860, + [4727] = 4727, + [4728] = 854, + [4729] = 839, + [4730] = 887, + [4731] = 884, + [4732] = 846, + [4733] = 866, + [4734] = 4703, + [4735] = 878, + [4736] = 840, + [4737] = 876, + [4738] = 885, + [4739] = 860, + [4740] = 848, + [4741] = 4741, + [4742] = 4741, + [4743] = 881, + [4744] = 4744, + [4745] = 852, + [4746] = 854, + [4747] = 880, + [4748] = 857, + [4749] = 4749, + [4750] = 2203, + [4751] = 852, + [4752] = 847, + [4753] = 858, + [4754] = 838, + [4755] = 860, + [4756] = 928, + [4757] = 877, + [4758] = 2204, + [4759] = 862, + [4760] = 4760, + [4761] = 868, + [4762] = 839, + [4763] = 869, + [4764] = 875, + [4765] = 847, + [4766] = 4766, + [4767] = 2205, + [4768] = 838, + [4769] = 881, + [4770] = 877, + [4771] = 900, + [4772] = 862, + [4773] = 4773, + [4774] = 4774, + [4775] = 4775, + [4776] = 884, + [4777] = 862, + [4778] = 4774, + [4779] = 2214, + [4780] = 868, + [4781] = 853, + [4782] = 868, + [4783] = 839, + [4784] = 887, + [4785] = 884, + [4786] = 862, + [4787] = 878, + [4788] = 880, + [4789] = 844, + [4790] = 885, + [4791] = 866, + [4792] = 844, + [4793] = 878, + [4794] = 886, + [4795] = 872, + [4796] = 869, + [4797] = 877, + [4798] = 850, + [4799] = 887, + [4800] = 850, + [4801] = 860, + [4802] = 876, + [4803] = 796, + [4804] = 853, + [4805] = 838, + [4806] = 844, + [4807] = 858, + [4808] = 857, [4809] = 4809, - [4810] = 4810, - [4811] = 862, - [4812] = 867, - [4813] = 4791, - [4814] = 4814, - [4815] = 4815, - [4816] = 854, - [4817] = 4806, - [4818] = 4798, - [4819] = 842, - [4820] = 4788, - [4821] = 845, - [4822] = 4788, - [4823] = 4823, - [4824] = 884, - [4825] = 4793, - [4826] = 4788, - [4827] = 4810, - [4828] = 4828, - [4829] = 4798, - [4830] = 4830, - [4831] = 4831, - [4832] = 4815, + [4810] = 854, + [4811] = 2226, + [4812] = 862, + [4813] = 848, + [4814] = 852, + [4815] = 876, + [4816] = 847, + [4817] = 875, + [4818] = 872, + [4819] = 848, + [4820] = 2265, + [4821] = 848, + [4822] = 4822, + [4823] = 2271, + [4824] = 850, + [4825] = 872, + [4826] = 853, + [4827] = 886, + [4828] = 840, + [4829] = 875, + [4830] = 886, + [4831] = 866, + [4832] = 885, [4833] = 4833, - [4834] = 4834, - [4835] = 4788, - [4836] = 846, + [4834] = 880, + [4835] = 4835, + [4836] = 854, [4837] = 4837, - [4838] = 4828, - [4839] = 4797, - [4840] = 4798, - [4841] = 4791, - [4842] = 4837, - [4843] = 4793, - [4844] = 848, - [4845] = 4793, - [4846] = 4830, + [4838] = 880, + [4839] = 1088, + [4840] = 881, + [4841] = 840, + [4842] = 4835, + [4843] = 2029, + [4844] = 2054, + [4845] = 839, + [4846] = 877, [4847] = 4847, - [4848] = 4848, - [4849] = 4849, - [4850] = 4850, - [4851] = 4851, - [4852] = 4831, - [4853] = 4809, - [4854] = 4849, - [4855] = 4855, - [4856] = 4850, - [4857] = 4857, - [4858] = 4848, - [4859] = 840, - [4860] = 4860, - [4861] = 4793, - [4862] = 4802, - [4863] = 4863, - [4864] = 4851, - [4865] = 851, - [4866] = 4866, - [4867] = 4815, - [4868] = 855, - [4869] = 869, - [4870] = 857, - [4871] = 860, - [4872] = 4872, - [4873] = 4873, - [4874] = 4874, - [4875] = 858, - [4876] = 4876, - [4877] = 4849, - [4878] = 4876, - [4879] = 4809, - [4880] = 4810, - [4881] = 853, - [4882] = 861, - [4883] = 866, - [4884] = 4833, - [4885] = 872, - [4886] = 882, + [4848] = 852, + [4849] = 869, + [4850] = 878, + [4851] = 844, + [4852] = 854, + [4853] = 852, + [4854] = 868, + [4855] = 858, + [4856] = 857, + [4857] = 857, + [4858] = 858, + [4859] = 854, + [4860] = 839, + [4861] = 862, + [4862] = 4862, + [4863] = 885, + [4864] = 887, + [4865] = 846, + [4866] = 847, + [4867] = 840, + [4868] = 4667, + [4869] = 850, + [4870] = 876, + [4871] = 884, + [4872] = 862, + [4873] = 868, + [4874] = 838, + [4875] = 860, + [4876] = 878, + [4877] = 866, + [4878] = 875, + [4879] = 869, + [4880] = 852, + [4881] = 881, + [4882] = 877, + [4883] = 4883, + [4884] = 876, + [4885] = 840, + [4886] = 884, [4887] = 4887, - [4888] = 4806, - [4889] = 4831, - [4890] = 873, - [4891] = 874, - [4892] = 4793, - [4893] = 4791, - [4894] = 4797, - [4895] = 4895, - [4896] = 843, - [4897] = 4897, - [4898] = 4898, - [4899] = 4855, - [4900] = 4900, - [4901] = 4901, - [4902] = 4902, - [4903] = 4903, - [4904] = 4904, - [4905] = 4905, - [4906] = 4906, - [4907] = 4901, - [4908] = 4898, - [4909] = 4909, + [4888] = 887, + [4889] = 839, + [4890] = 4890, + [4891] = 852, + [4892] = 854, + [4893] = 857, + [4894] = 881, + [4895] = 875, + [4896] = 858, + [4897] = 4890, + [4898] = 4887, + [4899] = 4899, + [4900] = 838, + [4901] = 860, + [4902] = 868, + [4903] = 4899, + [4904] = 869, + [4905] = 877, + [4906] = 880, + [4907] = 885, + [4908] = 866, + [4909] = 4883, [4910] = 4910, - [4911] = 4911, + [4911] = 4899, [4912] = 4912, - [4913] = 4909, - [4914] = 4906, - [4915] = 4897, + [4913] = 4913, + [4914] = 4913, + [4915] = 4910, [4916] = 4916, - [4917] = 4917, - [4918] = 4918, - [4919] = 4919, - [4920] = 4920, - [4921] = 4921, - [4922] = 4922, - [4923] = 4912, + [4917] = 886, + [4918] = 872, + [4919] = 853, + [4920] = 878, + [4921] = 4910, + [4922] = 850, + [4923] = 4674, [4924] = 4924, [4925] = 4925, - [4926] = 4926, - [4927] = 4909, - [4928] = 4901, - [4929] = 4904, - [4930] = 4930, - [4931] = 4930, - [4932] = 4932, - [4933] = 4933, - [4934] = 4912, - [4935] = 4855, - [4936] = 4921, - [4937] = 4937, - [4938] = 4921, + [4926] = 4899, + [4927] = 4661, + [4928] = 4749, + [4929] = 844, + [4930] = 4899, + [4931] = 4887, + [4932] = 4890, + [4933] = 4916, + [4934] = 4913, + [4935] = 4883, + [4936] = 4899, + [4937] = 4899, + [4938] = 4913, [4939] = 4912, - [4940] = 4912, - [4941] = 4909, - [4942] = 4906, - [4943] = 4921, - [4944] = 4901, - [4945] = 4930, - [4946] = 4946, - [4947] = 4912, - [4948] = 4948, - [4949] = 4909, - [4950] = 4950, - [4951] = 4951, - [4952] = 4952, + [4940] = 862, + [4941] = 4913, + [4942] = 848, + [4943] = 4862, + [4944] = 4944, + [4945] = 4913, + [4946] = 4775, + [4947] = 4913, + [4948] = 4913, + [4949] = 4727, + [4950] = 4913, + [4951] = 796, + [4952] = 846, [4953] = 4953, [4954] = 4954, - [4955] = 4955, - [4956] = 4909, - [4957] = 4909, - [4958] = 4906, - [4959] = 4946, + [4955] = 847, + [4956] = 4913, + [4957] = 4916, + [4958] = 4958, + [4959] = 4959, [4960] = 4960, - [4961] = 4897, + [4961] = 4958, [4962] = 4962, - [4963] = 4897, - [4964] = 4921, + [4963] = 4963, + [4964] = 4964, [4965] = 4965, - [4966] = 866, - [4967] = 4901, - [4968] = 4930, + [4966] = 4965, + [4967] = 4967, + [4968] = 4968, [4969] = 4969, - [4970] = 4930, + [4970] = 4970, [4971] = 4971, - [4972] = 4898, + [4972] = 4968, [4973] = 4973, - [4974] = 4974, - [4975] = 4901, + [4974] = 4968, + [4975] = 4975, [4976] = 4976, - [4977] = 4904, + [4977] = 4977, [4978] = 4978, - [4979] = 4979, - [4980] = 4930, - [4981] = 4904, - [4982] = 4912, + [4979] = 862, + [4980] = 4980, + [4981] = 848, + [4982] = 4982, [4983] = 4983, [4984] = 4984, [4985] = 4985, - [4986] = 4978, + [4986] = 4986, [4987] = 4987, - [4988] = 4988, + [4988] = 4959, [4989] = 4989, - [4990] = 4988, + [4990] = 2673, [4991] = 4991, [4992] = 4992, - [4993] = 4993, - [4994] = 4994, - [4995] = 4991, - [4996] = 4996, - [4997] = 4988, - [4998] = 4988, - [4999] = 4999, - [5000] = 5000, + [4993] = 4973, + [4994] = 4968, + [4995] = 4995, + [4996] = 4968, + [4997] = 4997, + [4998] = 4971, + [4999] = 4959, + [5000] = 4968, [5001] = 5001, - [5002] = 4855, - [5003] = 4988, - [5004] = 5004, - [5005] = 5005, - [5006] = 4992, - [5007] = 5007, - [5008] = 5005, - [5009] = 5004, + [5002] = 5002, + [5003] = 5003, + [5004] = 4997, + [5005] = 4970, + [5006] = 4968, + [5007] = 847, + [5008] = 846, + [5009] = 5009, [5010] = 5010, - [5011] = 4988, - [5012] = 5012, - [5013] = 5001, + [5011] = 4983, + [5012] = 5009, + [5013] = 844, [5014] = 5014, - [5015] = 4988, - [5016] = 5016, - [5017] = 4993, - [5018] = 5018, - [5019] = 4988, - [5020] = 5020, - [5021] = 4988, - [5022] = 5022, - [5023] = 5023, - [5024] = 4988, - [5025] = 5025, - [5026] = 5026, - [5027] = 5004, - [5028] = 5028, - [5029] = 4916, - [5030] = 5030, - [5031] = 5031, - [5032] = 4988, - [5033] = 5033, - [5034] = 5005, - [5035] = 4988, - [5036] = 4988, - [5037] = 4993, - [5038] = 5038, - [5039] = 4991, - [5040] = 5040, - [5041] = 5041, + [5015] = 4992, + [5016] = 5001, + [5017] = 850, + [5018] = 876, + [5019] = 4983, + [5020] = 4971, + [5021] = 5021, + [5022] = 872, + [5023] = 886, + [5024] = 4991, + [5025] = 866, + [5026] = 885, + [5027] = 880, + [5028] = 853, + [5029] = 869, + [5030] = 868, + [5031] = 860, + [5032] = 838, + [5033] = 4995, + [5034] = 4987, + [5035] = 858, + [5036] = 5036, + [5037] = 5037, + [5038] = 877, + [5039] = 4985, + [5040] = 5003, + [5041] = 4963, [5042] = 5042, - [5043] = 4988, - [5044] = 5042, - [5045] = 4988, - [5046] = 5028, - [5047] = 4994, - [5048] = 5048, - [5049] = 5049, - [5050] = 5050, - [5051] = 5051, - [5052] = 4988, - [5053] = 5012, + [5043] = 854, + [5044] = 4991, + [5045] = 4992, + [5046] = 857, + [5047] = 5003, + [5048] = 852, + [5049] = 4995, + [5050] = 5002, + [5051] = 4995, + [5052] = 875, + [5053] = 881, [5054] = 5054, - [5055] = 4991, - [5056] = 4988, - [5057] = 4989, - [5058] = 5042, - [5059] = 5059, - [5060] = 4988, - [5061] = 4988, - [5062] = 5062, - [5063] = 5012, - [5064] = 5000, - [5065] = 4988, - [5066] = 5005, - [5067] = 5067, - [5068] = 4988, - [5069] = 5069, - [5070] = 4988, - [5071] = 5001, - [5072] = 5042, - [5073] = 4988, + [5055] = 4995, + [5056] = 839, + [5057] = 840, + [5058] = 4991, + [5059] = 5001, + [5060] = 4995, + [5061] = 4995, + [5062] = 887, + [5063] = 884, + [5064] = 5064, + [5065] = 4983, + [5066] = 878, + [5067] = 5010, + [5068] = 5009, + [5069] = 4997, + [5070] = 5010, + [5071] = 5071, + [5072] = 5072, + [5073] = 5073, [5074] = 5074, - [5075] = 4991, - [5076] = 4989, - [5077] = 4994, - [5078] = 4988, - [5079] = 5012, - [5080] = 4988, - [5081] = 4855, - [5082] = 5026, - [5083] = 5005, + [5075] = 5075, + [5076] = 5076, + [5077] = 5077, + [5078] = 5078, + [5079] = 5079, + [5080] = 5080, + [5081] = 5081, + [5082] = 5082, + [5083] = 5083, [5084] = 5084, - [5085] = 5004, + [5085] = 5085, [5086] = 5086, - [5087] = 5087, - [5088] = 4988, - [5089] = 5084, - [5090] = 4988, - [5091] = 866, - [5092] = 4988, - [5093] = 5093, - [5094] = 5051, - [5095] = 4988, - [5096] = 4992, - [5097] = 5097, - [5098] = 4991, + [5087] = 5085, + [5088] = 5086, + [5089] = 5085, + [5090] = 5071, + [5091] = 5091, + [5092] = 5086, + [5093] = 862, + [5094] = 5075, + [5095] = 5071, + [5096] = 5086, + [5097] = 5078, + [5098] = 5098, [5099] = 5099, [5100] = 5100, - [5101] = 4988, - [5102] = 4988, - [5103] = 5042, + [5101] = 5101, + [5102] = 5102, + [5103] = 4960, [5104] = 5104, - [5105] = 5105, - [5106] = 4993, - [5107] = 4988, - [5108] = 4988, + [5105] = 5098, + [5106] = 5075, + [5107] = 5107, + [5108] = 5072, [5109] = 5109, - [5110] = 4993, - [5111] = 4988, - [5112] = 5004, + [5110] = 5077, + [5111] = 5111, + [5112] = 4960, [5113] = 5113, - [5114] = 5012, - [5115] = 4988, + [5114] = 5085, + [5115] = 5085, [5116] = 5116, [5117] = 5117, - [5118] = 5026, - [5119] = 5067, - [5120] = 5042, - [5121] = 4988, - [5122] = 4989, - [5123] = 4916, - [5124] = 4988, - [5125] = 4989, + [5118] = 5118, + [5119] = 5119, + [5120] = 5098, + [5121] = 5086, + [5122] = 5111, + [5123] = 5098, + [5124] = 5124, + [5125] = 5125, [5126] = 5126, - [5127] = 866, - [5128] = 4993, - [5129] = 4988, - [5130] = 4994, - [5131] = 4988, - [5132] = 5005, - [5133] = 4988, - [5134] = 4988, - [5135] = 5135, - [5136] = 4988, - [5137] = 5004, - [5138] = 5138, - [5139] = 5139, - [5140] = 4988, - [5141] = 5004, - [5142] = 5142, - [5143] = 4993, - [5144] = 5018, - [5145] = 4988, - [5146] = 5146, - [5147] = 4988, - [5148] = 4988, - [5149] = 4992, - [5150] = 5005, - [5151] = 4988, - [5152] = 4988, - [5153] = 4988, - [5154] = 4988, - [5155] = 4989, - [5156] = 5156, - [5157] = 5000, - [5158] = 5014, - [5159] = 5159, - [5160] = 5084, + [5127] = 5127, + [5128] = 5075, + [5129] = 5129, + [5130] = 5130, + [5131] = 5117, + [5132] = 5083, + [5133] = 5072, + [5134] = 5134, + [5135] = 5077, + [5136] = 5136, + [5137] = 5137, + [5138] = 5117, + [5139] = 5086, + [5140] = 5071, + [5141] = 5086, + [5142] = 5075, + [5143] = 5098, + [5144] = 5144, + [5145] = 5145, + [5146] = 5085, + [5147] = 5072, + [5148] = 5148, + [5149] = 5149, + [5150] = 5150, + [5151] = 5117, + [5152] = 5085, + [5153] = 5111, + [5154] = 5154, + [5155] = 5098, + [5156] = 5075, + [5157] = 5072, + [5158] = 5158, + [5159] = 5077, + [5160] = 5160, [5161] = 5161, - [5162] = 4988, - [5163] = 5018, + [5162] = 4960, + [5163] = 5163, [5164] = 5164, - [5165] = 5164, + [5165] = 5165, [5166] = 5166, [5167] = 5167, - [5168] = 5164, + [5168] = 5168, [5169] = 5169, - [5170] = 5164, - [5171] = 5167, - [5172] = 5172, - [5173] = 5142, - [5174] = 5174, + [5170] = 5167, + [5171] = 5166, + [5172] = 5166, + [5173] = 862, + [5174] = 5166, [5175] = 5175, [5176] = 5176, [5177] = 5177, - [5178] = 5164, - [5179] = 5167, - [5180] = 5167, - [5181] = 5164, + [5178] = 5178, + [5179] = 5179, + [5180] = 5175, + [5181] = 5166, [5182] = 5182, - [5183] = 5183, - [5184] = 5164, - [5185] = 1937, - [5186] = 5167, + [5183] = 5166, + [5184] = 5184, + [5185] = 5185, + [5186] = 5177, [5187] = 5187, - [5188] = 5188, - [5189] = 5164, - [5190] = 5054, - [5191] = 5167, - [5192] = 5167, - [5193] = 5117, - [5194] = 5164, - [5195] = 885, - [5196] = 884, - [5197] = 5197, - [5198] = 875, - [5199] = 5164, - [5200] = 5167, - [5201] = 5201, - [5202] = 5167, - [5203] = 5164, - [5204] = 5167, - [5205] = 5167, - [5206] = 5206, - [5207] = 5164, - [5208] = 5208, - [5209] = 5164, - [5210] = 5210, - [5211] = 5167, - [5212] = 5164, - [5213] = 5213, + [5188] = 5166, + [5189] = 5166, + [5190] = 5166, + [5191] = 5191, + [5192] = 5166, + [5193] = 5166, + [5194] = 5177, + [5195] = 5195, + [5196] = 5166, + [5197] = 5166, + [5198] = 862, + [5199] = 5195, + [5200] = 5187, + [5201] = 5166, + [5202] = 5202, + [5203] = 5203, + [5204] = 5165, + [5205] = 5205, + [5206] = 5166, + [5207] = 5148, + [5208] = 5166, + [5209] = 5209, + [5210] = 5166, + [5211] = 5166, + [5212] = 5212, + [5213] = 5166, [5214] = 5214, - [5215] = 5215, - [5216] = 5216, - [5217] = 5217, - [5218] = 5215, - [5219] = 5167, - [5220] = 5164, - [5221] = 5215, - [5222] = 5164, - [5223] = 5167, - [5224] = 5224, - [5225] = 5164, - [5226] = 5164, - [5227] = 5167, - [5228] = 5167, - [5229] = 5229, - [5230] = 5230, - [5231] = 5231, - [5232] = 5164, - [5233] = 5167, - [5234] = 5167, - [5235] = 866, - [5236] = 5164, - [5237] = 5237, - [5238] = 5238, + [5215] = 5163, + [5216] = 5166, + [5217] = 5166, + [5218] = 5166, + [5219] = 5166, + [5220] = 5220, + [5221] = 5221, + [5222] = 5166, + [5223] = 5177, + [5224] = 5166, + [5225] = 5166, + [5226] = 5177, + [5227] = 5227, + [5228] = 5228, + [5229] = 5166, + [5230] = 5166, + [5231] = 5203, + [5232] = 5163, + [5233] = 5166, + [5234] = 5163, + [5235] = 5235, + [5236] = 5236, + [5237] = 5166, + [5238] = 5166, [5239] = 5239, - [5240] = 5164, + [5240] = 5166, [5241] = 5241, - [5242] = 5242, - [5243] = 5167, - [5244] = 1990, - [5245] = 5245, - [5246] = 5246, - [5247] = 5164, - [5248] = 5167, - [5249] = 4984, - [5250] = 5167, - [5251] = 5213, - [5252] = 5252, - [5253] = 5164, - [5254] = 5167, - [5255] = 5255, - [5256] = 5164, + [5242] = 5166, + [5243] = 5243, + [5244] = 5166, + [5245] = 5166, + [5246] = 5236, + [5247] = 5247, + [5248] = 5166, + [5249] = 5166, + [5250] = 5236, + [5251] = 5247, + [5252] = 5236, + [5253] = 5247, + [5254] = 5166, + [5255] = 5185, + [5256] = 5166, [5257] = 5257, - [5258] = 5026, - [5259] = 5259, + [5258] = 5258, + [5259] = 5166, [5260] = 5260, - [5261] = 5164, - [5262] = 5167, - [5263] = 5183, - [5264] = 5167, + [5261] = 5166, + [5262] = 5166, + [5263] = 5163, + [5264] = 5166, [5265] = 5265, - [5266] = 5164, - [5267] = 5164, - [5268] = 5167, - [5269] = 5215, + [5266] = 5166, + [5267] = 5267, + [5268] = 5268, + [5269] = 5235, [5270] = 5270, [5271] = 5271, - [5272] = 5164, - [5273] = 5259, - [5274] = 5167, + [5272] = 5272, + [5273] = 5273, + [5274] = 5274, [5275] = 5275, - [5276] = 5265, - [5277] = 5257, - [5278] = 5270, - [5279] = 5164, - [5280] = 5167, - [5281] = 5164, - [5282] = 5255, - [5283] = 5252, - [5284] = 5167, - [5285] = 5164, - [5286] = 5215, - [5287] = 4803, - [5288] = 5164, - [5289] = 5167, - [5290] = 5290, - [5291] = 5265, - [5292] = 5231, - [5293] = 5230, - [5294] = 5167, - [5295] = 5229, - [5296] = 5164, - [5297] = 5167, - [5298] = 5167, - [5299] = 5164, - [5300] = 5208, - [5301] = 5271, - [5302] = 5164, - [5303] = 5303, - [5304] = 5167, - [5305] = 5305, - [5306] = 5164, - [5307] = 5167, - [5308] = 5167, - [5309] = 5164, - [5310] = 5164, - [5311] = 5167, - [5312] = 1990, - [5313] = 5087, - [5314] = 5033, - [5315] = 5167, - [5316] = 1937, - [5317] = 5164, - [5318] = 5167, - [5319] = 5167, - [5320] = 5320, - [5321] = 5197, - [5322] = 5164, - [5323] = 2173, - [5324] = 5164, - [5325] = 4803, - [5326] = 5326, - [5327] = 5326, - [5328] = 5167, - [5329] = 2223, - [5330] = 5164, - [5331] = 5167, - [5332] = 5167, - [5333] = 5164, - [5334] = 2133, - [5335] = 2131, - [5336] = 5164, - [5337] = 5337, - [5338] = 5177, - [5339] = 5167, - [5340] = 5164, - [5341] = 5176, - [5342] = 5326, - [5343] = 1988, - [5344] = 5164, - [5345] = 5174, - [5346] = 5167, - [5347] = 5167, - [5348] = 5167, - [5349] = 1984, - [5350] = 5167, - [5351] = 5164, - [5352] = 5352, - [5353] = 5142, - [5354] = 5164, - [5355] = 5167, - [5356] = 5164, - [5357] = 5167, - [5358] = 5067, - [5359] = 5167, - [5360] = 5167, - [5361] = 5183, - [5362] = 5164, - [5363] = 5265, - [5364] = 5087, + [5276] = 4960, + [5277] = 5277, + [5278] = 5278, + [5279] = 5175, + [5280] = 5166, + [5281] = 5281, + [5282] = 5282, + [5283] = 5236, + [5284] = 5203, + [5285] = 5187, + [5286] = 5175, + [5287] = 5265, + [5288] = 5288, + [5289] = 5166, + [5290] = 5165, + [5291] = 5236, + [5292] = 5270, + [5293] = 5178, + [5294] = 5166, + [5295] = 5241, + [5296] = 5209, + [5297] = 5203, + [5298] = 5163, + [5299] = 5299, + [5300] = 5165, + [5301] = 5166, + [5302] = 5272, + [5303] = 5203, + [5304] = 5187, + [5305] = 5175, + [5306] = 5178, + [5307] = 5272, + [5308] = 5195, + [5309] = 5165, + [5310] = 5310, + [5311] = 5178, + [5312] = 5247, + [5313] = 5166, + [5314] = 5314, + [5315] = 5166, + [5316] = 5316, + [5317] = 5317, + [5318] = 5267, + [5319] = 5241, + [5320] = 5272, + [5321] = 5203, + [5322] = 5187, + [5323] = 5175, + [5324] = 5165, + [5325] = 5165, + [5326] = 5187, + [5327] = 5272, + [5328] = 5185, + [5329] = 5203, + [5330] = 5330, + [5331] = 5331, + [5332] = 5332, + [5333] = 5235, + [5334] = 5334, + [5335] = 5272, + [5336] = 5148, + [5337] = 5166, + [5338] = 5175, + [5339] = 5187, + [5340] = 5340, + [5341] = 5341, + [5342] = 5342, + [5343] = 5267, + [5344] = 5344, + [5345] = 2021, + [5346] = 5346, + [5347] = 5347, + [5348] = 5348, + [5349] = 5348, + [5350] = 5348, + [5351] = 5351, + [5352] = 5347, + [5353] = 5348, + [5354] = 5354, + [5355] = 5351, + [5356] = 5356, + [5357] = 5347, + [5358] = 5348, + [5359] = 5359, + [5360] = 5348, + [5361] = 5347, + [5362] = 5362, + [5363] = 5347, + [5364] = 5348, [5365] = 5365, - [5366] = 5366, - [5367] = 5367, - [5368] = 5167, - [5369] = 5164, - [5370] = 5260, + [5366] = 5348, + [5367] = 5347, + [5368] = 5347, + [5369] = 5348, + [5370] = 5370, [5371] = 5371, - [5372] = 5372, - [5373] = 5164, - [5374] = 5374, + [5372] = 2204, + [5373] = 5347, + [5374] = 5348, [5375] = 5375, - [5376] = 5376, - [5377] = 5167, - [5378] = 5164, - [5379] = 5054, - [5380] = 5215, - [5381] = 5117, - [5382] = 5366, - [5383] = 5383, + [5376] = 4975, + [5377] = 5348, + [5378] = 5347, + [5379] = 5347, + [5380] = 5348, + [5381] = 2054, + [5382] = 2029, + [5383] = 5365, [5384] = 5384, - [5385] = 5385, - [5386] = 5386, + [5385] = 5109, + [5386] = 5347, [5387] = 5387, - [5388] = 5388, - [5389] = 5383, - [5390] = 5390, - [5391] = 5391, - [5392] = 5392, - [5393] = 5393, - [5394] = 5394, - [5395] = 5395, - [5396] = 5396, - [5397] = 5397, - [5398] = 5398, - [5399] = 5399, - [5400] = 5400, - [5401] = 5383, - [5402] = 5384, - [5403] = 5403, + [5388] = 5348, + [5389] = 5348, + [5390] = 4975, + [5391] = 5348, + [5392] = 5347, + [5393] = 5347, + [5394] = 5348, + [5395] = 5347, + [5396] = 2267, + [5397] = 5348, + [5398] = 5348, + [5399] = 5347, + [5400] = 5347, + [5401] = 5348, + [5402] = 5402, + [5403] = 2019, [5404] = 5404, - [5405] = 5405, - [5406] = 5406, - [5407] = 5393, - [5408] = 5385, - [5409] = 5395, + [5405] = 844, + [5406] = 5347, + [5407] = 5407, + [5408] = 5408, + [5409] = 2029, [5410] = 5410, - [5411] = 5393, - [5412] = 5412, - [5413] = 5413, - [5414] = 5384, - [5415] = 5415, - [5416] = 5416, - [5417] = 5213, - [5418] = 5418, - [5419] = 5419, - [5420] = 5420, - [5421] = 5421, - [5422] = 5422, + [5411] = 5356, + [5412] = 5348, + [5413] = 5348, + [5414] = 5347, + [5415] = 5347, + [5416] = 5347, + [5417] = 2054, + [5418] = 5348, + [5419] = 5356, + [5420] = 846, + [5421] = 5347, + [5422] = 5348, [5423] = 5423, - [5424] = 5383, - [5425] = 5425, - [5426] = 4803, - [5427] = 5395, - [5428] = 5428, - [5429] = 5398, + [5424] = 847, + [5425] = 5347, + [5426] = 5348, + [5427] = 5348, + [5428] = 5348, + [5429] = 5347, [5430] = 5430, - [5431] = 5383, - [5432] = 5383, - [5433] = 5433, + [5431] = 5431, + [5432] = 5432, + [5433] = 5241, [5434] = 5434, [5435] = 5435, - [5436] = 5383, - [5437] = 5437, - [5438] = 5393, - [5439] = 5383, - [5440] = 5440, + [5436] = 5436, + [5437] = 5341, + [5438] = 5347, + [5439] = 5191, + [5440] = 5348, [5441] = 5441, - [5442] = 5025, - [5443] = 5443, - [5444] = 5398, - [5445] = 5384, - [5446] = 5398, - [5447] = 5383, - [5448] = 5448, - [5449] = 5383, - [5450] = 5448, + [5442] = 5442, + [5443] = 5227, + [5444] = 5347, + [5445] = 5348, + [5446] = 5348, + [5447] = 5447, + [5448] = 5347, + [5449] = 5449, + [5450] = 5347, [5451] = 5451, - [5452] = 5452, - [5453] = 5453, - [5454] = 5454, - [5455] = 5455, - [5456] = 5398, - [5457] = 5395, - [5458] = 5395, - [5459] = 5398, - [5460] = 5398, - [5461] = 5395, - [5462] = 5398, + [5452] = 5348, + [5453] = 5347, + [5454] = 5347, + [5455] = 5348, + [5456] = 5348, + [5457] = 5347, + [5458] = 5458, + [5459] = 5347, + [5460] = 5348, + [5461] = 5461, + [5462] = 5462, [5463] = 5463, - [5464] = 5395, - [5465] = 5398, - [5466] = 5383, - [5467] = 5395, - [5468] = 5455, - [5469] = 5469, - [5470] = 5451, - [5471] = 5383, - [5472] = 5472, - [5473] = 5383, - [5474] = 5398, - [5475] = 5395, - [5476] = 5395, - [5477] = 5477, - [5478] = 5418, - [5479] = 5383, - [5480] = 5383, - [5481] = 5398, - [5482] = 5395, - [5483] = 5483, - [5484] = 5404, - [5485] = 5395, - [5486] = 5486, - [5487] = 5398, - [5488] = 5454, - [5489] = 5489, - [5490] = 5383, - [5491] = 5383, - [5492] = 5486, - [5493] = 5493, - [5494] = 5398, - [5495] = 5395, - [5496] = 5395, - [5497] = 5463, - [5498] = 5383, - [5499] = 5383, - [5500] = 5500, - [5501] = 5384, - [5502] = 5418, - [5503] = 5403, - [5504] = 5398, - [5505] = 5505, - [5506] = 5395, - [5507] = 5507, - [5508] = 5420, - [5509] = 5383, - [5510] = 5393, - [5511] = 5511, - [5512] = 5395, - [5513] = 5383, - [5514] = 5398, - [5515] = 5383, - [5516] = 5516, - [5517] = 5383, - [5518] = 5518, - [5519] = 5398, - [5520] = 5500, - [5521] = 5395, - [5522] = 5393, - [5523] = 4999, - [5524] = 5383, - [5525] = 5383, - [5526] = 5383, - [5527] = 5087, - [5528] = 5383, - [5529] = 5518, - [5530] = 5383, - [5531] = 5420, - [5532] = 5516, - [5533] = 5398, - [5534] = 5518, - [5535] = 5395, - [5536] = 5117, - [5537] = 5516, - [5538] = 4803, - [5539] = 5395, - [5540] = 5398, - [5541] = 5398, - [5542] = 5448, + [5464] = 5404, + [5465] = 5465, + [5466] = 5347, + [5467] = 5348, + [5468] = 5348, + [5469] = 5402, + [5470] = 5347, + [5471] = 5442, + [5472] = 5227, + [5473] = 5347, + [5474] = 5191, + [5475] = 5356, + [5476] = 5476, + [5477] = 5348, + [5478] = 5478, + [5479] = 5451, + [5480] = 5480, + [5481] = 5347, + [5482] = 5348, + [5483] = 5365, + [5484] = 5484, + [5485] = 5348, + [5486] = 5347, + [5487] = 5347, + [5488] = 5347, + [5489] = 5348, + [5490] = 5490, + [5491] = 5356, + [5492] = 5347, + [5493] = 5348, + [5494] = 5331, + [5495] = 5334, + [5496] = 5496, + [5497] = 5497, + [5498] = 5498, + [5499] = 5348, + [5500] = 5348, + [5501] = 5449, + [5502] = 5347, + [5503] = 5344, + [5504] = 5347, + [5505] = 5410, + [5506] = 5348, + [5507] = 5348, + [5508] = 5478, + [5509] = 5461, + [5510] = 5387, + [5511] = 5347, + [5512] = 5512, + [5513] = 5347, + [5514] = 5407, + [5515] = 5356, + [5516] = 5348, + [5517] = 5517, + [5518] = 5442, + [5519] = 5347, + [5520] = 5348, + [5521] = 5521, + [5522] = 862, + [5523] = 5348, + [5524] = 5347, + [5525] = 5347, + [5526] = 5348, + [5527] = 5347, + [5528] = 5528, + [5529] = 5529, + [5530] = 5496, + [5531] = 1925, + [5532] = 5347, + [5533] = 5533, + [5534] = 5348, + [5535] = 5535, + [5536] = 5347, + [5537] = 5348, + [5538] = 5538, + [5539] = 1924, + [5540] = 5348, + [5541] = 5541, + [5542] = 5347, [5543] = 5543, [5544] = 5544, - [5545] = 5383, + [5545] = 5341, [5546] = 5546, - [5547] = 5406, - [5548] = 5398, - [5549] = 5395, - [5550] = 5383, - [5551] = 5463, - [5552] = 5486, - [5553] = 5383, - [5554] = 5054, - [5555] = 5454, - [5556] = 1937, - [5557] = 1990, - [5558] = 5383, - [5559] = 5383, - [5560] = 5398, - [5561] = 5511, - [5562] = 5395, + [5547] = 5546, + [5548] = 5480, + [5549] = 5347, + [5550] = 5347, + [5551] = 5348, + [5552] = 5402, + [5553] = 5528, + [5554] = 5347, + [5555] = 5348, + [5556] = 5556, + [5557] = 5557, + [5558] = 5334, + [5559] = 5535, + [5560] = 5560, + [5561] = 5544, + [5562] = 5562, [5563] = 5563, - [5564] = 5395, - [5565] = 875, - [5566] = 5395, - [5567] = 5483, - [5568] = 5398, + [5564] = 5436, + [5565] = 5375, + [5566] = 5402, + [5567] = 5567, + [5568] = 5568, [5569] = 5569, [5570] = 5570, [5571] = 5571, [5572] = 5572, - [5573] = 5573, - [5574] = 5574, - [5575] = 5398, - [5576] = 5395, + [5573] = 5568, + [5574] = 5568, + [5575] = 5575, + [5576] = 5576, [5577] = 5577, - [5578] = 5418, - [5579] = 5384, - [5580] = 5391, - [5581] = 5418, + [5578] = 5578, + [5579] = 5579, + [5580] = 5568, + [5581] = 5581, [5582] = 5582, [5583] = 5583, - [5584] = 5400, - [5585] = 5398, - [5586] = 5486, - [5587] = 5395, + [5584] = 5584, + [5585] = 5585, + [5586] = 5586, + [5587] = 5587, [5588] = 5588, - [5589] = 5395, - [5590] = 5392, + [5589] = 5589, + [5590] = 5590, [5591] = 5591, - [5592] = 5455, - [5593] = 5395, - [5594] = 5387, - [5595] = 5398, - [5596] = 5451, - [5597] = 5398, - [5598] = 5598, - [5599] = 5395, - [5600] = 5507, - [5601] = 5601, - [5602] = 5383, - [5603] = 5383, - [5604] = 5604, - [5605] = 5390, - [5606] = 5453, - [5607] = 5406, - [5608] = 5454, - [5609] = 5400, - [5610] = 5610, - [5611] = 5398, - [5612] = 5395, - [5613] = 5388, + [5592] = 5571, + [5593] = 5593, + [5594] = 5594, + [5595] = 5568, + [5596] = 5572, + [5597] = 5597, + [5598] = 5586, + [5599] = 5599, + [5600] = 5600, + [5601] = 5568, + [5602] = 5179, + [5603] = 5568, + [5604] = 5568, + [5605] = 5605, + [5606] = 5606, + [5607] = 5607, + [5608] = 5575, + [5609] = 5609, + [5610] = 5583, + [5611] = 5582, + [5612] = 5568, + [5613] = 5613, [5614] = 5614, [5615] = 5615, - [5616] = 5472, - [5617] = 5392, - [5618] = 5387, - [5619] = 5384, - [5620] = 5395, - [5621] = 5398, - [5622] = 5398, - [5623] = 5395, - [5624] = 5415, - [5625] = 5383, - [5626] = 5626, - [5627] = 5383, - [5628] = 5507, - [5629] = 5383, - [5630] = 5390, - [5631] = 5383, - [5632] = 5453, - [5633] = 5393, - [5634] = 5388, - [5635] = 5610, - [5636] = 5398, - [5637] = 5395, - [5638] = 5638, + [5616] = 5616, + [5617] = 5617, + [5618] = 5568, + [5619] = 5582, + [5620] = 5571, + [5621] = 5594, + [5622] = 5582, + [5623] = 5191, + [5624] = 5624, + [5625] = 5575, + [5626] = 5582, + [5627] = 5586, + [5628] = 5568, + [5629] = 5575, + [5630] = 5582, + [5631] = 5575, + [5632] = 5586, + [5633] = 5605, + [5634] = 5582, + [5635] = 5568, + [5636] = 5575, + [5637] = 5637, + [5638] = 5571, [5639] = 5639, - [5640] = 5383, - [5641] = 5452, - [5642] = 5422, - [5643] = 5643, - [5644] = 5397, - [5645] = 5398, - [5646] = 5395, - [5647] = 5395, - [5648] = 5610, - [5649] = 5398, - [5650] = 5650, - [5651] = 5651, - [5652] = 5384, - [5653] = 5403, - [5654] = 5404, - [5655] = 5448, - [5656] = 5398, - [5657] = 5398, - [5658] = 5385, + [5640] = 5575, + [5641] = 5582, + [5642] = 5582, + [5643] = 5575, + [5644] = 5593, + [5645] = 5617, + [5646] = 5646, + [5647] = 5647, + [5648] = 5648, + [5649] = 5581, + [5650] = 5582, + [5651] = 5571, + [5652] = 5652, + [5653] = 5575, + [5654] = 5654, + [5655] = 5655, + [5656] = 5568, + [5657] = 5568, + [5658] = 5586, [5659] = 5659, - [5660] = 5383, - [5661] = 1647, - [5662] = 5395, - [5663] = 5398, - [5664] = 5448, - [5665] = 5393, - [5666] = 1665, - [5667] = 5667, - [5668] = 5668, - [5669] = 5437, - [5670] = 5398, - [5671] = 5395, - [5672] = 5397, - [5673] = 5454, - [5674] = 5395, - [5675] = 5415, - [5676] = 5398, - [5677] = 5677, - [5678] = 866, - [5679] = 5398, - [5680] = 5483, - [5681] = 5434, - [5682] = 5682, - [5683] = 5395, - [5684] = 5383, - [5685] = 5395, + [5660] = 5568, + [5661] = 5599, + [5662] = 5582, + [5663] = 5586, + [5664] = 5227, + [5665] = 5575, + [5666] = 5582, + [5667] = 5581, + [5668] = 5578, + [5669] = 5669, + [5670] = 5670, + [5671] = 5575, + [5672] = 5568, + [5673] = 5582, + [5674] = 5582, + [5675] = 5675, + [5676] = 5575, + [5677] = 5575, + [5678] = 5568, + [5679] = 5577, + [5680] = 5568, + [5681] = 5637, + [5682] = 5575, + [5683] = 5683, + [5684] = 5684, + [5685] = 5685, [5686] = 5686, - [5687] = 5687, - [5688] = 5688, - [5689] = 5500, + [5687] = 5572, + [5688] = 5582, + [5689] = 5575, [5690] = 5690, - [5691] = 5383, - [5692] = 5418, - [5693] = 5391, - [5694] = 5415, - [5695] = 5398, - [5696] = 5486, - [5697] = 5395, - [5698] = 1844, - [5699] = 5383, - [5700] = 5700, - [5701] = 5395, - [5702] = 5393, - [5703] = 5398, - [5704] = 5384, - [5705] = 5398, - [5706] = 5395, + [5691] = 5605, + [5692] = 5692, + [5693] = 5571, + [5694] = 5583, + [5695] = 5571, + [5696] = 5568, + [5697] = 5647, + [5698] = 5575, + [5699] = 5582, + [5700] = 5582, + [5701] = 5575, + [5702] = 5702, + [5703] = 5568, + [5704] = 5704, + [5705] = 5705, + [5706] = 5706, [5707] = 5707, - [5708] = 5708, - [5709] = 875, + [5708] = 5498, + [5709] = 5709, [5710] = 5710, - [5711] = 5395, - [5712] = 885, - [5713] = 884, - [5714] = 875, - [5715] = 5715, - [5716] = 5397, + [5711] = 5711, + [5712] = 5568, + [5713] = 5582, + [5714] = 5575, + [5715] = 5655, + [5716] = 5716, [5717] = 5717, - [5718] = 5398, - [5719] = 5395, - [5720] = 5720, - [5721] = 5511, - [5722] = 5391, - [5723] = 5117, - [5724] = 5724, - [5725] = 5388, - [5726] = 5388, - [5727] = 1819, - [5728] = 5395, - [5729] = 5398, - [5730] = 5398, - [5731] = 5395, - [5732] = 5732, - [5733] = 885, - [5734] = 884, - [5735] = 885, - [5736] = 5387, - [5737] = 5737, - [5738] = 5738, - [5739] = 5434, - [5740] = 5352, - [5741] = 5741, + [5718] = 5690, + [5719] = 5582, + [5720] = 847, + [5721] = 5721, + [5722] = 5582, + [5723] = 5575, + [5724] = 5568, + [5725] = 5575, + [5726] = 5726, + [5727] = 5582, + [5728] = 4975, + [5729] = 5586, + [5730] = 5717, + [5731] = 5581, + [5732] = 5648, + [5733] = 5568, + [5734] = 5582, + [5735] = 5575, + [5736] = 5655, + [5737] = 5639, + [5738] = 5568, + [5739] = 5705, + [5740] = 5571, + [5741] = 5341, [5742] = 5742, [5743] = 5743, - [5744] = 5744, - [5745] = 5454, - [5746] = 5398, - [5747] = 5395, - [5748] = 5384, + [5744] = 5584, + [5745] = 5241, + [5746] = 5582, + [5747] = 5568, + [5748] = 5575, [5749] = 5749, - [5750] = 5383, - [5751] = 5751, - [5752] = 5752, - [5753] = 5753, - [5754] = 5754, - [5755] = 5395, - [5756] = 5756, - [5757] = 5398, + [5750] = 5750, + [5751] = 5586, + [5752] = 5575, + [5753] = 862, + [5754] = 5582, + [5755] = 5755, + [5756] = 5582, + [5757] = 5705, [5758] = 5758, - [5759] = 5398, - [5760] = 5760, - [5761] = 5395, - [5762] = 5383, - [5763] = 5563, - [5764] = 5393, + [5759] = 5759, + [5760] = 5675, + [5761] = 5582, + [5762] = 5575, + [5763] = 5686, + [5764] = 5764, [5765] = 5765, - [5766] = 5766, - [5767] = 5767, - [5768] = 5388, - [5769] = 5769, - [5770] = 5437, - [5771] = 5771, - [5772] = 5054, - [5773] = 5415, - [5774] = 5398, - [5775] = 5775, - [5776] = 5395, - [5777] = 5435, - [5778] = 5087, - [5779] = 5434, + [5766] = 5652, + [5767] = 846, + [5768] = 5768, + [5769] = 5637, + [5770] = 5770, + [5771] = 5568, + [5772] = 5582, + [5773] = 5568, + [5774] = 5581, + [5775] = 5582, + [5776] = 5575, + [5777] = 5571, + [5778] = 5778, + [5779] = 5575, [5780] = 5780, - [5781] = 5472, - [5782] = 5395, - [5783] = 5783, - [5784] = 5398, - [5785] = 5785, - [5786] = 884, - [5787] = 5383, - [5788] = 5398, - [5789] = 5395, + [5781] = 5582, + [5782] = 5568, + [5783] = 5578, + [5784] = 5784, + [5785] = 5568, + [5786] = 5582, + [5787] = 5568, + [5788] = 5575, + [5789] = 5578, [5790] = 5790, [5791] = 5791, [5792] = 5792, - [5793] = 5452, + [5793] = 5793, [5794] = 5794, - [5795] = 5795, - [5796] = 5422, - [5797] = 5398, - [5798] = 5448, - [5799] = 5448, - [5800] = 5800, - [5801] = 5398, - [5802] = 5383, - [5803] = 5395, - [5804] = 5472, - [5805] = 5383, - [5806] = 5026, - [5807] = 5454, - [5808] = 5808, - [5809] = 5395, - [5810] = 5383, - [5811] = 5398, - [5812] = 5412, - [5813] = 5395, - [5814] = 5814, + [5795] = 5749, + [5796] = 5605, + [5797] = 5797, + [5798] = 5798, + [5799] = 5577, + [5800] = 5582, + [5801] = 5568, + [5802] = 5575, + [5803] = 5803, + [5804] = 5586, + [5805] = 5581, + [5806] = 5575, + [5807] = 5575, + [5808] = 5582, + [5809] = 5578, + [5810] = 5810, + [5811] = 5582, + [5812] = 5812, + [5813] = 5575, + [5814] = 5341, [5815] = 5815, - [5816] = 5816, - [5817] = 5817, + [5816] = 5572, + [5817] = 5792, [5818] = 5818, - [5819] = 5398, - [5820] = 5383, - [5821] = 5395, - [5822] = 5398, - [5823] = 5823, - [5824] = 5418, - [5825] = 5511, - [5826] = 5826, - [5827] = 5398, - [5828] = 5463, - [5829] = 5352, - [5830] = 5830, - [5831] = 1640, - [5832] = 4855, - [5833] = 5486, + [5819] = 5568, + [5820] = 5820, + [5821] = 5615, + [5822] = 5692, + [5823] = 5275, + [5824] = 5583, + [5825] = 5582, + [5826] = 5742, + [5827] = 5575, + [5828] = 5584, + [5829] = 5829, + [5830] = 5639, + [5831] = 5686, + [5832] = 5568, + [5833] = 5575, [5834] = 5834, - [5835] = 5835, - [5836] = 5836, - [5837] = 5837, + [5835] = 5582, + [5836] = 5582, + [5837] = 5575, [5838] = 5838, - [5839] = 842, - [5840] = 863, - [5841] = 5841, - [5842] = 862, - [5843] = 867, - [5844] = 854, - [5845] = 884, - [5846] = 885, - [5847] = 5425, - [5848] = 5848, - [5849] = 5849, - [5850] = 875, - [5851] = 4803, - [5852] = 5852, - [5853] = 5837, - [5854] = 5838, - [5855] = 5855, - [5856] = 5856, - [5857] = 5588, - [5858] = 842, - [5859] = 5841, - [5860] = 5860, - [5861] = 854, - [5862] = 867, - [5863] = 862, - [5864] = 863, - [5865] = 5865, - [5866] = 5667, - [5867] = 4731, + [5839] = 5839, + [5840] = 5840, + [5841] = 5593, + [5842] = 5820, + [5843] = 5593, + [5844] = 5844, + [5845] = 5655, + [5846] = 5577, + [5847] = 5847, + [5848] = 5749, + [5849] = 5577, + [5850] = 5582, + [5851] = 5575, + [5852] = 5684, + [5853] = 5655, + [5854] = 5647, + [5855] = 5759, + [5856] = 5820, + [5857] = 5568, + [5858] = 5858, + [5859] = 5859, + [5860] = 5575, + [5861] = 5582, + [5862] = 5582, + [5863] = 5575, + [5864] = 5684, + [5865] = 5586, + [5866] = 5742, + [5867] = 5568, [5868] = 5868, - [5869] = 4803, - [5870] = 5849, - [5871] = 5871, - [5872] = 5849, - [5873] = 5572, - [5874] = 5874, + [5869] = 5869, + [5870] = 5571, + [5871] = 5568, + [5872] = 5872, + [5873] = 5575, + [5874] = 5568, [5875] = 5875, - [5876] = 5876, - [5877] = 5877, - [5878] = 5878, - [5879] = 5879, - [5880] = 5837, - [5881] = 5838, - [5882] = 5882, - [5883] = 5879, - [5884] = 5884, + [5876] = 5575, + [5877] = 5582, + [5878] = 5575, + [5879] = 5692, + [5880] = 5593, + [5881] = 5705, + [5882] = 5568, + [5883] = 5883, + [5884] = 5577, [5885] = 5885, - [5886] = 5841, - [5887] = 5879, - [5888] = 5888, - [5889] = 5889, - [5890] = 5841, - [5891] = 5879, - [5892] = 5879, - [5893] = 5893, - [5894] = 5894, + [5886] = 5568, + [5887] = 5575, + [5888] = 5582, + [5889] = 5582, + [5890] = 5575, + [5891] = 5568, + [5892] = 5568, + [5893] = 5572, + [5894] = 5572, [5895] = 5895, - [5896] = 5896, + [5896] = 5568, [5897] = 5897, - [5898] = 5838, - [5899] = 5849, + [5898] = 5898, + [5899] = 5670, [5900] = 5900, - [5901] = 5837, - [5902] = 5902, + [5901] = 5568, + [5902] = 5670, [5903] = 5903, - [5904] = 5904, - [5905] = 5905, + [5904] = 5582, + [5905] = 5575, [5906] = 5906, - [5907] = 5837, - [5908] = 5838, + [5907] = 5675, + [5908] = 5594, [5909] = 5909, - [5910] = 5910, + [5910] = 4960, [5911] = 5911, - [5912] = 5912, - [5913] = 5841, - [5914] = 5914, - [5915] = 5915, - [5916] = 5916, - [5917] = 5849, - [5918] = 5918, - [5919] = 5919, - [5920] = 5920, - [5921] = 5921, - [5922] = 5922, - [5923] = 5923, - [5924] = 5924, + [5912] = 5704, + [5913] = 5582, + [5914] = 5575, + [5915] = 5575, + [5916] = 5582, + [5917] = 5568, + [5918] = 5498, + [5919] = 5648, + [5920] = 5716, + [5921] = 1788, + [5922] = 5582, + [5923] = 5599, + [5924] = 5721, [5925] = 5925, - [5926] = 5849, - [5927] = 5927, - [5928] = 5860, - [5929] = 5929, - [5930] = 5930, - [5931] = 5931, - [5932] = 5932, + [5926] = 4975, + [5927] = 5581, + [5928] = 5568, + [5929] = 5582, + [5930] = 5575, + [5931] = 5568, + [5932] = 5578, [5933] = 5933, - [5934] = 5837, - [5935] = 5838, - [5936] = 5936, - [5937] = 5937, + [5934] = 5568, + [5935] = 5704, + [5936] = 5792, + [5937] = 1767, [5938] = 5938, - [5939] = 5939, - [5940] = 5841, - [5941] = 5941, - [5942] = 5942, - [5943] = 5667, - [5944] = 5841, - [5945] = 2903, - [5946] = 5946, - [5947] = 5947, + [5939] = 2029, + [5940] = 5582, + [5941] = 5575, + [5942] = 5575, + [5943] = 5582, + [5944] = 5690, + [5945] = 5945, + [5946] = 2054, + [5947] = 844, [5948] = 5948, - [5949] = 5849, - [5950] = 5950, - [5951] = 5838, - [5952] = 5837, - [5953] = 5953, + [5949] = 5577, + [5950] = 5716, + [5951] = 5951, + [5952] = 5791, + [5953] = 5792, [5954] = 5954, [5955] = 5955, - [5956] = 5956, - [5957] = 5837, - [5958] = 5838, - [5959] = 5959, - [5960] = 5841, + [5956] = 5227, + [5957] = 5721, + [5958] = 5582, + [5959] = 5575, + [5960] = 5960, [5961] = 5961, - [5962] = 5849, - [5963] = 5841, + [5962] = 5962, + [5963] = 5575, [5964] = 5964, - [5965] = 5965, - [5966] = 5966, - [5967] = 5967, - [5968] = 5968, + [5965] = 5578, + [5966] = 5759, + [5967] = 5798, + [5968] = 5575, [5969] = 5969, - [5970] = 5970, - [5971] = 5971, - [5972] = 5849, - [5973] = 5973, - [5974] = 5974, - [5975] = 5975, - [5976] = 5961, - [5977] = 5977, - [5978] = 5978, - [5979] = 5979, - [5980] = 5837, - [5981] = 5838, - [5982] = 5966, - [5983] = 5970, - [5984] = 5984, - [5985] = 5841, - [5986] = 5841, + [5970] = 5582, + [5971] = 5582, + [5972] = 5972, + [5973] = 847, + [5974] = 5609, + [5975] = 5575, + [5976] = 5976, + [5977] = 5568, + [5978] = 5572, + [5979] = 5692, + [5980] = 5980, + [5981] = 846, + [5982] = 1786, + [5983] = 5798, + [5984] = 5568, + [5985] = 844, + [5986] = 846, [5987] = 5987, - [5988] = 5988, - [5989] = 5989, - [5990] = 5990, - [5991] = 5975, - [5992] = 5961, - [5993] = 5977, - [5994] = 5849, - [5995] = 5838, - [5996] = 5837, - [5997] = 5997, + [5988] = 5191, + [5989] = 5655, + [5990] = 5670, + [5991] = 5991, + [5992] = 5759, + [5993] = 5582, + [5994] = 5575, + [5995] = 5575, + [5996] = 5652, + [5997] = 5582, [5998] = 5998, - [5999] = 5966, - [6000] = 5837, - [6001] = 5838, + [5999] = 5999, + [6000] = 5692, + [6001] = 6001, [6002] = 6002, - [6003] = 5970, - [6004] = 6004, - [6005] = 5849, - [6006] = 5841, - [6007] = 5849, + [6003] = 5568, + [6004] = 5568, + [6005] = 6005, + [6006] = 847, + [6007] = 6007, [6008] = 6008, [6009] = 6009, [6010] = 6010, - [6011] = 6011, - [6012] = 6009, - [6013] = 5990, - [6014] = 6014, - [6015] = 6015, + [6011] = 5791, + [6012] = 5692, + [6013] = 5582, + [6014] = 5575, + [6015] = 1781, [6016] = 6016, [6017] = 6017, - [6018] = 6018, - [6019] = 5837, - [6020] = 5838, + [6018] = 5594, + [6019] = 6019, + [6020] = 1816, [6021] = 6021, - [6022] = 6022, + [6022] = 5575, [6023] = 6023, - [6024] = 6011, - [6025] = 5841, - [6026] = 6009, - [6027] = 5837, - [6028] = 5990, - [6029] = 5838, - [6030] = 5874, - [6031] = 5838, - [6032] = 6032, - [6033] = 5837, - [6034] = 6034, - [6035] = 6015, - [6036] = 6036, + [6024] = 5582, + [6025] = 844, + [6026] = 5615, + [6027] = 6027, + [6028] = 6028, + [6029] = 6029, + [6030] = 6030, + [6031] = 878, + [6032] = 884, + [6033] = 887, + [6034] = 839, + [6035] = 881, + [6036] = 875, [6037] = 6037, - [6038] = 5837, - [6039] = 5838, - [6040] = 6040, - [6041] = 5849, - [6042] = 6042, - [6043] = 6016, - [6044] = 5841, - [6045] = 6017, - [6046] = 6018, + [6038] = 5590, + [6039] = 847, + [6040] = 846, + [6041] = 6041, + [6042] = 6029, + [6043] = 844, + [6044] = 5706, + [6045] = 6030, + [6046] = 6046, [6047] = 6047, - [6048] = 6021, - [6049] = 6049, - [6050] = 6011, - [6051] = 6009, - [6052] = 6052, - [6053] = 6053, - [6054] = 5990, - [6055] = 6055, - [6056] = 5874, - [6057] = 5837, - [6058] = 5838, - [6059] = 6032, - [6060] = 6034, + [6048] = 6048, + [6049] = 6030, + [6050] = 6050, + [6051] = 5925, + [6052] = 4954, + [6053] = 4975, + [6054] = 6029, + [6055] = 6041, + [6056] = 5597, + [6057] = 4975, + [6058] = 6037, + [6059] = 6059, + [6060] = 6060, [6061] = 6061, - [6062] = 6062, - [6063] = 5841, + [6062] = 6037, + [6063] = 6063, [6064] = 6064, - [6065] = 6015, - [6066] = 5970, - [6067] = 6036, - [6068] = 6004, - [6069] = 5841, - [6070] = 6040, - [6071] = 6071, - [6072] = 6072, - [6073] = 5838, - [6074] = 5837, + [6065] = 6065, + [6066] = 6041, + [6067] = 6029, + [6068] = 6068, + [6069] = 6069, + [6070] = 6070, + [6071] = 6068, + [6072] = 6030, + [6073] = 6073, + [6074] = 6068, [6075] = 6075, - [6076] = 5837, - [6077] = 5838, - [6078] = 6042, - [6079] = 6016, - [6080] = 6052, - [6081] = 6017, - [6082] = 5841, + [6076] = 6076, + [6077] = 6068, + [6078] = 6068, + [6079] = 6079, + [6080] = 6080, + [6081] = 6081, + [6082] = 6030, [6083] = 6083, - [6084] = 6018, - [6085] = 6047, - [6086] = 6021, - [6087] = 866, - [6088] = 5849, - [6089] = 6049, - [6090] = 6011, - [6091] = 6009, - [6092] = 6052, - [6093] = 5990, - [6094] = 6055, - [6095] = 5837, - [6096] = 5838, - [6097] = 5874, - [6098] = 6032, - [6099] = 6034, - [6100] = 6061, - [6101] = 5841, - [6102] = 6062, - [6103] = 6064, - [6104] = 6015, - [6105] = 6036, - [6106] = 6040, - [6107] = 6071, - [6108] = 6072, - [6109] = 5841, - [6110] = 6032, - [6111] = 6042, - [6112] = 6016, - [6113] = 6113, - [6114] = 5837, - [6115] = 5838, - [6116] = 6009, - [6117] = 5838, - [6118] = 6017, - [6119] = 5837, - [6120] = 5841, - [6121] = 6121, - [6122] = 6018, - [6123] = 6047, - [6124] = 6021, - [6125] = 6049, - [6126] = 5849, - [6127] = 6011, - [6128] = 6009, - [6129] = 6129, - [6130] = 5849, - [6131] = 6052, - [6132] = 6132, - [6133] = 5837, - [6134] = 5838, - [6135] = 5841, + [6084] = 6084, + [6085] = 6037, + [6086] = 6086, + [6087] = 6029, + [6088] = 6088, + [6089] = 6041, + [6090] = 6090, + [6091] = 6091, + [6092] = 6092, + [6093] = 6041, + [6094] = 6029, + [6095] = 6095, + [6096] = 6096, + [6097] = 6097, + [6098] = 6098, + [6099] = 6030, + [6100] = 6100, + [6101] = 6101, + [6102] = 6102, + [6103] = 6037, + [6104] = 6104, + [6105] = 6105, + [6106] = 6106, + [6107] = 6107, + [6108] = 878, + [6109] = 6109, + [6110] = 6110, + [6111] = 884, + [6112] = 6037, + [6113] = 887, + [6114] = 839, + [6115] = 881, + [6116] = 875, + [6117] = 6117, + [6118] = 6118, + [6119] = 6119, + [6120] = 6041, + [6121] = 6029, + [6122] = 6122, + [6123] = 6030, + [6124] = 6124, + [6125] = 6125, + [6126] = 6030, + [6127] = 6127, + [6128] = 6128, + [6129] = 6050, + [6130] = 6130, + [6131] = 6131, + [6132] = 6029, + [6133] = 6133, + [6134] = 6041, + [6135] = 6135, [6136] = 6136, - [6137] = 5895, - [6138] = 5879, - [6139] = 5841, - [6140] = 6011, - [6141] = 6141, - [6142] = 5966, - [6143] = 6014, - [6144] = 6049, - [6145] = 6145, - [6146] = 6021, - [6147] = 6008, - [6148] = 6148, + [6137] = 6137, + [6138] = 6138, + [6139] = 6037, + [6140] = 6140, + [6141] = 6037, + [6142] = 6142, + [6143] = 6143, + [6144] = 6144, + [6145] = 5925, + [6146] = 3001, + [6147] = 6041, + [6148] = 6029, [6149] = 6149, - [6150] = 5841, - [6151] = 6047, - [6152] = 5837, - [6153] = 5838, - [6154] = 6018, + [6150] = 6150, + [6151] = 6151, + [6152] = 6152, + [6153] = 6030, + [6154] = 6154, [6155] = 6155, [6156] = 6156, [6157] = 6157, - [6158] = 5841, - [6159] = 6004, - [6160] = 5849, - [6161] = 6014, - [6162] = 5838, - [6163] = 6008, - [6164] = 5837, + [6158] = 6158, + [6159] = 6159, + [6160] = 6160, + [6161] = 6161, + [6162] = 6037, + [6163] = 6163, + [6164] = 6164, [6165] = 6165, - [6166] = 5837, + [6166] = 6041, [6167] = 6167, - [6168] = 5838, - [6169] = 6037, - [6170] = 5087, - [6171] = 5837, - [6172] = 5838, - [6173] = 6017, - [6174] = 5849, - [6175] = 6175, - [6176] = 5841, - [6177] = 5841, + [6168] = 6159, + [6169] = 6169, + [6170] = 6041, + [6171] = 6029, + [6172] = 6172, + [6173] = 6173, + [6174] = 6174, + [6175] = 6029, + [6176] = 6030, + [6177] = 6177, [6178] = 6178, - [6179] = 6016, - [6180] = 6042, + [6179] = 6179, + [6180] = 6161, [6181] = 6181, - [6182] = 6072, - [6183] = 6071, - [6184] = 5977, - [6185] = 6185, - [6186] = 6186, - [6187] = 6187, - [6188] = 6188, - [6189] = 5837, - [6190] = 5837, - [6191] = 5838, - [6192] = 5838, - [6193] = 6193, - [6194] = 6194, - [6195] = 5841, - [6196] = 5841, - [6197] = 6197, + [6182] = 6163, + [6183] = 6183, + [6184] = 6184, + [6185] = 6037, + [6186] = 6167, + [6187] = 6159, + [6188] = 6172, + [6189] = 6189, + [6190] = 6037, + [6191] = 6191, + [6192] = 6192, + [6193] = 6041, + [6194] = 6029, + [6195] = 6161, + [6196] = 6196, + [6197] = 6163, [6198] = 6198, - [6199] = 6199, + [6199] = 6030, [6200] = 6200, - [6201] = 6040, - [6202] = 6004, - [6203] = 5961, - [6204] = 5838, - [6205] = 5837, - [6206] = 6037, - [6207] = 6036, - [6208] = 6014, - [6209] = 5837, - [6210] = 5838, - [6211] = 6008, + [6201] = 6201, + [6202] = 6202, + [6203] = 6203, + [6204] = 6202, + [6205] = 6198, + [6206] = 6206, + [6207] = 6037, + [6208] = 6208, + [6209] = 6209, + [6210] = 6210, + [6211] = 6211, [6212] = 6212, - [6213] = 5837, - [6214] = 6214, - [6215] = 5841, - [6216] = 6216, - [6217] = 5838, + [6213] = 6041, + [6214] = 6029, + [6215] = 6215, + [6216] = 6030, + [6217] = 6217, [6218] = 6218, - [6219] = 5849, - [6220] = 6037, - [6221] = 5841, - [6222] = 6222, - [6223] = 5849, - [6224] = 6224, - [6225] = 6175, - [6226] = 5947, - [6227] = 6227, - [6228] = 5837, - [6229] = 5838, - [6230] = 6230, + [6219] = 6030, + [6220] = 6220, + [6221] = 6203, + [6222] = 6202, + [6223] = 6198, + [6224] = 6028, + [6225] = 6029, + [6226] = 6226, + [6227] = 6041, + [6228] = 6228, + [6229] = 6229, + [6230] = 6209, [6231] = 6231, - [6232] = 6232, - [6233] = 6233, - [6234] = 5841, - [6235] = 6224, - [6236] = 6178, - [6237] = 6175, - [6238] = 5841, - [6239] = 5849, - [6240] = 6145, - [6241] = 6008, - [6242] = 6242, - [6243] = 5947, - [6244] = 5838, - [6245] = 5837, - [6246] = 5837, - [6247] = 5837, - [6248] = 5838, - [6249] = 5838, - [6250] = 5998, - [6251] = 6156, - [6252] = 6227, - [6253] = 5841, - [6254] = 5902, - [6255] = 6053, - [6256] = 6129, - [6257] = 6257, + [6232] = 6041, + [6233] = 6029, + [6234] = 6234, + [6235] = 6235, + [6236] = 6236, + [6237] = 6037, + [6238] = 6030, + [6239] = 6212, + [6240] = 5341, + [6241] = 6217, + [6242] = 6218, + [6243] = 6243, + [6244] = 6220, + [6245] = 6245, + [6246] = 6203, + [6247] = 6202, + [6248] = 6248, + [6249] = 6249, + [6250] = 6198, + [6251] = 6041, + [6252] = 6029, + [6253] = 6253, + [6254] = 6030, + [6255] = 6255, + [6256] = 6226, + [6257] = 6030, [6258] = 6258, - [6259] = 6259, - [6260] = 6260, - [6261] = 5849, + [6259] = 6228, + [6260] = 6229, + [6261] = 6261, [6262] = 6262, - [6263] = 5841, - [6264] = 6232, - [6265] = 6233, - [6266] = 5837, - [6267] = 5838, - [6268] = 6216, - [6269] = 6214, - [6270] = 6212, - [6271] = 6200, - [6272] = 5841, - [6273] = 6224, - [6274] = 6178, - [6275] = 6175, - [6276] = 6145, + [6263] = 6029, + [6264] = 6253, + [6265] = 6041, + [6266] = 6266, + [6267] = 6267, + [6268] = 6209, + [6269] = 6234, + [6270] = 6041, + [6271] = 6029, + [6272] = 6272, + [6273] = 6235, + [6274] = 6274, + [6275] = 6037, + [6276] = 6030, [6277] = 6277, - [6278] = 5841, - [6279] = 6279, - [6280] = 5849, - [6281] = 5841, - [6282] = 5947, - [6283] = 5838, - [6284] = 6284, - [6285] = 5837, - [6286] = 5838, - [6287] = 6008, - [6288] = 5837, - [6289] = 5955, - [6290] = 5956, - [6291] = 5841, - [6292] = 6292, - [6293] = 5998, - [6294] = 5837, - [6295] = 6156, - [6296] = 5838, - [6297] = 6297, - [6298] = 6279, - [6299] = 5849, - [6300] = 6292, - [6301] = 6233, - [6302] = 6302, - [6303] = 6303, - [6304] = 5837, - [6305] = 5838, - [6306] = 6227, - [6307] = 5902, - [6308] = 6232, - [6309] = 6053, - [6310] = 5841, - [6311] = 6129, - [6312] = 6015, - [6313] = 6313, - [6314] = 6314, - [6315] = 6064, - [6316] = 5841, - [6317] = 5841, - [6318] = 6318, - [6319] = 6319, - [6320] = 5838, - [6321] = 5837, - [6322] = 6322, - [6323] = 5837, - [6324] = 5838, - [6325] = 6314, - [6326] = 6326, - [6327] = 6232, - [6328] = 6233, - [6329] = 5841, - [6330] = 6216, - [6331] = 6214, - [6332] = 6212, - [6333] = 6200, - [6334] = 6224, - [6335] = 5849, - [6336] = 6198, - [6337] = 6178, - [6338] = 6175, - [6339] = 6055, - [6340] = 6322, - [6341] = 5849, - [6342] = 5837, - [6343] = 5838, - [6344] = 6157, - [6345] = 6145, - [6346] = 5837, - [6347] = 6319, - [6348] = 5841, - [6349] = 5838, - [6350] = 6318, - [6351] = 5841, - [6352] = 5841, - [6353] = 5947, - [6354] = 6062, - [6355] = 5955, - [6356] = 5956, - [6357] = 6061, - [6358] = 5838, - [6359] = 5837, - [6360] = 5975, - [6361] = 5837, - [6362] = 5838, - [6363] = 5998, - [6364] = 6156, - [6365] = 6302, - [6366] = 6279, - [6367] = 5841, - [6368] = 5849, - [6369] = 6292, - [6370] = 6302, - [6371] = 6303, - [6372] = 5837, - [6373] = 5838, - [6374] = 6227, - [6375] = 5849, - [6376] = 5902, - [6377] = 6053, - [6378] = 6129, - [6379] = 5841, - [6380] = 5837, - [6381] = 5838, - [6382] = 6382, - [6383] = 6034, - [6384] = 6384, - [6385] = 6385, - [6386] = 5841, - [6387] = 6318, - [6388] = 6319, - [6389] = 6322, - [6390] = 6314, - [6391] = 6391, - [6392] = 6232, - [6393] = 6233, - [6394] = 5841, - [6395] = 5849, - [6396] = 5837, - [6397] = 6397, - [6398] = 6218, - [6399] = 6216, - [6400] = 5838, - [6401] = 6214, - [6402] = 5837, - [6403] = 6212, - [6404] = 6200, - [6405] = 6224, - [6406] = 5837, - [6407] = 5837, - [6408] = 5838, - [6409] = 5841, - [6410] = 5837, - [6411] = 6198, - [6412] = 5849, - [6413] = 6178, - [6414] = 6175, - [6415] = 5837, - [6416] = 6227, - [6417] = 6417, - [6418] = 6157, - [6419] = 5837, - [6420] = 5849, - [6421] = 6421, - [6422] = 5841, - [6423] = 5837, - [6424] = 6145, - [6425] = 5838, - [6426] = 6303, - [6427] = 6427, - [6428] = 6428, - [6429] = 6429, + [6278] = 6236, + [6279] = 6212, + [6280] = 6280, + [6281] = 6163, + [6282] = 6217, + [6283] = 6283, + [6284] = 6218, + [6285] = 6243, + [6286] = 6220, + [6287] = 6245, + [6288] = 6203, + [6289] = 6041, + [6290] = 6029, + [6291] = 6202, + [6292] = 6030, + [6293] = 6248, + [6294] = 6294, + [6295] = 6030, + [6296] = 6198, + [6297] = 6253, + [6298] = 6226, + [6299] = 6299, + [6300] = 6228, + [6301] = 6029, + [6302] = 6229, + [6303] = 6041, + [6304] = 6261, + [6305] = 6262, + [6306] = 6248, + [6307] = 6267, + [6308] = 6041, + [6309] = 6029, + [6310] = 6209, + [6311] = 6311, + [6312] = 6312, + [6313] = 862, + [6314] = 6030, + [6315] = 6234, + [6316] = 6235, + [6317] = 6317, + [6318] = 6037, + [6319] = 6274, + [6320] = 6277, + [6321] = 6236, + [6322] = 6212, + [6323] = 6217, + [6324] = 6218, + [6325] = 6243, + [6326] = 6220, + [6327] = 6041, + [6328] = 6029, + [6329] = 6329, + [6330] = 6245, + [6331] = 6203, + [6332] = 6202, + [6333] = 6030, + [6334] = 6248, + [6335] = 6335, + [6336] = 6202, + [6337] = 6030, + [6338] = 6338, + [6339] = 6037, + [6340] = 6340, + [6341] = 6341, + [6342] = 6029, + [6343] = 6041, + [6344] = 6344, + [6345] = 6068, + [6346] = 6041, + [6347] = 6029, + [6348] = 6348, + [6349] = 6349, + [6350] = 6350, + [6351] = 6351, + [6352] = 6030, + [6353] = 6353, + [6354] = 6354, + [6355] = 6226, + [6356] = 6037, + [6357] = 6357, + [6358] = 6228, + [6359] = 6359, + [6360] = 6161, + [6361] = 6030, + [6362] = 6362, + [6363] = 6363, + [6364] = 6364, + [6365] = 6041, + [6366] = 6029, + [6367] = 6245, + [6368] = 6368, + [6369] = 6283, + [6370] = 6037, + [6371] = 6030, + [6372] = 6362, + [6373] = 6373, + [6374] = 6374, + [6375] = 6041, + [6376] = 6029, + [6377] = 6030, + [6378] = 6220, + [6379] = 6379, + [6380] = 6373, + [6381] = 6029, + [6382] = 6041, + [6383] = 6383, + [6384] = 6041, + [6385] = 6029, + [6386] = 6386, + [6387] = 6030, + [6388] = 6203, + [6389] = 6353, + [6390] = 6030, + [6391] = 6243, + [6392] = 6218, + [6393] = 6393, + [6394] = 6394, + [6395] = 6395, + [6396] = 6037, + [6397] = 6283, + [6398] = 6037, + [6399] = 6362, + [6400] = 6400, + [6401] = 6373, + [6402] = 6402, + [6403] = 6041, + [6404] = 6029, + [6405] = 6041, + [6406] = 6029, + [6407] = 6379, + [6408] = 6229, + [6409] = 6030, + [6410] = 6410, + [6411] = 6411, + [6412] = 6030, + [6413] = 6413, + [6414] = 6283, + [6415] = 6037, + [6416] = 6362, + [6417] = 6030, + [6418] = 6373, + [6419] = 6041, + [6420] = 6029, + [6421] = 6029, + [6422] = 6041, + [6423] = 6029, + [6424] = 6379, + [6425] = 6041, + [6426] = 6426, + [6427] = 6149, + [6428] = 6030, + [6429] = 6311, [6430] = 6430, - [6431] = 6431, - [6432] = 6428, - [6433] = 6428, - [6434] = 6428, - [6435] = 6428, - [6436] = 6428, - [6437] = 6428, - [6438] = 6428, - [6439] = 6428, - [6440] = 6428, - [6441] = 6428, - [6442] = 6428, - [6443] = 6428, - [6444] = 6428, - [6445] = 6428, - [6446] = 6428, - [6447] = 6428, - [6448] = 6428, - [6449] = 6428, - [6450] = 6428, - [6451] = 6428, - [6452] = 6428, - [6453] = 6428, - [6454] = 6428, - [6455] = 6428, - [6456] = 6428, - [6457] = 6457, - [6458] = 6458, - [6459] = 6459, - [6460] = 6460, - [6461] = 6461, - [6462] = 6462, - [6463] = 6463, - [6464] = 6464, - [6465] = 6465, - [6466] = 6466, - [6467] = 6431, - [6468] = 6468, - [6469] = 6469, - [6470] = 6470, - [6471] = 6471, - [6472] = 6472, - [6473] = 6473, - [6474] = 6474, + [6431] = 6030, + [6432] = 6037, + [6433] = 6433, + [6434] = 6434, + [6435] = 6435, + [6436] = 6037, + [6437] = 6437, + [6438] = 6426, + [6439] = 6374, + [6440] = 6149, + [6441] = 6041, + [6442] = 6029, + [6443] = 6201, + [6444] = 6311, + [6445] = 6354, + [6446] = 6383, + [6447] = 6030, + [6448] = 6359, + [6449] = 6433, + [6450] = 6434, + [6451] = 6451, + [6452] = 6452, + [6453] = 6030, + [6454] = 6454, + [6455] = 6455, + [6456] = 6435, + [6457] = 6029, + [6458] = 6041, + [6459] = 6037, + [6460] = 6041, + [6461] = 6029, + [6462] = 6437, + [6463] = 6426, + [6464] = 6373, + [6465] = 6041, + [6466] = 6030, + [6467] = 6029, + [6468] = 6217, + [6469] = 6374, + [6470] = 6426, + [6471] = 6437, + [6472] = 6212, + [6473] = 6236, + [6474] = 6037, [6475] = 6475, - [6476] = 6472, - [6477] = 6430, - [6478] = 6428, - [6479] = 6479, - [6480] = 6428, - [6481] = 6431, - [6482] = 6457, - [6483] = 6472, - [6484] = 6458, - [6485] = 6430, - [6486] = 6460, - [6487] = 6463, - [6488] = 6488, - [6489] = 6460, - [6490] = 6490, - [6491] = 6491, - [6492] = 6469, + [6476] = 6149, + [6477] = 6433, + [6478] = 6167, + [6479] = 6041, + [6480] = 6029, + [6481] = 6156, + [6482] = 6158, + [6483] = 6277, + [6484] = 6030, + [6485] = 6030, + [6486] = 6274, + [6487] = 6487, + [6488] = 6172, + [6489] = 6201, + [6490] = 6028, + [6491] = 6255, + [6492] = 6258, [6493] = 6493, - [6494] = 6428, - [6495] = 6428, - [6496] = 6496, - [6497] = 6428, - [6498] = 6469, - [6499] = 6472, - [6500] = 6430, - [6501] = 6463, - [6502] = 6460, - [6503] = 6471, - [6504] = 6504, - [6505] = 6460, + [6494] = 6272, + [6495] = 6030, + [6496] = 6299, + [6497] = 6311, + [6498] = 6041, + [6499] = 6029, + [6500] = 6354, + [6501] = 6383, + [6502] = 6359, + [6503] = 6029, + [6504] = 6030, + [6505] = 6505, [6506] = 6506, - [6507] = 6428, - [6508] = 6508, - [6509] = 6472, + [6507] = 6507, + [6508] = 6041, + [6509] = 6509, [6510] = 6510, - [6511] = 6458, - [6512] = 6512, - [6513] = 6430, - [6514] = 6457, - [6515] = 6431, - [6516] = 6472, - [6517] = 6457, - [6518] = 6458, - [6519] = 6431, - [6520] = 6520, - [6521] = 6430, - [6522] = 6431, - [6523] = 6457, - [6524] = 6460, - [6525] = 6458, - [6526] = 6526, - [6527] = 6430, - [6528] = 6463, - [6529] = 6428, - [6530] = 6472, - [6531] = 6531, - [6532] = 6532, - [6533] = 6460, - [6534] = 6534, - [6535] = 6535, - [6536] = 6536, - [6537] = 6463, - [6538] = 6538, - [6539] = 6539, - [6540] = 6472, - [6541] = 6471, - [6542] = 6542, - [6543] = 6430, + [6511] = 6511, + [6512] = 6433, + [6513] = 6434, + [6514] = 6209, + [6515] = 6261, + [6516] = 6451, + [6517] = 6041, + [6518] = 6029, + [6519] = 6452, + [6520] = 6037, + [6521] = 6262, + [6522] = 6454, + [6523] = 6030, + [6524] = 6455, + [6525] = 6435, + [6526] = 6037, + [6527] = 6527, + [6528] = 6373, + [6529] = 6487, + [6530] = 6437, + [6531] = 6426, + [6532] = 6041, + [6533] = 6029, + [6534] = 6413, + [6535] = 6374, + [6536] = 6041, + [6537] = 6029, + [6538] = 6030, + [6539] = 6030, + [6540] = 6540, + [6541] = 6041, + [6542] = 6030, + [6543] = 6029, [6544] = 6544, - [6545] = 6428, - [6546] = 6469, - [6547] = 6547, - [6548] = 6471, - [6549] = 6431, - [6550] = 6457, - [6551] = 6458, - [6552] = 6469, - [6553] = 6553, - [6554] = 6554, - [6555] = 6460, - [6556] = 6556, - [6557] = 6557, - [6558] = 6428, - [6559] = 6559, + [6545] = 6149, + [6546] = 6546, + [6547] = 6156, + [6548] = 6029, + [6549] = 6158, + [6550] = 6041, + [6551] = 6201, + [6552] = 6028, + [6553] = 6510, + [6554] = 6037, + [6555] = 6041, + [6556] = 6029, + [6557] = 6255, + [6558] = 6258, + [6559] = 6435, [6560] = 6560, - [6561] = 6472, - [6562] = 6562, - [6563] = 6563, - [6564] = 6564, - [6565] = 6463, - [6566] = 6428, - [6567] = 6460, - [6568] = 6463, - [6569] = 6520, - [6570] = 6472, - [6571] = 6571, - [6572] = 6572, - [6573] = 6460, - [6574] = 6430, - [6575] = 6575, - [6576] = 6431, - [6577] = 6577, - [6578] = 6457, - [6579] = 6458, - [6580] = 6580, - [6581] = 6581, - [6582] = 6582, - [6583] = 6583, - [6584] = 6430, - [6585] = 6460, - [6586] = 6460, - [6587] = 6587, - [6588] = 6428, - [6589] = 6463, - [6590] = 6457, - [6591] = 6591, - [6592] = 6462, - [6593] = 6458, - [6594] = 6458, - [6595] = 6457, - [6596] = 6465, - [6597] = 6466, - [6598] = 6430, - [6599] = 6599, - [6600] = 6469, - [6601] = 6601, - [6602] = 6471, - [6603] = 6457, - [6604] = 6463, - [6605] = 6428, - [6606] = 6431, - [6607] = 6607, - [6608] = 6471, - [6609] = 6472, - [6610] = 6610, - [6611] = 6557, + [6561] = 6030, + [6562] = 6272, + [6563] = 6299, + [6564] = 6506, + [6565] = 6267, + [6566] = 6311, + [6567] = 6041, + [6568] = 6455, + [6569] = 6029, + [6570] = 6354, + [6571] = 6235, + [6572] = 6383, + [6573] = 6359, + [6574] = 6041, + [6575] = 6029, + [6576] = 6030, + [6577] = 6506, + [6578] = 6507, + [6579] = 6509, + [6580] = 6030, + [6581] = 6510, + [6582] = 6159, + [6583] = 6433, + [6584] = 6030, + [6585] = 6434, + [6586] = 6379, + [6587] = 6234, + [6588] = 6588, + [6589] = 6588, + [6590] = 6029, + [6591] = 6041, + [6592] = 6451, + [6593] = 6041, + [6594] = 6029, + [6595] = 6452, + [6596] = 6454, + [6597] = 6455, + [6598] = 6435, + [6599] = 6030, + [6600] = 6507, + [6601] = 6509, + [6602] = 6487, + [6603] = 6037, + [6604] = 6437, + [6605] = 6434, + [6606] = 6426, + [6607] = 6454, + [6608] = 6413, + [6609] = 6041, + [6610] = 6037, + [6611] = 6041, [6612] = 6612, - [6613] = 6613, - [6614] = 6559, - [6615] = 6560, - [6616] = 6472, - [6617] = 6563, - [6618] = 6618, - [6619] = 6619, - [6620] = 6491, - [6621] = 6472, - [6622] = 6564, - [6623] = 6520, - [6624] = 6430, - [6625] = 6471, - [6626] = 6571, - [6627] = 6431, - [6628] = 6457, - [6629] = 6430, - [6630] = 6431, + [6613] = 6029, + [6614] = 6030, + [6615] = 6615, + [6616] = 6374, + [6617] = 6452, + [6618] = 6041, + [6619] = 6041, + [6620] = 6041, + [6621] = 6451, + [6622] = 6041, + [6623] = 6037, + [6624] = 6041, + [6625] = 6030, + [6626] = 6626, + [6627] = 6627, + [6628] = 6628, + [6629] = 6629, + [6630] = 6630, [6631] = 6631, - [6632] = 6458, - [6633] = 6457, - [6634] = 6469, - [6635] = 6460, - [6636] = 6458, - [6637] = 6637, - [6638] = 6428, - [6639] = 6463, - [6640] = 6428, - [6641] = 6580, - [6642] = 6463, - [6643] = 6643, - [6644] = 6644, - [6645] = 6645, - [6646] = 6460, - [6647] = 6472, - [6648] = 6430, - [6649] = 6458, - [6650] = 6650, - [6651] = 6460, - [6652] = 6431, - [6653] = 6526, - [6654] = 6457, - [6655] = 6458, - [6656] = 6457, - [6657] = 6460, - [6658] = 6658, - [6659] = 6659, - [6660] = 6535, - [6661] = 6536, - [6662] = 6538, - [6663] = 6431, - [6664] = 6664, - [6665] = 6459, + [6632] = 6632, + [6633] = 6633, + [6634] = 6634, + [6635] = 6629, + [6636] = 6636, + [6637] = 6634, + [6638] = 6634, + [6639] = 6634, + [6640] = 6640, + [6641] = 6634, + [6642] = 6634, + [6643] = 6634, + [6644] = 6634, + [6645] = 6634, + [6646] = 6634, + [6647] = 6634, + [6648] = 6634, + [6649] = 6634, + [6650] = 6634, + [6651] = 6634, + [6652] = 6634, + [6653] = 6634, + [6654] = 6634, + [6655] = 6634, + [6656] = 6634, + [6657] = 6634, + [6658] = 6634, + [6659] = 6634, + [6660] = 6634, + [6661] = 6634, + [6662] = 6634, + [6663] = 6634, + [6664] = 6634, + [6665] = 6634, [6666] = 6666, - [6667] = 6463, - [6668] = 6428, - [6669] = 6664, - [6670] = 6670, - [6671] = 6430, - [6672] = 6468, - [6673] = 6472, - [6674] = 6463, - [6675] = 6538, - [6676] = 6472, - [6677] = 6471, - [6678] = 6430, - [6679] = 6469, - [6680] = 6431, - [6681] = 6681, - [6682] = 6682, - [6683] = 6562, - [6684] = 6457, + [6667] = 6667, + [6668] = 6633, + [6669] = 6669, + [6670] = 6632, + [6671] = 6671, + [6672] = 6634, + [6673] = 6628, + [6674] = 6674, + [6675] = 6630, + [6676] = 6632, + [6677] = 6677, + [6678] = 6678, + [6679] = 6633, + [6680] = 6631, + [6681] = 6633, + [6682] = 6629, + [6683] = 6636, + [6684] = 6632, [6685] = 6685, - [6686] = 6428, - [6687] = 6469, - [6688] = 6458, - [6689] = 6428, - [6690] = 6460, - [6691] = 6691, - [6692] = 6463, - [6693] = 6471, - [6694] = 6428, - [6695] = 6463, - [6696] = 6696, - [6697] = 6460, - [6698] = 6698, + [6686] = 6629, + [6687] = 6687, + [6688] = 6688, + [6689] = 6689, + [6690] = 6640, + [6691] = 6631, + [6692] = 6666, + [6693] = 6633, + [6694] = 6666, + [6695] = 6632, + [6696] = 6640, + [6697] = 6697, + [6698] = 6628, [6699] = 6699, - [6700] = 6700, - [6701] = 6557, - [6702] = 6559, - [6703] = 6560, - [6704] = 6472, - [6705] = 6563, - [6706] = 6472, - [6707] = 6462, - [6708] = 6708, - [6709] = 6430, - [6710] = 6465, - [6711] = 6466, - [6712] = 6618, - [6713] = 6713, - [6714] = 6619, - [6715] = 6564, + [6700] = 6630, + [6701] = 6701, + [6702] = 6702, + [6703] = 6703, + [6704] = 6704, + [6705] = 6631, + [6706] = 6706, + [6707] = 6707, + [6708] = 6634, + [6709] = 6709, + [6710] = 6629, + [6711] = 6633, + [6712] = 6712, + [6713] = 6636, + [6714] = 6634, + [6715] = 6715, [6716] = 6716, - [6717] = 6520, + [6717] = 6636, [6718] = 6718, - [6719] = 6571, - [6720] = 6458, - [6721] = 6431, - [6722] = 6722, - [6723] = 6723, - [6724] = 6431, - [6725] = 6457, - [6726] = 6458, - [6727] = 6727, - [6728] = 6580, - [6729] = 6491, - [6730] = 6430, - [6731] = 6731, - [6732] = 6488, - [6733] = 6458, - [6734] = 6457, - [6735] = 6544, - [6736] = 6460, - [6737] = 6431, - [6738] = 6643, - [6739] = 6463, - [6740] = 6645, - [6741] = 6428, - [6742] = 6742, - [6743] = 6430, - [6744] = 6744, - [6745] = 6460, - [6746] = 6472, - [6747] = 6472, - [6748] = 6471, - [6749] = 6526, + [6719] = 6633, + [6720] = 6629, + [6721] = 6669, + [6722] = 6632, + [6723] = 6628, + [6724] = 6724, + [6725] = 6725, + [6726] = 6726, + [6727] = 6630, + [6728] = 6631, + [6729] = 6631, + [6730] = 6632, + [6731] = 6629, + [6732] = 6709, + [6733] = 6628, + [6734] = 6630, + [6735] = 6631, + [6736] = 6736, + [6737] = 6630, + [6738] = 6629, + [6739] = 6739, + [6740] = 6740, + [6741] = 6741, + [6742] = 6636, + [6743] = 6636, + [6744] = 6634, + [6745] = 6628, + [6746] = 6632, + [6747] = 6027, + [6748] = 6633, + [6749] = 6749, [6750] = 6750, - [6751] = 6430, - [6752] = 6459, - [6753] = 5440, - [6754] = 6431, - [6755] = 6659, - [6756] = 6457, - [6757] = 6664, - [6758] = 6758, - [6759] = 6535, - [6760] = 6538, - [6761] = 6458, - [6762] = 6670, - [6763] = 6468, - [6764] = 6764, - [6765] = 6469, - [6766] = 6488, - [6767] = 6460, - [6768] = 6463, - [6769] = 6428, - [6770] = 6562, - [6771] = 6463, - [6772] = 6428, - [6773] = 6742, - [6774] = 6774, - [6775] = 6775, - [6776] = 6428, - [6777] = 6469, - [6778] = 6462, - [6779] = 6463, - [6780] = 6472, - [6781] = 6465, - [6782] = 6466, + [6751] = 6633, + [6752] = 6752, + [6753] = 6753, + [6754] = 6754, + [6755] = 6632, + [6756] = 6634, + [6757] = 6628, + [6758] = 6630, + [6759] = 6631, + [6760] = 6634, + [6761] = 6640, + [6762] = 6762, + [6763] = 6629, + [6764] = 6666, + [6765] = 6666, + [6766] = 6636, + [6767] = 6767, + [6768] = 6768, + [6769] = 6634, + [6770] = 6770, + [6771] = 6701, + [6772] = 6640, + [6773] = 6704, + [6774] = 6702, + [6775] = 6703, + [6776] = 6776, + [6777] = 6707, + [6778] = 6633, + [6779] = 6715, + [6780] = 6716, + [6781] = 6634, + [6782] = 6633, [6783] = 6783, - [6784] = 6471, - [6785] = 6460, - [6786] = 6696, - [6787] = 6430, - [6788] = 6431, - [6789] = 6789, - [6790] = 6554, + [6784] = 6784, + [6785] = 6632, + [6786] = 6718, + [6787] = 6636, + [6788] = 6636, + [6789] = 6669, + [6790] = 6726, [6791] = 6791, - [6792] = 6792, - [6793] = 6491, - [6794] = 6457, - [6795] = 6795, - [6796] = 6458, - [6797] = 6700, - [6798] = 6458, - [6799] = 6557, - [6800] = 6800, - [6801] = 6460, - [6802] = 6457, + [6792] = 6628, + [6793] = 6632, + [6794] = 6628, + [6795] = 6630, + [6796] = 6796, + [6797] = 6634, + [6798] = 6630, + [6799] = 6631, + [6800] = 6629, + [6801] = 6736, + [6802] = 6802, [6803] = 6803, - [6804] = 6559, - [6805] = 6560, - [6806] = 6806, - [6807] = 6535, - [6808] = 6538, - [6809] = 6463, - [6810] = 6472, - [6811] = 6562, - [6812] = 6428, + [6804] = 6629, + [6805] = 6629, + [6806] = 6671, + [6807] = 6807, + [6808] = 6808, + [6809] = 6636, + [6810] = 6677, + [6811] = 6678, + [6812] = 6812, [6813] = 6813, - [6814] = 6563, - [6815] = 6462, - [6816] = 6816, - [6817] = 6465, - [6818] = 6466, - [6819] = 6819, - [6820] = 6820, - [6821] = 6821, - [6822] = 6708, - [6823] = 6431, - [6824] = 6618, - [6825] = 6619, - [6826] = 6564, - [6827] = 6716, - [6828] = 6491, - [6829] = 6520, - [6830] = 6571, - [6831] = 6831, + [6814] = 6814, + [6815] = 6815, + [6816] = 6808, + [6817] = 6634, + [6818] = 6741, + [6819] = 6636, + [6820] = 6631, + [6821] = 6630, + [6822] = 6628, + [6823] = 6632, + [6824] = 6824, + [6825] = 6634, + [6826] = 6633, + [6827] = 6827, + [6828] = 6640, + [6829] = 6829, + [6830] = 6633, + [6831] = 6666, [6832] = 6832, - [6833] = 6833, - [6834] = 6834, - [6835] = 6430, - [6836] = 6431, - [6837] = 6457, - [6838] = 6430, - [6839] = 6538, - [6840] = 6458, - [6841] = 6562, - [6842] = 6580, - [6843] = 6462, - [6844] = 6844, - [6845] = 6465, - [6846] = 6466, - [6847] = 6774, - [6848] = 6473, - [6849] = 6479, - [6850] = 6491, - [6851] = 6851, - [6852] = 6544, - [6853] = 6643, - [6854] = 6854, - [6855] = 6670, - [6856] = 6856, - [6857] = 6645, - [6858] = 6858, - [6859] = 6859, - [6860] = 6860, - [6861] = 6562, - [6862] = 6862, - [6863] = 6462, - [6864] = 6431, - [6865] = 6465, - [6866] = 6466, - [6867] = 6742, - [6868] = 6491, - [6869] = 6472, - [6870] = 6460, - [6871] = 6871, - [6872] = 6468, - [6873] = 6475, - [6874] = 6526, - [6875] = 6459, - [6876] = 6650, - [6877] = 6462, - [6878] = 6878, - [6879] = 6465, - [6880] = 6466, - [6881] = 6659, - [6882] = 6491, - [6883] = 6883, + [6833] = 6632, + [6834] = 6704, + [6835] = 6628, + [6836] = 6836, + [6837] = 6837, + [6838] = 6630, + [6839] = 6631, + [6840] = 6840, + [6841] = 6629, + [6842] = 6636, + [6843] = 6843, + [6844] = 6634, + [6845] = 6845, + [6846] = 6666, + [6847] = 6701, + [6848] = 6848, + [6849] = 6702, + [6850] = 6703, + [6851] = 6640, + [6852] = 6707, + [6853] = 6633, + [6854] = 6634, + [6855] = 6632, + [6856] = 6633, + [6857] = 6628, + [6858] = 6715, + [6859] = 6630, + [6860] = 6716, + [6861] = 6861, + [6862] = 6783, + [6863] = 6784, + [6864] = 6718, + [6865] = 6865, + [6866] = 6669, + [6867] = 6726, + [6868] = 6632, + [6869] = 6631, + [6870] = 6629, + [6871] = 6628, + [6872] = 6636, + [6873] = 6630, + [6874] = 6631, + [6875] = 6749, + [6876] = 6750, + [6877] = 6752, + [6878] = 6636, + [6879] = 6879, + [6880] = 6736, + [6881] = 6881, + [6882] = 6634, + [6883] = 6629, [6884] = 6884, - [6885] = 6664, + [6885] = 6885, [6886] = 6886, - [6887] = 6670, - [6888] = 6468, + [6887] = 6887, + [6888] = 6631, [6889] = 6889, - [6890] = 6462, - [6891] = 6891, - [6892] = 6465, - [6893] = 6466, - [6894] = 6894, - [6895] = 6491, + [6890] = 6633, + [6891] = 6802, + [6892] = 6892, + [6893] = 6630, + [6894] = 6803, + [6895] = 6632, [6896] = 6896, - [6897] = 6897, - [6898] = 6723, - [6899] = 5469, - [6900] = 6900, - [6901] = 6463, - [6902] = 6462, - [6903] = 6430, - [6904] = 6465, - [6905] = 6466, - [6906] = 6431, - [6907] = 6491, - [6908] = 6457, - [6909] = 6458, - [6910] = 6471, - [6911] = 6889, - [6912] = 6775, - [6913] = 6428, - [6914] = 6462, - [6915] = 6460, - [6916] = 6465, - [6917] = 6466, - [6918] = 6469, - [6919] = 6491, - [6920] = 6472, - [6921] = 6921, - [6922] = 6463, - [6923] = 6894, - [6924] = 6783, - [6925] = 6471, - [6926] = 6462, - [6927] = 6800, - [6928] = 6465, - [6929] = 6466, - [6930] = 6696, - [6931] = 6491, - [6932] = 6428, - [6933] = 6469, - [6934] = 6428, - [6935] = 6723, - [6936] = 6472, - [6937] = 6789, - [6938] = 6462, - [6939] = 6939, - [6940] = 6465, - [6941] = 6466, + [6897] = 6628, + [6898] = 6776, + [6899] = 6628, + [6900] = 6630, + [6901] = 6631, + [6902] = 6632, + [6903] = 6629, + [6904] = 6633, + [6905] = 6629, + [6906] = 6906, + [6907] = 6636, + [6908] = 6845, + [6909] = 6634, + [6910] = 6814, + [6911] = 6911, + [6912] = 6912, + [6913] = 6815, + [6914] = 6912, + [6915] = 6740, + [6916] = 6815, + [6917] = 6633, + [6918] = 6741, + [6919] = 6724, + [6920] = 6636, + [6921] = 6666, + [6922] = 6671, + [6923] = 6632, + [6924] = 6924, + [6925] = 6677, + [6926] = 6678, + [6927] = 6628, + [6928] = 6630, + [6929] = 6631, + [6930] = 6881, + [6931] = 6634, + [6932] = 6640, + [6933] = 6640, + [6934] = 6934, + [6935] = 6629, + [6936] = 6634, + [6937] = 6666, + [6938] = 6636, + [6939] = 6837, + [6940] = 6940, + [6941] = 6941, [6942] = 6942, - [6943] = 6491, - [6944] = 6496, - [6945] = 6945, - [6946] = 6946, - [6947] = 6792, - [6948] = 6948, - [6949] = 6949, - [6950] = 6462, - [6951] = 6463, - [6952] = 6465, - [6953] = 6466, - [6954] = 6954, - [6955] = 6491, - [6956] = 6430, - [6957] = 6900, - [6958] = 6795, - [6959] = 6700, - [6960] = 6557, - [6961] = 6961, - [6962] = 6462, - [6963] = 6460, - [6964] = 6465, - [6965] = 6466, + [6943] = 6943, + [6944] = 6704, + [6945] = 6631, + [6946] = 6634, + [6947] = 6947, + [6948] = 6636, + [6949] = 6629, + [6950] = 6701, + [6951] = 6633, + [6952] = 6632, + [6953] = 6702, + [6954] = 6631, + [6955] = 6955, + [6956] = 6628, + [6957] = 6957, + [6958] = 6703, + [6959] = 6707, + [6960] = 6960, + [6961] = 6633, + [6962] = 6962, + [6963] = 6715, + [6964] = 6964, + [6965] = 6965, [6966] = 6966, - [6967] = 6491, - [6968] = 6968, - [6969] = 6969, - [6970] = 6970, + [6967] = 6967, + [6968] = 6716, + [6969] = 6630, + [6970] = 6631, [6971] = 6971, - [6972] = 6972, + [6972] = 6630, [6973] = 6973, - [6974] = 6462, - [6975] = 6491, - [6976] = 6465, - [6977] = 6466, - [6978] = 6978, - [6979] = 6491, + [6974] = 6974, + [6975] = 6749, + [6976] = 6752, + [6977] = 6629, + [6978] = 6861, + [6979] = 6783, [6980] = 6980, - [6981] = 6559, - [6982] = 6430, - [6983] = 6560, - [6984] = 6429, - [6985] = 6806, - [6986] = 6462, - [6987] = 6472, - [6988] = 6465, - [6989] = 6466, - [6990] = 6813, - [6991] = 6491, - [6992] = 6457, - [6993] = 6458, - [6994] = 6563, - [6995] = 6463, - [6996] = 6819, - [6997] = 6997, - [6998] = 6462, - [6999] = 6999, - [7000] = 6465, - [7001] = 6466, + [6981] = 6784, + [6982] = 6718, + [6983] = 6628, + [6984] = 6865, + [6985] = 6669, + [6986] = 6776, + [6987] = 6726, + [6988] = 6636, + [6989] = 6989, + [6990] = 6990, + [6991] = 6991, + [6992] = 6632, + [6993] = 6628, + [6994] = 6671, + [6995] = 6630, + [6996] = 6634, + [6997] = 6677, + [6998] = 6678, + [6999] = 6631, + [7000] = 6736, + [7001] = 7001, [7002] = 7002, - [7003] = 6491, - [7004] = 6460, + [7003] = 6632, + [7004] = 6633, [7005] = 7005, - [7006] = 7006, - [7007] = 6458, - [7008] = 7008, - [7009] = 7009, - [7010] = 6462, - [7011] = 6463, - [7012] = 6465, - [7013] = 6466, - [7014] = 7014, - [7015] = 6491, - [7016] = 6428, + [7006] = 6886, + [7007] = 6889, + [7008] = 6802, + [7009] = 6704, + [7010] = 7010, + [7011] = 6803, + [7012] = 6633, + [7013] = 7013, + [7014] = 6666, + [7015] = 7015, + [7016] = 7016, [7017] = 7017, - [7018] = 7018, - [7019] = 7019, - [7020] = 7020, - [7021] = 7021, - [7022] = 6462, - [7023] = 7023, - [7024] = 6465, - [7025] = 6466, - [7026] = 7026, - [7027] = 6491, - [7028] = 6820, - [7029] = 7029, - [7030] = 7030, - [7031] = 7031, - [7032] = 6821, - [7033] = 6708, - [7034] = 6462, - [7035] = 7035, - [7036] = 6465, - [7037] = 6466, - [7038] = 6618, - [7039] = 6491, - [7040] = 6619, - [7041] = 7041, - [7042] = 6564, - [7043] = 7043, - [7044] = 7044, - [7045] = 7045, - [7046] = 6462, - [7047] = 6716, - [7048] = 6465, - [7049] = 6466, - [7050] = 6520, - [7051] = 6491, - [7052] = 6457, - [7053] = 6571, - [7054] = 6431, - [7055] = 6831, - [7056] = 6833, - [7057] = 6834, - [7058] = 6462, - [7059] = 6430, - [7060] = 6465, - [7061] = 6466, - [7062] = 6431, - [7063] = 6491, - [7064] = 6457, - [7065] = 6458, - [7066] = 6580, - [7067] = 7067, - [7068] = 6774, - [7069] = 6658, - [7070] = 6462, - [7071] = 6791, - [7072] = 6465, - [7073] = 6466, - [7074] = 6601, - [7075] = 6491, - [7076] = 6775, + [7018] = 6896, + [7019] = 6632, + [7020] = 6628, + [7021] = 6629, + [7022] = 7022, + [7023] = 6808, + [7024] = 6749, + [7025] = 6752, + [7026] = 6630, + [7027] = 6814, + [7028] = 6776, + [7029] = 6631, + [7030] = 6814, + [7031] = 6840, + [7032] = 6671, + [7033] = 6912, + [7034] = 6677, + [7035] = 6678, + [7036] = 6815, + [7037] = 6740, + [7038] = 6741, + [7039] = 6688, + [7040] = 6634, + [7041] = 6706, + [7042] = 6629, + [7043] = 6724, + [7044] = 6754, + [7045] = 6704, + [7046] = 6636, + [7047] = 6636, + [7048] = 6634, + [7049] = 7049, + [7050] = 6881, + [7051] = 6943, + [7052] = 6640, + [7053] = 6636, + [7054] = 6629, + [7055] = 6934, + [7056] = 6666, + [7057] = 6752, + [7058] = 6633, + [7059] = 6776, + [7060] = 6837, + [7061] = 6671, + [7062] = 6632, + [7063] = 6677, + [7064] = 6678, + [7065] = 6940, + [7066] = 7066, + [7067] = 6942, + [7068] = 6704, + [7069] = 7069, + [7070] = 7070, + [7071] = 7071, + [7072] = 7072, + [7073] = 6845, + [7074] = 6701, + [7075] = 7075, + [7076] = 7076, [7077] = 7077, [7078] = 7078, - [7079] = 6587, - [7080] = 6607, - [7081] = 6547, - [7082] = 6462, + [7079] = 7079, + [7080] = 6776, + [7081] = 7081, + [7082] = 6671, [7083] = 7083, - [7084] = 6465, - [7085] = 6466, - [7086] = 6512, - [7087] = 6491, - [7088] = 6490, - [7089] = 7089, - [7090] = 6474, - [7091] = 6430, - [7092] = 6470, - [7093] = 6461, - [7094] = 6462, - [7095] = 6473, - [7096] = 6465, - [7097] = 6466, - [7098] = 6479, - [7099] = 6491, - [7100] = 6472, - [7101] = 6488, - [7102] = 6472, - [7103] = 6544, + [7084] = 6677, + [7085] = 6678, + [7086] = 7086, + [7087] = 6704, + [7088] = 7088, + [7089] = 6702, + [7090] = 6955, + [7091] = 6703, + [7092] = 6707, + [7093] = 7093, + [7094] = 6960, + [7095] = 6633, + [7096] = 6671, + [7097] = 7097, + [7098] = 6677, + [7099] = 6678, + [7100] = 6962, + [7101] = 6704, + [7102] = 6715, + [7103] = 6964, [7104] = 7104, - [7105] = 7105, - [7106] = 6462, + [7105] = 6630, + [7106] = 7106, [7107] = 7107, - [7108] = 6465, - [7109] = 6466, - [7110] = 6459, - [7111] = 6491, - [7112] = 6643, + [7108] = 7108, + [7109] = 6671, + [7110] = 7110, + [7111] = 6677, + [7112] = 6678, [7113] = 7113, - [7114] = 6645, - [7115] = 6858, - [7116] = 6859, - [7117] = 6860, - [7118] = 6462, - [7119] = 6460, - [7120] = 6465, - [7121] = 6466, - [7122] = 6862, - [7123] = 6491, - [7124] = 6742, + [7114] = 6704, + [7115] = 7115, + [7116] = 7116, + [7117] = 7117, + [7118] = 7118, + [7119] = 7119, + [7120] = 7120, + [7121] = 6671, + [7122] = 7122, + [7123] = 6677, + [7124] = 6678, [7125] = 7125, - [7126] = 6431, - [7127] = 6457, - [7128] = 6458, - [7129] = 6460, - [7130] = 6462, - [7131] = 7131, - [7132] = 6465, - [7133] = 6466, - [7134] = 6475, - [7135] = 6491, - [7136] = 6460, - [7137] = 7137, - [7138] = 6526, - [7139] = 7139, - [7140] = 6954, - [7141] = 6572, + [7126] = 6704, + [7127] = 7127, + [7128] = 6716, + [7129] = 6971, + [7130] = 7130, + [7131] = 6973, + [7132] = 6861, + [7133] = 6671, + [7134] = 6783, + [7135] = 6677, + [7136] = 6678, + [7137] = 6784, + [7138] = 6704, + [7139] = 6718, + [7140] = 7140, + [7141] = 7141, [7142] = 7142, - [7143] = 6465, - [7144] = 6466, - [7145] = 6575, - [7146] = 6491, - [7147] = 7147, - [7148] = 7148, - [7149] = 6581, - [7150] = 6591, - [7151] = 6610, - [7152] = 6613, - [7153] = 7153, - [7154] = 6465, - [7155] = 6466, - [7156] = 6631, - [7157] = 6491, - [7158] = 7158, - [7159] = 7159, - [7160] = 6637, - [7161] = 7161, - [7162] = 6644, - [7163] = 6650, - [7164] = 6659, - [7165] = 6465, - [7166] = 6466, - [7167] = 6664, - [7168] = 6491, - [7169] = 6691, - [7170] = 7170, - [7171] = 6731, - [7172] = 6463, - [7173] = 6803, - [7174] = 6670, - [7175] = 6468, - [7176] = 6465, - [7177] = 6466, - [7178] = 6889, - [7179] = 6491, - [7180] = 6894, - [7181] = 6428, - [7182] = 6723, - [7183] = 6900, - [7184] = 6463, - [7185] = 6471, - [7186] = 6469, - [7187] = 6465, - [7188] = 6466, - [7189] = 7189, - [7190] = 6491, - [7191] = 6775, - [7192] = 7107, - [7193] = 6428, - [7194] = 7113, - [7195] = 7161, - [7196] = 7196, - [7197] = 7197, - [7198] = 6465, - [7199] = 6466, - [7200] = 6428, - [7201] = 6491, - [7202] = 6469, - [7203] = 6472, - [7204] = 6430, - [7205] = 6783, - [7206] = 6471, - [7207] = 6431, - [7208] = 6696, - [7209] = 6465, - [7210] = 6466, - [7211] = 6457, - [7212] = 6491, - [7213] = 7196, - [7214] = 6458, - [7215] = 7215, - [7216] = 7216, - [7217] = 6789, - [7218] = 6580, - [7219] = 7219, - [7220] = 6465, - [7221] = 6466, - [7222] = 6945, - [7223] = 6491, - [7224] = 7224, - [7225] = 7225, - [7226] = 7226, - [7227] = 6792, - [7228] = 6463, - [7229] = 6948, - [7230] = 7230, - [7231] = 6465, - [7232] = 6466, - [7233] = 6949, - [7234] = 6491, - [7235] = 7002, - [7236] = 7236, - [7237] = 6428, - [7238] = 6469, - [7239] = 7239, - [7240] = 6795, - [7241] = 6700, - [7242] = 6465, - [7243] = 6466, - [7244] = 6557, - [7245] = 6491, - [7246] = 6961, - [7247] = 6966, - [7248] = 6460, - [7249] = 6458, - [7250] = 6968, - [7251] = 6969, - [7252] = 6970, - [7253] = 6465, - [7254] = 6466, - [7255] = 6971, - [7256] = 6491, - [7257] = 7257, - [7258] = 6972, - [7259] = 6431, - [7260] = 7260, - [7261] = 6973, - [7262] = 6978, - [7263] = 7263, - [7264] = 6465, - [7265] = 6466, - [7266] = 6800, - [7267] = 6491, - [7268] = 7268, - [7269] = 6559, - [7270] = 7270, - [7271] = 7271, - [7272] = 7272, - [7273] = 7273, - [7274] = 6560, - [7275] = 6465, - [7276] = 6466, - [7277] = 7277, - [7278] = 6491, - [7279] = 6428, - [7280] = 7280, - [7281] = 7281, - [7282] = 6806, - [7283] = 6472, - [7284] = 6813, - [7285] = 6563, - [7286] = 6465, - [7287] = 6466, - [7288] = 6819, - [7289] = 6491, - [7290] = 6997, - [7291] = 6999, - [7292] = 6490, - [7293] = 7005, - [7294] = 7006, - [7295] = 7008, - [7296] = 7009, - [7297] = 6465, - [7298] = 6466, - [7299] = 7014, - [7300] = 6491, - [7301] = 6460, - [7302] = 7017, - [7303] = 7020, - [7304] = 7021, - [7305] = 7023, - [7306] = 7026, - [7307] = 6820, - [7308] = 6465, - [7309] = 6466, - [7310] = 6821, - [7311] = 6491, - [7312] = 6708, - [7313] = 6618, - [7314] = 6466, - [7315] = 6465, - [7316] = 6619, - [7317] = 6564, - [7318] = 6463, - [7319] = 6465, - [7320] = 6466, - [7321] = 7321, - [7322] = 6491, - [7323] = 7043, - [7324] = 7044, - [7325] = 7045, - [7326] = 6716, - [7327] = 6520, - [7328] = 6571, - [7329] = 6831, - [7330] = 6465, - [7331] = 6466, - [7332] = 6833, - [7333] = 6491, - [7334] = 6428, - [7335] = 6834, - [7336] = 6458, - [7337] = 6430, - [7338] = 6431, - [7339] = 6457, - [7340] = 7340, - [7341] = 6465, - [7342] = 6466, - [7343] = 6458, - [7344] = 6491, - [7345] = 7345, - [7346] = 6580, - [7347] = 6862, - [7348] = 6783, - [7349] = 6774, - [7350] = 6658, - [7351] = 6791, - [7352] = 6465, - [7353] = 6466, - [7354] = 6601, - [7355] = 6491, - [7356] = 7356, - [7357] = 6457, - [7358] = 6472, - [7359] = 6587, - [7360] = 6607, - [7361] = 6547, - [7362] = 6512, - [7363] = 6465, - [7364] = 6466, - [7365] = 6650, - [7366] = 6491, - [7367] = 6474, - [7368] = 6470, - [7369] = 6463, - [7370] = 6430, - [7371] = 6461, - [7372] = 6473, - [7373] = 6430, - [7374] = 6465, - [7375] = 6479, - [7376] = 6431, - [7377] = 6488, - [7378] = 6544, - [7379] = 6457, - [7380] = 6465, - [7381] = 6612, - [7382] = 7104, - [7383] = 7105, - [7384] = 6980, - [7385] = 6643, - [7386] = 6465, - [7387] = 7387, - [7388] = 6645, - [7389] = 6465, - [7390] = 6458, - [7391] = 7391, - [7392] = 6465, - [7393] = 7393, - [7394] = 6464, - [7395] = 6472, - [7396] = 6858, - [7397] = 7397, - [7398] = 6859, - [7399] = 7399, - [7400] = 6460, - [7401] = 7401, - [7402] = 7402, - [7403] = 6860, - [7404] = 7404, - [7405] = 6458, - [7406] = 6862, - [7407] = 7407, - [7408] = 6742, - [7409] = 7104, - [7410] = 7410, - [7411] = 6460, - [7412] = 7412, - [7413] = 6475, - [7414] = 7414, - [7415] = 7415, - [7416] = 845, - [7417] = 6463, - [7418] = 6471, - [7419] = 5367, - [7420] = 7420, - [7421] = 6462, - [7422] = 6428, - [7423] = 7105, - [7424] = 7415, - [7425] = 7410, - [7426] = 7402, - [7427] = 7399, - [7428] = 6471, - [7429] = 6472, - [7430] = 6469, - [7431] = 6526, - [7432] = 6430, - [7433] = 7356, - [7434] = 7224, - [7435] = 7345, - [7436] = 6428, - [7437] = 6431, - [7438] = 7438, - [7439] = 6457, - [7440] = 7280, - [7441] = 7159, - [7442] = 7158, - [7443] = 7153, - [7444] = 6458, - [7445] = 6460, - [7446] = 6463, - [7447] = 6428, - [7448] = 6463, - [7449] = 7449, - [7450] = 6460, - [7451] = 6472, - [7452] = 6459, - [7453] = 7067, - [7454] = 7035, - [7455] = 7019, - [7456] = 7018, - [7457] = 6457, - [7458] = 6458, - [7459] = 7459, - [7460] = 7460, - [7461] = 6430, - [7462] = 6871, - [7463] = 6844, - [7464] = 6572, - [7465] = 7465, - [7466] = 6713, - [7467] = 6457, - [7468] = 6457, - [7469] = 6431, - [7470] = 6575, + [7143] = 6865, + [7144] = 6669, + [7145] = 6671, + [7146] = 6726, + [7147] = 6677, + [7148] = 6678, + [7149] = 6989, + [7150] = 6704, + [7151] = 6990, + [7152] = 6991, + [7153] = 6632, + [7154] = 7154, + [7155] = 6628, + [7156] = 6630, + [7157] = 6671, + [7158] = 6631, + [7159] = 6677, + [7160] = 6678, + [7161] = 6736, + [7162] = 6704, + [7163] = 7001, + [7164] = 7164, + [7165] = 7165, + [7166] = 7166, + [7167] = 7167, + [7168] = 7168, + [7169] = 6671, + [7170] = 6634, + [7171] = 6677, + [7172] = 6678, + [7173] = 7173, + [7174] = 6704, + [7175] = 7175, + [7176] = 7176, + [7177] = 7177, + [7178] = 6640, + [7179] = 7179, + [7180] = 7180, + [7181] = 6671, + [7182] = 7002, + [7183] = 6677, + [7184] = 6678, + [7185] = 7005, + [7186] = 6704, + [7187] = 6886, + [7188] = 6889, + [7189] = 6629, + [7190] = 7190, + [7191] = 7016, + [7192] = 6802, + [7193] = 6671, + [7194] = 6803, + [7195] = 6677, + [7196] = 6678, + [7197] = 7013, + [7198] = 6704, + [7199] = 7015, + [7200] = 7086, + [7201] = 7017, + [7202] = 6630, + [7203] = 6896, + [7204] = 6628, + [7205] = 6671, + [7206] = 5241, + [7207] = 6677, + [7208] = 6678, + [7209] = 6629, + [7210] = 6704, + [7211] = 7022, + [7212] = 6628, + [7213] = 6808, + [7214] = 6808, + [7215] = 6814, + [7216] = 6829, + [7217] = 6671, + [7218] = 7218, + [7219] = 6677, + [7220] = 6678, + [7221] = 7221, + [7222] = 6704, + [7223] = 6813, + [7224] = 6767, + [7225] = 6689, + [7226] = 6687, + [7227] = 6667, + [7228] = 6685, + [7229] = 6671, + [7230] = 6630, + [7231] = 6677, + [7232] = 6678, + [7233] = 6712, + [7234] = 6704, + [7235] = 6753, + [7236] = 6840, + [7237] = 6912, + [7238] = 7238, + [7239] = 6815, + [7240] = 7240, + [7241] = 6671, + [7242] = 7242, + [7243] = 6677, + [7244] = 6678, + [7245] = 7245, + [7246] = 6704, + [7247] = 6631, + [7248] = 6627, + [7249] = 6740, + [7250] = 7250, + [7251] = 6741, + [7252] = 6688, + [7253] = 6671, + [7254] = 6706, + [7255] = 6677, + [7256] = 6678, + [7257] = 6628, + [7258] = 6704, + [7259] = 6724, + [7260] = 6754, + [7261] = 6636, + [7262] = 6629, + [7263] = 6632, + [7264] = 6881, + [7265] = 6671, + [7266] = 7266, + [7267] = 6677, + [7268] = 6678, + [7269] = 6906, + [7270] = 6704, + [7271] = 6911, + [7272] = 6974, + [7273] = 7097, + [7274] = 6634, + [7275] = 6640, + [7276] = 6636, + [7277] = 6671, + [7278] = 6634, + [7279] = 6677, + [7280] = 6678, + [7281] = 6633, + [7282] = 6704, + [7283] = 6934, + [7284] = 6666, + [7285] = 7285, + [7286] = 7286, + [7287] = 6837, + [7288] = 7288, + [7289] = 6671, + [7290] = 7290, + [7291] = 6677, + [7292] = 6678, + [7293] = 6940, + [7294] = 6704, + [7295] = 6633, + [7296] = 6632, + [7297] = 7297, + [7298] = 7066, + [7299] = 7299, + [7300] = 7300, + [7301] = 6671, + [7302] = 6942, + [7303] = 6677, + [7304] = 6678, + [7305] = 7069, + [7306] = 6704, + [7307] = 7070, + [7308] = 7071, + [7309] = 7309, + [7310] = 7310, + [7311] = 6943, + [7312] = 6845, + [7313] = 6671, + [7314] = 6666, + [7315] = 6677, + [7316] = 6678, + [7317] = 6701, + [7318] = 6704, + [7319] = 7075, + [7320] = 7076, + [7321] = 7077, + [7322] = 7078, + [7323] = 7079, + [7324] = 7081, + [7325] = 6671, + [7326] = 7083, + [7327] = 6677, + [7328] = 6678, + [7329] = 7329, + [7330] = 6704, + [7331] = 7088, + [7332] = 6702, + [7333] = 6955, + [7334] = 6703, + [7335] = 7335, + [7336] = 6814, + [7337] = 6671, + [7338] = 7338, + [7339] = 6677, + [7340] = 6678, + [7341] = 6707, + [7342] = 6704, + [7343] = 7343, + [7344] = 7093, + [7345] = 6960, + [7346] = 6633, + [7347] = 6962, + [7348] = 6715, + [7349] = 6671, + [7350] = 6634, + [7351] = 6677, + [7352] = 6678, + [7353] = 6964, + [7354] = 6704, + [7355] = 7104, + [7356] = 7106, + [7357] = 7107, + [7358] = 7108, + [7359] = 7113, + [7360] = 7115, + [7361] = 7116, + [7362] = 6677, + [7363] = 6678, + [7364] = 7117, + [7365] = 6704, + [7366] = 7119, + [7367] = 7120, + [7368] = 7122, + [7369] = 7125, + [7370] = 7127, + [7371] = 6716, + [7372] = 6971, + [7373] = 6677, + [7374] = 6678, + [7375] = 6973, + [7376] = 6704, + [7377] = 6861, + [7378] = 6783, + [7379] = 6784, + [7380] = 6718, + [7381] = 7381, + [7382] = 7140, + [7383] = 7141, + [7384] = 6677, + [7385] = 6678, + [7386] = 7142, + [7387] = 6704, + [7388] = 6865, + [7389] = 6669, + [7390] = 6726, + [7391] = 6989, + [7392] = 6990, + [7393] = 6991, + [7394] = 6632, + [7395] = 6677, + [7396] = 6678, + [7397] = 6628, + [7398] = 6704, + [7399] = 6630, + [7400] = 6631, + [7401] = 6736, + [7402] = 6678, + [7403] = 7001, + [7404] = 7164, + [7405] = 6677, + [7406] = 6677, + [7407] = 6678, + [7408] = 7165, + [7409] = 6704, + [7410] = 7166, + [7411] = 7167, + [7412] = 7168, + [7413] = 6630, + [7414] = 7173, + [7415] = 7175, + [7416] = 7176, + [7417] = 6677, + [7418] = 6678, + [7419] = 7177, + [7420] = 6704, + [7421] = 7179, + [7422] = 7180, + [7423] = 7002, + [7424] = 7005, + [7425] = 6886, + [7426] = 6889, + [7427] = 7427, + [7428] = 6677, + [7429] = 6678, + [7430] = 6626, + [7431] = 6704, + [7432] = 7190, + [7433] = 7072, + [7434] = 6802, + [7435] = 6803, + [7436] = 7436, + [7437] = 7437, + [7438] = 6631, + [7439] = 6677, + [7440] = 6678, + [7441] = 7013, + [7442] = 6704, + [7443] = 7015, + [7444] = 7016, + [7445] = 7445, + [7446] = 6640, + [7447] = 7017, + [7448] = 6896, + [7449] = 6629, + [7450] = 6677, + [7451] = 6678, + [7452] = 6629, + [7453] = 6704, + [7454] = 7022, + [7455] = 6808, + [7456] = 6685, + [7457] = 6640, + [7458] = 6829, + [7459] = 6813, + [7460] = 6767, + [7461] = 6677, + [7462] = 6678, + [7463] = 6689, + [7464] = 6704, + [7465] = 6687, + [7466] = 6667, + [7467] = 6636, + [7468] = 7468, + [7469] = 6712, + [7470] = 6753, [7471] = 7471, - [7472] = 6457, - [7473] = 6458, - [7474] = 6581, - [7475] = 6591, - [7476] = 6431, - [7477] = 6460, - [7478] = 6610, - [7479] = 6430, - [7480] = 6613, - [7481] = 7481, - [7482] = 6631, - [7483] = 6428, - [7484] = 7484, - [7485] = 6637, - [7486] = 6644, - [7487] = 6472, + [7472] = 6677, + [7473] = 6678, + [7474] = 6840, + [7475] = 6704, + [7476] = 6912, + [7477] = 6815, + [7478] = 6924, + [7479] = 7288, + [7480] = 7480, + [7481] = 7240, + [7482] = 6634, + [7483] = 6677, + [7484] = 6678, + [7485] = 7485, + [7486] = 6704, + [7487] = 7245, [7488] = 7488, - [7489] = 7415, - [7490] = 7410, - [7491] = 7402, - [7492] = 7399, - [7493] = 6431, - [7494] = 7494, - [7495] = 6980, - [7496] = 6472, - [7497] = 6430, - [7498] = 7356, - [7499] = 7224, - [7500] = 7345, + [7489] = 6634, + [7490] = 7490, + [7491] = 6740, + [7492] = 6741, + [7493] = 7493, + [7494] = 6677, + [7495] = 6678, + [7496] = 6848, + [7497] = 6704, + [7498] = 6688, + [7499] = 6706, + [7500] = 6636, [7501] = 7501, - [7502] = 6431, - [7503] = 6457, - [7504] = 6468, - [7505] = 7159, - [7506] = 7158, - [7507] = 7153, - [7508] = 6458, - [7509] = 6469, - [7510] = 6659, - [7511] = 6460, - [7512] = 6428, - [7513] = 6463, - [7514] = 6428, - [7515] = 6463, - [7516] = 6664, - [7517] = 7067, - [7518] = 7035, - [7519] = 7019, - [7520] = 7018, - [7521] = 6666, - [7522] = 6460, - [7523] = 6696, - [7524] = 6472, - [7525] = 6430, - [7526] = 6871, - [7527] = 6844, - [7528] = 6458, - [7529] = 6789, - [7530] = 7530, - [7531] = 6431, - [7532] = 6457, - [7533] = 6682, - [7534] = 6691, - [7535] = 6458, - [7536] = 6457, - [7537] = 6718, - [7538] = 6460, - [7539] = 6431, - [7540] = 7540, - [7541] = 6463, - [7542] = 6731, - [7543] = 6428, - [7544] = 6431, - [7545] = 6430, - [7546] = 6803, - [7547] = 6472, - [7548] = 7548, - [7549] = 7415, - [7550] = 7410, - [7551] = 7402, - [7552] = 7399, - [7553] = 6472, - [7554] = 6670, - [7555] = 6643, - [7556] = 7196, - [7557] = 6430, - [7558] = 7356, - [7559] = 7224, - [7560] = 7345, - [7561] = 7561, - [7562] = 6431, - [7563] = 6883, - [7564] = 6896, - [7565] = 7158, - [7566] = 6457, - [7567] = 6889, - [7568] = 6894, - [7569] = 6458, - [7570] = 7570, - [7571] = 7067, - [7572] = 7035, - [7573] = 7019, - [7574] = 7018, + [7502] = 6724, + [7503] = 6754, + [7504] = 6629, + [7505] = 6677, + [7506] = 6678, + [7507] = 6636, + [7508] = 6704, + [7509] = 6633, + [7510] = 6632, + [7511] = 6881, + [7512] = 6631, + [7513] = 6906, + [7514] = 6911, + [7515] = 6957, + [7516] = 6677, + [7517] = 6678, + [7518] = 6974, + [7519] = 6704, + [7520] = 7097, + [7521] = 6634, + [7522] = 6640, + [7523] = 6628, + [7524] = 6630, + [7525] = 6934, + [7526] = 7526, + [7527] = 6677, + [7528] = 6678, + [7529] = 7529, + [7530] = 6704, + [7531] = 6666, + [7532] = 6631, + [7533] = 6837, + [7534] = 6630, + [7535] = 6940, + [7536] = 6629, + [7537] = 6628, + [7538] = 6677, + [7539] = 6678, + [7540] = 7022, + [7541] = 6704, + [7542] = 6636, + [7543] = 6634, + [7544] = 6629, + [7545] = 6632, + [7546] = 6640, + [7547] = 6896, + [7548] = 6741, + [7549] = 6677, + [7550] = 6678, + [7551] = 7551, + [7552] = 6704, + [7553] = 7553, + [7554] = 7017, + [7555] = 7555, + [7556] = 6934, + [7557] = 6633, + [7558] = 7558, + [7559] = 7480, + [7560] = 6677, + [7561] = 6678, + [7562] = 6632, + [7563] = 6704, + [7564] = 7016, + [7565] = 7565, + [7566] = 7015, + [7567] = 6628, + [7568] = 7013, + [7569] = 6630, + [7570] = 6631, + [7571] = 6677, + [7572] = 6678, + [7573] = 7573, + [7574] = 6704, [7575] = 7575, - [7576] = 6460, - [7577] = 6463, - [7578] = 6723, - [7579] = 6428, - [7580] = 6871, - [7581] = 6844, - [7582] = 6900, - [7583] = 6463, - [7584] = 6471, - [7585] = 6469, - [7586] = 6428, - [7587] = 7420, - [7588] = 6472, - [7589] = 6430, - [7590] = 6463, - [7591] = 6431, - [7592] = 6457, - [7593] = 7415, - [7594] = 7410, - [7595] = 7399, - [7596] = 6458, - [7597] = 6460, - [7598] = 6460, - [7599] = 6471, - [7600] = 7224, - [7601] = 7345, - [7602] = 6463, - [7603] = 7158, - [7604] = 6428, - [7605] = 6775, - [7606] = 7107, - [7607] = 6458, - [7608] = 7067, - [7609] = 7035, - [7610] = 7019, - [7611] = 7018, - [7612] = 6556, - [7613] = 6871, - [7614] = 6844, - [7615] = 7113, - [7616] = 7148, - [7617] = 6457, - [7618] = 7161, - [7619] = 6457, - [7620] = 6430, - [7621] = 6472, - [7622] = 7415, - [7623] = 7410, - [7624] = 7399, - [7625] = 6472, - [7626] = 7224, - [7627] = 7345, - [7628] = 7158, - [7629] = 6428, - [7630] = 7067, - [7631] = 7035, - [7632] = 7019, - [7633] = 7018, - [7634] = 6871, - [7635] = 6844, - [7636] = 6469, - [7637] = 6430, - [7638] = 7638, - [7639] = 7345, - [7640] = 7158, - [7641] = 7067, - [7642] = 7035, - [7643] = 7019, - [7644] = 7018, - [7645] = 6871, - [7646] = 6844, - [7647] = 6431, - [7648] = 7035, - [7649] = 7019, - [7650] = 7018, - [7651] = 6844, - [7652] = 7035, - [7653] = 7019, - [7654] = 7018, - [7655] = 7035, - [7656] = 7019, - [7657] = 7018, - [7658] = 7035, - [7659] = 7019, - [7660] = 7018, - [7661] = 7035, - [7662] = 7019, - [7663] = 7018, - [7664] = 7035, - [7665] = 7019, - [7666] = 7018, - [7667] = 7035, - [7668] = 7019, - [7669] = 7018, - [7670] = 7035, - [7671] = 7019, - [7672] = 7018, - [7673] = 7035, - [7674] = 7019, - [7675] = 7018, - [7676] = 7035, - [7677] = 7019, - [7678] = 7018, - [7679] = 7035, - [7680] = 7019, - [7681] = 7018, - [7682] = 7035, - [7683] = 7019, - [7684] = 7018, - [7685] = 7035, - [7686] = 7019, - [7687] = 7018, - [7688] = 7035, - [7689] = 7019, - [7690] = 7018, - [7691] = 7035, - [7692] = 7019, - [7693] = 7018, - [7694] = 7035, - [7695] = 7019, - [7696] = 7018, - [7697] = 7035, - [7698] = 7019, - [7699] = 7018, - [7700] = 7035, - [7701] = 7019, - [7702] = 7018, - [7703] = 7035, - [7704] = 7019, - [7705] = 7018, - [7706] = 7035, - [7707] = 7019, - [7708] = 7018, - [7709] = 7035, - [7710] = 7019, - [7711] = 7018, - [7712] = 7035, - [7713] = 7019, - [7714] = 7018, - [7715] = 7035, - [7716] = 7019, - [7717] = 7018, - [7718] = 7035, - [7719] = 7019, - [7720] = 7018, - [7721] = 7035, - [7722] = 7019, - [7723] = 7018, - [7724] = 7035, - [7725] = 7019, - [7726] = 7018, - [7727] = 7035, - [7728] = 7019, - [7729] = 7018, - [7730] = 7035, - [7731] = 7019, - [7732] = 7018, - [7733] = 7035, - [7734] = 7019, - [7735] = 7018, - [7736] = 7035, - [7737] = 7019, - [7738] = 7018, - [7739] = 7035, - [7740] = 7019, - [7741] = 7018, - [7742] = 7035, - [7743] = 7019, - [7744] = 7018, - [7745] = 7035, - [7746] = 7019, - [7747] = 7018, - [7748] = 7035, - [7749] = 7019, - [7750] = 7018, - [7751] = 7035, - [7752] = 7019, - [7753] = 7018, - [7754] = 7035, - [7755] = 7019, - [7756] = 7018, - [7757] = 7035, - [7758] = 7019, - [7759] = 7018, - [7760] = 7035, - [7761] = 7019, - [7762] = 7018, - [7763] = 7035, - [7764] = 7019, - [7765] = 7018, - [7766] = 7035, - [7767] = 7019, - [7768] = 7018, - [7769] = 7035, - [7770] = 7019, - [7771] = 7018, - [7772] = 7035, - [7773] = 7019, - [7774] = 7018, - [7775] = 7035, - [7776] = 7019, - [7777] = 7018, - [7778] = 7035, - [7779] = 7019, - [7780] = 7018, - [7781] = 5117, - [7782] = 6783, - [7783] = 7387, - [7784] = 7407, - [7785] = 6471, - [7786] = 6430, - [7787] = 6696, - [7788] = 6458, - [7789] = 6789, - [7790] = 6460, - [7791] = 6471, - [7792] = 6430, - [7793] = 6463, + [7576] = 7436, + [7577] = 6666, + [7578] = 7526, + [7579] = 7437, + [7580] = 5191, + [7581] = 6629, + [7582] = 6677, + [7583] = 6678, + [7584] = 7584, + [7585] = 6704, + [7586] = 6636, + [7587] = 7587, + [7588] = 6749, + [7589] = 6636, + [7590] = 7590, + [7591] = 6750, + [7592] = 6634, + [7593] = 6677, + [7594] = 6803, + [7595] = 7595, + [7596] = 7596, + [7597] = 7597, + [7598] = 6674, + [7599] = 6677, + [7600] = 7600, + [7601] = 6802, + [7602] = 7602, + [7603] = 7072, + [7604] = 7604, + [7605] = 6677, + [7606] = 7606, + [7607] = 7190, + [7608] = 6677, + [7609] = 7609, + [7610] = 6634, + [7611] = 6677, + [7612] = 7612, + [7613] = 7613, + [7614] = 6626, + [7615] = 7615, + [7616] = 7616, + [7617] = 7617, + [7618] = 7529, + [7619] = 7619, + [7620] = 7620, + [7621] = 7621, + [7622] = 7622, + [7623] = 7623, + [7624] = 5903, + [7625] = 7625, + [7626] = 7626, + [7627] = 840, + [7628] = 6636, + [7629] = 6666, + [7630] = 6671, + [7631] = 6633, + [7632] = 6629, + [7633] = 7633, + [7634] = 6632, + [7635] = 6628, + [7636] = 7636, + [7637] = 6628, + [7638] = 6752, + [7639] = 7639, + [7640] = 7640, + [7641] = 6630, + [7642] = 6631, + [7643] = 7626, + [7644] = 7621, + [7645] = 7613, + [7646] = 7609, + [7647] = 6631, + [7648] = 7648, + [7649] = 6629, + [7650] = 6630, + [7651] = 6636, + [7652] = 7501, + [7653] = 7490, + [7654] = 7471, + [7655] = 6634, + [7656] = 6628, + [7657] = 7657, + [7658] = 7427, + [7659] = 7286, + [7660] = 6967, + [7661] = 6966, + [7662] = 6965, + [7663] = 6632, + [7664] = 6889, + [7665] = 7665, + [7666] = 7666, + [7667] = 6633, + [7668] = 7668, + [7669] = 6633, + [7670] = 7670, + [7671] = 7671, + [7672] = 6879, + [7673] = 6836, + [7674] = 6812, + [7675] = 6807, + [7676] = 6632, + [7677] = 6628, + [7678] = 6886, + [7679] = 7679, + [7680] = 6630, + [7681] = 7666, + [7682] = 7682, + [7683] = 6631, + [7684] = 6666, + [7685] = 7685, + [7686] = 6629, + [7687] = 7240, + [7688] = 6636, + [7689] = 7005, + [7690] = 6634, + [7691] = 6640, + [7692] = 6633, + [7693] = 7002, + [7694] = 7180, + [7695] = 7493, + [7696] = 6633, + [7697] = 6632, + [7698] = 6636, + [7699] = 7179, + [7700] = 6628, + [7701] = 7177, + [7702] = 6630, + [7703] = 7703, + [7704] = 7176, + [7705] = 6631, + [7706] = 6629, + [7707] = 6629, + [7708] = 7626, + [7709] = 7621, + [7710] = 7613, + [7711] = 7609, + [7712] = 6631, + [7713] = 6837, + [7714] = 6634, + [7715] = 6768, + [7716] = 6633, + [7717] = 7501, + [7718] = 7490, + [7719] = 7471, + [7720] = 6630, + [7721] = 6628, + [7722] = 6632, + [7723] = 7175, + [7724] = 6967, + [7725] = 6966, + [7726] = 6965, + [7727] = 6633, + [7728] = 6633, + [7729] = 6940, + [7730] = 6632, + [7731] = 6628, + [7732] = 7732, + [7733] = 6630, + [7734] = 6631, + [7735] = 7735, + [7736] = 6879, + [7737] = 6836, + [7738] = 6812, + [7739] = 6807, + [7740] = 7173, + [7741] = 6629, + [7742] = 7742, + [7743] = 6666, + [7744] = 6636, + [7745] = 7666, + [7746] = 7682, + [7747] = 7168, + [7748] = 7167, + [7749] = 7166, + [7750] = 6634, + [7751] = 6640, + [7752] = 6634, + [7753] = 7165, + [7754] = 6633, + [7755] = 6632, + [7756] = 7164, + [7757] = 6636, + [7758] = 6628, + [7759] = 6630, + [7760] = 6631, + [7761] = 6629, + [7762] = 6629, + [7763] = 7763, + [7764] = 6636, + [7765] = 6634, + [7766] = 6631, + [7767] = 6630, + [7768] = 7626, + [7769] = 7621, + [7770] = 7613, + [7771] = 7609, + [7772] = 6628, + [7773] = 7773, + [7774] = 6632, + [7775] = 7001, + [7776] = 6633, + [7777] = 7501, + [7778] = 7490, + [7779] = 7471, + [7780] = 6633, + [7781] = 6632, + [7782] = 6632, + [7783] = 7783, + [7784] = 6966, + [7785] = 7785, + [7786] = 7786, + [7787] = 6628, + [7788] = 6630, + [7789] = 6631, + [7790] = 6879, + [7791] = 6836, + [7792] = 6812, + [7793] = 6807, [7794] = 7794, - [7795] = 7795, - [7796] = 7796, - [7797] = 6834, - [7798] = 7798, - [7799] = 6428, - [7800] = 6469, - [7801] = 7197, - [7802] = 7216, - [7803] = 7147, - [7804] = 6428, - [7805] = 6833, - [7806] = 6472, - [7807] = 6681, - [7808] = 6463, - [7809] = 7809, - [7810] = 7810, - [7811] = 6430, - [7812] = 7812, - [7813] = 7813, - [7814] = 6831, - [7815] = 6460, - [7816] = 6571, - [7817] = 6431, - [7818] = 6457, - [7819] = 6520, - [7820] = 7820, - [7821] = 6458, - [7822] = 6716, - [7823] = 6460, - [7824] = 7045, - [7825] = 7044, - [7826] = 6458, - [7827] = 5421, - [7828] = 6463, - [7829] = 6428, - [7830] = 7830, - [7831] = 7831, - [7832] = 7832, - [7833] = 7833, - [7834] = 7197, - [7835] = 7216, - [7836] = 7147, - [7837] = 6469, - [7838] = 7043, - [7839] = 6457, - [7840] = 6681, - [7841] = 6431, - [7842] = 7842, - [7843] = 7321, - [7844] = 6564, - [7845] = 5394, - [7846] = 6430, - [7847] = 7847, - [7848] = 7848, - [7849] = 6472, - [7850] = 6471, - [7851] = 7851, - [7852] = 6472, - [7853] = 6645, - [7854] = 6460, - [7855] = 6431, - [7856] = 6619, - [7857] = 6457, - [7858] = 6562, - [7859] = 7859, - [7860] = 7860, - [7861] = 7861, - [7862] = 7197, - [7863] = 7147, - [7864] = 6618, - [7865] = 6458, - [7866] = 6681, - [7867] = 7867, - [7868] = 6708, - [7869] = 6821, - [7870] = 6820, - [7871] = 7026, - [7872] = 7021, - [7873] = 7023, - [7874] = 7874, - [7875] = 6457, - [7876] = 7876, - [7877] = 7020, - [7878] = 7017, - [7879] = 7009, - [7880] = 7008, - [7881] = 6463, - [7882] = 7197, - [7883] = 7147, - [7884] = 6681, - [7885] = 7006, - [7886] = 7005, - [7887] = 7002, - [7888] = 6428, - [7889] = 6999, - [7890] = 6997, - [7891] = 7891, - [7892] = 6819, - [7893] = 6563, - [7894] = 7894, - [7895] = 6469, - [7896] = 7484, - [7897] = 7147, - [7898] = 6681, - [7899] = 7014, - [7900] = 7900, - [7901] = 7901, - [7902] = 7902, - [7903] = 7903, - [7904] = 7904, - [7905] = 7905, - [7906] = 7906, - [7907] = 6681, - [7908] = 7908, - [7909] = 7909, - [7910] = 7910, - [7911] = 7911, - [7912] = 6813, - [7913] = 7913, - [7914] = 7914, - [7915] = 6469, - [7916] = 6428, - [7917] = 6472, - [7918] = 7918, - [7919] = 6471, - [7920] = 7920, - [7921] = 7921, - [7922] = 7922, - [7923] = 6806, - [7924] = 6463, - [7925] = 5425, - [7926] = 6429, - [7927] = 6472, - [7928] = 7928, - [7929] = 6460, - [7930] = 2921, - [7931] = 7931, - [7932] = 6430, - [7933] = 7933, - [7934] = 7934, - [7935] = 7935, - [7936] = 7277, - [7937] = 6560, - [7938] = 6431, - [7939] = 6457, - [7940] = 7940, - [7941] = 6458, - [7942] = 7273, - [7943] = 7272, - [7944] = 7270, - [7945] = 6577, - [7946] = 6458, - [7947] = 6460, - [7948] = 6457, - [7949] = 6463, - [7950] = 6428, - [7951] = 6559, - [7952] = 6800, - [7953] = 6469, - [7954] = 6431, - [7955] = 7955, - [7956] = 6430, - [7957] = 6978, - [7958] = 6973, - [7959] = 6972, - [7960] = 6971, - [7961] = 6970, - [7962] = 6969, - [7963] = 6968, - [7964] = 6966, - [7965] = 6961, - [7966] = 6557, - [7967] = 6582, - [7968] = 7968, - [7969] = 6860, - [7970] = 7970, - [7971] = 7971, - [7972] = 7972, - [7973] = 7973, - [7974] = 7974, - [7975] = 7975, - [7976] = 6472, - [7977] = 7977, - [7978] = 7978, - [7979] = 6471, - [7980] = 7980, - [7981] = 7981, - [7982] = 6536, - [7983] = 7983, - [7984] = 7984, - [7985] = 7985, - [7986] = 6535, - [7987] = 6700, - [7988] = 6795, - [7989] = 5588, - [7990] = 7990, - [7991] = 6859, - [7992] = 6472, - [7993] = 7239, - [7994] = 7994, - [7995] = 7995, - [7996] = 7996, - [7997] = 7236, - [7998] = 7998, - [7999] = 6430, - [8000] = 6431, - [8001] = 8001, - [8002] = 8002, - [8003] = 7225, - [8004] = 6954, - [8005] = 6949, - [8006] = 6948, - [8007] = 6463, - [8008] = 6458, + [7795] = 6629, + [7796] = 7639, + [7797] = 7797, + [7798] = 6666, + [7799] = 7666, + [7800] = 7682, + [7801] = 7801, + [7802] = 6636, + [7803] = 6634, + [7804] = 6640, + [7805] = 6634, + [7806] = 6736, + [7807] = 7807, + [7808] = 6633, + [7809] = 6632, + [7810] = 6770, + [7811] = 6636, + [7812] = 7626, + [7813] = 7621, + [7814] = 7609, + [7815] = 6628, + [7816] = 6631, + [7817] = 5408, + [7818] = 6630, + [7819] = 7490, + [7820] = 7471, + [7821] = 6631, + [7822] = 6966, + [7823] = 6629, + [7824] = 6629, + [7825] = 6630, + [7826] = 6636, + [7827] = 7827, + [7828] = 6879, + [7829] = 6836, + [7830] = 6812, + [7831] = 6807, + [7832] = 6628, + [7833] = 7666, + [7834] = 7682, + [7835] = 6634, + [7836] = 6631, + [7837] = 6630, + [7838] = 6740, + [7839] = 6628, + [7840] = 6628, + [7841] = 6632, + [7842] = 7626, + [7843] = 7621, + [7844] = 7609, + [7845] = 6632, + [7846] = 7490, + [7847] = 7471, + [7848] = 6966, + [7849] = 6991, + [7850] = 6879, + [7851] = 6836, + [7852] = 6812, + [7853] = 6807, + [7854] = 7666, + [7855] = 7682, + [7856] = 7856, + [7857] = 7857, + [7858] = 6633, + [7859] = 7471, + [7860] = 6966, + [7861] = 7827, + [7862] = 6879, + [7863] = 6836, + [7864] = 6812, + [7865] = 6807, + [7866] = 7666, + [7867] = 7682, + [7868] = 7868, + [7869] = 6836, + [7870] = 6812, + [7871] = 6807, + [7872] = 7682, + [7873] = 6836, + [7874] = 6812, + [7875] = 6807, + [7876] = 6836, + [7877] = 6812, + [7878] = 6807, + [7879] = 6836, + [7880] = 6812, + [7881] = 6807, + [7882] = 6836, + [7883] = 6812, + [7884] = 6807, + [7885] = 6836, + [7886] = 6812, + [7887] = 6807, + [7888] = 6836, + [7889] = 6812, + [7890] = 6807, + [7891] = 6836, + [7892] = 6812, + [7893] = 6807, + [7894] = 6836, + [7895] = 6812, + [7896] = 6807, + [7897] = 6836, + [7898] = 6812, + [7899] = 6807, + [7900] = 6836, + [7901] = 6812, + [7902] = 6807, + [7903] = 6836, + [7904] = 6812, + [7905] = 6807, + [7906] = 6836, + [7907] = 6812, + [7908] = 6807, + [7909] = 6836, + [7910] = 6812, + [7911] = 6807, + [7912] = 6836, + [7913] = 6812, + [7914] = 6807, + [7915] = 6836, + [7916] = 6812, + [7917] = 6807, + [7918] = 6836, + [7919] = 6812, + [7920] = 6807, + [7921] = 6836, + [7922] = 6812, + [7923] = 6807, + [7924] = 6836, + [7925] = 6812, + [7926] = 6807, + [7927] = 6836, + [7928] = 6812, + [7929] = 6807, + [7930] = 6836, + [7931] = 6812, + [7932] = 6807, + [7933] = 6836, + [7934] = 6812, + [7935] = 6807, + [7936] = 6836, + [7937] = 6812, + [7938] = 6807, + [7939] = 6836, + [7940] = 6812, + [7941] = 6807, + [7942] = 6836, + [7943] = 6812, + [7944] = 6807, + [7945] = 6836, + [7946] = 6812, + [7947] = 6807, + [7948] = 6836, + [7949] = 6812, + [7950] = 6807, + [7951] = 6836, + [7952] = 6812, + [7953] = 6807, + [7954] = 6836, + [7955] = 6812, + [7956] = 6807, + [7957] = 6836, + [7958] = 6812, + [7959] = 6807, + [7960] = 6836, + [7961] = 6812, + [7962] = 6807, + [7963] = 6836, + [7964] = 6812, + [7965] = 6807, + [7966] = 6836, + [7967] = 6812, + [7968] = 6807, + [7969] = 6836, + [7970] = 6812, + [7971] = 6807, + [7972] = 6836, + [7973] = 6812, + [7974] = 6807, + [7975] = 6836, + [7976] = 6812, + [7977] = 6807, + [7978] = 6836, + [7979] = 6812, + [7980] = 6807, + [7981] = 6836, + [7982] = 6812, + [7983] = 6807, + [7984] = 6836, + [7985] = 6812, + [7986] = 6807, + [7987] = 6836, + [7988] = 6812, + [7989] = 6807, + [7990] = 6836, + [7991] = 6812, + [7992] = 6807, + [7993] = 6836, + [7994] = 6812, + [7995] = 6807, + [7996] = 6836, + [7997] = 6812, + [7998] = 6807, + [7999] = 6836, + [8000] = 6812, + [8001] = 6807, + [8002] = 5755, + [8003] = 6632, + [8004] = 6630, + [8005] = 6990, + [8006] = 8006, + [8007] = 8007, + [8008] = 6631, [8009] = 8009, [8010] = 8010, [8011] = 8011, - [8012] = 8012, - [8013] = 8013, - [8014] = 6471, - [8015] = 8015, - [8016] = 6460, - [8017] = 6463, - [8018] = 6792, - [8019] = 8019, - [8020] = 5856, - [8021] = 7226, - [8022] = 8022, - [8023] = 8023, - [8024] = 6428, - [8025] = 6469, - [8026] = 6262, - [8027] = 6469, - [8028] = 6428, - [8029] = 6471, - [8030] = 8030, - [8031] = 6945, - [8032] = 8032, - [8033] = 8033, + [8012] = 6989, + [8013] = 7115, + [8014] = 6629, + [8015] = 6636, + [8016] = 6726, + [8017] = 5227, + [8018] = 6634, + [8019] = 6669, + [8020] = 8020, + [8021] = 6640, + [8022] = 7130, + [8023] = 7118, + [8024] = 6947, + [8025] = 6666, + [8026] = 6865, + [8027] = 8027, + [8028] = 7555, + [8029] = 7685, + [8030] = 7142, + [8031] = 7141, + [8032] = 6666, + [8033] = 6640, [8034] = 8034, [8035] = 8035, - [8036] = 6463, - [8037] = 6858, + [8036] = 8036, + [8037] = 8037, [8038] = 8038, - [8039] = 5855, - [8040] = 7219, - [8041] = 7393, - [8042] = 7575, - [8043] = 8043, - [8044] = 7414, - [8045] = 6472, - [8046] = 7340, - [8047] = 8047, + [8039] = 7140, + [8040] = 8040, + [8041] = 7381, + [8042] = 6718, + [8043] = 5790, + [8044] = 6633, + [8045] = 6634, + [8046] = 8046, + [8047] = 6632, [8048] = 8048, - [8049] = 7575, - [8050] = 8050, - [8051] = 7414, - [8052] = 6460, - [8053] = 7340, - [8054] = 6430, - [8055] = 6431, - [8056] = 7575, - [8057] = 5852, - [8058] = 7414, - [8059] = 6457, - [8060] = 7340, - [8061] = 6458, - [8062] = 8062, - [8063] = 7575, - [8064] = 6458, - [8065] = 7414, - [8066] = 6460, + [8049] = 6634, + [8050] = 6628, + [8051] = 6630, + [8052] = 8052, + [8053] = 6631, + [8054] = 6629, + [8055] = 7130, + [8056] = 7118, + [8057] = 6947, + [8058] = 6636, + [8059] = 6636, + [8060] = 6634, + [8061] = 7555, + [8062] = 6640, + [8063] = 6784, + [8064] = 6629, + [8065] = 6776, + [8066] = 6631, [8067] = 8067, - [8068] = 7575, - [8069] = 6457, - [8070] = 7414, - [8071] = 6463, - [8072] = 8072, - [8073] = 7575, - [8074] = 8074, - [8075] = 7414, - [8076] = 6428, - [8077] = 8077, - [8078] = 7414, - [8079] = 6469, - [8080] = 6431, - [8081] = 6430, - [8082] = 6075, - [8083] = 6472, - [8084] = 6471, - [8085] = 6181, - [8086] = 6939, - [8087] = 6471, - [8088] = 6277, - [8089] = 6313, - [8090] = 5915, - [8091] = 5546, - [8092] = 5087, - [8093] = 7810, - [8094] = 5974, - [8095] = 4462, - [8096] = 2493, - [8097] = 8097, - [8098] = 7391, - [8099] = 6472, - [8100] = 6430, - [8101] = 5933, - [8102] = 6469, - [8103] = 6431, - [8104] = 6457, - [8105] = 6458, - [8106] = 6428, - [8107] = 6460, - [8108] = 5897, - [8109] = 6471, - [8110] = 6463, - [8111] = 866, - [8112] = 6428, - [8113] = 6469, - [8114] = 5440, - [8115] = 5394, - [8116] = 6471, - [8117] = 5054, - [8118] = 4803, - [8119] = 4803, - [8120] = 2504, - [8121] = 6472, - [8122] = 4803, - [8123] = 5026, - [8124] = 866, - [8125] = 843, - [8126] = 6430, - [8127] = 6431, - [8128] = 8128, - [8129] = 8129, - [8130] = 8130, + [8068] = 8068, + [8069] = 6783, + [8070] = 8070, + [8071] = 6861, + [8072] = 6630, + [8073] = 6973, + [8074] = 6971, + [8075] = 6666, + [8076] = 6716, + [8077] = 7127, + [8078] = 6628, + [8079] = 7125, + [8080] = 8080, + [8081] = 8081, + [8082] = 7122, + [8083] = 7130, + [8084] = 6947, + [8085] = 8085, + [8086] = 6633, + [8087] = 7555, + [8088] = 7120, + [8089] = 7119, + [8090] = 7117, + [8091] = 7116, + [8092] = 7107, + [8093] = 6632, + [8094] = 7113, + [8095] = 7108, + [8096] = 6628, + [8097] = 6633, + [8098] = 7106, + [8099] = 7104, + [8100] = 8100, + [8101] = 6964, + [8102] = 6715, + [8103] = 7130, + [8104] = 6947, + [8105] = 7555, + [8106] = 8106, + [8107] = 6628, + [8108] = 7703, + [8109] = 8109, + [8110] = 8110, + [8111] = 8111, + [8112] = 8112, + [8113] = 8113, + [8114] = 8114, + [8115] = 8115, + [8116] = 8116, + [8117] = 8117, + [8118] = 6947, + [8119] = 7555, + [8120] = 8120, + [8121] = 6962, + [8122] = 8122, + [8123] = 8123, + [8124] = 6630, + [8125] = 6631, + [8126] = 6633, + [8127] = 8127, + [8128] = 7555, + [8129] = 7485, + [8130] = 6629, + [8131] = 8131, + [8132] = 8132, + [8133] = 6960, + [8134] = 8134, + [8135] = 5706, + [8136] = 7093, + [8137] = 8137, + [8138] = 8138, + [8139] = 6636, + [8140] = 3023, + [8141] = 8141, + [8142] = 6634, + [8143] = 8143, + [8144] = 8144, + [8145] = 8145, + [8146] = 7343, + [8147] = 6707, + [8148] = 6640, + [8149] = 8149, + [8150] = 8150, + [8151] = 8151, + [8152] = 7338, + [8153] = 7329, + [8154] = 7335, + [8155] = 6791, + [8156] = 7245, + [8157] = 7682, + [8158] = 6666, + [8159] = 6666, + [8160] = 8160, + [8161] = 6703, + [8162] = 6640, + [8163] = 6955, + [8164] = 6702, + [8165] = 6634, + [8166] = 6633, + [8167] = 8167, + [8168] = 6632, + [8169] = 7088, + [8170] = 7086, + [8171] = 7083, + [8172] = 7081, + [8173] = 7079, + [8174] = 7078, + [8175] = 7077, + [8176] = 7076, + [8177] = 7075, + [8178] = 6701, + [8179] = 6796, + [8180] = 8180, + [8181] = 6636, + [8182] = 8182, + [8183] = 8183, + [8184] = 8184, + [8185] = 8185, + [8186] = 8186, + [8187] = 8187, + [8188] = 6628, + [8189] = 8189, + [8190] = 6630, + [8191] = 8191, + [8192] = 6631, + [8193] = 8193, + [8194] = 8194, + [8195] = 6629, + [8196] = 6629, + [8197] = 8197, + [8198] = 6636, + [8199] = 6634, + [8200] = 6640, + [8201] = 8201, + [8202] = 6845, + [8203] = 6631, + [8204] = 6630, + [8205] = 6943, + [8206] = 5590, + [8207] = 8207, + [8208] = 8208, + [8209] = 6628, + [8210] = 6666, + [8211] = 6632, + [8212] = 8212, + [8213] = 7310, + [8214] = 8214, + [8215] = 8215, + [8216] = 6633, + [8217] = 7309, + [8218] = 8218, + [8219] = 6627, + [8220] = 6633, + [8221] = 6632, + [8222] = 8222, + [8223] = 8223, + [8224] = 8224, + [8225] = 7071, + [8226] = 7070, + [8227] = 7069, + [8228] = 6631, + [8229] = 6630, + [8230] = 8230, + [8231] = 8231, + [8232] = 6631, + [8233] = 8233, + [8234] = 8234, + [8235] = 6666, + [8236] = 8236, + [8237] = 6629, + [8238] = 6640, + [8239] = 6942, + [8240] = 8240, + [8241] = 6048, + [8242] = 7300, + [8243] = 8243, + [8244] = 6636, + [8245] = 6634, + [8246] = 7299, + [8247] = 6640, + [8248] = 6634, + [8249] = 6666, + [8250] = 8250, + [8251] = 7066, + [8252] = 8252, + [8253] = 8253, + [8254] = 8254, + [8255] = 8255, + [8256] = 6636, + [8257] = 6629, + [8258] = 6631, + [8259] = 8259, + [8260] = 6047, + [8261] = 7297, + [8262] = 6630, + [8263] = 7773, + [8264] = 8264, + [8265] = 7625, + [8266] = 6633, + [8267] = 7468, + [8268] = 8268, + [8269] = 8269, + [8270] = 7773, + [8271] = 8271, + [8272] = 7625, + [8273] = 6628, + [8274] = 7468, + [8275] = 6632, + [8276] = 6632, + [8277] = 7773, + [8278] = 6046, + [8279] = 7625, + [8280] = 6628, + [8281] = 7468, + [8282] = 6630, + [8283] = 8283, + [8284] = 7773, + [8285] = 5341, + [8286] = 7625, + [8287] = 6631, + [8288] = 8288, + [8289] = 7773, + [8290] = 6633, + [8291] = 7625, + [8292] = 6629, + [8293] = 8293, + [8294] = 7773, + [8295] = 8295, + [8296] = 7625, + [8297] = 6636, + [8298] = 8298, + [8299] = 7625, + [8300] = 6634, + [8301] = 6640, + [8302] = 6666, + [8303] = 6351, + [8304] = 8304, + [8305] = 6666, + [8306] = 6640, + [8307] = 6475, + [8308] = 6725, + [8309] = 6196, + [8310] = 6527, + [8311] = 6338, + [8312] = 5998, + [8313] = 6329, + [8314] = 6634, + [8315] = 8038, + [8316] = 8316, + [8317] = 6181, + [8318] = 4577, + [8319] = 6164, + [8320] = 2600, + [8321] = 6633, + [8322] = 6137, + [8323] = 6135, + [8324] = 6636, + [8325] = 6104, + [8326] = 6102, + [8327] = 853, + [8328] = 6632, + [8329] = 6084, + [8330] = 6628, + [8331] = 6630, + [8332] = 862, + [8333] = 6631, + [8334] = 6629, + [8335] = 5903, + [8336] = 5790, + [8337] = 6636, + [8338] = 2576, + [8339] = 6634, + [8340] = 6640, + [8341] = 4975, + [8342] = 4975, + [8343] = 862, + [8344] = 4975, + [8345] = 6666, + [8346] = 8346, + [8347] = 6633, + [8348] = 6632, + [8349] = 8349, + [8350] = 8350, + [8351] = 8351, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -12692,128 +13117,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [14] = {.lex_state = 2, .external_lex_state = 9}, [15] = {.lex_state = 2, .external_lex_state = 8}, [16] = {.lex_state = 2, .external_lex_state = 8}, - [17] = {.lex_state = 2, .external_lex_state = 10}, - [18] = {.lex_state = 2, .external_lex_state = 11}, - [19] = {.lex_state = 2, .external_lex_state = 12}, + [17] = {.lex_state = 2, .external_lex_state = 2}, + [18] = {.lex_state = 2, .external_lex_state = 10}, + [19] = {.lex_state = 2, .external_lex_state = 11}, [20] = {.lex_state = 2, .external_lex_state = 12}, [21] = {.lex_state = 2, .external_lex_state = 10}, - [22] = {.lex_state = 2, .external_lex_state = 10}, - [23] = {.lex_state = 2, .external_lex_state = 9}, - [24] = {.lex_state = 2, .external_lex_state = 9}, - [25] = {.lex_state = 2, .external_lex_state = 10}, + [22] = {.lex_state = 2, .external_lex_state = 11}, + [23] = {.lex_state = 2, .external_lex_state = 13}, + [24] = {.lex_state = 2, .external_lex_state = 11}, + [25] = {.lex_state = 2, .external_lex_state = 12}, [26] = {.lex_state = 2, .external_lex_state = 11}, - [27] = {.lex_state = 2, .external_lex_state = 9}, - [28] = {.lex_state = 2, .external_lex_state = 12}, + [27] = {.lex_state = 2, .external_lex_state = 10}, + [28] = {.lex_state = 2, .external_lex_state = 11}, [29] = {.lex_state = 2, .external_lex_state = 11}, - [30] = {.lex_state = 2, .external_lex_state = 13}, + [30] = {.lex_state = 2, .external_lex_state = 12}, [31] = {.lex_state = 2, .external_lex_state = 10}, [32] = {.lex_state = 2, .external_lex_state = 11}, - [33] = {.lex_state = 2, .external_lex_state = 10}, - [34] = {.lex_state = 2, .external_lex_state = 10}, - [35] = {.lex_state = 2, .external_lex_state = 12}, - [36] = {.lex_state = 2, .external_lex_state = 10}, - [37] = {.lex_state = 2, .external_lex_state = 13}, - [38] = {.lex_state = 2, .external_lex_state = 9}, - [39] = {.lex_state = 2, .external_lex_state = 12}, - [40] = {.lex_state = 2, .external_lex_state = 12}, + [33] = {.lex_state = 2, .external_lex_state = 12}, + [34] = {.lex_state = 2, .external_lex_state = 12}, + [35] = {.lex_state = 2, .external_lex_state = 11}, + [36] = {.lex_state = 2, .external_lex_state = 9}, + [37] = {.lex_state = 2, .external_lex_state = 11}, + [38] = {.lex_state = 2, .external_lex_state = 11}, + [39] = {.lex_state = 2, .external_lex_state = 11}, + [40] = {.lex_state = 2, .external_lex_state = 9}, [41] = {.lex_state = 2, .external_lex_state = 12}, - [42] = {.lex_state = 2, .external_lex_state = 10}, - [43] = {.lex_state = 2, .external_lex_state = 10}, + [42] = {.lex_state = 2, .external_lex_state = 11}, + [43] = {.lex_state = 2, .external_lex_state = 11}, [44] = {.lex_state = 2, .external_lex_state = 12}, - [45] = {.lex_state = 2, .external_lex_state = 10}, - [46] = {.lex_state = 2, .external_lex_state = 13}, - [47] = {.lex_state = 2, .external_lex_state = 10}, + [45] = {.lex_state = 2, .external_lex_state = 13}, + [46] = {.lex_state = 2, .external_lex_state = 11}, + [47] = {.lex_state = 2, .external_lex_state = 11}, [48] = {.lex_state = 2, .external_lex_state = 11}, - [49] = {.lex_state = 2, .external_lex_state = 9}, - [50] = {.lex_state = 2, .external_lex_state = 10}, + [49] = {.lex_state = 2, .external_lex_state = 10}, + [50] = {.lex_state = 2, .external_lex_state = 11}, [51] = {.lex_state = 2, .external_lex_state = 12}, - [52] = {.lex_state = 2, .external_lex_state = 13}, + [52] = {.lex_state = 2, .external_lex_state = 9}, [53] = {.lex_state = 2, .external_lex_state = 11}, - [54] = {.lex_state = 2, .external_lex_state = 10}, - [55] = {.lex_state = 2, .external_lex_state = 10}, - [56] = {.lex_state = 2, .external_lex_state = 10}, - [57] = {.lex_state = 2, .external_lex_state = 10}, - [58] = {.lex_state = 2, .external_lex_state = 10}, - [59] = {.lex_state = 2, .external_lex_state = 10}, + [54] = {.lex_state = 2, .external_lex_state = 9}, + [55] = {.lex_state = 2, .external_lex_state = 2}, + [56] = {.lex_state = 2, .external_lex_state = 11}, + [57] = {.lex_state = 2, .external_lex_state = 11}, + [58] = {.lex_state = 2, .external_lex_state = 9}, + [59] = {.lex_state = 2, .external_lex_state = 11}, [60] = {.lex_state = 2, .external_lex_state = 13}, - [61] = {.lex_state = 2, .external_lex_state = 10}, - [62] = {.lex_state = 2, .external_lex_state = 13}, - [63] = {.lex_state = 2, .external_lex_state = 2}, - [64] = {.lex_state = 2, .external_lex_state = 10}, - [65] = {.lex_state = 2, .external_lex_state = 10}, - [66] = {.lex_state = 2, .external_lex_state = 12}, - [67] = {.lex_state = 2, .external_lex_state = 12}, - [68] = {.lex_state = 2, .external_lex_state = 10}, - [69] = {.lex_state = 2, .external_lex_state = 10}, - [70] = {.lex_state = 2, .external_lex_state = 10}, - [71] = {.lex_state = 2, .external_lex_state = 2}, - [72] = {.lex_state = 2, .external_lex_state = 10}, - [73] = {.lex_state = 2, .external_lex_state = 10}, - [74] = {.lex_state = 2, .external_lex_state = 10}, - [75] = {.lex_state = 2, .external_lex_state = 9}, - [76] = {.lex_state = 2, .external_lex_state = 10}, - [77] = {.lex_state = 2, .external_lex_state = 10}, - [78] = {.lex_state = 2, .external_lex_state = 12}, - [79] = {.lex_state = 2, .external_lex_state = 10}, - [80] = {.lex_state = 2, .external_lex_state = 10}, - [81] = {.lex_state = 2, .external_lex_state = 10}, - [82] = {.lex_state = 2, .external_lex_state = 10}, - [83] = {.lex_state = 2, .external_lex_state = 10}, - [84] = {.lex_state = 2, .external_lex_state = 10}, - [85] = {.lex_state = 2, .external_lex_state = 10}, - [86] = {.lex_state = 2, .external_lex_state = 10}, - [87] = {.lex_state = 2, .external_lex_state = 10}, - [88] = {.lex_state = 2, .external_lex_state = 10}, - [89] = {.lex_state = 2, .external_lex_state = 10}, - [90] = {.lex_state = 2, .external_lex_state = 10}, - [91] = {.lex_state = 2, .external_lex_state = 10}, - [92] = {.lex_state = 2, .external_lex_state = 10}, - [93] = {.lex_state = 2, .external_lex_state = 10}, - [94] = {.lex_state = 2, .external_lex_state = 10}, - [95] = {.lex_state = 2, .external_lex_state = 10}, - [96] = {.lex_state = 2, .external_lex_state = 10}, - [97] = {.lex_state = 2, .external_lex_state = 10}, - [98] = {.lex_state = 2, .external_lex_state = 10}, - [99] = {.lex_state = 2, .external_lex_state = 10}, - [100] = {.lex_state = 2, .external_lex_state = 12}, + [61] = {.lex_state = 2, .external_lex_state = 11}, + [62] = {.lex_state = 2, .external_lex_state = 10}, + [63] = {.lex_state = 2, .external_lex_state = 11}, + [64] = {.lex_state = 2, .external_lex_state = 11}, + [65] = {.lex_state = 2, .external_lex_state = 11}, + [66] = {.lex_state = 2, .external_lex_state = 11}, + [67] = {.lex_state = 2, .external_lex_state = 11}, + [68] = {.lex_state = 2, .external_lex_state = 11}, + [69] = {.lex_state = 2, .external_lex_state = 11}, + [70] = {.lex_state = 2, .external_lex_state = 11}, + [71] = {.lex_state = 2, .external_lex_state = 11}, + [72] = {.lex_state = 2, .external_lex_state = 11}, + [73] = {.lex_state = 2, .external_lex_state = 11}, + [74] = {.lex_state = 2, .external_lex_state = 11}, + [75] = {.lex_state = 2, .external_lex_state = 13}, + [76] = {.lex_state = 2, .external_lex_state = 11}, + [77] = {.lex_state = 2, .external_lex_state = 11}, + [78] = {.lex_state = 2, .external_lex_state = 11}, + [79] = {.lex_state = 2, .external_lex_state = 11}, + [80] = {.lex_state = 2, .external_lex_state = 11}, + [81] = {.lex_state = 2, .external_lex_state = 11}, + [82] = {.lex_state = 2, .external_lex_state = 11}, + [83] = {.lex_state = 2, .external_lex_state = 11}, + [84] = {.lex_state = 2, .external_lex_state = 12}, + [85] = {.lex_state = 2, .external_lex_state = 12}, + [86] = {.lex_state = 2, .external_lex_state = 11}, + [87] = {.lex_state = 2, .external_lex_state = 11}, + [88] = {.lex_state = 2, .external_lex_state = 11}, + [89] = {.lex_state = 2, .external_lex_state = 11}, + [90] = {.lex_state = 2, .external_lex_state = 9}, + [91] = {.lex_state = 2, .external_lex_state = 11}, + [92] = {.lex_state = 2, .external_lex_state = 11}, + [93] = {.lex_state = 2, .external_lex_state = 12}, + [94] = {.lex_state = 2, .external_lex_state = 13}, + [95] = {.lex_state = 2, .external_lex_state = 13}, + [96] = {.lex_state = 2, .external_lex_state = 12}, + [97] = {.lex_state = 2, .external_lex_state = 11}, + [98] = {.lex_state = 2, .external_lex_state = 11}, + [99] = {.lex_state = 2, .external_lex_state = 11}, + [100] = {.lex_state = 2, .external_lex_state = 2}, [101] = {.lex_state = 2, .external_lex_state = 14}, [102] = {.lex_state = 2, .external_lex_state = 14}, - [103] = {.lex_state = 2, .external_lex_state = 12}, + [103] = {.lex_state = 2, .external_lex_state = 14}, [104] = {.lex_state = 2, .external_lex_state = 14}, - [105] = {.lex_state = 2, .external_lex_state = 14}, - [106] = {.lex_state = 2, .external_lex_state = 2}, + [105] = {.lex_state = 2, .external_lex_state = 12}, + [106] = {.lex_state = 2, .external_lex_state = 14}, [107] = {.lex_state = 2, .external_lex_state = 12}, - [108] = {.lex_state = 2, .external_lex_state = 2}, - [109] = {.lex_state = 2, .external_lex_state = 14}, - [110] = {.lex_state = 2, .external_lex_state = 14}, + [108] = {.lex_state = 2, .external_lex_state = 14}, + [109] = {.lex_state = 2, .external_lex_state = 12}, + [110] = {.lex_state = 2, .external_lex_state = 12}, [111] = {.lex_state = 2, .external_lex_state = 12}, - [112] = {.lex_state = 2, .external_lex_state = 12}, - [113] = {.lex_state = 2, .external_lex_state = 14}, + [112] = {.lex_state = 2, .external_lex_state = 14}, + [113] = {.lex_state = 2, .external_lex_state = 12}, [114] = {.lex_state = 2, .external_lex_state = 12}, - [115] = {.lex_state = 2, .external_lex_state = 12}, - [116] = {.lex_state = 2, .external_lex_state = 12}, - [117] = {.lex_state = 2, .external_lex_state = 14}, + [115] = {.lex_state = 2, .external_lex_state = 14}, + [116] = {.lex_state = 2, .external_lex_state = 14}, + [117] = {.lex_state = 2, .external_lex_state = 2}, [118] = {.lex_state = 2, .external_lex_state = 14}, [119] = {.lex_state = 2, .external_lex_state = 12}, - [120] = {.lex_state = 2, .external_lex_state = 14}, + [120] = {.lex_state = 2, .external_lex_state = 12}, [121] = {.lex_state = 2, .external_lex_state = 12}, - [122] = {.lex_state = 2, .external_lex_state = 14}, - [123] = {.lex_state = 2, .external_lex_state = 14}, - [124] = {.lex_state = 2, .external_lex_state = 12}, - [125] = {.lex_state = 2, .external_lex_state = 12}, - [126] = {.lex_state = 2, .external_lex_state = 14}, + [122] = {.lex_state = 2, .external_lex_state = 12}, + [123] = {.lex_state = 2, .external_lex_state = 12}, + [124] = {.lex_state = 2, .external_lex_state = 14}, + [125] = {.lex_state = 2, .external_lex_state = 14}, + [126] = {.lex_state = 2, .external_lex_state = 15}, [127] = {.lex_state = 2, .external_lex_state = 15}, [128] = {.lex_state = 2, .external_lex_state = 15}, - [129] = {.lex_state = 2, .external_lex_state = 14}, + [129] = {.lex_state = 2, .external_lex_state = 15}, [130] = {.lex_state = 2, .external_lex_state = 15}, [131] = {.lex_state = 2, .external_lex_state = 15}, [132] = {.lex_state = 2, .external_lex_state = 15}, - [133] = {.lex_state = 2, .external_lex_state = 14}, + [133] = {.lex_state = 2, .external_lex_state = 15}, [134] = {.lex_state = 2, .external_lex_state = 15}, [135] = {.lex_state = 2, .external_lex_state = 15}, [136] = {.lex_state = 2, .external_lex_state = 15}, [137] = {.lex_state = 2, .external_lex_state = 15}, - [138] = {.lex_state = 2, .external_lex_state = 15}, + [138] = {.lex_state = 2, .external_lex_state = 14}, [139] = {.lex_state = 2, .external_lex_state = 15}, [140] = {.lex_state = 2, .external_lex_state = 15}, [141] = {.lex_state = 2, .external_lex_state = 15}, @@ -12823,7 +13248,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [145] = {.lex_state = 2, .external_lex_state = 15}, [146] = {.lex_state = 2, .external_lex_state = 15}, [147] = {.lex_state = 2, .external_lex_state = 15}, - [148] = {.lex_state = 2, .external_lex_state = 14}, + [148] = {.lex_state = 2, .external_lex_state = 15}, [149] = {.lex_state = 2, .external_lex_state = 15}, [150] = {.lex_state = 2, .external_lex_state = 15}, [151] = {.lex_state = 2, .external_lex_state = 15}, @@ -12831,63 +13256,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [153] = {.lex_state = 2, .external_lex_state = 15}, [154] = {.lex_state = 2, .external_lex_state = 15}, [155] = {.lex_state = 2, .external_lex_state = 15}, - [156] = {.lex_state = 2, .external_lex_state = 15}, - [157] = {.lex_state = 2, .external_lex_state = 15}, + [156] = {.lex_state = 2, .external_lex_state = 14}, + [157] = {.lex_state = 2, .external_lex_state = 14}, [158] = {.lex_state = 2, .external_lex_state = 15}, [159] = {.lex_state = 2, .external_lex_state = 15}, [160] = {.lex_state = 2, .external_lex_state = 15}, [161] = {.lex_state = 2, .external_lex_state = 15}, - [162] = {.lex_state = 2, .external_lex_state = 15}, + [162] = {.lex_state = 2, .external_lex_state = 14}, [163] = {.lex_state = 2, .external_lex_state = 15}, [164] = {.lex_state = 2, .external_lex_state = 15}, [165] = {.lex_state = 2, .external_lex_state = 15}, [166] = {.lex_state = 2, .external_lex_state = 15}, - [167] = {.lex_state = 2, .external_lex_state = 15}, - [168] = {.lex_state = 2, .external_lex_state = 14}, + [167] = {.lex_state = 2, .external_lex_state = 14}, + [168] = {.lex_state = 2, .external_lex_state = 15}, [169] = {.lex_state = 2, .external_lex_state = 15}, [170] = {.lex_state = 2, .external_lex_state = 15}, [171] = {.lex_state = 2, .external_lex_state = 15}, [172] = {.lex_state = 2, .external_lex_state = 15}, - [173] = {.lex_state = 2, .external_lex_state = 15}, + [173] = {.lex_state = 2, .external_lex_state = 14}, [174] = {.lex_state = 2, .external_lex_state = 15}, - [175] = {.lex_state = 2, .external_lex_state = 15}, + [175] = {.lex_state = 2, .external_lex_state = 14}, [176] = {.lex_state = 2, .external_lex_state = 15}, - [177] = {.lex_state = 2, .external_lex_state = 15}, + [177] = {.lex_state = 2, .external_lex_state = 14}, [178] = {.lex_state = 2, .external_lex_state = 15}, [179] = {.lex_state = 2, .external_lex_state = 15}, [180] = {.lex_state = 2, .external_lex_state = 15}, [181] = {.lex_state = 2, .external_lex_state = 15}, [182] = {.lex_state = 2, .external_lex_state = 15}, [183] = {.lex_state = 2, .external_lex_state = 15}, - [184] = {.lex_state = 2, .external_lex_state = 10}, + [184] = {.lex_state = 2, .external_lex_state = 14}, [185] = {.lex_state = 2, .external_lex_state = 15}, - [186] = {.lex_state = 2, .external_lex_state = 14}, + [186] = {.lex_state = 2, .external_lex_state = 15}, [187] = {.lex_state = 2, .external_lex_state = 15}, [188] = {.lex_state = 2, .external_lex_state = 15}, [189] = {.lex_state = 2, .external_lex_state = 15}, [190] = {.lex_state = 2, .external_lex_state = 15}, [191] = {.lex_state = 2, .external_lex_state = 15}, - [192] = {.lex_state = 2, .external_lex_state = 14}, + [192] = {.lex_state = 2, .external_lex_state = 15}, [193] = {.lex_state = 2, .external_lex_state = 15}, [194] = {.lex_state = 2, .external_lex_state = 15}, [195] = {.lex_state = 2, .external_lex_state = 15}, [196] = {.lex_state = 2, .external_lex_state = 15}, [197] = {.lex_state = 2, .external_lex_state = 15}, [198] = {.lex_state = 2, .external_lex_state = 15}, - [199] = {.lex_state = 2, .external_lex_state = 14}, - [200] = {.lex_state = 2, .external_lex_state = 15}, + [199] = {.lex_state = 2, .external_lex_state = 15}, + [200] = {.lex_state = 2, .external_lex_state = 11}, [201] = {.lex_state = 2, .external_lex_state = 15}, - [202] = {.lex_state = 2, .external_lex_state = 14}, - [203] = {.lex_state = 2, .external_lex_state = 15}, - [204] = {.lex_state = 2, .external_lex_state = 14}, - [205] = {.lex_state = 2, .external_lex_state = 15}, + [202] = {.lex_state = 2, .external_lex_state = 15}, + [203] = {.lex_state = 2, .external_lex_state = 14}, + [204] = {.lex_state = 2, .external_lex_state = 15}, + [205] = {.lex_state = 2, .external_lex_state = 14}, [206] = {.lex_state = 2, .external_lex_state = 15}, [207] = {.lex_state = 2, .external_lex_state = 15}, [208] = {.lex_state = 2, .external_lex_state = 15}, [209] = {.lex_state = 2, .external_lex_state = 14}, [210] = {.lex_state = 2, .external_lex_state = 15}, [211] = {.lex_state = 2, .external_lex_state = 15}, - [212] = {.lex_state = 2, .external_lex_state = 14}, + [212] = {.lex_state = 2, .external_lex_state = 15}, [213] = {.lex_state = 2, .external_lex_state = 15}, [214] = {.lex_state = 2, .external_lex_state = 15}, [215] = {.lex_state = 2, .external_lex_state = 15}, @@ -12898,112 +13323,112 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 2, .external_lex_state = 15}, [221] = {.lex_state = 2, .external_lex_state = 15}, [222] = {.lex_state = 2, .external_lex_state = 15}, - [223] = {.lex_state = 2, .external_lex_state = 16}, - [224] = {.lex_state = 2, .external_lex_state = 15}, + [223] = {.lex_state = 2, .external_lex_state = 15}, + [224] = {.lex_state = 2, .external_lex_state = 16}, [225] = {.lex_state = 2, .external_lex_state = 17}, [226] = {.lex_state = 2, .external_lex_state = 18}, - [227] = {.lex_state = 2, .external_lex_state = 19}, - [228] = {.lex_state = 2, .external_lex_state = 18}, + [227] = {.lex_state = 2, .external_lex_state = 18}, + [228] = {.lex_state = 2, .external_lex_state = 19}, [229] = {.lex_state = 2, .external_lex_state = 19}, [230] = {.lex_state = 2, .external_lex_state = 19}, - [231] = {.lex_state = 2, .external_lex_state = 19}, - [232] = {.lex_state = 2, .external_lex_state = 18}, + [231] = {.lex_state = 2, .external_lex_state = 18}, + [232] = {.lex_state = 2, .external_lex_state = 19}, [233] = {.lex_state = 2, .external_lex_state = 18}, - [234] = {.lex_state = 2, .external_lex_state = 19}, + [234] = {.lex_state = 2, .external_lex_state = 18}, [235] = {.lex_state = 2, .external_lex_state = 19}, [236] = {.lex_state = 2, .external_lex_state = 18}, - [237] = {.lex_state = 2, .external_lex_state = 18}, - [238] = {.lex_state = 2, .external_lex_state = 15}, + [237] = {.lex_state = 2, .external_lex_state = 19}, + [238] = {.lex_state = 2, .external_lex_state = 11}, [239] = {.lex_state = 2, .external_lex_state = 20}, - [240] = {.lex_state = 2, .external_lex_state = 10}, - [241] = {.lex_state = 2, .external_lex_state = 10}, - [242] = {.lex_state = 2, .external_lex_state = 20}, - [243] = {.lex_state = 2, .external_lex_state = 21}, - [244] = {.lex_state = 2, .external_lex_state = 20}, - [245] = {.lex_state = 2, .external_lex_state = 10}, - [246] = {.lex_state = 2, .external_lex_state = 20}, - [247] = {.lex_state = 2, .external_lex_state = 10}, - [248] = {.lex_state = 2, .external_lex_state = 20}, - [249] = {.lex_state = 2, .external_lex_state = 10}, - [250] = {.lex_state = 2, .external_lex_state = 10}, - [251] = {.lex_state = 2, .external_lex_state = 10}, - [252] = {.lex_state = 2, .external_lex_state = 10}, - [253] = {.lex_state = 2, .external_lex_state = 10}, - [254] = {.lex_state = 2, .external_lex_state = 10}, - [255] = {.lex_state = 2, .external_lex_state = 20}, - [256] = {.lex_state = 2, .external_lex_state = 21}, - [257] = {.lex_state = 2, .external_lex_state = 20}, - [258] = {.lex_state = 2, .external_lex_state = 10}, - [259] = {.lex_state = 2, .external_lex_state = 10}, - [260] = {.lex_state = 2, .external_lex_state = 10}, + [240] = {.lex_state = 2, .external_lex_state = 11}, + [241] = {.lex_state = 2, .external_lex_state = 11}, + [242] = {.lex_state = 2, .external_lex_state = 11}, + [243] = {.lex_state = 2, .external_lex_state = 11}, + [244] = {.lex_state = 2, .external_lex_state = 11}, + [245] = {.lex_state = 2, .external_lex_state = 11}, + [246] = {.lex_state = 2, .external_lex_state = 11}, + [247] = {.lex_state = 2, .external_lex_state = 11}, + [248] = {.lex_state = 2, .external_lex_state = 11}, + [249] = {.lex_state = 2, .external_lex_state = 11}, + [250] = {.lex_state = 2, .external_lex_state = 11}, + [251] = {.lex_state = 2, .external_lex_state = 11}, + [252] = {.lex_state = 2, .external_lex_state = 20}, + [253] = {.lex_state = 2, .external_lex_state = 11}, + [254] = {.lex_state = 2, .external_lex_state = 11}, + [255] = {.lex_state = 2, .external_lex_state = 11}, + [256] = {.lex_state = 2, .external_lex_state = 11}, + [257] = {.lex_state = 2, .external_lex_state = 11}, + [258] = {.lex_state = 2, .external_lex_state = 11}, + [259] = {.lex_state = 2, .external_lex_state = 20}, + [260] = {.lex_state = 2, .external_lex_state = 11}, [261] = {.lex_state = 2, .external_lex_state = 20}, - [262] = {.lex_state = 2, .external_lex_state = 15}, - [263] = {.lex_state = 2, .external_lex_state = 10}, - [264] = {.lex_state = 2, .external_lex_state = 20}, - [265] = {.lex_state = 2, .external_lex_state = 10}, - [266] = {.lex_state = 2, .external_lex_state = 10}, - [267] = {.lex_state = 2, .external_lex_state = 10}, + [262] = {.lex_state = 2, .external_lex_state = 11}, + [263] = {.lex_state = 2, .external_lex_state = 20}, + [264] = {.lex_state = 2, .external_lex_state = 11}, + [265] = {.lex_state = 2, .external_lex_state = 21}, + [266] = {.lex_state = 2, .external_lex_state = 11}, + [267] = {.lex_state = 2, .external_lex_state = 15}, [268] = {.lex_state = 2, .external_lex_state = 20}, - [269] = {.lex_state = 2, .external_lex_state = 21}, - [270] = {.lex_state = 2, .external_lex_state = 10}, - [271] = {.lex_state = 2, .external_lex_state = 10}, - [272] = {.lex_state = 2, .external_lex_state = 10}, + [269] = {.lex_state = 2, .external_lex_state = 11}, + [270] = {.lex_state = 2, .external_lex_state = 11}, + [271] = {.lex_state = 2, .external_lex_state = 20}, + [272] = {.lex_state = 2, .external_lex_state = 11}, [273] = {.lex_state = 2, .external_lex_state = 20}, - [274] = {.lex_state = 2, .external_lex_state = 10}, - [275] = {.lex_state = 2, .external_lex_state = 10}, + [274] = {.lex_state = 2, .external_lex_state = 21}, + [275] = {.lex_state = 2, .external_lex_state = 11}, [276] = {.lex_state = 2, .external_lex_state = 20}, - [277] = {.lex_state = 2, .external_lex_state = 10}, - [278] = {.lex_state = 2, .external_lex_state = 10}, - [279] = {.lex_state = 2, .external_lex_state = 10}, - [280] = {.lex_state = 2, .external_lex_state = 10}, - [281] = {.lex_state = 2, .external_lex_state = 20}, - [282] = {.lex_state = 2, .external_lex_state = 10}, - [283] = {.lex_state = 2, .external_lex_state = 10}, - [284] = {.lex_state = 2, .external_lex_state = 10}, - [285] = {.lex_state = 2, .external_lex_state = 10}, - [286] = {.lex_state = 2, .external_lex_state = 10}, - [287] = {.lex_state = 2, .external_lex_state = 20}, - [288] = {.lex_state = 2, .external_lex_state = 10}, - [289] = {.lex_state = 2, .external_lex_state = 10}, - [290] = {.lex_state = 2, .external_lex_state = 10}, - [291] = {.lex_state = 2, .external_lex_state = 21}, - [292] = {.lex_state = 2, .external_lex_state = 10}, - [293] = {.lex_state = 2, .external_lex_state = 20}, - [294] = {.lex_state = 2, .external_lex_state = 10}, - [295] = {.lex_state = 2, .external_lex_state = 20}, - [296] = {.lex_state = 2, .external_lex_state = 10}, - [297] = {.lex_state = 2, .external_lex_state = 10}, - [298] = {.lex_state = 2, .external_lex_state = 10}, - [299] = {.lex_state = 2, .external_lex_state = 10}, + [277] = {.lex_state = 2, .external_lex_state = 20}, + [278] = {.lex_state = 2, .external_lex_state = 11}, + [279] = {.lex_state = 2, .external_lex_state = 11}, + [280] = {.lex_state = 2, .external_lex_state = 21}, + [281] = {.lex_state = 2, .external_lex_state = 11}, + [282] = {.lex_state = 2, .external_lex_state = 11}, + [283] = {.lex_state = 2, .external_lex_state = 11}, + [284] = {.lex_state = 2, .external_lex_state = 20}, + [285] = {.lex_state = 2, .external_lex_state = 11}, + [286] = {.lex_state = 2, .external_lex_state = 20}, + [287] = {.lex_state = 2, .external_lex_state = 11}, + [288] = {.lex_state = 2, .external_lex_state = 11}, + [289] = {.lex_state = 2, .external_lex_state = 11}, + [290] = {.lex_state = 2, .external_lex_state = 20}, + [291] = {.lex_state = 2, .external_lex_state = 11}, + [292] = {.lex_state = 2, .external_lex_state = 20}, + [293] = {.lex_state = 2, .external_lex_state = 11}, + [294] = {.lex_state = 2, .external_lex_state = 11}, + [295] = {.lex_state = 2, .external_lex_state = 11}, + [296] = {.lex_state = 2, .external_lex_state = 11}, + [297] = {.lex_state = 2, .external_lex_state = 21}, + [298] = {.lex_state = 2, .external_lex_state = 11}, + [299] = {.lex_state = 2, .external_lex_state = 11}, [300] = {.lex_state = 2, .external_lex_state = 20}, - [301] = {.lex_state = 2, .external_lex_state = 20}, - [302] = {.lex_state = 2, .external_lex_state = 21}, - [303] = {.lex_state = 2, .external_lex_state = 10}, - [304] = {.lex_state = 2, .external_lex_state = 10}, - [305] = {.lex_state = 2, .external_lex_state = 20}, - [306] = {.lex_state = 2, .external_lex_state = 10}, - [307] = {.lex_state = 2, .external_lex_state = 10}, - [308] = {.lex_state = 2, .external_lex_state = 10}, - [309] = {.lex_state = 2, .external_lex_state = 10}, - [310] = {.lex_state = 2, .external_lex_state = 10}, - [311] = {.lex_state = 2, .external_lex_state = 21}, - [312] = {.lex_state = 2, .external_lex_state = 10}, - [313] = {.lex_state = 2, .external_lex_state = 20}, - [314] = {.lex_state = 2, .external_lex_state = 10}, - [315] = {.lex_state = 2, .external_lex_state = 20}, - [316] = {.lex_state = 2, .external_lex_state = 10}, - [317] = {.lex_state = 2, .external_lex_state = 10}, - [318] = {.lex_state = 2, .external_lex_state = 10}, - [319] = {.lex_state = 2, .external_lex_state = 15}, - [320] = {.lex_state = 2, .external_lex_state = 10}, - [321] = {.lex_state = 2, .external_lex_state = 10}, - [322] = {.lex_state = 2, .external_lex_state = 10}, - [323] = {.lex_state = 2, .external_lex_state = 10}, - [324] = {.lex_state = 2, .external_lex_state = 10}, - [325] = {.lex_state = 2, .external_lex_state = 20}, + [301] = {.lex_state = 2, .external_lex_state = 15}, + [302] = {.lex_state = 2, .external_lex_state = 20}, + [303] = {.lex_state = 2, .external_lex_state = 11}, + [304] = {.lex_state = 2, .external_lex_state = 15}, + [305] = {.lex_state = 2, .external_lex_state = 11}, + [306] = {.lex_state = 2, .external_lex_state = 20}, + [307] = {.lex_state = 2, .external_lex_state = 20}, + [308] = {.lex_state = 2, .external_lex_state = 21}, + [309] = {.lex_state = 2, .external_lex_state = 11}, + [310] = {.lex_state = 2, .external_lex_state = 20}, + [311] = {.lex_state = 2, .external_lex_state = 11}, + [312] = {.lex_state = 2, .external_lex_state = 11}, + [313] = {.lex_state = 2, .external_lex_state = 11}, + [314] = {.lex_state = 2, .external_lex_state = 11}, + [315] = {.lex_state = 2, .external_lex_state = 11}, + [316] = {.lex_state = 2, .external_lex_state = 11}, + [317] = {.lex_state = 2, .external_lex_state = 20}, + [318] = {.lex_state = 2, .external_lex_state = 11}, + [319] = {.lex_state = 2, .external_lex_state = 11}, + [320] = {.lex_state = 2, .external_lex_state = 11}, + [321] = {.lex_state = 2, .external_lex_state = 20}, + [322] = {.lex_state = 2, .external_lex_state = 11}, + [323] = {.lex_state = 2, .external_lex_state = 20}, + [324] = {.lex_state = 2, .external_lex_state = 21}, + [325] = {.lex_state = 2, .external_lex_state = 11}, [326] = {.lex_state = 2, .external_lex_state = 20}, [327] = {.lex_state = 2, .external_lex_state = 20}, - [328] = {.lex_state = 2, .external_lex_state = 10}, + [328] = {.lex_state = 2, .external_lex_state = 20}, [329] = {.lex_state = 2, .external_lex_state = 20}, [330] = {.lex_state = 2, .external_lex_state = 20}, [331] = {.lex_state = 2, .external_lex_state = 20}, @@ -13019,7 +13444,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [341] = {.lex_state = 2, .external_lex_state = 20}, [342] = {.lex_state = 2, .external_lex_state = 20}, [343] = {.lex_state = 2, .external_lex_state = 20}, - [344] = {.lex_state = 2, .external_lex_state = 20}, + [344] = {.lex_state = 2, .external_lex_state = 11}, [345] = {.lex_state = 2, .external_lex_state = 20}, [346] = {.lex_state = 2, .external_lex_state = 20}, [347] = {.lex_state = 2, .external_lex_state = 20}, @@ -13029,13 +13454,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [351] = {.lex_state = 2, .external_lex_state = 20}, [352] = {.lex_state = 2, .external_lex_state = 20}, [353] = {.lex_state = 2, .external_lex_state = 20}, - [354] = {.lex_state = 2, .external_lex_state = 20}, - [355] = {.lex_state = 2, .external_lex_state = 20}, - [356] = {.lex_state = 2, .external_lex_state = 22}, + [354] = {.lex_state = 2, .external_lex_state = 22}, + [355] = {.lex_state = 2, .external_lex_state = 22}, + [356] = {.lex_state = 2, .external_lex_state = 20}, [357] = {.lex_state = 2, .external_lex_state = 20}, [358] = {.lex_state = 2, .external_lex_state = 20}, [359] = {.lex_state = 2, .external_lex_state = 20}, - [360] = {.lex_state = 2, .external_lex_state = 22}, + [360] = {.lex_state = 2, .external_lex_state = 20}, [361] = {.lex_state = 2, .external_lex_state = 20}, [362] = {.lex_state = 2, .external_lex_state = 20}, [363] = {.lex_state = 2, .external_lex_state = 20}, @@ -13043,7 +13468,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [365] = {.lex_state = 2, .external_lex_state = 20}, [366] = {.lex_state = 2, .external_lex_state = 22}, [367] = {.lex_state = 2, .external_lex_state = 22}, - [368] = {.lex_state = 2, .external_lex_state = 22}, + [368] = {.lex_state = 2, .external_lex_state = 20}, [369] = {.lex_state = 2, .external_lex_state = 22}, [370] = {.lex_state = 2, .external_lex_state = 22}, [371] = {.lex_state = 2, .external_lex_state = 22}, @@ -13058,7 +13483,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [380] = {.lex_state = 2, .external_lex_state = 22}, [381] = {.lex_state = 2, .external_lex_state = 22}, [382] = {.lex_state = 2, .external_lex_state = 22}, - [383] = {.lex_state = 2, .external_lex_state = 20}, + [383] = {.lex_state = 2, .external_lex_state = 22}, [384] = {.lex_state = 2, .external_lex_state = 22}, [385] = {.lex_state = 2, .external_lex_state = 22}, [386] = {.lex_state = 2, .external_lex_state = 22}, @@ -13070,14 +13495,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [392] = {.lex_state = 2, .external_lex_state = 22}, [393] = {.lex_state = 2, .external_lex_state = 22}, [394] = {.lex_state = 2, .external_lex_state = 22}, - [395] = {.lex_state = 0, .external_lex_state = 23}, - [396] = {.lex_state = 2, .external_lex_state = 22}, + [395] = {.lex_state = 2, .external_lex_state = 22}, + [396] = {.lex_state = 0, .external_lex_state = 23}, [397] = {.lex_state = 2, .external_lex_state = 22}, [398] = {.lex_state = 2, .external_lex_state = 22}, [399] = {.lex_state = 0, .external_lex_state = 23}, - [400] = {.lex_state = 0, .external_lex_state = 23}, + [400] = {.lex_state = 2, .external_lex_state = 22}, [401] = {.lex_state = 2, .external_lex_state = 22}, - [402] = {.lex_state = 2, .external_lex_state = 22}, + [402] = {.lex_state = 0, .external_lex_state = 23}, [403] = {.lex_state = 2, .external_lex_state = 22}, [404] = {.lex_state = 2, .external_lex_state = 22}, [405] = {.lex_state = 2, .external_lex_state = 22}, @@ -13397,3269 +13822,3269 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [719] = {.lex_state = 2, .external_lex_state = 22}, [720] = {.lex_state = 2, .external_lex_state = 22}, [721] = {.lex_state = 0, .external_lex_state = 23}, - [722] = {.lex_state = 0, .external_lex_state = 23}, + [722] = {.lex_state = 1, .external_lex_state = 24}, [723] = {.lex_state = 0, .external_lex_state = 23}, [724] = {.lex_state = 1, .external_lex_state = 24}, [725] = {.lex_state = 1, .external_lex_state = 24}, - [726] = {.lex_state = 1, .external_lex_state = 24}, + [726] = {.lex_state = 0, .external_lex_state = 23}, [727] = {.lex_state = 0, .external_lex_state = 23}, [728] = {.lex_state = 1, .external_lex_state = 25}, [729] = {.lex_state = 1, .external_lex_state = 25}, [730] = {.lex_state = 1, .external_lex_state = 25}, [731] = {.lex_state = 1, .external_lex_state = 26}, - [732] = {.lex_state = 1, .external_lex_state = 26}, + [732] = {.lex_state = 1, .external_lex_state = 27}, [733] = {.lex_state = 1, .external_lex_state = 27}, [734] = {.lex_state = 1, .external_lex_state = 26}, [735] = {.lex_state = 1, .external_lex_state = 27}, - [736] = {.lex_state = 1, .external_lex_state = 27}, + [736] = {.lex_state = 1, .external_lex_state = 26}, [737] = {.lex_state = 1, .external_lex_state = 28}, [738] = {.lex_state = 1, .external_lex_state = 29}, - [739] = {.lex_state = 2, .external_lex_state = 2}, + [739] = {.lex_state = 0, .external_lex_state = 30}, [740] = {.lex_state = 0, .external_lex_state = 30}, - [741] = {.lex_state = 1, .external_lex_state = 28}, - [742] = {.lex_state = 1, .external_lex_state = 28}, - [743] = {.lex_state = 1, .external_lex_state = 29}, - [744] = {.lex_state = 1, .external_lex_state = 31}, - [745] = {.lex_state = 0, .external_lex_state = 30}, - [746] = {.lex_state = 0, .external_lex_state = 30}, - [747] = {.lex_state = 1, .external_lex_state = 31}, - [748] = {.lex_state = 1, .external_lex_state = 31}, + [741] = {.lex_state = 2, .external_lex_state = 2}, + [742] = {.lex_state = 1, .external_lex_state = 31}, + [743] = {.lex_state = 1, .external_lex_state = 28}, + [744] = {.lex_state = 1, .external_lex_state = 28}, + [745] = {.lex_state = 1, .external_lex_state = 31}, + [746] = {.lex_state = 1, .external_lex_state = 31}, + [747] = {.lex_state = 1, .external_lex_state = 29}, + [748] = {.lex_state = 0, .external_lex_state = 30}, [749] = {.lex_state = 1, .external_lex_state = 29}, [750] = {.lex_state = 1, .external_lex_state = 32}, - [751] = {.lex_state = 1, .external_lex_state = 32}, - [752] = {.lex_state = 1, .external_lex_state = 33}, + [751] = {.lex_state = 1, .external_lex_state = 33}, + [752] = {.lex_state = 1, .external_lex_state = 32}, [753] = {.lex_state = 1, .external_lex_state = 32}, [754] = {.lex_state = 1, .external_lex_state = 33}, [755] = {.lex_state = 1, .external_lex_state = 33}, [756] = {.lex_state = 0, .external_lex_state = 34}, - [757] = {.lex_state = 0, .external_lex_state = 34}, - [758] = {.lex_state = 0, .external_lex_state = 34}, - [759] = {.lex_state = 0, .external_lex_state = 34}, - [760] = {.lex_state = 1, .external_lex_state = 35}, - [761] = {.lex_state = 1, .external_lex_state = 24}, + [757] = {.lex_state = 1, .external_lex_state = 35}, + [758] = {.lex_state = 1, .external_lex_state = 24}, + [759] = {.lex_state = 1, .external_lex_state = 35}, + [760] = {.lex_state = 0, .external_lex_state = 34}, + [761] = {.lex_state = 1, .external_lex_state = 36}, [762] = {.lex_state = 1, .external_lex_state = 36}, - [763] = {.lex_state = 0, .external_lex_state = 34}, - [764] = {.lex_state = 1, .external_lex_state = 37}, - [765] = {.lex_state = 1, .external_lex_state = 35}, - [766] = {.lex_state = 1, .external_lex_state = 24}, + [763] = {.lex_state = 1, .external_lex_state = 37}, + [764] = {.lex_state = 0, .external_lex_state = 34}, + [765] = {.lex_state = 1, .external_lex_state = 24}, + [766] = {.lex_state = 0, .external_lex_state = 34}, [767] = {.lex_state = 1, .external_lex_state = 38}, [768] = {.lex_state = 1, .external_lex_state = 39}, - [769] = {.lex_state = 1, .external_lex_state = 36}, - [770] = {.lex_state = 1, .external_lex_state = 36}, - [771] = {.lex_state = 1, .external_lex_state = 35}, - [772] = {.lex_state = 1, .external_lex_state = 39}, + [769] = {.lex_state = 1, .external_lex_state = 39}, + [770] = {.lex_state = 1, .external_lex_state = 39}, + [771] = {.lex_state = 0, .external_lex_state = 34}, + [772] = {.lex_state = 0, .external_lex_state = 34}, [773] = {.lex_state = 0, .external_lex_state = 34}, [774] = {.lex_state = 1, .external_lex_state = 37}, - [775] = {.lex_state = 0, .external_lex_state = 34}, - [776] = {.lex_state = 1, .external_lex_state = 38}, - [777] = {.lex_state = 1, .external_lex_state = 39}, - [778] = {.lex_state = 1, .external_lex_state = 37}, + [775] = {.lex_state = 1, .external_lex_state = 35}, + [776] = {.lex_state = 1, .external_lex_state = 37}, + [777] = {.lex_state = 1, .external_lex_state = 38}, + [778] = {.lex_state = 1, .external_lex_state = 36}, [779] = {.lex_state = 1, .external_lex_state = 38}, [780] = {.lex_state = 1, .external_lex_state = 40}, [781] = {.lex_state = 1, .external_lex_state = 41}, - [782] = {.lex_state = 1, .external_lex_state = 42}, - [783] = {.lex_state = 1, .external_lex_state = 42}, - [784] = {.lex_state = 1, .external_lex_state = 43}, - [785] = {.lex_state = 1, .external_lex_state = 43}, - [786] = {.lex_state = 0, .external_lex_state = 44}, - [787] = {.lex_state = 1, .external_lex_state = 40}, - [788] = {.lex_state = 1, .external_lex_state = 45}, - [789] = {.lex_state = 1, .external_lex_state = 45}, + [782] = {.lex_state = 0, .external_lex_state = 42}, + [783] = {.lex_state = 1, .external_lex_state = 43}, + [784] = {.lex_state = 1, .external_lex_state = 41}, + [785] = {.lex_state = 1, .external_lex_state = 44}, + [786] = {.lex_state = 1, .external_lex_state = 45}, + [787] = {.lex_state = 1, .external_lex_state = 45}, + [788] = {.lex_state = 1, .external_lex_state = 44}, + [789] = {.lex_state = 1, .external_lex_state = 40}, [790] = {.lex_state = 1, .external_lex_state = 43}, [791] = {.lex_state = 1, .external_lex_state = 45}, - [792] = {.lex_state = 1, .external_lex_state = 42}, - [793] = {.lex_state = 1, .external_lex_state = 40}, + [792] = {.lex_state = 1, .external_lex_state = 44}, + [793] = {.lex_state = 1, .external_lex_state = 43}, [794] = {.lex_state = 1, .external_lex_state = 41}, - [795] = {.lex_state = 1, .external_lex_state = 41}, - [796] = {.lex_state = 0, .external_lex_state = 46}, - [797] = {.lex_state = 0, .external_lex_state = 47}, - [798] = {.lex_state = 0, .external_lex_state = 47}, - [799] = {.lex_state = 1, .external_lex_state = 48}, + [795] = {.lex_state = 1, .external_lex_state = 40}, + [796] = {.lex_state = 1, .external_lex_state = 24}, + [797] = {.lex_state = 0, .external_lex_state = 46}, + [798] = {.lex_state = 0, .external_lex_state = 46}, + [799] = {.lex_state = 1, .external_lex_state = 47}, [800] = {.lex_state = 0, .external_lex_state = 46}, - [801] = {.lex_state = 1, .external_lex_state = 49}, - [802] = {.lex_state = 0, .external_lex_state = 47}, - [803] = {.lex_state = 1, .external_lex_state = 26}, - [804] = {.lex_state = 1, .external_lex_state = 26}, - [805] = {.lex_state = 0, .external_lex_state = 47}, - [806] = {.lex_state = 1, .external_lex_state = 49}, - [807] = {.lex_state = 0, .external_lex_state = 47}, - [808] = {.lex_state = 1, .external_lex_state = 50}, - [809] = {.lex_state = 1, .external_lex_state = 50}, - [810] = {.lex_state = 0, .external_lex_state = 47}, - [811] = {.lex_state = 0, .external_lex_state = 47}, - [812] = {.lex_state = 0, .external_lex_state = 47}, - [813] = {.lex_state = 0, .external_lex_state = 47}, - [814] = {.lex_state = 0, .external_lex_state = 47}, - [815] = {.lex_state = 1, .external_lex_state = 24}, + [801] = {.lex_state = 1, .external_lex_state = 48}, + [802] = {.lex_state = 1, .external_lex_state = 26}, + [803] = {.lex_state = 1, .external_lex_state = 49}, + [804] = {.lex_state = 0, .external_lex_state = 46}, + [805] = {.lex_state = 0, .external_lex_state = 46}, + [806] = {.lex_state = 0, .external_lex_state = 46}, + [807] = {.lex_state = 0, .external_lex_state = 46}, + [808] = {.lex_state = 0, .external_lex_state = 50}, + [809] = {.lex_state = 0, .external_lex_state = 46}, + [810] = {.lex_state = 0, .external_lex_state = 46}, + [811] = {.lex_state = 0, .external_lex_state = 50}, + [812] = {.lex_state = 1, .external_lex_state = 51}, + [813] = {.lex_state = 1, .external_lex_state = 51}, + [814] = {.lex_state = 1, .external_lex_state = 49}, + [815] = {.lex_state = 1, .external_lex_state = 52}, [816] = {.lex_state = 0, .external_lex_state = 46}, - [817] = {.lex_state = 0, .external_lex_state = 47}, - [818] = {.lex_state = 0, .external_lex_state = 47}, - [819] = {.lex_state = 0, .external_lex_state = 47}, - [820] = {.lex_state = 1, .external_lex_state = 51}, - [821] = {.lex_state = 0, .external_lex_state = 47}, - [822] = {.lex_state = 0, .external_lex_state = 47}, - [823] = {.lex_state = 1, .external_lex_state = 48}, + [817] = {.lex_state = 1, .external_lex_state = 47}, + [818] = {.lex_state = 0, .external_lex_state = 46}, + [819] = {.lex_state = 1, .external_lex_state = 47}, + [820] = {.lex_state = 0, .external_lex_state = 50}, + [821] = {.lex_state = 1, .external_lex_state = 48}, + [822] = {.lex_state = 1, .external_lex_state = 26}, + [823] = {.lex_state = 0, .external_lex_state = 46}, [824] = {.lex_state = 1, .external_lex_state = 49}, - [825] = {.lex_state = 1, .external_lex_state = 50}, - [826] = {.lex_state = 1, .external_lex_state = 48}, - [827] = {.lex_state = 1, .external_lex_state = 52}, - [828] = {.lex_state = 1, .external_lex_state = 51}, + [825] = {.lex_state = 1, .external_lex_state = 52}, + [826] = {.lex_state = 0, .external_lex_state = 50}, + [827] = {.lex_state = 0, .external_lex_state = 46}, + [828] = {.lex_state = 1, .external_lex_state = 52}, [829] = {.lex_state = 0, .external_lex_state = 46}, - [830] = {.lex_state = 0, .external_lex_state = 47}, + [830] = {.lex_state = 0, .external_lex_state = 50}, [831] = {.lex_state = 0, .external_lex_state = 46}, - [832] = {.lex_state = 1, .external_lex_state = 51}, - [833] = {.lex_state = 0, .external_lex_state = 47}, - [834] = {.lex_state = 1, .external_lex_state = 52}, - [835] = {.lex_state = 0, .external_lex_state = 46}, - [836] = {.lex_state = 0, .external_lex_state = 47}, - [837] = {.lex_state = 1, .external_lex_state = 52}, - [838] = {.lex_state = 1, .external_lex_state = 53}, - [839] = {.lex_state = 1, .external_lex_state = 54}, + [832] = {.lex_state = 0, .external_lex_state = 46}, + [833] = {.lex_state = 0, .external_lex_state = 46}, + [834] = {.lex_state = 1, .external_lex_state = 48}, + [835] = {.lex_state = 0, .external_lex_state = 50}, + [836] = {.lex_state = 0, .external_lex_state = 46}, + [837] = {.lex_state = 1, .external_lex_state = 51}, + [838] = {.lex_state = 1, .external_lex_state = 24}, + [839] = {.lex_state = 1, .external_lex_state = 24}, [840] = {.lex_state = 1, .external_lex_state = 24}, - [841] = {.lex_state = 1, .external_lex_state = 24}, - [842] = {.lex_state = 1, .external_lex_state = 24}, - [843] = {.lex_state = 1, .external_lex_state = 24}, - [844] = {.lex_state = 1, .external_lex_state = 55}, - [845] = {.lex_state = 1, .external_lex_state = 24}, + [841] = {.lex_state = 1, .external_lex_state = 53}, + [842] = {.lex_state = 0, .external_lex_state = 54}, + [843] = {.lex_state = 1, .external_lex_state = 55}, + [844] = {.lex_state = 1, .external_lex_state = 24}, + [845] = {.lex_state = 1, .external_lex_state = 56}, [846] = {.lex_state = 1, .external_lex_state = 24}, - [847] = {.lex_state = 1, .external_lex_state = 56}, + [847] = {.lex_state = 1, .external_lex_state = 24}, [848] = {.lex_state = 1, .external_lex_state = 24}, - [849] = {.lex_state = 1, .external_lex_state = 25}, - [850] = {.lex_state = 1, .external_lex_state = 57}, - [851] = {.lex_state = 1, .external_lex_state = 24}, - [852] = {.lex_state = 1, .external_lex_state = 58}, + [849] = {.lex_state = 1, .external_lex_state = 57}, + [850] = {.lex_state = 1, .external_lex_state = 24}, + [851] = {.lex_state = 1, .external_lex_state = 58}, + [852] = {.lex_state = 1, .external_lex_state = 24}, [853] = {.lex_state = 1, .external_lex_state = 24}, [854] = {.lex_state = 1, .external_lex_state = 24}, - [855] = {.lex_state = 1, .external_lex_state = 24}, - [856] = {.lex_state = 1, .external_lex_state = 59}, + [855] = {.lex_state = 1, .external_lex_state = 25}, + [856] = {.lex_state = 1, .external_lex_state = 58}, [857] = {.lex_state = 1, .external_lex_state = 24}, [858] = {.lex_state = 1, .external_lex_state = 24}, - [859] = {.lex_state = 1, .external_lex_state = 57}, + [859] = {.lex_state = 1, .external_lex_state = 56}, [860] = {.lex_state = 1, .external_lex_state = 24}, - [861] = {.lex_state = 1, .external_lex_state = 24}, + [861] = {.lex_state = 1, .external_lex_state = 56}, [862] = {.lex_state = 1, .external_lex_state = 24}, - [863] = {.lex_state = 1, .external_lex_state = 24}, - [864] = {.lex_state = 1, .external_lex_state = 56}, - [865] = {.lex_state = 1, .external_lex_state = 58}, + [863] = {.lex_state = 1, .external_lex_state = 57}, + [864] = {.lex_state = 1, .external_lex_state = 59}, + [865] = {.lex_state = 1, .external_lex_state = 55}, [866] = {.lex_state = 1, .external_lex_state = 24}, - [867] = {.lex_state = 1, .external_lex_state = 24}, - [868] = {.lex_state = 1, .external_lex_state = 56}, + [867] = {.lex_state = 1, .external_lex_state = 60}, + [868] = {.lex_state = 1, .external_lex_state = 24}, [869] = {.lex_state = 1, .external_lex_state = 24}, - [870] = {.lex_state = 1, .external_lex_state = 59}, - [871] = {.lex_state = 1, .external_lex_state = 55}, + [870] = {.lex_state = 1, .external_lex_state = 58}, + [871] = {.lex_state = 1, .external_lex_state = 60}, [872] = {.lex_state = 1, .external_lex_state = 24}, - [873] = {.lex_state = 1, .external_lex_state = 24}, - [874] = {.lex_state = 1, .external_lex_state = 24}, + [873] = {.lex_state = 1, .external_lex_state = 59}, + [874] = {.lex_state = 1, .external_lex_state = 55}, [875] = {.lex_state = 1, .external_lex_state = 24}, - [876] = {.lex_state = 1, .external_lex_state = 58}, - [877] = {.lex_state = 1, .external_lex_state = 53}, - [878] = {.lex_state = 1, .external_lex_state = 53}, - [879] = {.lex_state = 1, .external_lex_state = 57}, - [880] = {.lex_state = 1, .external_lex_state = 55}, - [881] = {.lex_state = 0, .external_lex_state = 60}, - [882] = {.lex_state = 1, .external_lex_state = 24}, - [883] = {.lex_state = 1, .external_lex_state = 59}, + [876] = {.lex_state = 1, .external_lex_state = 24}, + [877] = {.lex_state = 1, .external_lex_state = 24}, + [878] = {.lex_state = 1, .external_lex_state = 24}, + [879] = {.lex_state = 1, .external_lex_state = 59}, + [880] = {.lex_state = 1, .external_lex_state = 24}, + [881] = {.lex_state = 1, .external_lex_state = 24}, + [882] = {.lex_state = 1, .external_lex_state = 57}, + [883] = {.lex_state = 1, .external_lex_state = 60}, [884] = {.lex_state = 1, .external_lex_state = 24}, [885] = {.lex_state = 1, .external_lex_state = 24}, - [886] = {.lex_state = 1, .external_lex_state = 25}, - [887] = {.lex_state = 1, .external_lex_state = 25}, - [888] = {.lex_state = 1, .external_lex_state = 27}, - [889] = {.lex_state = 1, .external_lex_state = 25}, + [886] = {.lex_state = 1, .external_lex_state = 24}, + [887] = {.lex_state = 1, .external_lex_state = 24}, + [888] = {.lex_state = 1, .external_lex_state = 25}, + [889] = {.lex_state = 1, .external_lex_state = 61}, [890] = {.lex_state = 1, .external_lex_state = 25}, [891] = {.lex_state = 1, .external_lex_state = 25}, [892] = {.lex_state = 1, .external_lex_state = 25}, - [893] = {.lex_state = 1, .external_lex_state = 61}, + [893] = {.lex_state = 1, .external_lex_state = 25}, [894] = {.lex_state = 1, .external_lex_state = 61}, [895] = {.lex_state = 1, .external_lex_state = 25}, - [896] = {.lex_state = 1, .external_lex_state = 61}, + [896] = {.lex_state = 1, .external_lex_state = 25}, [897] = {.lex_state = 1, .external_lex_state = 25}, [898] = {.lex_state = 1, .external_lex_state = 61}, - [899] = {.lex_state = 1, .external_lex_state = 25}, - [900] = {.lex_state = 1, .external_lex_state = 25}, + [899] = {.lex_state = 1, .external_lex_state = 61}, + [900] = {.lex_state = 1, .external_lex_state = 53}, [901] = {.lex_state = 1, .external_lex_state = 25}, [902] = {.lex_state = 1, .external_lex_state = 61}, - [903] = {.lex_state = 1, .external_lex_state = 54}, - [904] = {.lex_state = 1, .external_lex_state = 25}, - [905] = {.lex_state = 1, .external_lex_state = 25}, + [903] = {.lex_state = 1, .external_lex_state = 25}, + [904] = {.lex_state = 1, .external_lex_state = 26}, + [905] = {.lex_state = 1, .external_lex_state = 61}, [906] = {.lex_state = 1, .external_lex_state = 25}, [907] = {.lex_state = 1, .external_lex_state = 25}, [908] = {.lex_state = 1, .external_lex_state = 25}, [909] = {.lex_state = 1, .external_lex_state = 25}, [910] = {.lex_state = 1, .external_lex_state = 25}, - [911] = {.lex_state = 1, .external_lex_state = 25}, + [911] = {.lex_state = 1, .external_lex_state = 61}, [912] = {.lex_state = 1, .external_lex_state = 25}, [913] = {.lex_state = 1, .external_lex_state = 25}, [914] = {.lex_state = 1, .external_lex_state = 61}, - [915] = {.lex_state = 1, .external_lex_state = 26}, + [915] = {.lex_state = 1, .external_lex_state = 25}, [916] = {.lex_state = 1, .external_lex_state = 61}, - [917] = {.lex_state = 1, .external_lex_state = 54}, + [917] = {.lex_state = 1, .external_lex_state = 25}, [918] = {.lex_state = 1, .external_lex_state = 25}, [919] = {.lex_state = 1, .external_lex_state = 25}, - [920] = {.lex_state = 1, .external_lex_state = 61}, - [921] = {.lex_state = 1, .external_lex_state = 61}, + [920] = {.lex_state = 1, .external_lex_state = 25}, + [921] = {.lex_state = 1, .external_lex_state = 25}, [922] = {.lex_state = 1, .external_lex_state = 25}, [923] = {.lex_state = 1, .external_lex_state = 25}, [924] = {.lex_state = 1, .external_lex_state = 25}, [925] = {.lex_state = 1, .external_lex_state = 25}, - [926] = {.lex_state = 1, .external_lex_state = 28}, - [927] = {.lex_state = 1, .external_lex_state = 29}, - [928] = {.lex_state = 1, .external_lex_state = 27}, - [929] = {.lex_state = 1, .external_lex_state = 26}, + [926] = {.lex_state = 1, .external_lex_state = 25}, + [927] = {.lex_state = 1, .external_lex_state = 27}, + [928] = {.lex_state = 1, .external_lex_state = 53}, + [929] = {.lex_state = 1, .external_lex_state = 25}, [930] = {.lex_state = 1, .external_lex_state = 26}, - [931] = {.lex_state = 0, .external_lex_state = 62}, + [931] = {.lex_state = 1, .external_lex_state = 27}, [932] = {.lex_state = 1, .external_lex_state = 26}, [933] = {.lex_state = 1, .external_lex_state = 26}, - [934] = {.lex_state = 1, .external_lex_state = 27}, - [935] = {.lex_state = 1, .external_lex_state = 63}, - [936] = {.lex_state = 1, .external_lex_state = 27}, - [937] = {.lex_state = 1, .external_lex_state = 27}, - [938] = {.lex_state = 0, .external_lex_state = 62}, - [939] = {.lex_state = 1, .external_lex_state = 26}, + [934] = {.lex_state = 1, .external_lex_state = 26}, + [935] = {.lex_state = 1, .external_lex_state = 27}, + [936] = {.lex_state = 1, .external_lex_state = 26}, + [937] = {.lex_state = 1, .external_lex_state = 62}, + [938] = {.lex_state = 1, .external_lex_state = 27}, + [939] = {.lex_state = 0, .external_lex_state = 63}, [940] = {.lex_state = 1, .external_lex_state = 26}, [941] = {.lex_state = 1, .external_lex_state = 27}, - [942] = {.lex_state = 1, .external_lex_state = 31}, - [943] = {.lex_state = 1, .external_lex_state = 26}, - [944] = {.lex_state = 1, .external_lex_state = 26}, + [942] = {.lex_state = 1, .external_lex_state = 27}, + [943] = {.lex_state = 1, .external_lex_state = 27}, + [944] = {.lex_state = 1, .external_lex_state = 31}, [945] = {.lex_state = 1, .external_lex_state = 26}, [946] = {.lex_state = 1, .external_lex_state = 26}, - [947] = {.lex_state = 1, .external_lex_state = 26}, - [948] = {.lex_state = 1, .external_lex_state = 26}, + [947] = {.lex_state = 0, .external_lex_state = 63}, + [948] = {.lex_state = 1, .external_lex_state = 27}, [949] = {.lex_state = 1, .external_lex_state = 27}, [950] = {.lex_state = 1, .external_lex_state = 27}, - [951] = {.lex_state = 1, .external_lex_state = 27}, - [952] = {.lex_state = 1, .external_lex_state = 26}, - [953] = {.lex_state = 1, .external_lex_state = 26}, - [954] = {.lex_state = 1, .external_lex_state = 26}, - [955] = {.lex_state = 1, .external_lex_state = 64}, + [951] = {.lex_state = 0, .external_lex_state = 63}, + [952] = {.lex_state = 0, .external_lex_state = 63}, + [953] = {.lex_state = 1, .external_lex_state = 27}, + [954] = {.lex_state = 1, .external_lex_state = 28}, + [955] = {.lex_state = 1, .external_lex_state = 27}, [956] = {.lex_state = 1, .external_lex_state = 26}, - [957] = {.lex_state = 1, .external_lex_state = 27}, + [957] = {.lex_state = 1, .external_lex_state = 26}, [958] = {.lex_state = 1, .external_lex_state = 27}, - [959] = {.lex_state = 0, .external_lex_state = 62}, - [960] = {.lex_state = 1, .external_lex_state = 26}, - [961] = {.lex_state = 1, .external_lex_state = 26}, - [962] = {.lex_state = 1, .external_lex_state = 26}, - [963] = {.lex_state = 1, .external_lex_state = 26}, - [964] = {.lex_state = 1, .external_lex_state = 27}, - [965] = {.lex_state = 1, .external_lex_state = 26}, - [966] = {.lex_state = 1, .external_lex_state = 26}, + [959] = {.lex_state = 1, .external_lex_state = 26}, + [960] = {.lex_state = 1, .external_lex_state = 27}, + [961] = {.lex_state = 1, .external_lex_state = 27}, + [962] = {.lex_state = 0, .external_lex_state = 63}, + [963] = {.lex_state = 1, .external_lex_state = 27}, + [964] = {.lex_state = 1, .external_lex_state = 26}, + [965] = {.lex_state = 1, .external_lex_state = 27}, + [966] = {.lex_state = 1, .external_lex_state = 27}, [967] = {.lex_state = 1, .external_lex_state = 27}, - [968] = {.lex_state = 1, .external_lex_state = 26}, + [968] = {.lex_state = 1, .external_lex_state = 27}, [969] = {.lex_state = 1, .external_lex_state = 26}, [970] = {.lex_state = 1, .external_lex_state = 27}, - [971] = {.lex_state = 1, .external_lex_state = 27}, - [972] = {.lex_state = 1, .external_lex_state = 26}, - [973] = {.lex_state = 1, .external_lex_state = 27}, - [974] = {.lex_state = 1, .external_lex_state = 27}, - [975] = {.lex_state = 1, .external_lex_state = 27}, - [976] = {.lex_state = 1, .external_lex_state = 27}, - [977] = {.lex_state = 1, .external_lex_state = 27}, - [978] = {.lex_state = 1, .external_lex_state = 27}, - [979] = {.lex_state = 1, .external_lex_state = 27}, - [980] = {.lex_state = 1, .external_lex_state = 27}, - [981] = {.lex_state = 1, .external_lex_state = 27}, - [982] = {.lex_state = 0, .external_lex_state = 62}, + [971] = {.lex_state = 1, .external_lex_state = 64}, + [972] = {.lex_state = 1, .external_lex_state = 27}, + [973] = {.lex_state = 1, .external_lex_state = 26}, + [974] = {.lex_state = 1, .external_lex_state = 26}, + [975] = {.lex_state = 1, .external_lex_state = 26}, + [976] = {.lex_state = 1, .external_lex_state = 26}, + [977] = {.lex_state = 1, .external_lex_state = 26}, + [978] = {.lex_state = 1, .external_lex_state = 26}, + [979] = {.lex_state = 1, .external_lex_state = 29}, + [980] = {.lex_state = 1, .external_lex_state = 26}, + [981] = {.lex_state = 1, .external_lex_state = 26}, + [982] = {.lex_state = 1, .external_lex_state = 26}, [983] = {.lex_state = 1, .external_lex_state = 27}, [984] = {.lex_state = 1, .external_lex_state = 26}, [985] = {.lex_state = 1, .external_lex_state = 27}, [986] = {.lex_state = 1, .external_lex_state = 27}, - [987] = {.lex_state = 0, .external_lex_state = 62}, - [988] = {.lex_state = 1, .external_lex_state = 27}, + [987] = {.lex_state = 1, .external_lex_state = 27}, + [988] = {.lex_state = 1, .external_lex_state = 26}, [989] = {.lex_state = 1, .external_lex_state = 26}, - [990] = {.lex_state = 0, .external_lex_state = 62}, - [991] = {.lex_state = 0, .external_lex_state = 65}, - [992] = {.lex_state = 1, .external_lex_state = 28}, - [993] = {.lex_state = 1, .external_lex_state = 29}, - [994] = {.lex_state = 1, .external_lex_state = 31}, - [995] = {.lex_state = 1, .external_lex_state = 29}, - [996] = {.lex_state = 1, .external_lex_state = 28}, - [997] = {.lex_state = 1, .external_lex_state = 66}, - [998] = {.lex_state = 1, .external_lex_state = 66}, - [999] = {.lex_state = 1, .external_lex_state = 66}, - [1000] = {.lex_state = 1, .external_lex_state = 66}, - [1001] = {.lex_state = 1, .external_lex_state = 66}, - [1002] = {.lex_state = 1, .external_lex_state = 66}, - [1003] = {.lex_state = 1, .external_lex_state = 66}, + [990] = {.lex_state = 1, .external_lex_state = 27}, + [991] = {.lex_state = 1, .external_lex_state = 27}, + [992] = {.lex_state = 1, .external_lex_state = 26}, + [993] = {.lex_state = 1, .external_lex_state = 27}, + [994] = {.lex_state = 1, .external_lex_state = 26}, + [995] = {.lex_state = 1, .external_lex_state = 26}, + [996] = {.lex_state = 0, .external_lex_state = 63}, + [997] = {.lex_state = 1, .external_lex_state = 26}, + [998] = {.lex_state = 1, .external_lex_state = 27}, + [999] = {.lex_state = 1, .external_lex_state = 31}, + [1000] = {.lex_state = 1, .external_lex_state = 65}, + [1001] = {.lex_state = 1, .external_lex_state = 65}, + [1002] = {.lex_state = 1, .external_lex_state = 29}, + [1003] = {.lex_state = 1, .external_lex_state = 28}, [1004] = {.lex_state = 1, .external_lex_state = 31}, - [1005] = {.lex_state = 1, .external_lex_state = 67}, + [1005] = {.lex_state = 1, .external_lex_state = 28}, [1006] = {.lex_state = 1, .external_lex_state = 29}, - [1007] = {.lex_state = 1, .external_lex_state = 31}, - [1008] = {.lex_state = 1, .external_lex_state = 68}, - [1009] = {.lex_state = 1, .external_lex_state = 31}, - [1010] = {.lex_state = 1, .external_lex_state = 29}, + [1007] = {.lex_state = 1, .external_lex_state = 28}, + [1008] = {.lex_state = 1, .external_lex_state = 31}, + [1009] = {.lex_state = 1, .external_lex_state = 29}, + [1010] = {.lex_state = 1, .external_lex_state = 28}, [1011] = {.lex_state = 1, .external_lex_state = 28}, [1012] = {.lex_state = 1, .external_lex_state = 31}, [1013] = {.lex_state = 1, .external_lex_state = 29}, - [1014] = {.lex_state = 1, .external_lex_state = 33}, - [1015] = {.lex_state = 1, .external_lex_state = 31}, - [1016] = {.lex_state = 1, .external_lex_state = 29}, - [1017] = {.lex_state = 1, .external_lex_state = 31}, - [1018] = {.lex_state = 1, .external_lex_state = 29}, - [1019] = {.lex_state = 1, .external_lex_state = 31}, - [1020] = {.lex_state = 1, .external_lex_state = 64}, - [1021] = {.lex_state = 2, .external_lex_state = 2}, - [1022] = {.lex_state = 1, .external_lex_state = 29}, - [1023] = {.lex_state = 1, .external_lex_state = 31}, - [1024] = {.lex_state = 1, .external_lex_state = 28}, + [1014] = {.lex_state = 1, .external_lex_state = 28}, + [1015] = {.lex_state = 1, .external_lex_state = 65}, + [1016] = {.lex_state = 1, .external_lex_state = 28}, + [1017] = {.lex_state = 1, .external_lex_state = 65}, + [1018] = {.lex_state = 1, .external_lex_state = 62}, + [1019] = {.lex_state = 1, .external_lex_state = 65}, + [1020] = {.lex_state = 1, .external_lex_state = 28}, + [1021] = {.lex_state = 1, .external_lex_state = 29}, + [1022] = {.lex_state = 1, .external_lex_state = 28}, + [1023] = {.lex_state = 1, .external_lex_state = 65}, + [1024] = {.lex_state = 1, .external_lex_state = 66}, [1025] = {.lex_state = 1, .external_lex_state = 29}, - [1026] = {.lex_state = 1, .external_lex_state = 31}, - [1027] = {.lex_state = 0, .external_lex_state = 65}, - [1028] = {.lex_state = 1, .external_lex_state = 31}, + [1026] = {.lex_state = 1, .external_lex_state = 33}, + [1027] = {.lex_state = 1, .external_lex_state = 62}, + [1028] = {.lex_state = 1, .external_lex_state = 32}, [1029] = {.lex_state = 1, .external_lex_state = 28}, - [1030] = {.lex_state = 1, .external_lex_state = 28}, - [1031] = {.lex_state = 1, .external_lex_state = 28}, - [1032] = {.lex_state = 0, .external_lex_state = 65}, - [1033] = {.lex_state = 1, .external_lex_state = 31}, - [1034] = {.lex_state = 1, .external_lex_state = 31}, - [1035] = {.lex_state = 1, .external_lex_state = 31}, - [1036] = {.lex_state = 1, .external_lex_state = 64}, - [1037] = {.lex_state = 1, .external_lex_state = 69}, - [1038] = {.lex_state = 1, .external_lex_state = 28}, + [1030] = {.lex_state = 0, .external_lex_state = 67}, + [1031] = {.lex_state = 1, .external_lex_state = 68}, + [1032] = {.lex_state = 0, .external_lex_state = 67}, + [1033] = {.lex_state = 1, .external_lex_state = 28}, + [1034] = {.lex_state = 1, .external_lex_state = 28}, + [1035] = {.lex_state = 1, .external_lex_state = 28}, + [1036] = {.lex_state = 1, .external_lex_state = 28}, + [1037] = {.lex_state = 1, .external_lex_state = 29}, + [1038] = {.lex_state = 1, .external_lex_state = 68}, [1039] = {.lex_state = 1, .external_lex_state = 28}, - [1040] = {.lex_state = 1, .external_lex_state = 67}, - [1041] = {.lex_state = 1, .external_lex_state = 28}, - [1042] = {.lex_state = 1, .external_lex_state = 28}, - [1043] = {.lex_state = 1, .external_lex_state = 28}, - [1044] = {.lex_state = 1, .external_lex_state = 67}, - [1045] = {.lex_state = 1, .external_lex_state = 67}, - [1046] = {.lex_state = 1, .external_lex_state = 28}, - [1047] = {.lex_state = 1, .external_lex_state = 28}, - [1048] = {.lex_state = 0, .external_lex_state = 65}, + [1040] = {.lex_state = 1, .external_lex_state = 68}, + [1041] = {.lex_state = 1, .external_lex_state = 29}, + [1042] = {.lex_state = 1, .external_lex_state = 29}, + [1043] = {.lex_state = 1, .external_lex_state = 31}, + [1044] = {.lex_state = 1, .external_lex_state = 31}, + [1045] = {.lex_state = 1, .external_lex_state = 28}, + [1046] = {.lex_state = 1, .external_lex_state = 29}, + [1047] = {.lex_state = 1, .external_lex_state = 29}, + [1048] = {.lex_state = 1, .external_lex_state = 68}, [1049] = {.lex_state = 1, .external_lex_state = 31}, - [1050] = {.lex_state = 1, .external_lex_state = 31}, - [1051] = {.lex_state = 1, .external_lex_state = 29}, - [1052] = {.lex_state = 1, .external_lex_state = 28}, - [1053] = {.lex_state = 1, .external_lex_state = 67}, - [1054] = {.lex_state = 1, .external_lex_state = 29}, - [1055] = {.lex_state = 1, .external_lex_state = 66}, - [1056] = {.lex_state = 1, .external_lex_state = 28}, - [1057] = {.lex_state = 1, .external_lex_state = 28}, + [1050] = {.lex_state = 1, .external_lex_state = 68}, + [1051] = {.lex_state = 1, .external_lex_state = 28}, + [1052] = {.lex_state = 1, .external_lex_state = 31}, + [1053] = {.lex_state = 1, .external_lex_state = 68}, + [1054] = {.lex_state = 1, .external_lex_state = 68}, + [1055] = {.lex_state = 1, .external_lex_state = 31}, + [1056] = {.lex_state = 1, .external_lex_state = 29}, + [1057] = {.lex_state = 1, .external_lex_state = 68}, [1058] = {.lex_state = 1, .external_lex_state = 31}, - [1059] = {.lex_state = 1, .external_lex_state = 28}, + [1059] = {.lex_state = 1, .external_lex_state = 31}, [1060] = {.lex_state = 1, .external_lex_state = 31}, - [1061] = {.lex_state = 1, .external_lex_state = 28}, - [1062] = {.lex_state = 1, .external_lex_state = 28}, - [1063] = {.lex_state = 1, .external_lex_state = 29}, + [1061] = {.lex_state = 1, .external_lex_state = 65}, + [1062] = {.lex_state = 1, .external_lex_state = 65}, + [1063] = {.lex_state = 1, .external_lex_state = 31}, [1064] = {.lex_state = 1, .external_lex_state = 31}, - [1065] = {.lex_state = 1, .external_lex_state = 67}, - [1066] = {.lex_state = 1, .external_lex_state = 29}, + [1065] = {.lex_state = 1, .external_lex_state = 31}, + [1066] = {.lex_state = 1, .external_lex_state = 31}, [1067] = {.lex_state = 1, .external_lex_state = 29}, - [1068] = {.lex_state = 1, .external_lex_state = 67}, - [1069] = {.lex_state = 1, .external_lex_state = 31}, - [1070] = {.lex_state = 1, .external_lex_state = 28}, - [1071] = {.lex_state = 1, .external_lex_state = 28}, + [1068] = {.lex_state = 1, .external_lex_state = 28}, + [1069] = {.lex_state = 0, .external_lex_state = 67}, + [1070] = {.lex_state = 0, .external_lex_state = 67}, + [1071] = {.lex_state = 1, .external_lex_state = 31}, [1072] = {.lex_state = 1, .external_lex_state = 29}, - [1073] = {.lex_state = 1, .external_lex_state = 29}, - [1074] = {.lex_state = 1, .external_lex_state = 63}, - [1075] = {.lex_state = 1, .external_lex_state = 31}, - [1076] = {.lex_state = 1, .external_lex_state = 29}, - [1077] = {.lex_state = 1, .external_lex_state = 28}, + [1073] = {.lex_state = 1, .external_lex_state = 31}, + [1074] = {.lex_state = 1, .external_lex_state = 31}, + [1075] = {.lex_state = 1, .external_lex_state = 29}, + [1076] = {.lex_state = 1, .external_lex_state = 31}, + [1077] = {.lex_state = 1, .external_lex_state = 29}, [1078] = {.lex_state = 1, .external_lex_state = 29}, - [1079] = {.lex_state = 1, .external_lex_state = 28}, - [1080] = {.lex_state = 1, .external_lex_state = 67}, - [1081] = {.lex_state = 1, .external_lex_state = 63}, - [1082] = {.lex_state = 1, .external_lex_state = 66}, - [1083] = {.lex_state = 1, .external_lex_state = 67}, - [1084] = {.lex_state = 1, .external_lex_state = 28}, + [1079] = {.lex_state = 1, .external_lex_state = 31}, + [1080] = {.lex_state = 1, .external_lex_state = 65}, + [1081] = {.lex_state = 1, .external_lex_state = 64}, + [1082] = {.lex_state = 1, .external_lex_state = 31}, + [1083] = {.lex_state = 1, .external_lex_state = 29}, + [1084] = {.lex_state = 1, .external_lex_state = 31}, [1085] = {.lex_state = 1, .external_lex_state = 31}, - [1086] = {.lex_state = 1, .external_lex_state = 28}, + [1086] = {.lex_state = 1, .external_lex_state = 29}, [1087] = {.lex_state = 1, .external_lex_state = 31}, - [1088] = {.lex_state = 1, .external_lex_state = 32}, - [1089] = {.lex_state = 1, .external_lex_state = 70}, - [1090] = {.lex_state = 1, .external_lex_state = 29}, + [1088] = {.lex_state = 2, .external_lex_state = 2}, + [1089] = {.lex_state = 1, .external_lex_state = 31}, + [1090] = {.lex_state = 1, .external_lex_state = 28}, [1091] = {.lex_state = 1, .external_lex_state = 29}, [1092] = {.lex_state = 1, .external_lex_state = 29}, - [1093] = {.lex_state = 1, .external_lex_state = 28}, - [1094] = {.lex_state = 1, .external_lex_state = 31}, - [1095] = {.lex_state = 1, .external_lex_state = 29}, + [1093] = {.lex_state = 1, .external_lex_state = 69}, + [1094] = {.lex_state = 1, .external_lex_state = 64}, + [1095] = {.lex_state = 1, .external_lex_state = 28}, [1096] = {.lex_state = 1, .external_lex_state = 29}, - [1097] = {.lex_state = 1, .external_lex_state = 31}, + [1097] = {.lex_state = 1, .external_lex_state = 29}, [1098] = {.lex_state = 1, .external_lex_state = 29}, - [1099] = {.lex_state = 1, .external_lex_state = 66}, - [1100] = {.lex_state = 1, .external_lex_state = 29}, + [1099] = {.lex_state = 1, .external_lex_state = 28}, + [1100] = {.lex_state = 1, .external_lex_state = 65}, [1101] = {.lex_state = 1, .external_lex_state = 29}, - [1102] = {.lex_state = 1, .external_lex_state = 29}, - [1103] = {.lex_state = 1, .external_lex_state = 31}, + [1102] = {.lex_state = 1, .external_lex_state = 70}, + [1103] = {.lex_state = 1, .external_lex_state = 29}, [1104] = {.lex_state = 1, .external_lex_state = 71}, - [1105] = {.lex_state = 1, .external_lex_state = 31}, - [1106] = {.lex_state = 1, .external_lex_state = 32}, - [1107] = {.lex_state = 1, .external_lex_state = 72}, - [1108] = {.lex_state = 1, .external_lex_state = 32}, - [1109] = {.lex_state = 1, .external_lex_state = 24}, - [1110] = {.lex_state = 1, .external_lex_state = 72}, - [1111] = {.lex_state = 1, .external_lex_state = 72}, - [1112] = {.lex_state = 1, .external_lex_state = 72}, - [1113] = {.lex_state = 1, .external_lex_state = 72}, - [1114] = {.lex_state = 1, .external_lex_state = 32}, - [1115] = {.lex_state = 1, .external_lex_state = 72}, - [1116] = {.lex_state = 1, .external_lex_state = 32}, - [1117] = {.lex_state = 1, .external_lex_state = 32}, - [1118] = {.lex_state = 0, .external_lex_state = 73}, - [1119] = {.lex_state = 1, .external_lex_state = 32}, - [1120] = {.lex_state = 1, .external_lex_state = 32}, - [1121] = {.lex_state = 1, .external_lex_state = 32}, - [1122] = {.lex_state = 0, .external_lex_state = 73}, - [1123] = {.lex_state = 1, .external_lex_state = 70}, + [1105] = {.lex_state = 1, .external_lex_state = 28}, + [1106] = {.lex_state = 1, .external_lex_state = 31}, + [1107] = {.lex_state = 1, .external_lex_state = 28}, + [1108] = {.lex_state = 1, .external_lex_state = 29}, + [1109] = {.lex_state = 1, .external_lex_state = 29}, + [1110] = {.lex_state = 1, .external_lex_state = 28}, + [1111] = {.lex_state = 1, .external_lex_state = 31}, + [1112] = {.lex_state = 1, .external_lex_state = 68}, + [1113] = {.lex_state = 1, .external_lex_state = 28}, + [1114] = {.lex_state = 1, .external_lex_state = 28}, + [1115] = {.lex_state = 1, .external_lex_state = 28}, + [1116] = {.lex_state = 1, .external_lex_state = 28}, + [1117] = {.lex_state = 1, .external_lex_state = 29}, + [1118] = {.lex_state = 1, .external_lex_state = 31}, + [1119] = {.lex_state = 1, .external_lex_state = 28}, + [1120] = {.lex_state = 1, .external_lex_state = 33}, + [1121] = {.lex_state = 1, .external_lex_state = 69}, + [1122] = {.lex_state = 1, .external_lex_state = 69}, + [1123] = {.lex_state = 0, .external_lex_state = 72}, [1124] = {.lex_state = 1, .external_lex_state = 32}, - [1125] = {.lex_state = 0, .external_lex_state = 73}, - [1126] = {.lex_state = 1, .external_lex_state = 69}, - [1127] = {.lex_state = 1, .external_lex_state = 32}, - [1128] = {.lex_state = 1, .external_lex_state = 70}, - [1129] = {.lex_state = 1, .external_lex_state = 36}, - [1130] = {.lex_state = 0, .external_lex_state = 73}, - [1131] = {.lex_state = 1, .external_lex_state = 74}, - [1132] = {.lex_state = 1, .external_lex_state = 32}, - [1133] = {.lex_state = 1, .external_lex_state = 32}, - [1134] = {.lex_state = 1, .external_lex_state = 32}, - [1135] = {.lex_state = 1, .external_lex_state = 69}, - [1136] = {.lex_state = 1, .external_lex_state = 32}, - [1137] = {.lex_state = 0, .external_lex_state = 73}, - [1138] = {.lex_state = 1, .external_lex_state = 75}, - [1139] = {.lex_state = 1, .external_lex_state = 75}, - [1140] = {.lex_state = 1, .external_lex_state = 32}, - [1141] = {.lex_state = 1, .external_lex_state = 33}, - [1142] = {.lex_state = 1, .external_lex_state = 33}, + [1125] = {.lex_state = 1, .external_lex_state = 39}, + [1126] = {.lex_state = 1, .external_lex_state = 33}, + [1127] = {.lex_state = 1, .external_lex_state = 73}, + [1128] = {.lex_state = 1, .external_lex_state = 71}, + [1129] = {.lex_state = 1, .external_lex_state = 32}, + [1130] = {.lex_state = 1, .external_lex_state = 32}, + [1131] = {.lex_state = 1, .external_lex_state = 33}, + [1132] = {.lex_state = 0, .external_lex_state = 72}, + [1133] = {.lex_state = 0, .external_lex_state = 72}, + [1134] = {.lex_state = 1, .external_lex_state = 74}, + [1135] = {.lex_state = 1, .external_lex_state = 70}, + [1136] = {.lex_state = 1, .external_lex_state = 33}, + [1137] = {.lex_state = 1, .external_lex_state = 73}, + [1138] = {.lex_state = 0, .external_lex_state = 72}, + [1139] = {.lex_state = 1, .external_lex_state = 71}, + [1140] = {.lex_state = 1, .external_lex_state = 73}, + [1141] = {.lex_state = 1, .external_lex_state = 70}, + [1142] = {.lex_state = 1, .external_lex_state = 69}, [1143] = {.lex_state = 1, .external_lex_state = 33}, [1144] = {.lex_state = 1, .external_lex_state = 33}, [1145] = {.lex_state = 1, .external_lex_state = 33}, - [1146] = {.lex_state = 1, .external_lex_state = 33}, - [1147] = {.lex_state = 1, .external_lex_state = 32}, - [1148] = {.lex_state = 1, .external_lex_state = 33}, - [1149] = {.lex_state = 0, .external_lex_state = 73}, - [1150] = {.lex_state = 1, .external_lex_state = 33}, - [1151] = {.lex_state = 1, .external_lex_state = 32}, - [1152] = {.lex_state = 1, .external_lex_state = 32}, - [1153] = {.lex_state = 0, .external_lex_state = 73}, - [1154] = {.lex_state = 1, .external_lex_state = 71}, - [1155] = {.lex_state = 1, .external_lex_state = 33}, - [1156] = {.lex_state = 0, .external_lex_state = 73}, - [1157] = {.lex_state = 1, .external_lex_state = 75}, - [1158] = {.lex_state = 1, .external_lex_state = 33}, - [1159] = {.lex_state = 1, .external_lex_state = 75}, - [1160] = {.lex_state = 1, .external_lex_state = 75}, - [1161] = {.lex_state = 1, .external_lex_state = 71}, - [1162] = {.lex_state = 1, .external_lex_state = 33}, - [1163] = {.lex_state = 1, .external_lex_state = 33}, - [1164] = {.lex_state = 1, .external_lex_state = 71}, - [1165] = {.lex_state = 1, .external_lex_state = 32}, - [1166] = {.lex_state = 0, .external_lex_state = 73}, + [1146] = {.lex_state = 1, .external_lex_state = 75}, + [1147] = {.lex_state = 1, .external_lex_state = 33}, + [1148] = {.lex_state = 1, .external_lex_state = 35}, + [1149] = {.lex_state = 1, .external_lex_state = 76}, + [1150] = {.lex_state = 1, .external_lex_state = 38}, + [1151] = {.lex_state = 1, .external_lex_state = 73}, + [1152] = {.lex_state = 1, .external_lex_state = 76}, + [1153] = {.lex_state = 0, .external_lex_state = 72}, + [1154] = {.lex_state = 1, .external_lex_state = 33}, + [1155] = {.lex_state = 1, .external_lex_state = 76}, + [1156] = {.lex_state = 1, .external_lex_state = 69}, + [1157] = {.lex_state = 1, .external_lex_state = 76}, + [1158] = {.lex_state = 1, .external_lex_state = 76}, + [1159] = {.lex_state = 1, .external_lex_state = 33}, + [1160] = {.lex_state = 1, .external_lex_state = 33}, + [1161] = {.lex_state = 1, .external_lex_state = 69}, + [1162] = {.lex_state = 0, .external_lex_state = 72}, + [1163] = {.lex_state = 1, .external_lex_state = 69}, + [1164] = {.lex_state = 1, .external_lex_state = 69}, + [1165] = {.lex_state = 1, .external_lex_state = 33}, + [1166] = {.lex_state = 0, .external_lex_state = 72}, [1167] = {.lex_state = 1, .external_lex_state = 33}, - [1168] = {.lex_state = 1, .external_lex_state = 32}, - [1169] = {.lex_state = 1, .external_lex_state = 33}, - [1170] = {.lex_state = 1, .external_lex_state = 71}, - [1171] = {.lex_state = 1, .external_lex_state = 71}, + [1168] = {.lex_state = 1, .external_lex_state = 33}, + [1169] = {.lex_state = 1, .external_lex_state = 32}, + [1170] = {.lex_state = 1, .external_lex_state = 73}, + [1171] = {.lex_state = 1, .external_lex_state = 66}, [1172] = {.lex_state = 1, .external_lex_state = 32}, - [1173] = {.lex_state = 1, .external_lex_state = 33}, - [1174] = {.lex_state = 1, .external_lex_state = 33}, - [1175] = {.lex_state = 1, .external_lex_state = 32}, - [1176] = {.lex_state = 1, .external_lex_state = 75}, - [1177] = {.lex_state = 1, .external_lex_state = 33}, - [1178] = {.lex_state = 1, .external_lex_state = 33}, - [1179] = {.lex_state = 1, .external_lex_state = 33}, - [1180] = {.lex_state = 1, .external_lex_state = 33}, - [1181] = {.lex_state = 1, .external_lex_state = 33}, - [1182] = {.lex_state = 1, .external_lex_state = 33}, - [1183] = {.lex_state = 1, .external_lex_state = 33}, - [1184] = {.lex_state = 1, .external_lex_state = 76}, - [1185] = {.lex_state = 1, .external_lex_state = 32}, + [1173] = {.lex_state = 0, .external_lex_state = 72}, + [1174] = {.lex_state = 1, .external_lex_state = 32}, + [1175] = {.lex_state = 1, .external_lex_state = 33}, + [1176] = {.lex_state = 1, .external_lex_state = 37}, + [1177] = {.lex_state = 1, .external_lex_state = 32}, + [1178] = {.lex_state = 1, .external_lex_state = 76}, + [1179] = {.lex_state = 1, .external_lex_state = 76}, + [1180] = {.lex_state = 1, .external_lex_state = 32}, + [1181] = {.lex_state = 1, .external_lex_state = 32}, + [1182] = {.lex_state = 1, .external_lex_state = 32}, + [1183] = {.lex_state = 1, .external_lex_state = 32}, + [1184] = {.lex_state = 1, .external_lex_state = 32}, + [1185] = {.lex_state = 1, .external_lex_state = 76}, [1186] = {.lex_state = 1, .external_lex_state = 32}, [1187] = {.lex_state = 1, .external_lex_state = 32}, [1188] = {.lex_state = 1, .external_lex_state = 33}, - [1189] = {.lex_state = 1, .external_lex_state = 75}, - [1190] = {.lex_state = 1, .external_lex_state = 33}, - [1191] = {.lex_state = 0, .external_lex_state = 73}, - [1192] = {.lex_state = 0, .external_lex_state = 73}, - [1193] = {.lex_state = 0, .external_lex_state = 73}, - [1194] = {.lex_state = 1, .external_lex_state = 75}, - [1195] = {.lex_state = 1, .external_lex_state = 37}, - [1196] = {.lex_state = 1, .external_lex_state = 71}, - [1197] = {.lex_state = 1, .external_lex_state = 71}, - [1198] = {.lex_state = 1, .external_lex_state = 71}, - [1199] = {.lex_state = 1, .external_lex_state = 71}, - [1200] = {.lex_state = 1, .external_lex_state = 75}, - [1201] = {.lex_state = 1, .external_lex_state = 71}, - [1202] = {.lex_state = 0, .external_lex_state = 73}, - [1203] = {.lex_state = 1, .external_lex_state = 68}, - [1204] = {.lex_state = 1, .external_lex_state = 68}, - [1205] = {.lex_state = 1, .external_lex_state = 32}, - [1206] = {.lex_state = 0, .external_lex_state = 73}, - [1207] = {.lex_state = 1, .external_lex_state = 35}, - [1208] = {.lex_state = 1, .external_lex_state = 33}, - [1209] = {.lex_state = 1, .external_lex_state = 72}, - [1210] = {.lex_state = 1, .external_lex_state = 72}, - [1211] = {.lex_state = 1, .external_lex_state = 39}, - [1212] = {.lex_state = 1, .external_lex_state = 38}, - [1213] = {.lex_state = 0, .external_lex_state = 73}, - [1214] = {.lex_state = 1, .external_lex_state = 72}, - [1215] = {.lex_state = 1, .external_lex_state = 33}, - [1216] = {.lex_state = 1, .external_lex_state = 32}, - [1217] = {.lex_state = 1, .external_lex_state = 76}, - [1218] = {.lex_state = 1, .external_lex_state = 35}, - [1219] = {.lex_state = 1, .external_lex_state = 38}, - [1220] = {.lex_state = 1, .external_lex_state = 38}, - [1221] = {.lex_state = 1, .external_lex_state = 38}, - [1222] = {.lex_state = 1, .external_lex_state = 38}, - [1223] = {.lex_state = 1, .external_lex_state = 39}, - [1224] = {.lex_state = 1, .external_lex_state = 38}, - [1225] = {.lex_state = 1, .external_lex_state = 39}, - [1226] = {.lex_state = 1, .external_lex_state = 39}, - [1227] = {.lex_state = 1, .external_lex_state = 39}, - [1228] = {.lex_state = 1, .external_lex_state = 39}, - [1229] = {.lex_state = 1, .external_lex_state = 76}, - [1230] = {.lex_state = 1, .external_lex_state = 39}, - [1231] = {.lex_state = 1, .external_lex_state = 35}, - [1232] = {.lex_state = 1, .external_lex_state = 39}, - [1233] = {.lex_state = 1, .external_lex_state = 39}, - [1234] = {.lex_state = 1, .external_lex_state = 39}, - [1235] = {.lex_state = 1, .external_lex_state = 39}, + [1189] = {.lex_state = 1, .external_lex_state = 32}, + [1190] = {.lex_state = 1, .external_lex_state = 32}, + [1191] = {.lex_state = 1, .external_lex_state = 33}, + [1192] = {.lex_state = 1, .external_lex_state = 69}, + [1193] = {.lex_state = 0, .external_lex_state = 72}, + [1194] = {.lex_state = 1, .external_lex_state = 69}, + [1195] = {.lex_state = 0, .external_lex_state = 72}, + [1196] = {.lex_state = 1, .external_lex_state = 32}, + [1197] = {.lex_state = 1, .external_lex_state = 32}, + [1198] = {.lex_state = 0, .external_lex_state = 72}, + [1199] = {.lex_state = 1, .external_lex_state = 33}, + [1200] = {.lex_state = 1, .external_lex_state = 69}, + [1201] = {.lex_state = 1, .external_lex_state = 33}, + [1202] = {.lex_state = 1, .external_lex_state = 33}, + [1203] = {.lex_state = 1, .external_lex_state = 32}, + [1204] = {.lex_state = 1, .external_lex_state = 33}, + [1205] = {.lex_state = 1, .external_lex_state = 33}, + [1206] = {.lex_state = 1, .external_lex_state = 76}, + [1207] = {.lex_state = 1, .external_lex_state = 33}, + [1208] = {.lex_state = 1, .external_lex_state = 36}, + [1209] = {.lex_state = 1, .external_lex_state = 32}, + [1210] = {.lex_state = 1, .external_lex_state = 24}, + [1211] = {.lex_state = 0, .external_lex_state = 72}, + [1212] = {.lex_state = 0, .external_lex_state = 72}, + [1213] = {.lex_state = 1, .external_lex_state = 33}, + [1214] = {.lex_state = 1, .external_lex_state = 66}, + [1215] = {.lex_state = 1, .external_lex_state = 73}, + [1216] = {.lex_state = 1, .external_lex_state = 33}, + [1217] = {.lex_state = 1, .external_lex_state = 32}, + [1218] = {.lex_state = 1, .external_lex_state = 73}, + [1219] = {.lex_state = 1, .external_lex_state = 32}, + [1220] = {.lex_state = 1, .external_lex_state = 73}, + [1221] = {.lex_state = 0, .external_lex_state = 72}, + [1222] = {.lex_state = 1, .external_lex_state = 33}, + [1223] = {.lex_state = 1, .external_lex_state = 33}, + [1224] = {.lex_state = 1, .external_lex_state = 32}, + [1225] = {.lex_state = 1, .external_lex_state = 32}, + [1226] = {.lex_state = 1, .external_lex_state = 32}, + [1227] = {.lex_state = 1, .external_lex_state = 32}, + [1228] = {.lex_state = 1, .external_lex_state = 33}, + [1229] = {.lex_state = 1, .external_lex_state = 33}, + [1230] = {.lex_state = 1, .external_lex_state = 32}, + [1231] = {.lex_state = 1, .external_lex_state = 32}, + [1232] = {.lex_state = 1, .external_lex_state = 73}, + [1233] = {.lex_state = 0, .external_lex_state = 72}, + [1234] = {.lex_state = 1, .external_lex_state = 32}, + [1235] = {.lex_state = 1, .external_lex_state = 77}, [1236] = {.lex_state = 1, .external_lex_state = 36}, [1237] = {.lex_state = 1, .external_lex_state = 39}, [1238] = {.lex_state = 1, .external_lex_state = 39}, - [1239] = {.lex_state = 1, .external_lex_state = 77}, - [1240] = {.lex_state = 1, .external_lex_state = 35}, - [1241] = {.lex_state = 1, .external_lex_state = 35}, + [1239] = {.lex_state = 1, .external_lex_state = 39}, + [1240] = {.lex_state = 1, .external_lex_state = 39}, + [1241] = {.lex_state = 1, .external_lex_state = 36}, [1242] = {.lex_state = 1, .external_lex_state = 39}, [1243] = {.lex_state = 1, .external_lex_state = 39}, - [1244] = {.lex_state = 1, .external_lex_state = 35}, - [1245] = {.lex_state = 1, .external_lex_state = 35}, - [1246] = {.lex_state = 1, .external_lex_state = 38}, - [1247] = {.lex_state = 2, .external_lex_state = 78}, - [1248] = {.lex_state = 1, .external_lex_state = 35}, - [1249] = {.lex_state = 1, .external_lex_state = 35}, - [1250] = {.lex_state = 1, .external_lex_state = 35}, + [1244] = {.lex_state = 1, .external_lex_state = 36}, + [1245] = {.lex_state = 1, .external_lex_state = 36}, + [1246] = {.lex_state = 1, .external_lex_state = 39}, + [1247] = {.lex_state = 1, .external_lex_state = 39}, + [1248] = {.lex_state = 1, .external_lex_state = 43}, + [1249] = {.lex_state = 1, .external_lex_state = 36}, + [1250] = {.lex_state = 1, .external_lex_state = 39}, [1251] = {.lex_state = 1, .external_lex_state = 39}, - [1252] = {.lex_state = 1, .external_lex_state = 38}, - [1253] = {.lex_state = 1, .external_lex_state = 35}, - [1254] = {.lex_state = 1, .external_lex_state = 35}, + [1252] = {.lex_state = 1, .external_lex_state = 39}, + [1253] = {.lex_state = 1, .external_lex_state = 78}, + [1254] = {.lex_state = 1, .external_lex_state = 78}, [1255] = {.lex_state = 1, .external_lex_state = 79}, - [1256] = {.lex_state = 1, .external_lex_state = 38}, - [1257] = {.lex_state = 1, .external_lex_state = 39}, - [1258] = {.lex_state = 1, .external_lex_state = 79}, - [1259] = {.lex_state = 1, .external_lex_state = 36}, - [1260] = {.lex_state = 1, .external_lex_state = 80}, - [1261] = {.lex_state = 1, .external_lex_state = 35}, + [1256] = {.lex_state = 1, .external_lex_state = 80}, + [1257] = {.lex_state = 1, .external_lex_state = 80}, + [1258] = {.lex_state = 1, .external_lex_state = 38}, + [1259] = {.lex_state = 1, .external_lex_state = 38}, + [1260] = {.lex_state = 1, .external_lex_state = 38}, + [1261] = {.lex_state = 1, .external_lex_state = 80}, [1262] = {.lex_state = 1, .external_lex_state = 38}, - [1263] = {.lex_state = 1, .external_lex_state = 35}, - [1264] = {.lex_state = 1, .external_lex_state = 35}, - [1265] = {.lex_state = 1, .external_lex_state = 35}, - [1266] = {.lex_state = 1, .external_lex_state = 35}, - [1267] = {.lex_state = 1, .external_lex_state = 35}, - [1268] = {.lex_state = 1, .external_lex_state = 79}, - [1269] = {.lex_state = 1, .external_lex_state = 79}, - [1270] = {.lex_state = 1, .external_lex_state = 35}, - [1271] = {.lex_state = 1, .external_lex_state = 79}, - [1272] = {.lex_state = 1, .external_lex_state = 42}, + [1263] = {.lex_state = 1, .external_lex_state = 78}, + [1264] = {.lex_state = 1, .external_lex_state = 36}, + [1265] = {.lex_state = 1, .external_lex_state = 38}, + [1266] = {.lex_state = 1, .external_lex_state = 41}, + [1267] = {.lex_state = 1, .external_lex_state = 39}, + [1268] = {.lex_state = 1, .external_lex_state = 36}, + [1269] = {.lex_state = 1, .external_lex_state = 36}, + [1270] = {.lex_state = 1, .external_lex_state = 39}, + [1271] = {.lex_state = 1, .external_lex_state = 39}, + [1272] = {.lex_state = 1, .external_lex_state = 36}, [1273] = {.lex_state = 1, .external_lex_state = 38}, - [1274] = {.lex_state = 1, .external_lex_state = 37}, - [1275] = {.lex_state = 1, .external_lex_state = 43}, - [1276] = {.lex_state = 1, .external_lex_state = 35}, - [1277] = {.lex_state = 1, .external_lex_state = 81}, - [1278] = {.lex_state = 1, .external_lex_state = 35}, - [1279] = {.lex_state = 1, .external_lex_state = 39}, - [1280] = {.lex_state = 1, .external_lex_state = 39}, - [1281] = {.lex_state = 1, .external_lex_state = 37}, - [1282] = {.lex_state = 1, .external_lex_state = 39}, - [1283] = {.lex_state = 1, .external_lex_state = 39}, + [1274] = {.lex_state = 1, .external_lex_state = 38}, + [1275] = {.lex_state = 1, .external_lex_state = 38}, + [1276] = {.lex_state = 1, .external_lex_state = 36}, + [1277] = {.lex_state = 1, .external_lex_state = 35}, + [1278] = {.lex_state = 1, .external_lex_state = 36}, + [1279] = {.lex_state = 1, .external_lex_state = 36}, + [1280] = {.lex_state = 1, .external_lex_state = 36}, + [1281] = {.lex_state = 1, .external_lex_state = 38}, + [1282] = {.lex_state = 1, .external_lex_state = 37}, + [1283] = {.lex_state = 1, .external_lex_state = 36}, [1284] = {.lex_state = 1, .external_lex_state = 38}, - [1285] = {.lex_state = 1, .external_lex_state = 37}, - [1286] = {.lex_state = 1, .external_lex_state = 39}, - [1287] = {.lex_state = 2, .external_lex_state = 82}, + [1285] = {.lex_state = 1, .external_lex_state = 36}, + [1286] = {.lex_state = 1, .external_lex_state = 36}, + [1287] = {.lex_state = 1, .external_lex_state = 39}, [1288] = {.lex_state = 1, .external_lex_state = 39}, - [1289] = {.lex_state = 1, .external_lex_state = 37}, - [1290] = {.lex_state = 1, .external_lex_state = 40}, + [1289] = {.lex_state = 1, .external_lex_state = 81}, + [1290] = {.lex_state = 1, .external_lex_state = 39}, [1291] = {.lex_state = 1, .external_lex_state = 39}, - [1292] = {.lex_state = 1, .external_lex_state = 39}, - [1293] = {.lex_state = 1, .external_lex_state = 39}, - [1294] = {.lex_state = 1, .external_lex_state = 39}, - [1295] = {.lex_state = 1, .external_lex_state = 38}, - [1296] = {.lex_state = 1, .external_lex_state = 38}, - [1297] = {.lex_state = 1, .external_lex_state = 37}, - [1298] = {.lex_state = 1, .external_lex_state = 38}, + [1292] = {.lex_state = 1, .external_lex_state = 35}, + [1293] = {.lex_state = 1, .external_lex_state = 36}, + [1294] = {.lex_state = 1, .external_lex_state = 44}, + [1295] = {.lex_state = 1, .external_lex_state = 39}, + [1296] = {.lex_state = 1, .external_lex_state = 39}, + [1297] = {.lex_state = 1, .external_lex_state = 36}, + [1298] = {.lex_state = 1, .external_lex_state = 78}, [1299] = {.lex_state = 1, .external_lex_state = 39}, - [1300] = {.lex_state = 1, .external_lex_state = 38}, - [1301] = {.lex_state = 1, .external_lex_state = 41}, - [1302] = {.lex_state = 1, .external_lex_state = 38}, - [1303] = {.lex_state = 1, .external_lex_state = 38}, - [1304] = {.lex_state = 1, .external_lex_state = 35}, - [1305] = {.lex_state = 1, .external_lex_state = 35}, - [1306] = {.lex_state = 1, .external_lex_state = 36}, - [1307] = {.lex_state = 1, .external_lex_state = 35}, - [1308] = {.lex_state = 1, .external_lex_state = 35}, - [1309] = {.lex_state = 1, .external_lex_state = 35}, - [1310] = {.lex_state = 1, .external_lex_state = 35}, - [1311] = {.lex_state = 1, .external_lex_state = 35}, - [1312] = {.lex_state = 1, .external_lex_state = 36}, - [1313] = {.lex_state = 1, .external_lex_state = 38}, - [1314] = {.lex_state = 1, .external_lex_state = 36}, - [1315] = {.lex_state = 1, .external_lex_state = 36}, - [1316] = {.lex_state = 1, .external_lex_state = 36}, - [1317] = {.lex_state = 1, .external_lex_state = 37}, - [1318] = {.lex_state = 1, .external_lex_state = 36}, - [1319] = {.lex_state = 1, .external_lex_state = 37}, - [1320] = {.lex_state = 1, .external_lex_state = 36}, - [1321] = {.lex_state = 1, .external_lex_state = 38}, - [1322] = {.lex_state = 1, .external_lex_state = 36}, - [1323] = {.lex_state = 1, .external_lex_state = 37}, + [1300] = {.lex_state = 1, .external_lex_state = 36}, + [1301] = {.lex_state = 1, .external_lex_state = 39}, + [1302] = {.lex_state = 1, .external_lex_state = 39}, + [1303] = {.lex_state = 1, .external_lex_state = 37}, + [1304] = {.lex_state = 1, .external_lex_state = 36}, + [1305] = {.lex_state = 1, .external_lex_state = 37}, + [1306] = {.lex_state = 1, .external_lex_state = 37}, + [1307] = {.lex_state = 1, .external_lex_state = 36}, + [1308] = {.lex_state = 1, .external_lex_state = 37}, + [1309] = {.lex_state = 1, .external_lex_state = 82}, + [1310] = {.lex_state = 1, .external_lex_state = 36}, + [1311] = {.lex_state = 1, .external_lex_state = 78}, + [1312] = {.lex_state = 1, .external_lex_state = 78}, + [1313] = {.lex_state = 1, .external_lex_state = 37}, + [1314] = {.lex_state = 1, .external_lex_state = 37}, + [1315] = {.lex_state = 1, .external_lex_state = 37}, + [1316] = {.lex_state = 1, .external_lex_state = 78}, + [1317] = {.lex_state = 1, .external_lex_state = 39}, + [1318] = {.lex_state = 1, .external_lex_state = 37}, + [1319] = {.lex_state = 1, .external_lex_state = 78}, + [1320] = {.lex_state = 1, .external_lex_state = 39}, + [1321] = {.lex_state = 1, .external_lex_state = 37}, + [1322] = {.lex_state = 1, .external_lex_state = 78}, + [1323] = {.lex_state = 1, .external_lex_state = 39}, [1324] = {.lex_state = 1, .external_lex_state = 38}, - [1325] = {.lex_state = 1, .external_lex_state = 83}, - [1326] = {.lex_state = 1, .external_lex_state = 38}, - [1327] = {.lex_state = 1, .external_lex_state = 38}, - [1328] = {.lex_state = 1, .external_lex_state = 38}, - [1329] = {.lex_state = 1, .external_lex_state = 36}, - [1330] = {.lex_state = 1, .external_lex_state = 84}, - [1331] = {.lex_state = 1, .external_lex_state = 36}, - [1332] = {.lex_state = 1, .external_lex_state = 36}, - [1333] = {.lex_state = 1, .external_lex_state = 37}, - [1334] = {.lex_state = 1, .external_lex_state = 45}, - [1335] = {.lex_state = 1, .external_lex_state = 37}, - [1336] = {.lex_state = 1, .external_lex_state = 36}, - [1337] = {.lex_state = 1, .external_lex_state = 37}, - [1338] = {.lex_state = 1, .external_lex_state = 74}, - [1339] = {.lex_state = 1, .external_lex_state = 36}, - [1340] = {.lex_state = 2, .external_lex_state = 78}, - [1341] = {.lex_state = 1, .external_lex_state = 36}, - [1342] = {.lex_state = 1, .external_lex_state = 37}, - [1343] = {.lex_state = 1, .external_lex_state = 36}, - [1344] = {.lex_state = 1, .external_lex_state = 36}, - [1345] = {.lex_state = 1, .external_lex_state = 37}, - [1346] = {.lex_state = 1, .external_lex_state = 83}, - [1347] = {.lex_state = 1, .external_lex_state = 83}, - [1348] = {.lex_state = 1, .external_lex_state = 79}, - [1349] = {.lex_state = 1, .external_lex_state = 83}, - [1350] = {.lex_state = 1, .external_lex_state = 79}, - [1351] = {.lex_state = 1, .external_lex_state = 36}, - [1352] = {.lex_state = 1, .external_lex_state = 79}, - [1353] = {.lex_state = 1, .external_lex_state = 36}, - [1354] = {.lex_state = 1, .external_lex_state = 83}, - [1355] = {.lex_state = 1, .external_lex_state = 83}, - [1356] = {.lex_state = 1, .external_lex_state = 37}, - [1357] = {.lex_state = 1, .external_lex_state = 83}, - [1358] = {.lex_state = 1, .external_lex_state = 37}, - [1359] = {.lex_state = 1, .external_lex_state = 36}, - [1360] = {.lex_state = 1, .external_lex_state = 36}, + [1325] = {.lex_state = 1, .external_lex_state = 80}, + [1326] = {.lex_state = 1, .external_lex_state = 74}, + [1327] = {.lex_state = 1, .external_lex_state = 36}, + [1328] = {.lex_state = 1, .external_lex_state = 39}, + [1329] = {.lex_state = 1, .external_lex_state = 40}, + [1330] = {.lex_state = 1, .external_lex_state = 39}, + [1331] = {.lex_state = 1, .external_lex_state = 39}, + [1332] = {.lex_state = 1, .external_lex_state = 38}, + [1333] = {.lex_state = 1, .external_lex_state = 36}, + [1334] = {.lex_state = 1, .external_lex_state = 83}, + [1335] = {.lex_state = 1, .external_lex_state = 74}, + [1336] = {.lex_state = 1, .external_lex_state = 38}, + [1337] = {.lex_state = 1, .external_lex_state = 38}, + [1338] = {.lex_state = 1, .external_lex_state = 38}, + [1339] = {.lex_state = 1, .external_lex_state = 38}, + [1340] = {.lex_state = 1, .external_lex_state = 38}, + [1341] = {.lex_state = 1, .external_lex_state = 38}, + [1342] = {.lex_state = 1, .external_lex_state = 36}, + [1343] = {.lex_state = 1, .external_lex_state = 35}, + [1344] = {.lex_state = 1, .external_lex_state = 35}, + [1345] = {.lex_state = 2, .external_lex_state = 84}, + [1346] = {.lex_state = 1, .external_lex_state = 35}, + [1347] = {.lex_state = 1, .external_lex_state = 38}, + [1348] = {.lex_state = 1, .external_lex_state = 75}, + [1349] = {.lex_state = 1, .external_lex_state = 35}, + [1350] = {.lex_state = 1, .external_lex_state = 75}, + [1351] = {.lex_state = 1, .external_lex_state = 38}, + [1352] = {.lex_state = 1, .external_lex_state = 38}, + [1353] = {.lex_state = 1, .external_lex_state = 37}, + [1354] = {.lex_state = 1, .external_lex_state = 38}, + [1355] = {.lex_state = 1, .external_lex_state = 38}, + [1356] = {.lex_state = 1, .external_lex_state = 35}, + [1357] = {.lex_state = 1, .external_lex_state = 38}, + [1358] = {.lex_state = 1, .external_lex_state = 80}, + [1359] = {.lex_state = 1, .external_lex_state = 38}, + [1360] = {.lex_state = 1, .external_lex_state = 38}, [1361] = {.lex_state = 1, .external_lex_state = 37}, - [1362] = {.lex_state = 1, .external_lex_state = 37}, - [1363] = {.lex_state = 1, .external_lex_state = 36}, - [1364] = {.lex_state = 1, .external_lex_state = 37}, - [1365] = {.lex_state = 1, .external_lex_state = 74}, - [1366] = {.lex_state = 1, .external_lex_state = 37}, - [1367] = {.lex_state = 1, .external_lex_state = 36}, - [1368] = {.lex_state = 1, .external_lex_state = 37}, - [1369] = {.lex_state = 1, .external_lex_state = 79}, - [1370] = {.lex_state = 1, .external_lex_state = 38}, - [1371] = {.lex_state = 1, .external_lex_state = 37}, + [1362] = {.lex_state = 1, .external_lex_state = 80}, + [1363] = {.lex_state = 1, .external_lex_state = 85}, + [1364] = {.lex_state = 1, .external_lex_state = 80}, + [1365] = {.lex_state = 1, .external_lex_state = 80}, + [1366] = {.lex_state = 1, .external_lex_state = 38}, + [1367] = {.lex_state = 1, .external_lex_state = 38}, + [1368] = {.lex_state = 1, .external_lex_state = 38}, + [1369] = {.lex_state = 1, .external_lex_state = 80}, + [1370] = {.lex_state = 1, .external_lex_state = 35}, + [1371] = {.lex_state = 1, .external_lex_state = 35}, [1372] = {.lex_state = 1, .external_lex_state = 37}, [1373] = {.lex_state = 1, .external_lex_state = 37}, - [1374] = {.lex_state = 1, .external_lex_state = 36}, + [1374] = {.lex_state = 1, .external_lex_state = 37}, [1375] = {.lex_state = 1, .external_lex_state = 37}, - [1376] = {.lex_state = 1, .external_lex_state = 85}, - [1377] = {.lex_state = 1, .external_lex_state = 37}, - [1378] = {.lex_state = 1, .external_lex_state = 37}, - [1379] = {.lex_state = 1, .external_lex_state = 86}, + [1376] = {.lex_state = 1, .external_lex_state = 36}, + [1377] = {.lex_state = 1, .external_lex_state = 36}, + [1378] = {.lex_state = 1, .external_lex_state = 36}, + [1379] = {.lex_state = 1, .external_lex_state = 37}, [1380] = {.lex_state = 1, .external_lex_state = 37}, - [1381] = {.lex_state = 1, .external_lex_state = 38}, - [1382] = {.lex_state = 1, .external_lex_state = 38}, - [1383] = {.lex_state = 1, .external_lex_state = 36}, - [1384] = {.lex_state = 1, .external_lex_state = 36}, - [1385] = {.lex_state = 1, .external_lex_state = 83}, - [1386] = {.lex_state = 1, .external_lex_state = 38}, - [1387] = {.lex_state = 1, .external_lex_state = 83}, - [1388] = {.lex_state = 1, .external_lex_state = 45}, - [1389] = {.lex_state = 0, .external_lex_state = 73}, - [1390] = {.lex_state = 1, .external_lex_state = 87}, - [1391] = {.lex_state = 1, .external_lex_state = 45}, - [1392] = {.lex_state = 1, .external_lex_state = 45}, - [1393] = {.lex_state = 1, .external_lex_state = 48}, - [1394] = {.lex_state = 1, .external_lex_state = 88}, - [1395] = {.lex_state = 1, .external_lex_state = 89}, - [1396] = {.lex_state = 1, .external_lex_state = 40}, - [1397] = {.lex_state = 1, .external_lex_state = 40}, - [1398] = {.lex_state = 1, .external_lex_state = 45}, - [1399] = {.lex_state = 1, .external_lex_state = 45}, - [1400] = {.lex_state = 1, .external_lex_state = 90}, - [1401] = {.lex_state = 1, .external_lex_state = 91}, - [1402] = {.lex_state = 1, .external_lex_state = 40}, - [1403] = {.lex_state = 0, .external_lex_state = 73}, - [1404] = {.lex_state = 1, .external_lex_state = 45}, - [1405] = {.lex_state = 0, .external_lex_state = 73}, - [1406] = {.lex_state = 1, .external_lex_state = 89}, - [1407] = {.lex_state = 1, .external_lex_state = 43}, - [1408] = {.lex_state = 1, .external_lex_state = 89}, - [1409] = {.lex_state = 1, .external_lex_state = 43}, - [1410] = {.lex_state = 1, .external_lex_state = 45}, - [1411] = {.lex_state = 1, .external_lex_state = 88}, - [1412] = {.lex_state = 1, .external_lex_state = 88}, - [1413] = {.lex_state = 1, .external_lex_state = 88}, - [1414] = {.lex_state = 0, .external_lex_state = 73}, - [1415] = {.lex_state = 1, .external_lex_state = 86}, - [1416] = {.lex_state = 1, .external_lex_state = 92}, - [1417] = {.lex_state = 1, .external_lex_state = 84}, - [1418] = {.lex_state = 1, .external_lex_state = 40}, - [1419] = {.lex_state = 1, .external_lex_state = 50}, + [1381] = {.lex_state = 1, .external_lex_state = 35}, + [1382] = {.lex_state = 1, .external_lex_state = 35}, + [1383] = {.lex_state = 1, .external_lex_state = 35}, + [1384] = {.lex_state = 1, .external_lex_state = 35}, + [1385] = {.lex_state = 2, .external_lex_state = 86}, + [1386] = {.lex_state = 1, .external_lex_state = 35}, + [1387] = {.lex_state = 1, .external_lex_state = 37}, + [1388] = {.lex_state = 1, .external_lex_state = 36}, + [1389] = {.lex_state = 1, .external_lex_state = 35}, + [1390] = {.lex_state = 1, .external_lex_state = 35}, + [1391] = {.lex_state = 1, .external_lex_state = 37}, + [1392] = {.lex_state = 1, .external_lex_state = 37}, + [1393] = {.lex_state = 1, .external_lex_state = 35}, + [1394] = {.lex_state = 1, .external_lex_state = 37}, + [1395] = {.lex_state = 1, .external_lex_state = 37}, + [1396] = {.lex_state = 1, .external_lex_state = 37}, + [1397] = {.lex_state = 1, .external_lex_state = 35}, + [1398] = {.lex_state = 1, .external_lex_state = 37}, + [1399] = {.lex_state = 1, .external_lex_state = 37}, + [1400] = {.lex_state = 1, .external_lex_state = 35}, + [1401] = {.lex_state = 1, .external_lex_state = 37}, + [1402] = {.lex_state = 1, .external_lex_state = 37}, + [1403] = {.lex_state = 1, .external_lex_state = 35}, + [1404] = {.lex_state = 1, .external_lex_state = 35}, + [1405] = {.lex_state = 1, .external_lex_state = 35}, + [1406] = {.lex_state = 1, .external_lex_state = 35}, + [1407] = {.lex_state = 1, .external_lex_state = 35}, + [1408] = {.lex_state = 1, .external_lex_state = 35}, + [1409] = {.lex_state = 1, .external_lex_state = 35}, + [1410] = {.lex_state = 1, .external_lex_state = 35}, + [1411] = {.lex_state = 2, .external_lex_state = 84}, + [1412] = {.lex_state = 1, .external_lex_state = 35}, + [1413] = {.lex_state = 1, .external_lex_state = 35}, + [1414] = {.lex_state = 1, .external_lex_state = 37}, + [1415] = {.lex_state = 1, .external_lex_state = 45}, + [1416] = {.lex_state = 1, .external_lex_state = 87}, + [1417] = {.lex_state = 1, .external_lex_state = 61}, + [1418] = {.lex_state = 1, .external_lex_state = 61}, + [1419] = {.lex_state = 1, .external_lex_state = 45}, [1420] = {.lex_state = 1, .external_lex_state = 87}, - [1421] = {.lex_state = 1, .external_lex_state = 40}, - [1422] = {.lex_state = 0, .external_lex_state = 73}, - [1423] = {.lex_state = 1, .external_lex_state = 87}, - [1424] = {.lex_state = 1, .external_lex_state = 40}, - [1425] = {.lex_state = 1, .external_lex_state = 40}, - [1426] = {.lex_state = 1, .external_lex_state = 40}, - [1427] = {.lex_state = 1, .external_lex_state = 43}, - [1428] = {.lex_state = 0, .external_lex_state = 73}, - [1429] = {.lex_state = 1, .external_lex_state = 40}, - [1430] = {.lex_state = 1, .external_lex_state = 93}, - [1431] = {.lex_state = 1, .external_lex_state = 84}, - [1432] = {.lex_state = 1, .external_lex_state = 88}, - [1433] = {.lex_state = 0, .external_lex_state = 73}, - [1434] = {.lex_state = 1, .external_lex_state = 94}, - [1435] = {.lex_state = 1, .external_lex_state = 88}, - [1436] = {.lex_state = 1, .external_lex_state = 88}, - [1437] = {.lex_state = 1, .external_lex_state = 89}, - [1438] = {.lex_state = 1, .external_lex_state = 88}, - [1439] = {.lex_state = 1, .external_lex_state = 89}, - [1440] = {.lex_state = 1, .external_lex_state = 45}, - [1441] = {.lex_state = 1, .external_lex_state = 51}, + [1421] = {.lex_state = 1, .external_lex_state = 88}, + [1422] = {.lex_state = 1, .external_lex_state = 88}, + [1423] = {.lex_state = 1, .external_lex_state = 83}, + [1424] = {.lex_state = 1, .external_lex_state = 88}, + [1425] = {.lex_state = 1, .external_lex_state = 89}, + [1426] = {.lex_state = 1, .external_lex_state = 88}, + [1427] = {.lex_state = 1, .external_lex_state = 41}, + [1428] = {.lex_state = 1, .external_lex_state = 85}, + [1429] = {.lex_state = 0, .external_lex_state = 72}, + [1430] = {.lex_state = 1, .external_lex_state = 41}, + [1431] = {.lex_state = 1, .external_lex_state = 44}, + [1432] = {.lex_state = 1, .external_lex_state = 45}, + [1433] = {.lex_state = 1, .external_lex_state = 47}, + [1434] = {.lex_state = 0, .external_lex_state = 72}, + [1435] = {.lex_state = 1, .external_lex_state = 45}, + [1436] = {.lex_state = 1, .external_lex_state = 45}, + [1437] = {.lex_state = 1, .external_lex_state = 45}, + [1438] = {.lex_state = 1, .external_lex_state = 83}, + [1439] = {.lex_state = 1, .external_lex_state = 87}, + [1440] = {.lex_state = 1, .external_lex_state = 43}, + [1441] = {.lex_state = 1, .external_lex_state = 41}, [1442] = {.lex_state = 1, .external_lex_state = 43}, - [1443] = {.lex_state = 1, .external_lex_state = 88}, - [1444] = {.lex_state = 1, .external_lex_state = 88}, - [1445] = {.lex_state = 1, .external_lex_state = 87}, - [1446] = {.lex_state = 0, .external_lex_state = 73}, - [1447] = {.lex_state = 1, .external_lex_state = 45}, - [1448] = {.lex_state = 1, .external_lex_state = 95}, - [1449] = {.lex_state = 1, .external_lex_state = 43}, - [1450] = {.lex_state = 0, .external_lex_state = 73}, - [1451] = {.lex_state = 1, .external_lex_state = 86}, - [1452] = {.lex_state = 1, .external_lex_state = 40}, - [1453] = {.lex_state = 1, .external_lex_state = 92}, - [1454] = {.lex_state = 1, .external_lex_state = 40}, - [1455] = {.lex_state = 0, .external_lex_state = 73}, - [1456] = {.lex_state = 1, .external_lex_state = 89}, - [1457] = {.lex_state = 0, .external_lex_state = 73}, - [1458] = {.lex_state = 1, .external_lex_state = 45}, - [1459] = {.lex_state = 0, .external_lex_state = 73}, - [1460] = {.lex_state = 1, .external_lex_state = 92}, - [1461] = {.lex_state = 1, .external_lex_state = 43}, - [1462] = {.lex_state = 1, .external_lex_state = 43}, - [1463] = {.lex_state = 1, .external_lex_state = 95}, - [1464] = {.lex_state = 1, .external_lex_state = 95}, - [1465] = {.lex_state = 1, .external_lex_state = 95}, - [1466] = {.lex_state = 1, .external_lex_state = 43}, - [1467] = {.lex_state = 1, .external_lex_state = 45}, - [1468] = {.lex_state = 1, .external_lex_state = 45}, - [1469] = {.lex_state = 1, .external_lex_state = 89}, - [1470] = {.lex_state = 1, .external_lex_state = 89}, - [1471] = {.lex_state = 1, .external_lex_state = 89}, - [1472] = {.lex_state = 2, .external_lex_state = 96}, - [1473] = {.lex_state = 1, .external_lex_state = 95}, - [1474] = {.lex_state = 1, .external_lex_state = 45}, - [1475] = {.lex_state = 1, .external_lex_state = 92}, - [1476] = {.lex_state = 1, .external_lex_state = 61}, - [1477] = {.lex_state = 1, .external_lex_state = 45}, - [1478] = {.lex_state = 1, .external_lex_state = 45}, - [1479] = {.lex_state = 1, .external_lex_state = 43}, + [1443] = {.lex_state = 1, .external_lex_state = 90}, + [1444] = {.lex_state = 2, .external_lex_state = 91}, + [1445] = {.lex_state = 1, .external_lex_state = 45}, + [1446] = {.lex_state = 1, .external_lex_state = 45}, + [1447] = {.lex_state = 1, .external_lex_state = 87}, + [1448] = {.lex_state = 2, .external_lex_state = 91}, + [1449] = {.lex_state = 1, .external_lex_state = 45}, + [1450] = {.lex_state = 1, .external_lex_state = 89}, + [1451] = {.lex_state = 1, .external_lex_state = 88}, + [1452] = {.lex_state = 1, .external_lex_state = 88}, + [1453] = {.lex_state = 1, .external_lex_state = 88}, + [1454] = {.lex_state = 1, .external_lex_state = 45}, + [1455] = {.lex_state = 1, .external_lex_state = 45}, + [1456] = {.lex_state = 1, .external_lex_state = 45}, + [1457] = {.lex_state = 1, .external_lex_state = 87}, + [1458] = {.lex_state = 2, .external_lex_state = 91}, + [1459] = {.lex_state = 0, .external_lex_state = 72}, + [1460] = {.lex_state = 1, .external_lex_state = 87}, + [1461] = {.lex_state = 1, .external_lex_state = 87}, + [1462] = {.lex_state = 1, .external_lex_state = 69}, + [1463] = {.lex_state = 0, .external_lex_state = 72}, + [1464] = {.lex_state = 1, .external_lex_state = 43}, + [1465] = {.lex_state = 1, .external_lex_state = 41}, + [1466] = {.lex_state = 1, .external_lex_state = 41}, + [1467] = {.lex_state = 1, .external_lex_state = 85}, + [1468] = {.lex_state = 1, .external_lex_state = 61}, + [1469] = {.lex_state = 1, .external_lex_state = 41}, + [1470] = {.lex_state = 1, .external_lex_state = 41}, + [1471] = {.lex_state = 0, .external_lex_state = 72}, + [1472] = {.lex_state = 1, .external_lex_state = 41}, + [1473] = {.lex_state = 1, .external_lex_state = 45}, + [1474] = {.lex_state = 1, .external_lex_state = 88}, + [1475] = {.lex_state = 1, .external_lex_state = 45}, + [1476] = {.lex_state = 0, .external_lex_state = 72}, + [1477] = {.lex_state = 1, .external_lex_state = 40}, + [1478] = {.lex_state = 1, .external_lex_state = 92}, + [1479] = {.lex_state = 1, .external_lex_state = 51}, [1480] = {.lex_state = 1, .external_lex_state = 41}, - [1481] = {.lex_state = 1, .external_lex_state = 52}, - [1482] = {.lex_state = 1, .external_lex_state = 45}, - [1483] = {.lex_state = 1, .external_lex_state = 77}, - [1484] = {.lex_state = 1, .external_lex_state = 45}, - [1485] = {.lex_state = 0, .external_lex_state = 73}, - [1486] = {.lex_state = 1, .external_lex_state = 45}, - [1487] = {.lex_state = 1, .external_lex_state = 45}, - [1488] = {.lex_state = 1, .external_lex_state = 61}, - [1489] = {.lex_state = 0, .external_lex_state = 73}, - [1490] = {.lex_state = 1, .external_lex_state = 49}, - [1491] = {.lex_state = 1, .external_lex_state = 45}, - [1492] = {.lex_state = 1, .external_lex_state = 42}, - [1493] = {.lex_state = 1, .external_lex_state = 43}, - [1494] = {.lex_state = 2, .external_lex_state = 97}, - [1495] = {.lex_state = 1, .external_lex_state = 45}, + [1481] = {.lex_state = 1, .external_lex_state = 92}, + [1482] = {.lex_state = 1, .external_lex_state = 87}, + [1483] = {.lex_state = 1, .external_lex_state = 45}, + [1484] = {.lex_state = 1, .external_lex_state = 87}, + [1485] = {.lex_state = 1, .external_lex_state = 40}, + [1486] = {.lex_state = 1, .external_lex_state = 40}, + [1487] = {.lex_state = 1, .external_lex_state = 40}, + [1488] = {.lex_state = 1, .external_lex_state = 40}, + [1489] = {.lex_state = 1, .external_lex_state = 87}, + [1490] = {.lex_state = 1, .external_lex_state = 40}, + [1491] = {.lex_state = 1, .external_lex_state = 40}, + [1492] = {.lex_state = 1, .external_lex_state = 82}, + [1493] = {.lex_state = 1, .external_lex_state = 40}, + [1494] = {.lex_state = 1, .external_lex_state = 40}, + [1495] = {.lex_state = 1, .external_lex_state = 40}, [1496] = {.lex_state = 1, .external_lex_state = 45}, - [1497] = {.lex_state = 1, .external_lex_state = 98}, - [1498] = {.lex_state = 1, .external_lex_state = 42}, - [1499] = {.lex_state = 1, .external_lex_state = 99}, - [1500] = {.lex_state = 1, .external_lex_state = 95}, - [1501] = {.lex_state = 1, .external_lex_state = 45}, - [1502] = {.lex_state = 1, .external_lex_state = 41}, - [1503] = {.lex_state = 1, .external_lex_state = 41}, - [1504] = {.lex_state = 1, .external_lex_state = 41}, - [1505] = {.lex_state = 1, .external_lex_state = 41}, - [1506] = {.lex_state = 1, .external_lex_state = 41}, - [1507] = {.lex_state = 1, .external_lex_state = 41}, - [1508] = {.lex_state = 1, .external_lex_state = 41}, - [1509] = {.lex_state = 1, .external_lex_state = 95}, - [1510] = {.lex_state = 1, .external_lex_state = 41}, - [1511] = {.lex_state = 1, .external_lex_state = 41}, - [1512] = {.lex_state = 1, .external_lex_state = 45}, - [1513] = {.lex_state = 1, .external_lex_state = 77}, - [1514] = {.lex_state = 1, .external_lex_state = 43}, - [1515] = {.lex_state = 0, .external_lex_state = 73}, - [1516] = {.lex_state = 1, .external_lex_state = 43}, - [1517] = {.lex_state = 1, .external_lex_state = 42}, - [1518] = {.lex_state = 1, .external_lex_state = 42}, - [1519] = {.lex_state = 1, .external_lex_state = 42}, - [1520] = {.lex_state = 1, .external_lex_state = 42}, - [1521] = {.lex_state = 1, .external_lex_state = 43}, - [1522] = {.lex_state = 1, .external_lex_state = 43}, - [1523] = {.lex_state = 1, .external_lex_state = 40}, - [1524] = {.lex_state = 1, .external_lex_state = 40}, - [1525] = {.lex_state = 1, .external_lex_state = 40}, - [1526] = {.lex_state = 1, .external_lex_state = 40}, - [1527] = {.lex_state = 1, .external_lex_state = 80}, - [1528] = {.lex_state = 1, .external_lex_state = 42}, - [1529] = {.lex_state = 1, .external_lex_state = 42}, - [1530] = {.lex_state = 1, .external_lex_state = 92}, - [1531] = {.lex_state = 1, .external_lex_state = 43}, - [1532] = {.lex_state = 1, .external_lex_state = 42}, - [1533] = {.lex_state = 1, .external_lex_state = 43}, - [1534] = {.lex_state = 1, .external_lex_state = 61}, - [1535] = {.lex_state = 1, .external_lex_state = 92}, - [1536] = {.lex_state = 1, .external_lex_state = 42}, - [1537] = {.lex_state = 1, .external_lex_state = 80}, - [1538] = {.lex_state = 1, .external_lex_state = 98}, - [1539] = {.lex_state = 1, .external_lex_state = 92}, - [1540] = {.lex_state = 1, .external_lex_state = 40}, - [1541] = {.lex_state = 1, .external_lex_state = 41}, - [1542] = {.lex_state = 1, .external_lex_state = 92}, - [1543] = {.lex_state = 1, .external_lex_state = 43}, - [1544] = {.lex_state = 1, .external_lex_state = 98}, - [1545] = {.lex_state = 1, .external_lex_state = 98}, - [1546] = {.lex_state = 1, .external_lex_state = 92}, - [1547] = {.lex_state = 1, .external_lex_state = 45}, - [1548] = {.lex_state = 1, .external_lex_state = 41}, - [1549] = {.lex_state = 1, .external_lex_state = 92}, - [1550] = {.lex_state = 1, .external_lex_state = 71}, - [1551] = {.lex_state = 1, .external_lex_state = 43}, - [1552] = {.lex_state = 1, .external_lex_state = 42}, - [1553] = {.lex_state = 0, .external_lex_state = 73}, - [1554] = {.lex_state = 0, .external_lex_state = 73}, - [1555] = {.lex_state = 1, .external_lex_state = 42}, - [1556] = {.lex_state = 1, .external_lex_state = 98}, - [1557] = {.lex_state = 1, .external_lex_state = 41}, - [1558] = {.lex_state = 1, .external_lex_state = 41}, - [1559] = {.lex_state = 1, .external_lex_state = 41}, - [1560] = {.lex_state = 1, .external_lex_state = 41}, - [1561] = {.lex_state = 1, .external_lex_state = 98}, + [1497] = {.lex_state = 1, .external_lex_state = 48}, + [1498] = {.lex_state = 1, .external_lex_state = 93}, + [1499] = {.lex_state = 1, .external_lex_state = 93}, + [1500] = {.lex_state = 1, .external_lex_state = 40}, + [1501] = {.lex_state = 1, .external_lex_state = 92}, + [1502] = {.lex_state = 1, .external_lex_state = 40}, + [1503] = {.lex_state = 1, .external_lex_state = 40}, + [1504] = {.lex_state = 1, .external_lex_state = 93}, + [1505] = {.lex_state = 1, .external_lex_state = 92}, + [1506] = {.lex_state = 1, .external_lex_state = 92}, + [1507] = {.lex_state = 1, .external_lex_state = 40}, + [1508] = {.lex_state = 1, .external_lex_state = 40}, + [1509] = {.lex_state = 1, .external_lex_state = 40}, + [1510] = {.lex_state = 1, .external_lex_state = 93}, + [1511] = {.lex_state = 1, .external_lex_state = 45}, + [1512] = {.lex_state = 1, .external_lex_state = 94}, + [1513] = {.lex_state = 1, .external_lex_state = 44}, + [1514] = {.lex_state = 1, .external_lex_state = 61}, + [1515] = {.lex_state = 0, .external_lex_state = 72}, + [1516] = {.lex_state = 1, .external_lex_state = 44}, + [1517] = {.lex_state = 1, .external_lex_state = 41}, + [1518] = {.lex_state = 1, .external_lex_state = 82}, + [1519] = {.lex_state = 1, .external_lex_state = 40}, + [1520] = {.lex_state = 1, .external_lex_state = 95}, + [1521] = {.lex_state = 1, .external_lex_state = 44}, + [1522] = {.lex_state = 1, .external_lex_state = 44}, + [1523] = {.lex_state = 2, .external_lex_state = 96}, + [1524] = {.lex_state = 1, .external_lex_state = 81}, + [1525] = {.lex_state = 1, .external_lex_state = 61}, + [1526] = {.lex_state = 1, .external_lex_state = 41}, + [1527] = {.lex_state = 1, .external_lex_state = 44}, + [1528] = {.lex_state = 1, .external_lex_state = 44}, + [1529] = {.lex_state = 1, .external_lex_state = 44}, + [1530] = {.lex_state = 1, .external_lex_state = 81}, + [1531] = {.lex_state = 1, .external_lex_state = 40}, + [1532] = {.lex_state = 1, .external_lex_state = 41}, + [1533] = {.lex_state = 1, .external_lex_state = 45}, + [1534] = {.lex_state = 1, .external_lex_state = 45}, + [1535] = {.lex_state = 1, .external_lex_state = 44}, + [1536] = {.lex_state = 1, .external_lex_state = 90}, + [1537] = {.lex_state = 1, .external_lex_state = 90}, + [1538] = {.lex_state = 1, .external_lex_state = 44}, + [1539] = {.lex_state = 1, .external_lex_state = 45}, + [1540] = {.lex_state = 1, .external_lex_state = 44}, + [1541] = {.lex_state = 1, .external_lex_state = 90}, + [1542] = {.lex_state = 1, .external_lex_state = 44}, + [1543] = {.lex_state = 1, .external_lex_state = 44}, + [1544] = {.lex_state = 1, .external_lex_state = 93}, + [1545] = {.lex_state = 1, .external_lex_state = 93}, + [1546] = {.lex_state = 1, .external_lex_state = 61}, + [1547] = {.lex_state = 1, .external_lex_state = 90}, + [1548] = {.lex_state = 1, .external_lex_state = 90}, + [1549] = {.lex_state = 0, .external_lex_state = 72}, + [1550] = {.lex_state = 1, .external_lex_state = 43}, + [1551] = {.lex_state = 1, .external_lex_state = 44}, + [1552] = {.lex_state = 0, .external_lex_state = 72}, + [1553] = {.lex_state = 1, .external_lex_state = 93}, + [1554] = {.lex_state = 1, .external_lex_state = 79}, + [1555] = {.lex_state = 1, .external_lex_state = 44}, + [1556] = {.lex_state = 1, .external_lex_state = 44}, + [1557] = {.lex_state = 1, .external_lex_state = 92}, + [1558] = {.lex_state = 1, .external_lex_state = 44}, + [1559] = {.lex_state = 1, .external_lex_state = 92}, + [1560] = {.lex_state = 1, .external_lex_state = 93}, + [1561] = {.lex_state = 1, .external_lex_state = 44}, [1562] = {.lex_state = 1, .external_lex_state = 61}, - [1563] = {.lex_state = 1, .external_lex_state = 98}, - [1564] = {.lex_state = 1, .external_lex_state = 41}, - [1565] = {.lex_state = 1, .external_lex_state = 41}, - [1566] = {.lex_state = 1, .external_lex_state = 43}, - [1567] = {.lex_state = 2, .external_lex_state = 97}, - [1568] = {.lex_state = 1, .external_lex_state = 41}, - [1569] = {.lex_state = 1, .external_lex_state = 45}, - [1570] = {.lex_state = 1, .external_lex_state = 41}, - [1571] = {.lex_state = 1, .external_lex_state = 42}, - [1572] = {.lex_state = 1, .external_lex_state = 41}, - [1573] = {.lex_state = 1, .external_lex_state = 41}, - [1574] = {.lex_state = 1, .external_lex_state = 41}, - [1575] = {.lex_state = 1, .external_lex_state = 43}, - [1576] = {.lex_state = 1, .external_lex_state = 42}, - [1577] = {.lex_state = 1, .external_lex_state = 40}, - [1578] = {.lex_state = 1, .external_lex_state = 45}, - [1579] = {.lex_state = 1, .external_lex_state = 41}, - [1580] = {.lex_state = 1, .external_lex_state = 42}, - [1581] = {.lex_state = 1, .external_lex_state = 43}, - [1582] = {.lex_state = 1, .external_lex_state = 41}, - [1583] = {.lex_state = 1, .external_lex_state = 42}, - [1584] = {.lex_state = 1, .external_lex_state = 61}, - [1585] = {.lex_state = 1, .external_lex_state = 40}, + [1563] = {.lex_state = 1, .external_lex_state = 93}, + [1564] = {.lex_state = 1, .external_lex_state = 79}, + [1565] = {.lex_state = 1, .external_lex_state = 40}, + [1566] = {.lex_state = 1, .external_lex_state = 40}, + [1567] = {.lex_state = 1, .external_lex_state = 40}, + [1568] = {.lex_state = 1, .external_lex_state = 40}, + [1569] = {.lex_state = 1, .external_lex_state = 40}, + [1570] = {.lex_state = 1, .external_lex_state = 40}, + [1571] = {.lex_state = 1, .external_lex_state = 40}, + [1572] = {.lex_state = 1, .external_lex_state = 92}, + [1573] = {.lex_state = 1, .external_lex_state = 40}, + [1574] = {.lex_state = 1, .external_lex_state = 40}, + [1575] = {.lex_state = 1, .external_lex_state = 45}, + [1576] = {.lex_state = 1, .external_lex_state = 92}, + [1577] = {.lex_state = 1, .external_lex_state = 45}, + [1578] = {.lex_state = 0, .external_lex_state = 72}, + [1579] = {.lex_state = 1, .external_lex_state = 90}, + [1580] = {.lex_state = 1, .external_lex_state = 40}, + [1581] = {.lex_state = 1, .external_lex_state = 97}, + [1582] = {.lex_state = 1, .external_lex_state = 90}, + [1583] = {.lex_state = 1, .external_lex_state = 90}, + [1584] = {.lex_state = 1, .external_lex_state = 41}, + [1585] = {.lex_state = 1, .external_lex_state = 41}, [1586] = {.lex_state = 1, .external_lex_state = 41}, - [1587] = {.lex_state = 1, .external_lex_state = 61}, - [1588] = {.lex_state = 1, .external_lex_state = 43}, - [1589] = {.lex_state = 1, .external_lex_state = 42}, - [1590] = {.lex_state = 0, .external_lex_state = 73}, - [1591] = {.lex_state = 1, .external_lex_state = 61}, - [1592] = {.lex_state = 1, .external_lex_state = 61}, - [1593] = {.lex_state = 1, .external_lex_state = 61}, - [1594] = {.lex_state = 1, .external_lex_state = 61}, - [1595] = {.lex_state = 1, .external_lex_state = 98}, - [1596] = {.lex_state = 1, .external_lex_state = 40}, - [1597] = {.lex_state = 1, .external_lex_state = 41}, - [1598] = {.lex_state = 1, .external_lex_state = 40}, - [1599] = {.lex_state = 1, .external_lex_state = 40}, - [1600] = {.lex_state = 1, .external_lex_state = 40}, + [1587] = {.lex_state = 1, .external_lex_state = 44}, + [1588] = {.lex_state = 1, .external_lex_state = 44}, + [1589] = {.lex_state = 1, .external_lex_state = 41}, + [1590] = {.lex_state = 1, .external_lex_state = 44}, + [1591] = {.lex_state = 0, .external_lex_state = 72}, + [1592] = {.lex_state = 1, .external_lex_state = 44}, + [1593] = {.lex_state = 0, .external_lex_state = 72}, + [1594] = {.lex_state = 1, .external_lex_state = 49}, + [1595] = {.lex_state = 1, .external_lex_state = 44}, + [1596] = {.lex_state = 1, .external_lex_state = 44}, + [1597] = {.lex_state = 1, .external_lex_state = 98}, + [1598] = {.lex_state = 1, .external_lex_state = 44}, + [1599] = {.lex_state = 1, .external_lex_state = 44}, + [1600] = {.lex_state = 1, .external_lex_state = 44}, [1601] = {.lex_state = 1, .external_lex_state = 61}, - [1602] = {.lex_state = 0, .external_lex_state = 73}, - [1603] = {.lex_state = 1, .external_lex_state = 42}, - [1604] = {.lex_state = 1, .external_lex_state = 42}, - [1605] = {.lex_state = 1, .external_lex_state = 40}, - [1606] = {.lex_state = 1, .external_lex_state = 40}, - [1607] = {.lex_state = 1, .external_lex_state = 43}, - [1608] = {.lex_state = 2, .external_lex_state = 96}, - [1609] = {.lex_state = 1, .external_lex_state = 100}, - [1610] = {.lex_state = 1, .external_lex_state = 42}, + [1602] = {.lex_state = 1, .external_lex_state = 90}, + [1603] = {.lex_state = 1, .external_lex_state = 43}, + [1604] = {.lex_state = 1, .external_lex_state = 99}, + [1605] = {.lex_state = 1, .external_lex_state = 100}, + [1606] = {.lex_state = 1, .external_lex_state = 41}, + [1607] = {.lex_state = 1, .external_lex_state = 44}, + [1608] = {.lex_state = 1, .external_lex_state = 41}, + [1609] = {.lex_state = 1, .external_lex_state = 43}, + [1610] = {.lex_state = 1, .external_lex_state = 43}, [1611] = {.lex_state = 1, .external_lex_state = 43}, - [1612] = {.lex_state = 1, .external_lex_state = 42}, - [1613] = {.lex_state = 1, .external_lex_state = 98}, - [1614] = {.lex_state = 1, .external_lex_state = 40}, - [1615] = {.lex_state = 1, .external_lex_state = 40}, - [1616] = {.lex_state = 1, .external_lex_state = 40}, - [1617] = {.lex_state = 1, .external_lex_state = 42}, - [1618] = {.lex_state = 1, .external_lex_state = 42}, - [1619] = {.lex_state = 1, .external_lex_state = 43}, - [1620] = {.lex_state = 1, .external_lex_state = 81}, - [1621] = {.lex_state = 1, .external_lex_state = 95}, - [1622] = {.lex_state = 1, .external_lex_state = 89}, - [1623] = {.lex_state = 0, .external_lex_state = 73}, + [1612] = {.lex_state = 1, .external_lex_state = 43}, + [1613] = {.lex_state = 1, .external_lex_state = 45}, + [1614] = {.lex_state = 2, .external_lex_state = 96}, + [1615] = {.lex_state = 1, .external_lex_state = 43}, + [1616] = {.lex_state = 1, .external_lex_state = 41}, + [1617] = {.lex_state = 1, .external_lex_state = 43}, + [1618] = {.lex_state = 1, .external_lex_state = 41}, + [1619] = {.lex_state = 1, .external_lex_state = 41}, + [1620] = {.lex_state = 1, .external_lex_state = 41}, + [1621] = {.lex_state = 1, .external_lex_state = 41}, + [1622] = {.lex_state = 1, .external_lex_state = 43}, + [1623] = {.lex_state = 1, .external_lex_state = 89}, [1624] = {.lex_state = 1, .external_lex_state = 43}, - [1625] = {.lex_state = 1, .external_lex_state = 42}, - [1626] = {.lex_state = 1, .external_lex_state = 42}, - [1627] = {.lex_state = 0, .external_lex_state = 73}, - [1628] = {.lex_state = 1, .external_lex_state = 81}, - [1629] = {.lex_state = 2, .external_lex_state = 96}, + [1625] = {.lex_state = 0, .external_lex_state = 72}, + [1626] = {.lex_state = 1, .external_lex_state = 41}, + [1627] = {.lex_state = 1, .external_lex_state = 43}, + [1628] = {.lex_state = 0, .external_lex_state = 72}, + [1629] = {.lex_state = 0, .external_lex_state = 72}, [1630] = {.lex_state = 1, .external_lex_state = 43}, - [1631] = {.lex_state = 1, .external_lex_state = 95}, - [1632] = {.lex_state = 1, .external_lex_state = 42}, - [1633] = {.lex_state = 1, .external_lex_state = 42}, - [1634] = {.lex_state = 1, .external_lex_state = 49}, - [1635] = {.lex_state = 1, .external_lex_state = 48}, - [1636] = {.lex_state = 1, .external_lex_state = 101}, - [1637] = {.lex_state = 1, .external_lex_state = 50}, - [1638] = {.lex_state = 1, .external_lex_state = 50}, - [1639] = {.lex_state = 1, .external_lex_state = 100}, - [1640] = {.lex_state = 2, .external_lex_state = 82}, - [1641] = {.lex_state = 1, .external_lex_state = 52}, - [1642] = {.lex_state = 1, .external_lex_state = 52}, - [1643] = {.lex_state = 1, .external_lex_state = 101}, - [1644] = {.lex_state = 1, .external_lex_state = 52}, - [1645] = {.lex_state = 1, .external_lex_state = 102}, - [1646] = {.lex_state = 1, .external_lex_state = 50}, - [1647] = {.lex_state = 2, .external_lex_state = 82}, - [1648] = {.lex_state = 1, .external_lex_state = 50}, - [1649] = {.lex_state = 2, .external_lex_state = 103}, - [1650] = {.lex_state = 1, .external_lex_state = 102}, - [1651] = {.lex_state = 2, .external_lex_state = 13}, - [1652] = {.lex_state = 1, .external_lex_state = 101}, - [1653] = {.lex_state = 1, .external_lex_state = 50}, - [1654] = {.lex_state = 1, .external_lex_state = 49}, - [1655] = {.lex_state = 1, .external_lex_state = 104}, - [1656] = {.lex_state = 1, .external_lex_state = 51}, - [1657] = {.lex_state = 1, .external_lex_state = 52}, - [1658] = {.lex_state = 1, .external_lex_state = 49}, - [1659] = {.lex_state = 1, .external_lex_state = 51}, - [1660] = {.lex_state = 1, .external_lex_state = 104}, - [1661] = {.lex_state = 1, .external_lex_state = 56}, - [1662] = {.lex_state = 1, .external_lex_state = 85}, - [1663] = {.lex_state = 1, .external_lex_state = 85}, - [1664] = {.lex_state = 1, .external_lex_state = 49}, - [1665] = {.lex_state = 2, .external_lex_state = 82}, - [1666] = {.lex_state = 1, .external_lex_state = 49}, - [1667] = {.lex_state = 1, .external_lex_state = 49}, - [1668] = {.lex_state = 1, .external_lex_state = 104}, - [1669] = {.lex_state = 1, .external_lex_state = 102}, - [1670] = {.lex_state = 1, .external_lex_state = 102}, - [1671] = {.lex_state = 1, .external_lex_state = 52}, - [1672] = {.lex_state = 1, .external_lex_state = 49}, - [1673] = {.lex_state = 1, .external_lex_state = 49}, - [1674] = {.lex_state = 1, .external_lex_state = 49}, - [1675] = {.lex_state = 1, .external_lex_state = 105}, - [1676] = {.lex_state = 1, .external_lex_state = 52}, - [1677] = {.lex_state = 1, .external_lex_state = 49}, - [1678] = {.lex_state = 1, .external_lex_state = 51}, - [1679] = {.lex_state = 1, .external_lex_state = 106}, - [1680] = {.lex_state = 1, .external_lex_state = 85}, - [1681] = {.lex_state = 1, .external_lex_state = 49}, - [1682] = {.lex_state = 1, .external_lex_state = 49}, - [1683] = {.lex_state = 1, .external_lex_state = 52}, + [1631] = {.lex_state = 1, .external_lex_state = 43}, + [1632] = {.lex_state = 1, .external_lex_state = 43}, + [1633] = {.lex_state = 1, .external_lex_state = 43}, + [1634] = {.lex_state = 1, .external_lex_state = 43}, + [1635] = {.lex_state = 1, .external_lex_state = 43}, + [1636] = {.lex_state = 1, .external_lex_state = 43}, + [1637] = {.lex_state = 1, .external_lex_state = 41}, + [1638] = {.lex_state = 1, .external_lex_state = 41}, + [1639] = {.lex_state = 1, .external_lex_state = 43}, + [1640] = {.lex_state = 1, .external_lex_state = 89}, + [1641] = {.lex_state = 1, .external_lex_state = 43}, + [1642] = {.lex_state = 1, .external_lex_state = 43}, + [1643] = {.lex_state = 1, .external_lex_state = 43}, + [1644] = {.lex_state = 0, .external_lex_state = 72}, + [1645] = {.lex_state = 1, .external_lex_state = 45}, + [1646] = {.lex_state = 1, .external_lex_state = 43}, + [1647] = {.lex_state = 0, .external_lex_state = 72}, + [1648] = {.lex_state = 1, .external_lex_state = 41}, + [1649] = {.lex_state = 1, .external_lex_state = 43}, + [1650] = {.lex_state = 1, .external_lex_state = 88}, + [1651] = {.lex_state = 1, .external_lex_state = 61}, + [1652] = {.lex_state = 1, .external_lex_state = 41}, + [1653] = {.lex_state = 1, .external_lex_state = 61}, + [1654] = {.lex_state = 0, .external_lex_state = 72}, + [1655] = {.lex_state = 0, .external_lex_state = 72}, + [1656] = {.lex_state = 1, .external_lex_state = 52}, + [1657] = {.lex_state = 1, .external_lex_state = 61}, + [1658] = {.lex_state = 1, .external_lex_state = 41}, + [1659] = {.lex_state = 1, .external_lex_state = 45}, + [1660] = {.lex_state = 1, .external_lex_state = 40}, + [1661] = {.lex_state = 1, .external_lex_state = 44}, + [1662] = {.lex_state = 1, .external_lex_state = 45}, + [1663] = {.lex_state = 0, .external_lex_state = 72}, + [1664] = {.lex_state = 1, .external_lex_state = 45}, + [1665] = {.lex_state = 1, .external_lex_state = 45}, + [1666] = {.lex_state = 1, .external_lex_state = 88}, + [1667] = {.lex_state = 1, .external_lex_state = 43}, + [1668] = {.lex_state = 1, .external_lex_state = 61}, + [1669] = {.lex_state = 1, .external_lex_state = 43}, + [1670] = {.lex_state = 1, .external_lex_state = 45}, + [1671] = {.lex_state = 1, .external_lex_state = 45}, + [1672] = {.lex_state = 0, .external_lex_state = 72}, + [1673] = {.lex_state = 1, .external_lex_state = 101}, + [1674] = {.lex_state = 1, .external_lex_state = 47}, + [1675] = {.lex_state = 1, .external_lex_state = 48}, + [1676] = {.lex_state = 1, .external_lex_state = 48}, + [1677] = {.lex_state = 1, .external_lex_state = 52}, + [1678] = {.lex_state = 1, .external_lex_state = 52}, + [1679] = {.lex_state = 1, .external_lex_state = 48}, + [1680] = {.lex_state = 2, .external_lex_state = 102}, + [1681] = {.lex_state = 1, .external_lex_state = 51}, + [1682] = {.lex_state = 2, .external_lex_state = 102}, + [1683] = {.lex_state = 2, .external_lex_state = 13}, [1684] = {.lex_state = 1, .external_lex_state = 52}, - [1685] = {.lex_state = 1, .external_lex_state = 52}, - [1686] = {.lex_state = 1, .external_lex_state = 102}, - [1687] = {.lex_state = 1, .external_lex_state = 104}, - [1688] = {.lex_state = 1, .external_lex_state = 52}, - [1689] = {.lex_state = 1, .external_lex_state = 52}, - [1690] = {.lex_state = 1, .external_lex_state = 49}, - [1691] = {.lex_state = 1, .external_lex_state = 49}, - [1692] = {.lex_state = 1, .external_lex_state = 50}, + [1685] = {.lex_state = 2, .external_lex_state = 102}, + [1686] = {.lex_state = 1, .external_lex_state = 103}, + [1687] = {.lex_state = 1, .external_lex_state = 103}, + [1688] = {.lex_state = 1, .external_lex_state = 104}, + [1689] = {.lex_state = 1, .external_lex_state = 104}, + [1690] = {.lex_state = 1, .external_lex_state = 105}, + [1691] = {.lex_state = 1, .external_lex_state = 48}, + [1692] = {.lex_state = 1, .external_lex_state = 52}, [1693] = {.lex_state = 1, .external_lex_state = 104}, - [1694] = {.lex_state = 1, .external_lex_state = 51}, - [1695] = {.lex_state = 1, .external_lex_state = 49}, - [1696] = {.lex_state = 1, .external_lex_state = 91}, - [1697] = {.lex_state = 1, .external_lex_state = 52}, - [1698] = {.lex_state = 1, .external_lex_state = 49}, - [1699] = {.lex_state = 1, .external_lex_state = 52}, - [1700] = {.lex_state = 1, .external_lex_state = 51}, - [1701] = {.lex_state = 1, .external_lex_state = 52}, - [1702] = {.lex_state = 1, .external_lex_state = 52}, + [1694] = {.lex_state = 1, .external_lex_state = 99}, + [1695] = {.lex_state = 2, .external_lex_state = 102}, + [1696] = {.lex_state = 1, .external_lex_state = 103}, + [1697] = {.lex_state = 1, .external_lex_state = 48}, + [1698] = {.lex_state = 1, .external_lex_state = 52}, + [1699] = {.lex_state = 1, .external_lex_state = 100}, + [1700] = {.lex_state = 1, .external_lex_state = 52}, + [1701] = {.lex_state = 1, .external_lex_state = 49}, + [1702] = {.lex_state = 1, .external_lex_state = 56}, [1703] = {.lex_state = 1, .external_lex_state = 49}, - [1704] = {.lex_state = 1, .external_lex_state = 49}, - [1705] = {.lex_state = 1, .external_lex_state = 50}, - [1706] = {.lex_state = 1, .external_lex_state = 51}, - [1707] = {.lex_state = 1, .external_lex_state = 71}, - [1708] = {.lex_state = 1, .external_lex_state = 49}, - [1709] = {.lex_state = 1, .external_lex_state = 51}, - [1710] = {.lex_state = 1, .external_lex_state = 102}, - [1711] = {.lex_state = 1, .external_lex_state = 52}, - [1712] = {.lex_state = 1, .external_lex_state = 49}, - [1713] = {.lex_state = 1, .external_lex_state = 99}, - [1714] = {.lex_state = 1, .external_lex_state = 48}, + [1704] = {.lex_state = 1, .external_lex_state = 51}, + [1705] = {.lex_state = 1, .external_lex_state = 52}, + [1706] = {.lex_state = 1, .external_lex_state = 106}, + [1707] = {.lex_state = 1, .external_lex_state = 52}, + [1708] = {.lex_state = 1, .external_lex_state = 52}, + [1709] = {.lex_state = 1, .external_lex_state = 52}, + [1710] = {.lex_state = 1, .external_lex_state = 47}, + [1711] = {.lex_state = 1, .external_lex_state = 49}, + [1712] = {.lex_state = 1, .external_lex_state = 47}, + [1713] = {.lex_state = 1, .external_lex_state = 49}, + [1714] = {.lex_state = 1, .external_lex_state = 103}, [1715] = {.lex_state = 1, .external_lex_state = 52}, - [1716] = {.lex_state = 1, .external_lex_state = 48}, - [1717] = {.lex_state = 1, .external_lex_state = 52}, - [1718] = {.lex_state = 1, .external_lex_state = 52}, - [1719] = {.lex_state = 1, .external_lex_state = 48}, - [1720] = {.lex_state = 1, .external_lex_state = 51}, - [1721] = {.lex_state = 1, .external_lex_state = 52}, + [1716] = {.lex_state = 1, .external_lex_state = 103}, + [1717] = {.lex_state = 1, .external_lex_state = 49}, + [1718] = {.lex_state = 1, .external_lex_state = 98}, + [1719] = {.lex_state = 1, .external_lex_state = 55}, + [1720] = {.lex_state = 1, .external_lex_state = 99}, + [1721] = {.lex_state = 1, .external_lex_state = 107}, [1722] = {.lex_state = 1, .external_lex_state = 52}, - [1723] = {.lex_state = 1, .external_lex_state = 49}, - [1724] = {.lex_state = 1, .external_lex_state = 50}, - [1725] = {.lex_state = 1, .external_lex_state = 48}, - [1726] = {.lex_state = 1, .external_lex_state = 48}, - [1727] = {.lex_state = 1, .external_lex_state = 50}, - [1728] = {.lex_state = 1, .external_lex_state = 50}, + [1723] = {.lex_state = 1, .external_lex_state = 52}, + [1724] = {.lex_state = 1, .external_lex_state = 98}, + [1725] = {.lex_state = 1, .external_lex_state = 108}, + [1726] = {.lex_state = 1, .external_lex_state = 109}, + [1727] = {.lex_state = 1, .external_lex_state = 109}, + [1728] = {.lex_state = 1, .external_lex_state = 52}, [1729] = {.lex_state = 1, .external_lex_state = 49}, - [1730] = {.lex_state = 1, .external_lex_state = 52}, - [1731] = {.lex_state = 1, .external_lex_state = 50}, - [1732] = {.lex_state = 1, .external_lex_state = 59}, - [1733] = {.lex_state = 1, .external_lex_state = 49}, - [1734] = {.lex_state = 1, .external_lex_state = 107}, - [1735] = {.lex_state = 1, .external_lex_state = 99}, - [1736] = {.lex_state = 1, .external_lex_state = 52}, - [1737] = {.lex_state = 1, .external_lex_state = 102}, - [1738] = {.lex_state = 1, .external_lex_state = 108}, + [1730] = {.lex_state = 1, .external_lex_state = 104}, + [1731] = {.lex_state = 1, .external_lex_state = 104}, + [1732] = {.lex_state = 1, .external_lex_state = 104}, + [1733] = {.lex_state = 1, .external_lex_state = 52}, + [1734] = {.lex_state = 1, .external_lex_state = 49}, + [1735] = {.lex_state = 1, .external_lex_state = 68}, + [1736] = {.lex_state = 1, .external_lex_state = 109}, + [1737] = {.lex_state = 1, .external_lex_state = 97}, + [1738] = {.lex_state = 1, .external_lex_state = 47}, [1739] = {.lex_state = 1, .external_lex_state = 49}, - [1740] = {.lex_state = 1, .external_lex_state = 52}, - [1741] = {.lex_state = 1, .external_lex_state = 48}, - [1742] = {.lex_state = 1, .external_lex_state = 52}, - [1743] = {.lex_state = 2, .external_lex_state = 103}, - [1744] = {.lex_state = 1, .external_lex_state = 102}, - [1745] = {.lex_state = 1, .external_lex_state = 48}, - [1746] = {.lex_state = 1, .external_lex_state = 49}, - [1747] = {.lex_state = 1, .external_lex_state = 102}, - [1748] = {.lex_state = 1, .external_lex_state = 51}, - [1749] = {.lex_state = 1, .external_lex_state = 100}, + [1740] = {.lex_state = 1, .external_lex_state = 57}, + [1741] = {.lex_state = 1, .external_lex_state = 104}, + [1742] = {.lex_state = 1, .external_lex_state = 109}, + [1743] = {.lex_state = 1, .external_lex_state = 109}, + [1744] = {.lex_state = 1, .external_lex_state = 109}, + [1745] = {.lex_state = 1, .external_lex_state = 109}, + [1746] = {.lex_state = 1, .external_lex_state = 109}, + [1747] = {.lex_state = 1, .external_lex_state = 52}, + [1748] = {.lex_state = 1, .external_lex_state = 108}, + [1749] = {.lex_state = 1, .external_lex_state = 49}, [1750] = {.lex_state = 1, .external_lex_state = 101}, - [1751] = {.lex_state = 1, .external_lex_state = 51}, - [1752] = {.lex_state = 1, .external_lex_state = 106}, - [1753] = {.lex_state = 1, .external_lex_state = 106}, - [1754] = {.lex_state = 1, .external_lex_state = 106}, - [1755] = {.lex_state = 1, .external_lex_state = 51}, - [1756] = {.lex_state = 1, .external_lex_state = 48}, - [1757] = {.lex_state = 1, .external_lex_state = 50}, - [1758] = {.lex_state = 1, .external_lex_state = 51}, - [1759] = {.lex_state = 1, .external_lex_state = 51}, - [1760] = {.lex_state = 1, .external_lex_state = 50}, - [1761] = {.lex_state = 1, .external_lex_state = 109}, - [1762] = {.lex_state = 1, .external_lex_state = 50}, - [1763] = {.lex_state = 2, .external_lex_state = 103}, - [1764] = {.lex_state = 1, .external_lex_state = 50}, - [1765] = {.lex_state = 2, .external_lex_state = 103}, - [1766] = {.lex_state = 1, .external_lex_state = 48}, - [1767] = {.lex_state = 1, .external_lex_state = 94}, - [1768] = {.lex_state = 1, .external_lex_state = 110}, - [1769] = {.lex_state = 1, .external_lex_state = 49}, - [1770] = {.lex_state = 1, .external_lex_state = 50}, - [1771] = {.lex_state = 1, .external_lex_state = 111}, - [1772] = {.lex_state = 1, .external_lex_state = 85}, - [1773] = {.lex_state = 1, .external_lex_state = 85}, - [1774] = {.lex_state = 1, .external_lex_state = 85}, - [1775] = {.lex_state = 1, .external_lex_state = 50}, - [1776] = {.lex_state = 1, .external_lex_state = 48}, - [1777] = {.lex_state = 1, .external_lex_state = 94}, - [1778] = {.lex_state = 1, .external_lex_state = 50}, - [1779] = {.lex_state = 1, .external_lex_state = 85}, - [1780] = {.lex_state = 1, .external_lex_state = 85}, - [1781] = {.lex_state = 1, .external_lex_state = 85}, - [1782] = {.lex_state = 1, .external_lex_state = 111}, - [1783] = {.lex_state = 1, .external_lex_state = 111}, - [1784] = {.lex_state = 1, .external_lex_state = 93}, - [1785] = {.lex_state = 1, .external_lex_state = 50}, - [1786] = {.lex_state = 1, .external_lex_state = 50}, - [1787] = {.lex_state = 1, .external_lex_state = 67}, - [1788] = {.lex_state = 1, .external_lex_state = 51}, - [1789] = {.lex_state = 1, .external_lex_state = 51}, - [1790] = {.lex_state = 1, .external_lex_state = 58}, - [1791] = {.lex_state = 1, .external_lex_state = 93}, - [1792] = {.lex_state = 1, .external_lex_state = 111}, - [1793] = {.lex_state = 1, .external_lex_state = 104}, - [1794] = {.lex_state = 1, .external_lex_state = 48}, - [1795] = {.lex_state = 1, .external_lex_state = 51}, - [1796] = {.lex_state = 1, .external_lex_state = 51}, - [1797] = {.lex_state = 1, .external_lex_state = 51}, - [1798] = {.lex_state = 1, .external_lex_state = 51}, - [1799] = {.lex_state = 1, .external_lex_state = 111}, - [1800] = {.lex_state = 1, .external_lex_state = 51}, - [1801] = {.lex_state = 1, .external_lex_state = 106}, - [1802] = {.lex_state = 1, .external_lex_state = 106}, - [1803] = {.lex_state = 1, .external_lex_state = 106}, - [1804] = {.lex_state = 1, .external_lex_state = 104}, - [1805] = {.lex_state = 1, .external_lex_state = 104}, - [1806] = {.lex_state = 1, .external_lex_state = 104}, - [1807] = {.lex_state = 1, .external_lex_state = 106}, - [1808] = {.lex_state = 2, .external_lex_state = 103}, - [1809] = {.lex_state = 2, .external_lex_state = 103}, - [1810] = {.lex_state = 1, .external_lex_state = 106}, - [1811] = {.lex_state = 1, .external_lex_state = 51}, - [1812] = {.lex_state = 1, .external_lex_state = 51}, - [1813] = {.lex_state = 1, .external_lex_state = 48}, + [1751] = {.lex_state = 1, .external_lex_state = 49}, + [1752] = {.lex_state = 1, .external_lex_state = 52}, + [1753] = {.lex_state = 1, .external_lex_state = 52}, + [1754] = {.lex_state = 1, .external_lex_state = 49}, + [1755] = {.lex_state = 1, .external_lex_state = 49}, + [1756] = {.lex_state = 1, .external_lex_state = 58}, + [1757] = {.lex_state = 1, .external_lex_state = 108}, + [1758] = {.lex_state = 1, .external_lex_state = 49}, + [1759] = {.lex_state = 1, .external_lex_state = 108}, + [1760] = {.lex_state = 1, .external_lex_state = 49}, + [1761] = {.lex_state = 1, .external_lex_state = 100}, + [1762] = {.lex_state = 1, .external_lex_state = 104}, + [1763] = {.lex_state = 1, .external_lex_state = 104}, + [1764] = {.lex_state = 1, .external_lex_state = 109}, + [1765] = {.lex_state = 1, .external_lex_state = 49}, + [1766] = {.lex_state = 1, .external_lex_state = 77}, + [1767] = {.lex_state = 2, .external_lex_state = 86}, + [1768] = {.lex_state = 1, .external_lex_state = 49}, + [1769] = {.lex_state = 1, .external_lex_state = 48}, + [1770] = {.lex_state = 1, .external_lex_state = 49}, + [1771] = {.lex_state = 1, .external_lex_state = 56}, + [1772] = {.lex_state = 1, .external_lex_state = 48}, + [1773] = {.lex_state = 1, .external_lex_state = 97}, + [1774] = {.lex_state = 1, .external_lex_state = 61}, + [1775] = {.lex_state = 1, .external_lex_state = 104}, + [1776] = {.lex_state = 1, .external_lex_state = 49}, + [1777] = {.lex_state = 1, .external_lex_state = 47}, + [1778] = {.lex_state = 1, .external_lex_state = 49}, + [1779] = {.lex_state = 1, .external_lex_state = 60}, + [1780] = {.lex_state = 1, .external_lex_state = 94}, + [1781] = {.lex_state = 2, .external_lex_state = 86}, + [1782] = {.lex_state = 1, .external_lex_state = 49}, + [1783] = {.lex_state = 1, .external_lex_state = 110}, + [1784] = {.lex_state = 1, .external_lex_state = 95}, + [1785] = {.lex_state = 1, .external_lex_state = 52}, + [1786] = {.lex_state = 2, .external_lex_state = 86}, + [1787] = {.lex_state = 1, .external_lex_state = 95}, + [1788] = {.lex_state = 2, .external_lex_state = 86}, + [1789] = {.lex_state = 1, .external_lex_state = 101}, + [1790] = {.lex_state = 1, .external_lex_state = 77}, + [1791] = {.lex_state = 1, .external_lex_state = 52}, + [1792] = {.lex_state = 1, .external_lex_state = 94}, + [1793] = {.lex_state = 1, .external_lex_state = 48}, + [1794] = {.lex_state = 1, .external_lex_state = 49}, + [1795] = {.lex_state = 1, .external_lex_state = 48}, + [1796] = {.lex_state = 1, .external_lex_state = 49}, + [1797] = {.lex_state = 1, .external_lex_state = 47}, + [1798] = {.lex_state = 1, .external_lex_state = 47}, + [1799] = {.lex_state = 1, .external_lex_state = 48}, + [1800] = {.lex_state = 1, .external_lex_state = 77}, + [1801] = {.lex_state = 1, .external_lex_state = 77}, + [1802] = {.lex_state = 1, .external_lex_state = 77}, + [1803] = {.lex_state = 1, .external_lex_state = 47}, + [1804] = {.lex_state = 1, .external_lex_state = 47}, + [1805] = {.lex_state = 1, .external_lex_state = 47}, + [1806] = {.lex_state = 1, .external_lex_state = 77}, + [1807] = {.lex_state = 1, .external_lex_state = 77}, + [1808] = {.lex_state = 1, .external_lex_state = 108}, + [1809] = {.lex_state = 1, .external_lex_state = 108}, + [1810] = {.lex_state = 1, .external_lex_state = 103}, + [1811] = {.lex_state = 1, .external_lex_state = 103}, + [1812] = {.lex_state = 1, .external_lex_state = 103}, + [1813] = {.lex_state = 1, .external_lex_state = 108}, [1814] = {.lex_state = 1, .external_lex_state = 48}, - [1815] = {.lex_state = 1, .external_lex_state = 48}, - [1816] = {.lex_state = 1, .external_lex_state = 48}, - [1817] = {.lex_state = 1, .external_lex_state = 48}, - [1818] = {.lex_state = 1, .external_lex_state = 48}, - [1819] = {.lex_state = 2, .external_lex_state = 82}, - [1820] = {.lex_state = 1, .external_lex_state = 61}, - [1821] = {.lex_state = 1, .external_lex_state = 111}, - [1822] = {.lex_state = 1, .external_lex_state = 111}, - [1823] = {.lex_state = 1, .external_lex_state = 50}, - [1824] = {.lex_state = 1, .external_lex_state = 50}, - [1825] = {.lex_state = 1, .external_lex_state = 50}, - [1826] = {.lex_state = 1, .external_lex_state = 111}, - [1827] = {.lex_state = 1, .external_lex_state = 51}, - [1828] = {.lex_state = 1, .external_lex_state = 57}, - [1829] = {.lex_state = 1, .external_lex_state = 51}, - [1830] = {.lex_state = 1, .external_lex_state = 56}, - [1831] = {.lex_state = 1, .external_lex_state = 52}, - [1832] = {.lex_state = 1, .external_lex_state = 111}, - [1833] = {.lex_state = 1, .external_lex_state = 50}, - [1834] = {.lex_state = 1, .external_lex_state = 52}, - [1835] = {.lex_state = 1, .external_lex_state = 90}, - [1836] = {.lex_state = 1, .external_lex_state = 91}, - [1837] = {.lex_state = 1, .external_lex_state = 55}, - [1838] = {.lex_state = 1, .external_lex_state = 101}, - [1839] = {.lex_state = 1, .external_lex_state = 90}, - [1840] = {.lex_state = 1, .external_lex_state = 48}, - [1841] = {.lex_state = 1, .external_lex_state = 48}, - [1842] = {.lex_state = 1, .external_lex_state = 48}, + [1815] = {.lex_state = 1, .external_lex_state = 101}, + [1816] = {.lex_state = 2, .external_lex_state = 86}, + [1817] = {.lex_state = 1, .external_lex_state = 77}, + [1818] = {.lex_state = 1, .external_lex_state = 47}, + [1819] = {.lex_state = 1, .external_lex_state = 101}, + [1820] = {.lex_state = 1, .external_lex_state = 101}, + [1821] = {.lex_state = 1, .external_lex_state = 51}, + [1822] = {.lex_state = 1, .external_lex_state = 108}, + [1823] = {.lex_state = 1, .external_lex_state = 108}, + [1824] = {.lex_state = 1, .external_lex_state = 51}, + [1825] = {.lex_state = 1, .external_lex_state = 48}, + [1826] = {.lex_state = 1, .external_lex_state = 48}, + [1827] = {.lex_state = 1, .external_lex_state = 48}, + [1828] = {.lex_state = 1, .external_lex_state = 49}, + [1829] = {.lex_state = 1, .external_lex_state = 48}, + [1830] = {.lex_state = 1, .external_lex_state = 51}, + [1831] = {.lex_state = 1, .external_lex_state = 47}, + [1832] = {.lex_state = 1, .external_lex_state = 48}, + [1833] = {.lex_state = 1, .external_lex_state = 48}, + [1834] = {.lex_state = 1, .external_lex_state = 47}, + [1835] = {.lex_state = 1, .external_lex_state = 48}, + [1836] = {.lex_state = 1, .external_lex_state = 48}, + [1837] = {.lex_state = 1, .external_lex_state = 51}, + [1838] = {.lex_state = 1, .external_lex_state = 52}, + [1839] = {.lex_state = 1, .external_lex_state = 52}, + [1840] = {.lex_state = 1, .external_lex_state = 52}, + [1841] = {.lex_state = 1, .external_lex_state = 51}, + [1842] = {.lex_state = 1, .external_lex_state = 52}, [1843] = {.lex_state = 1, .external_lex_state = 48}, - [1844] = {.lex_state = 2, .external_lex_state = 82}, + [1844] = {.lex_state = 1, .external_lex_state = 47}, [1845] = {.lex_state = 1, .external_lex_state = 51}, - [1846] = {.lex_state = 1, .external_lex_state = 48}, - [1847] = {.lex_state = 1, .external_lex_state = 104}, - [1848] = {.lex_state = 1, .external_lex_state = 111}, - [1849] = {.lex_state = 1, .external_lex_state = 50}, - [1850] = {.lex_state = 1, .external_lex_state = 101}, - [1851] = {.lex_state = 1, .external_lex_state = 101}, - [1852] = {.lex_state = 1, .external_lex_state = 50}, - [1853] = {.lex_state = 1, .external_lex_state = 51}, + [1846] = {.lex_state = 1, .external_lex_state = 51}, + [1847] = {.lex_state = 1, .external_lex_state = 48}, + [1848] = {.lex_state = 1, .external_lex_state = 48}, + [1849] = {.lex_state = 1, .external_lex_state = 51}, + [1850] = {.lex_state = 1, .external_lex_state = 51}, + [1851] = {.lex_state = 1, .external_lex_state = 51}, + [1852] = {.lex_state = 1, .external_lex_state = 103}, + [1853] = {.lex_state = 2, .external_lex_state = 102}, [1854] = {.lex_state = 1, .external_lex_state = 51}, - [1855] = {.lex_state = 1, .external_lex_state = 48}, - [1856] = {.lex_state = 1, .external_lex_state = 48}, - [1857] = {.lex_state = 1, .external_lex_state = 50}, - [1858] = {.lex_state = 1, .external_lex_state = 49}, - [1859] = {.lex_state = 1, .external_lex_state = 101}, - [1860] = {.lex_state = 1, .external_lex_state = 53}, - [1861] = {.lex_state = 1, .external_lex_state = 48}, - [1862] = {.lex_state = 1, .external_lex_state = 112}, - [1863] = {.lex_state = 1, .external_lex_state = 48}, - [1864] = {.lex_state = 1, .external_lex_state = 101}, - [1865] = {.lex_state = 2, .external_lex_state = 2}, - [1866] = {.lex_state = 1, .external_lex_state = 53}, - [1867] = {.lex_state = 1, .external_lex_state = 55}, - [1868] = {.lex_state = 1, .external_lex_state = 58}, - [1869] = {.lex_state = 1, .external_lex_state = 55}, - [1870] = {.lex_state = 1, .external_lex_state = 55}, - [1871] = {.lex_state = 1, .external_lex_state = 55}, - [1872] = {.lex_state = 1, .external_lex_state = 55}, - [1873] = {.lex_state = 1, .external_lex_state = 55}, - [1874] = {.lex_state = 2, .external_lex_state = 2}, - [1875] = {.lex_state = 1, .external_lex_state = 55}, - [1876] = {.lex_state = 1, .external_lex_state = 55}, - [1877] = {.lex_state = 1, .external_lex_state = 58}, - [1878] = {.lex_state = 1, .external_lex_state = 55}, - [1879] = {.lex_state = 1, .external_lex_state = 55}, - [1880] = {.lex_state = 1, .external_lex_state = 55}, - [1881] = {.lex_state = 1, .external_lex_state = 55}, - [1882] = {.lex_state = 1, .external_lex_state = 58}, - [1883] = {.lex_state = 1, .external_lex_state = 58}, - [1884] = {.lex_state = 1, .external_lex_state = 58}, - [1885] = {.lex_state = 1, .external_lex_state = 58}, - [1886] = {.lex_state = 1, .external_lex_state = 58}, - [1887] = {.lex_state = 1, .external_lex_state = 58}, - [1888] = {.lex_state = 1, .external_lex_state = 55}, - [1889] = {.lex_state = 1, .external_lex_state = 58}, - [1890] = {.lex_state = 1, .external_lex_state = 58}, - [1891] = {.lex_state = 1, .external_lex_state = 57}, - [1892] = {.lex_state = 1, .external_lex_state = 55}, - [1893] = {.lex_state = 1, .external_lex_state = 58}, - [1894] = {.lex_state = 1, .external_lex_state = 55}, - [1895] = {.lex_state = 1, .external_lex_state = 57}, - [1896] = {.lex_state = 1, .external_lex_state = 58}, - [1897] = {.lex_state = 1, .external_lex_state = 67}, - [1898] = {.lex_state = 1, .external_lex_state = 58}, - [1899] = {.lex_state = 1, .external_lex_state = 58}, - [1900] = {.lex_state = 1, .external_lex_state = 58}, - [1901] = {.lex_state = 1, .external_lex_state = 58}, - [1902] = {.lex_state = 1, .external_lex_state = 55}, - [1903] = {.lex_state = 1, .external_lex_state = 67}, - [1904] = {.lex_state = 1, .external_lex_state = 67}, - [1905] = {.lex_state = 1, .external_lex_state = 58}, - [1906] = {.lex_state = 1, .external_lex_state = 58}, - [1907] = {.lex_state = 1, .external_lex_state = 58}, - [1908] = {.lex_state = 1, .external_lex_state = 113}, - [1909] = {.lex_state = 1, .external_lex_state = 58}, - [1910] = {.lex_state = 1, .external_lex_state = 58}, - [1911] = {.lex_state = 1, .external_lex_state = 57}, - [1912] = {.lex_state = 1, .external_lex_state = 57}, - [1913] = {.lex_state = 1, .external_lex_state = 59}, - [1914] = {.lex_state = 1, .external_lex_state = 58}, - [1915] = {.lex_state = 1, .external_lex_state = 59}, - [1916] = {.lex_state = 1, .external_lex_state = 55}, - [1917] = {.lex_state = 2, .external_lex_state = 11}, - [1918] = {.lex_state = 1, .external_lex_state = 59}, - [1919] = {.lex_state = 1, .external_lex_state = 67}, - [1920] = {.lex_state = 1, .external_lex_state = 59}, - [1921] = {.lex_state = 1, .external_lex_state = 67}, - [1922] = {.lex_state = 2, .external_lex_state = 2}, - [1923] = {.lex_state = 1, .external_lex_state = 87}, - [1924] = {.lex_state = 1, .external_lex_state = 59}, - [1925] = {.lex_state = 1, .external_lex_state = 59}, - [1926] = {.lex_state = 1, .external_lex_state = 59}, - [1927] = {.lex_state = 1, .external_lex_state = 59}, - [1928] = {.lex_state = 1, .external_lex_state = 59}, - [1929] = {.lex_state = 1, .external_lex_state = 55}, - [1930] = {.lex_state = 1, .external_lex_state = 59}, - [1931] = {.lex_state = 1, .external_lex_state = 67}, - [1932] = {.lex_state = 1, .external_lex_state = 67}, - [1933] = {.lex_state = 1, .external_lex_state = 67}, - [1934] = {.lex_state = 1, .external_lex_state = 114}, - [1935] = {.lex_state = 1, .external_lex_state = 114}, - [1936] = {.lex_state = 1, .external_lex_state = 114}, - [1937] = {.lex_state = 2, .external_lex_state = 2}, - [1938] = {.lex_state = 2, .external_lex_state = 2}, - [1939] = {.lex_state = 1, .external_lex_state = 58}, - [1940] = {.lex_state = 1, .external_lex_state = 114}, - [1941] = {.lex_state = 1, .external_lex_state = 57}, - [1942] = {.lex_state = 1, .external_lex_state = 57}, - [1943] = {.lex_state = 1, .external_lex_state = 57}, - [1944] = {.lex_state = 1, .external_lex_state = 59}, - [1945] = {.lex_state = 1, .external_lex_state = 57}, - [1946] = {.lex_state = 1, .external_lex_state = 57}, - [1947] = {.lex_state = 1, .external_lex_state = 57}, - [1948] = {.lex_state = 1, .external_lex_state = 57}, - [1949] = {.lex_state = 1, .external_lex_state = 59}, - [1950] = {.lex_state = 1, .external_lex_state = 55}, - [1951] = {.lex_state = 1, .external_lex_state = 55}, - [1952] = {.lex_state = 1, .external_lex_state = 67}, - [1953] = {.lex_state = 1, .external_lex_state = 67}, - [1954] = {.lex_state = 1, .external_lex_state = 59}, - [1955] = {.lex_state = 1, .external_lex_state = 56}, - [1956] = {.lex_state = 1, .external_lex_state = 59}, - [1957] = {.lex_state = 1, .external_lex_state = 59}, - [1958] = {.lex_state = 1, .external_lex_state = 59}, - [1959] = {.lex_state = 1, .external_lex_state = 58}, - [1960] = {.lex_state = 1, .external_lex_state = 55}, - [1961] = {.lex_state = 1, .external_lex_state = 58}, - [1962] = {.lex_state = 1, .external_lex_state = 55}, - [1963] = {.lex_state = 1, .external_lex_state = 115}, - [1964] = {.lex_state = 1, .external_lex_state = 115}, - [1965] = {.lex_state = 1, .external_lex_state = 116}, - [1966] = {.lex_state = 1, .external_lex_state = 116}, - [1967] = {.lex_state = 1, .external_lex_state = 116}, - [1968] = {.lex_state = 1, .external_lex_state = 115}, - [1969] = {.lex_state = 1, .external_lex_state = 115}, - [1970] = {.lex_state = 1, .external_lex_state = 115}, + [1855] = {.lex_state = 1, .external_lex_state = 51}, + [1856] = {.lex_state = 1, .external_lex_state = 51}, + [1857] = {.lex_state = 1, .external_lex_state = 48}, + [1858] = {.lex_state = 1, .external_lex_state = 51}, + [1859] = {.lex_state = 1, .external_lex_state = 48}, + [1860] = {.lex_state = 1, .external_lex_state = 47}, + [1861] = {.lex_state = 1, .external_lex_state = 111}, + [1862] = {.lex_state = 1, .external_lex_state = 48}, + [1863] = {.lex_state = 1, .external_lex_state = 51}, + [1864] = {.lex_state = 1, .external_lex_state = 51}, + [1865] = {.lex_state = 1, .external_lex_state = 51}, + [1866] = {.lex_state = 1, .external_lex_state = 52}, + [1867] = {.lex_state = 1, .external_lex_state = 51}, + [1868] = {.lex_state = 1, .external_lex_state = 48}, + [1869] = {.lex_state = 1, .external_lex_state = 48}, + [1870] = {.lex_state = 1, .external_lex_state = 51}, + [1871] = {.lex_state = 1, .external_lex_state = 51}, + [1872] = {.lex_state = 1, .external_lex_state = 59}, + [1873] = {.lex_state = 1, .external_lex_state = 51}, + [1874] = {.lex_state = 1, .external_lex_state = 77}, + [1875] = {.lex_state = 1, .external_lex_state = 47}, + [1876] = {.lex_state = 1, .external_lex_state = 52}, + [1877] = {.lex_state = 1, .external_lex_state = 52}, + [1878] = {.lex_state = 1, .external_lex_state = 47}, + [1879] = {.lex_state = 1, .external_lex_state = 51}, + [1880] = {.lex_state = 1, .external_lex_state = 51}, + [1881] = {.lex_state = 1, .external_lex_state = 51}, + [1882] = {.lex_state = 1, .external_lex_state = 47}, + [1883] = {.lex_state = 1, .external_lex_state = 48}, + [1884] = {.lex_state = 1, .external_lex_state = 52}, + [1885] = {.lex_state = 1, .external_lex_state = 48}, + [1886] = {.lex_state = 1, .external_lex_state = 49}, + [1887] = {.lex_state = 1, .external_lex_state = 49}, + [1888] = {.lex_state = 1, .external_lex_state = 101}, + [1889] = {.lex_state = 1, .external_lex_state = 47}, + [1890] = {.lex_state = 1, .external_lex_state = 47}, + [1891] = {.lex_state = 1, .external_lex_state = 47}, + [1892] = {.lex_state = 1, .external_lex_state = 52}, + [1893] = {.lex_state = 1, .external_lex_state = 51}, + [1894] = {.lex_state = 1, .external_lex_state = 47}, + [1895] = {.lex_state = 1, .external_lex_state = 47}, + [1896] = {.lex_state = 1, .external_lex_state = 47}, + [1897] = {.lex_state = 1, .external_lex_state = 51}, + [1898] = {.lex_state = 1, .external_lex_state = 49}, + [1899] = {.lex_state = 1, .external_lex_state = 49}, + [1900] = {.lex_state = 1, .external_lex_state = 101}, + [1901] = {.lex_state = 1, .external_lex_state = 101}, + [1902] = {.lex_state = 1, .external_lex_state = 101}, + [1903] = {.lex_state = 1, .external_lex_state = 69}, + [1904] = {.lex_state = 1, .external_lex_state = 112}, + [1905] = {.lex_state = 1, .external_lex_state = 47}, + [1906] = {.lex_state = 2, .external_lex_state = 102}, + [1907] = {.lex_state = 1, .external_lex_state = 47}, + [1908] = {.lex_state = 1, .external_lex_state = 47}, + [1909] = {.lex_state = 1, .external_lex_state = 49}, + [1910] = {.lex_state = 1, .external_lex_state = 49}, + [1911] = {.lex_state = 1, .external_lex_state = 51}, + [1912] = {.lex_state = 1, .external_lex_state = 47}, + [1913] = {.lex_state = 1, .external_lex_state = 47}, + [1914] = {.lex_state = 2, .external_lex_state = 2}, + [1915] = {.lex_state = 1, .external_lex_state = 57}, + [1916] = {.lex_state = 1, .external_lex_state = 89}, + [1917] = {.lex_state = 1, .external_lex_state = 56}, + [1918] = {.lex_state = 1, .external_lex_state = 56}, + [1919] = {.lex_state = 1, .external_lex_state = 56}, + [1920] = {.lex_state = 1, .external_lex_state = 76}, + [1921] = {.lex_state = 1, .external_lex_state = 89}, + [1922] = {.lex_state = 1, .external_lex_state = 113}, + [1923] = {.lex_state = 2, .external_lex_state = 2}, + [1924] = {.lex_state = 2, .external_lex_state = 2}, + [1925] = {.lex_state = 2, .external_lex_state = 2}, + [1926] = {.lex_state = 1, .external_lex_state = 105}, + [1927] = {.lex_state = 2, .external_lex_state = 2}, + [1928] = {.lex_state = 2, .external_lex_state = 2}, + [1929] = {.lex_state = 2, .external_lex_state = 2}, + [1930] = {.lex_state = 2, .external_lex_state = 2}, + [1931] = {.lex_state = 2, .external_lex_state = 2}, + [1932] = {.lex_state = 1, .external_lex_state = 111}, + [1933] = {.lex_state = 2, .external_lex_state = 2}, + [1934] = {.lex_state = 1, .external_lex_state = 58}, + [1935] = {.lex_state = 2, .external_lex_state = 2}, + [1936] = {.lex_state = 2, .external_lex_state = 2}, + [1937] = {.lex_state = 1, .external_lex_state = 58}, + [1938] = {.lex_state = 1, .external_lex_state = 58}, + [1939] = {.lex_state = 1, .external_lex_state = 59}, + [1940] = {.lex_state = 1, .external_lex_state = 105}, + [1941] = {.lex_state = 1, .external_lex_state = 114}, + [1942] = {.lex_state = 1, .external_lex_state = 89}, + [1943] = {.lex_state = 1, .external_lex_state = 59}, + [1944] = {.lex_state = 1, .external_lex_state = 114}, + [1945] = {.lex_state = 1, .external_lex_state = 68}, + [1946] = {.lex_state = 1, .external_lex_state = 114}, + [1947] = {.lex_state = 2, .external_lex_state = 2}, + [1948] = {.lex_state = 2, .external_lex_state = 2}, + [1949] = {.lex_state = 1, .external_lex_state = 56}, + [1950] = {.lex_state = 1, .external_lex_state = 115}, + [1951] = {.lex_state = 1, .external_lex_state = 68}, + [1952] = {.lex_state = 1, .external_lex_state = 68}, + [1953] = {.lex_state = 1, .external_lex_state = 68}, + [1954] = {.lex_state = 2, .external_lex_state = 2}, + [1955] = {.lex_state = 1, .external_lex_state = 59}, + [1956] = {.lex_state = 2, .external_lex_state = 12}, + [1957] = {.lex_state = 1, .external_lex_state = 56}, + [1958] = {.lex_state = 1, .external_lex_state = 114}, + [1959] = {.lex_state = 1, .external_lex_state = 56}, + [1960] = {.lex_state = 1, .external_lex_state = 59}, + [1961] = {.lex_state = 1, .external_lex_state = 59}, + [1962] = {.lex_state = 1, .external_lex_state = 114}, + [1963] = {.lex_state = 1, .external_lex_state = 56}, + [1964] = {.lex_state = 1, .external_lex_state = 56}, + [1965] = {.lex_state = 1, .external_lex_state = 56}, + [1966] = {.lex_state = 2, .external_lex_state = 10}, + [1967] = {.lex_state = 1, .external_lex_state = 56}, + [1968] = {.lex_state = 1, .external_lex_state = 68}, + [1969] = {.lex_state = 1, .external_lex_state = 56}, + [1970] = {.lex_state = 1, .external_lex_state = 68}, [1971] = {.lex_state = 1, .external_lex_state = 116}, - [1972] = {.lex_state = 1, .external_lex_state = 108}, - [1973] = {.lex_state = 1, .external_lex_state = 59}, - [1974] = {.lex_state = 1, .external_lex_state = 108}, - [1975] = {.lex_state = 2, .external_lex_state = 2}, - [1976] = {.lex_state = 1, .external_lex_state = 114}, - [1977] = {.lex_state = 1, .external_lex_state = 115}, - [1978] = {.lex_state = 1, .external_lex_state = 57}, - [1979] = {.lex_state = 1, .external_lex_state = 57}, - [1980] = {.lex_state = 1, .external_lex_state = 57}, - [1981] = {.lex_state = 1, .external_lex_state = 115}, - [1982] = {.lex_state = 1, .external_lex_state = 115}, - [1983] = {.lex_state = 1, .external_lex_state = 57}, - [1984] = {.lex_state = 2, .external_lex_state = 2}, - [1985] = {.lex_state = 1, .external_lex_state = 115}, - [1986] = {.lex_state = 1, .external_lex_state = 117}, - [1987] = {.lex_state = 1, .external_lex_state = 71}, - [1988] = {.lex_state = 2, .external_lex_state = 2}, - [1989] = {.lex_state = 2, .external_lex_state = 2}, - [1990] = {.lex_state = 2, .external_lex_state = 2}, + [1972] = {.lex_state = 1, .external_lex_state = 56}, + [1973] = {.lex_state = 1, .external_lex_state = 56}, + [1974] = {.lex_state = 1, .external_lex_state = 56}, + [1975] = {.lex_state = 1, .external_lex_state = 56}, + [1976] = {.lex_state = 2, .external_lex_state = 2}, + [1977] = {.lex_state = 1, .external_lex_state = 114}, + [1978] = {.lex_state = 1, .external_lex_state = 111}, + [1979] = {.lex_state = 1, .external_lex_state = 65}, + [1980] = {.lex_state = 1, .external_lex_state = 68}, + [1981] = {.lex_state = 1, .external_lex_state = 68}, + [1982] = {.lex_state = 1, .external_lex_state = 68}, + [1983] = {.lex_state = 1, .external_lex_state = 56}, + [1984] = {.lex_state = 1, .external_lex_state = 116}, + [1985] = {.lex_state = 1, .external_lex_state = 116}, + [1986] = {.lex_state = 1, .external_lex_state = 56}, + [1987] = {.lex_state = 1, .external_lex_state = 56}, + [1988] = {.lex_state = 1, .external_lex_state = 56}, + [1989] = {.lex_state = 1, .external_lex_state = 56}, + [1990] = {.lex_state = 1, .external_lex_state = 59}, [1991] = {.lex_state = 1, .external_lex_state = 59}, - [1992] = {.lex_state = 1, .external_lex_state = 118}, - [1993] = {.lex_state = 1, .external_lex_state = 118}, - [1994] = {.lex_state = 1, .external_lex_state = 118}, - [1995] = {.lex_state = 1, .external_lex_state = 118}, - [1996] = {.lex_state = 1, .external_lex_state = 118}, - [1997] = {.lex_state = 1, .external_lex_state = 118}, - [1998] = {.lex_state = 1, .external_lex_state = 118}, - [1999] = {.lex_state = 1, .external_lex_state = 66}, - [2000] = {.lex_state = 1, .external_lex_state = 118}, - [2001] = {.lex_state = 1, .external_lex_state = 118}, - [2002] = {.lex_state = 1, .external_lex_state = 118}, - [2003] = {.lex_state = 1, .external_lex_state = 107}, - [2004] = {.lex_state = 2, .external_lex_state = 2}, - [2005] = {.lex_state = 1, .external_lex_state = 107}, + [1992] = {.lex_state = 1, .external_lex_state = 59}, + [1993] = {.lex_state = 1, .external_lex_state = 73}, + [1994] = {.lex_state = 1, .external_lex_state = 59}, + [1995] = {.lex_state = 1, .external_lex_state = 59}, + [1996] = {.lex_state = 1, .external_lex_state = 59}, + [1997] = {.lex_state = 1, .external_lex_state = 59}, + [1998] = {.lex_state = 1, .external_lex_state = 59}, + [1999] = {.lex_state = 1, .external_lex_state = 56}, + [2000] = {.lex_state = 1, .external_lex_state = 56}, + [2001] = {.lex_state = 1, .external_lex_state = 56}, + [2002] = {.lex_state = 1, .external_lex_state = 68}, + [2003] = {.lex_state = 1, .external_lex_state = 68}, + [2004] = {.lex_state = 1, .external_lex_state = 114}, + [2005] = {.lex_state = 1, .external_lex_state = 56}, [2006] = {.lex_state = 1, .external_lex_state = 56}, - [2007] = {.lex_state = 1, .external_lex_state = 56}, - [2008] = {.lex_state = 2, .external_lex_state = 2}, - [2009] = {.lex_state = 1, .external_lex_state = 55}, - [2010] = {.lex_state = 1, .external_lex_state = 59}, - [2011] = {.lex_state = 1, .external_lex_state = 59}, - [2012] = {.lex_state = 1, .external_lex_state = 55}, - [2013] = {.lex_state = 1, .external_lex_state = 59}, - [2014] = {.lex_state = 1, .external_lex_state = 59}, - [2015] = {.lex_state = 1, .external_lex_state = 56}, - [2016] = {.lex_state = 1, .external_lex_state = 55}, - [2017] = {.lex_state = 1, .external_lex_state = 57}, - [2018] = {.lex_state = 1, .external_lex_state = 57}, - [2019] = {.lex_state = 1, .external_lex_state = 59}, - [2020] = {.lex_state = 1, .external_lex_state = 75}, - [2021] = {.lex_state = 2, .external_lex_state = 12}, + [2007] = {.lex_state = 1, .external_lex_state = 114}, + [2008] = {.lex_state = 1, .external_lex_state = 117}, + [2009] = {.lex_state = 1, .external_lex_state = 114}, + [2010] = {.lex_state = 1, .external_lex_state = 58}, + [2011] = {.lex_state = 1, .external_lex_state = 55}, + [2012] = {.lex_state = 1, .external_lex_state = 58}, + [2013] = {.lex_state = 1, .external_lex_state = 55}, + [2014] = {.lex_state = 1, .external_lex_state = 58}, + [2015] = {.lex_state = 1, .external_lex_state = 58}, + [2016] = {.lex_state = 1, .external_lex_state = 58}, + [2017] = {.lex_state = 1, .external_lex_state = 55}, + [2018] = {.lex_state = 1, .external_lex_state = 56}, + [2019] = {.lex_state = 2, .external_lex_state = 2}, + [2020] = {.lex_state = 1, .external_lex_state = 56}, + [2021] = {.lex_state = 2, .external_lex_state = 2}, [2022] = {.lex_state = 2, .external_lex_state = 2}, - [2023] = {.lex_state = 1, .external_lex_state = 119}, - [2024] = {.lex_state = 2, .external_lex_state = 2}, + [2023] = {.lex_state = 2, .external_lex_state = 2}, + [2024] = {.lex_state = 1, .external_lex_state = 118}, [2025] = {.lex_state = 2, .external_lex_state = 2}, - [2026] = {.lex_state = 2, .external_lex_state = 2}, - [2027] = {.lex_state = 2, .external_lex_state = 2}, - [2028] = {.lex_state = 2, .external_lex_state = 2}, + [2026] = {.lex_state = 1, .external_lex_state = 59}, + [2027] = {.lex_state = 1, .external_lex_state = 59}, + [2028] = {.lex_state = 1, .external_lex_state = 59}, [2029] = {.lex_state = 2, .external_lex_state = 2}, - [2030] = {.lex_state = 2, .external_lex_state = 2}, + [2030] = {.lex_state = 1, .external_lex_state = 89}, [2031] = {.lex_state = 2, .external_lex_state = 2}, - [2032] = {.lex_state = 1, .external_lex_state = 56}, - [2033] = {.lex_state = 1, .external_lex_state = 120}, - [2034] = {.lex_state = 2, .external_lex_state = 2}, - [2035] = {.lex_state = 1, .external_lex_state = 57}, - [2036] = {.lex_state = 2, .external_lex_state = 2}, - [2037] = {.lex_state = 1, .external_lex_state = 56}, - [2038] = {.lex_state = 1, .external_lex_state = 56}, - [2039] = {.lex_state = 1, .external_lex_state = 59}, - [2040] = {.lex_state = 1, .external_lex_state = 56}, - [2041] = {.lex_state = 1, .external_lex_state = 56}, - [2042] = {.lex_state = 1, .external_lex_state = 56}, - [2043] = {.lex_state = 1, .external_lex_state = 56}, - [2044] = {.lex_state = 1, .external_lex_state = 56}, - [2045] = {.lex_state = 1, .external_lex_state = 56}, - [2046] = {.lex_state = 1, .external_lex_state = 56}, - [2047] = {.lex_state = 1, .external_lex_state = 56}, - [2048] = {.lex_state = 2, .external_lex_state = 2}, - [2049] = {.lex_state = 1, .external_lex_state = 66}, - [2050] = {.lex_state = 2, .external_lex_state = 2}, - [2051] = {.lex_state = 1, .external_lex_state = 56}, - [2052] = {.lex_state = 1, .external_lex_state = 56}, - [2053] = {.lex_state = 1, .external_lex_state = 57}, - [2054] = {.lex_state = 1, .external_lex_state = 57}, - [2055] = {.lex_state = 1, .external_lex_state = 57}, - [2056] = {.lex_state = 1, .external_lex_state = 56}, - [2057] = {.lex_state = 1, .external_lex_state = 57}, - [2058] = {.lex_state = 1, .external_lex_state = 56}, - [2059] = {.lex_state = 1, .external_lex_state = 72}, - [2060] = {.lex_state = 1, .external_lex_state = 56}, - [2061] = {.lex_state = 1, .external_lex_state = 56}, - [2062] = {.lex_state = 1, .external_lex_state = 56}, - [2063] = {.lex_state = 2, .external_lex_state = 2}, - [2064] = {.lex_state = 2, .external_lex_state = 2}, - [2065] = {.lex_state = 2, .external_lex_state = 2}, - [2066] = {.lex_state = 1, .external_lex_state = 56}, - [2067] = {.lex_state = 1, .external_lex_state = 56}, - [2068] = {.lex_state = 2, .external_lex_state = 2}, - [2069] = {.lex_state = 1, .external_lex_state = 121}, - [2070] = {.lex_state = 2, .external_lex_state = 2}, - [2071] = {.lex_state = 1, .external_lex_state = 56}, - [2072] = {.lex_state = 1, .external_lex_state = 56}, - [2073] = {.lex_state = 2, .external_lex_state = 2}, - [2074] = {.lex_state = 2, .external_lex_state = 2}, - [2075] = {.lex_state = 2, .external_lex_state = 2}, - [2076] = {.lex_state = 2, .external_lex_state = 2}, - [2077] = {.lex_state = 1, .external_lex_state = 59}, - [2078] = {.lex_state = 1, .external_lex_state = 115}, - [2079] = {.lex_state = 1, .external_lex_state = 66}, - [2080] = {.lex_state = 1, .external_lex_state = 87}, - [2081] = {.lex_state = 1, .external_lex_state = 59}, - [2082] = {.lex_state = 1, .external_lex_state = 66}, - [2083] = {.lex_state = 1, .external_lex_state = 66}, - [2084] = {.lex_state = 1, .external_lex_state = 66}, - [2085] = {.lex_state = 1, .external_lex_state = 66}, - [2086] = {.lex_state = 2, .external_lex_state = 2}, - [2087] = {.lex_state = 1, .external_lex_state = 66}, + [2032] = {.lex_state = 1, .external_lex_state = 65}, + [2033] = {.lex_state = 1, .external_lex_state = 58}, + [2034] = {.lex_state = 1, .external_lex_state = 119}, + [2035] = {.lex_state = 2, .external_lex_state = 2}, + [2036] = {.lex_state = 1, .external_lex_state = 65}, + [2037] = {.lex_state = 1, .external_lex_state = 116}, + [2038] = {.lex_state = 1, .external_lex_state = 116}, + [2039] = {.lex_state = 1, .external_lex_state = 65}, + [2040] = {.lex_state = 1, .external_lex_state = 60}, + [2041] = {.lex_state = 1, .external_lex_state = 60}, + [2042] = {.lex_state = 1, .external_lex_state = 65}, + [2043] = {.lex_state = 1, .external_lex_state = 65}, + [2044] = {.lex_state = 1, .external_lex_state = 110}, + [2045] = {.lex_state = 1, .external_lex_state = 65}, + [2046] = {.lex_state = 1, .external_lex_state = 69}, + [2047] = {.lex_state = 1, .external_lex_state = 58}, + [2048] = {.lex_state = 1, .external_lex_state = 65}, + [2049] = {.lex_state = 1, .external_lex_state = 65}, + [2050] = {.lex_state = 1, .external_lex_state = 65}, + [2051] = {.lex_state = 2, .external_lex_state = 2}, + [2052] = {.lex_state = 1, .external_lex_state = 65}, + [2053] = {.lex_state = 1, .external_lex_state = 65}, + [2054] = {.lex_state = 2, .external_lex_state = 2}, + [2055] = {.lex_state = 1, .external_lex_state = 60}, + [2056] = {.lex_state = 1, .external_lex_state = 114}, + [2057] = {.lex_state = 1, .external_lex_state = 60}, + [2058] = {.lex_state = 1, .external_lex_state = 55}, + [2059] = {.lex_state = 1, .external_lex_state = 57}, + [2060] = {.lex_state = 1, .external_lex_state = 55}, + [2061] = {.lex_state = 1, .external_lex_state = 57}, + [2062] = {.lex_state = 1, .external_lex_state = 58}, + [2063] = {.lex_state = 1, .external_lex_state = 58}, + [2064] = {.lex_state = 1, .external_lex_state = 58}, + [2065] = {.lex_state = 1, .external_lex_state = 59}, + [2066] = {.lex_state = 1, .external_lex_state = 59}, + [2067] = {.lex_state = 1, .external_lex_state = 59}, + [2068] = {.lex_state = 1, .external_lex_state = 58}, + [2069] = {.lex_state = 1, .external_lex_state = 55}, + [2070] = {.lex_state = 1, .external_lex_state = 55}, + [2071] = {.lex_state = 1, .external_lex_state = 55}, + [2072] = {.lex_state = 1, .external_lex_state = 58}, + [2073] = {.lex_state = 1, .external_lex_state = 58}, + [2074] = {.lex_state = 1, .external_lex_state = 57}, + [2075] = {.lex_state = 1, .external_lex_state = 65}, + [2076] = {.lex_state = 1, .external_lex_state = 110}, + [2077] = {.lex_state = 2, .external_lex_state = 2}, + [2078] = {.lex_state = 2, .external_lex_state = 2}, + [2079] = {.lex_state = 2, .external_lex_state = 2}, + [2080] = {.lex_state = 2, .external_lex_state = 2}, + [2081] = {.lex_state = 2, .external_lex_state = 2}, + [2082] = {.lex_state = 2, .external_lex_state = 2}, + [2083] = {.lex_state = 2, .external_lex_state = 2}, + [2084] = {.lex_state = 1, .external_lex_state = 58}, + [2085] = {.lex_state = 1, .external_lex_state = 55}, + [2086] = {.lex_state = 1, .external_lex_state = 58}, + [2087] = {.lex_state = 1, .external_lex_state = 58}, [2088] = {.lex_state = 2, .external_lex_state = 2}, - [2089] = {.lex_state = 0, .external_lex_state = 122}, - [2090] = {.lex_state = 1, .external_lex_state = 66}, - [2091] = {.lex_state = 1, .external_lex_state = 66}, - [2092] = {.lex_state = 2, .external_lex_state = 2}, - [2093] = {.lex_state = 1, .external_lex_state = 66}, - [2094] = {.lex_state = 1, .external_lex_state = 66}, - [2095] = {.lex_state = 1, .external_lex_state = 57}, - [2096] = {.lex_state = 1, .external_lex_state = 53}, - [2097] = {.lex_state = 1, .external_lex_state = 87}, - [2098] = {.lex_state = 2, .external_lex_state = 2}, - [2099] = {.lex_state = 2, .external_lex_state = 2}, - [2100] = {.lex_state = 1, .external_lex_state = 55}, - [2101] = {.lex_state = 1, .external_lex_state = 105}, - [2102] = {.lex_state = 2, .external_lex_state = 2}, - [2103] = {.lex_state = 2, .external_lex_state = 2}, - [2104] = {.lex_state = 1, .external_lex_state = 105}, - [2105] = {.lex_state = 2, .external_lex_state = 2}, - [2106] = {.lex_state = 2, .external_lex_state = 2}, - [2107] = {.lex_state = 2, .external_lex_state = 2}, - [2108] = {.lex_state = 1, .external_lex_state = 116}, - [2109] = {.lex_state = 1, .external_lex_state = 116}, - [2110] = {.lex_state = 2, .external_lex_state = 2}, - [2111] = {.lex_state = 1, .external_lex_state = 113}, - [2112] = {.lex_state = 1, .external_lex_state = 113}, - [2113] = {.lex_state = 1, .external_lex_state = 53}, - [2114] = {.lex_state = 1, .external_lex_state = 53}, - [2115] = {.lex_state = 1, .external_lex_state = 113}, - [2116] = {.lex_state = 1, .external_lex_state = 113}, - [2117] = {.lex_state = 1, .external_lex_state = 113}, - [2118] = {.lex_state = 1, .external_lex_state = 53}, - [2119] = {.lex_state = 1, .external_lex_state = 113}, - [2120] = {.lex_state = 1, .external_lex_state = 116}, - [2121] = {.lex_state = 2, .external_lex_state = 2}, - [2122] = {.lex_state = 2, .external_lex_state = 2}, - [2123] = {.lex_state = 2, .external_lex_state = 2}, - [2124] = {.lex_state = 2, .external_lex_state = 2}, - [2125] = {.lex_state = 1, .external_lex_state = 113}, - [2126] = {.lex_state = 1, .external_lex_state = 113}, - [2127] = {.lex_state = 2, .external_lex_state = 2}, - [2128] = {.lex_state = 1, .external_lex_state = 113}, - [2129] = {.lex_state = 1, .external_lex_state = 109}, - [2130] = {.lex_state = 1, .external_lex_state = 67}, - [2131] = {.lex_state = 2, .external_lex_state = 2}, - [2132] = {.lex_state = 1, .external_lex_state = 116}, - [2133] = {.lex_state = 2, .external_lex_state = 2}, - [2134] = {.lex_state = 2, .external_lex_state = 2}, - [2135] = {.lex_state = 2, .external_lex_state = 2}, + [2089] = {.lex_state = 1, .external_lex_state = 58}, + [2090] = {.lex_state = 1, .external_lex_state = 58}, + [2091] = {.lex_state = 1, .external_lex_state = 58}, + [2092] = {.lex_state = 1, .external_lex_state = 58}, + [2093] = {.lex_state = 2, .external_lex_state = 2}, + [2094] = {.lex_state = 2, .external_lex_state = 2}, + [2095] = {.lex_state = 2, .external_lex_state = 2}, + [2096] = {.lex_state = 2, .external_lex_state = 2}, + [2097] = {.lex_state = 2, .external_lex_state = 2}, + [2098] = {.lex_state = 1, .external_lex_state = 119}, + [2099] = {.lex_state = 1, .external_lex_state = 119}, + [2100] = {.lex_state = 1, .external_lex_state = 119}, + [2101] = {.lex_state = 1, .external_lex_state = 119}, + [2102] = {.lex_state = 1, .external_lex_state = 118}, + [2103] = {.lex_state = 1, .external_lex_state = 59}, + [2104] = {.lex_state = 1, .external_lex_state = 59}, + [2105] = {.lex_state = 1, .external_lex_state = 59}, + [2106] = {.lex_state = 1, .external_lex_state = 119}, + [2107] = {.lex_state = 1, .external_lex_state = 59}, + [2108] = {.lex_state = 1, .external_lex_state = 118}, + [2109] = {.lex_state = 1, .external_lex_state = 119}, + [2110] = {.lex_state = 1, .external_lex_state = 60}, + [2111] = {.lex_state = 2, .external_lex_state = 2}, + [2112] = {.lex_state = 1, .external_lex_state = 58}, + [2113] = {.lex_state = 1, .external_lex_state = 58}, + [2114] = {.lex_state = 1, .external_lex_state = 55}, + [2115] = {.lex_state = 2, .external_lex_state = 2}, + [2116] = {.lex_state = 2, .external_lex_state = 2}, + [2117] = {.lex_state = 2, .external_lex_state = 2}, + [2118] = {.lex_state = 2, .external_lex_state = 2}, + [2119] = {.lex_state = 1, .external_lex_state = 60}, + [2120] = {.lex_state = 1, .external_lex_state = 60}, + [2121] = {.lex_state = 1, .external_lex_state = 119}, + [2122] = {.lex_state = 1, .external_lex_state = 60}, + [2123] = {.lex_state = 1, .external_lex_state = 119}, + [2124] = {.lex_state = 1, .external_lex_state = 60}, + [2125] = {.lex_state = 1, .external_lex_state = 58}, + [2126] = {.lex_state = 1, .external_lex_state = 60}, + [2127] = {.lex_state = 1, .external_lex_state = 58}, + [2128] = {.lex_state = 1, .external_lex_state = 57}, + [2129] = {.lex_state = 1, .external_lex_state = 57}, + [2130] = {.lex_state = 1, .external_lex_state = 55}, + [2131] = {.lex_state = 1, .external_lex_state = 55}, + [2132] = {.lex_state = 1, .external_lex_state = 55}, + [2133] = {.lex_state = 1, .external_lex_state = 55}, + [2134] = {.lex_state = 1, .external_lex_state = 57}, + [2135] = {.lex_state = 1, .external_lex_state = 57}, [2136] = {.lex_state = 1, .external_lex_state = 57}, - [2137] = {.lex_state = 1, .external_lex_state = 116}, - [2138] = {.lex_state = 2, .external_lex_state = 2}, - [2139] = {.lex_state = 2, .external_lex_state = 2}, - [2140] = {.lex_state = 1, .external_lex_state = 56}, - [2141] = {.lex_state = 1, .external_lex_state = 109}, - [2142] = {.lex_state = 1, .external_lex_state = 116}, - [2143] = {.lex_state = 2, .external_lex_state = 2}, - [2144] = {.lex_state = 2, .external_lex_state = 2}, - [2145] = {.lex_state = 2, .external_lex_state = 2}, - [2146] = {.lex_state = 1, .external_lex_state = 53}, - [2147] = {.lex_state = 1, .external_lex_state = 53}, - [2148] = {.lex_state = 2, .external_lex_state = 2}, - [2149] = {.lex_state = 2, .external_lex_state = 2}, - [2150] = {.lex_state = 2, .external_lex_state = 2}, - [2151] = {.lex_state = 1, .external_lex_state = 53}, - [2152] = {.lex_state = 1, .external_lex_state = 112}, - [2153] = {.lex_state = 1, .external_lex_state = 87}, - [2154] = {.lex_state = 2, .external_lex_state = 2}, - [2155] = {.lex_state = 2, .external_lex_state = 2}, - [2156] = {.lex_state = 1, .external_lex_state = 53}, - [2157] = {.lex_state = 1, .external_lex_state = 53}, - [2158] = {.lex_state = 1, .external_lex_state = 112}, - [2159] = {.lex_state = 1, .external_lex_state = 71}, + [2137] = {.lex_state = 1, .external_lex_state = 55}, + [2138] = {.lex_state = 1, .external_lex_state = 55}, + [2139] = {.lex_state = 1, .external_lex_state = 60}, + [2140] = {.lex_state = 1, .external_lex_state = 120}, + [2141] = {.lex_state = 1, .external_lex_state = 118}, + [2142] = {.lex_state = 1, .external_lex_state = 118}, + [2143] = {.lex_state = 1, .external_lex_state = 118}, + [2144] = {.lex_state = 1, .external_lex_state = 60}, + [2145] = {.lex_state = 1, .external_lex_state = 119}, + [2146] = {.lex_state = 1, .external_lex_state = 59}, + [2147] = {.lex_state = 1, .external_lex_state = 60}, + [2148] = {.lex_state = 1, .external_lex_state = 55}, + [2149] = {.lex_state = 1, .external_lex_state = 57}, + [2150] = {.lex_state = 1, .external_lex_state = 55}, + [2151] = {.lex_state = 1, .external_lex_state = 55}, + [2152] = {.lex_state = 1, .external_lex_state = 55}, + [2153] = {.lex_state = 1, .external_lex_state = 55}, + [2154] = {.lex_state = 1, .external_lex_state = 55}, + [2155] = {.lex_state = 1, .external_lex_state = 55}, + [2156] = {.lex_state = 1, .external_lex_state = 106}, + [2157] = {.lex_state = 2, .external_lex_state = 2}, + [2158] = {.lex_state = 2, .external_lex_state = 2}, + [2159] = {.lex_state = 1, .external_lex_state = 116}, [2160] = {.lex_state = 2, .external_lex_state = 2}, - [2161] = {.lex_state = 2, .external_lex_state = 2}, - [2162] = {.lex_state = 2, .external_lex_state = 2}, - [2163] = {.lex_state = 1, .external_lex_state = 114}, - [2164] = {.lex_state = 1, .external_lex_state = 114}, - [2165] = {.lex_state = 1, .external_lex_state = 123}, + [2161] = {.lex_state = 0, .external_lex_state = 121}, + [2162] = {.lex_state = 1, .external_lex_state = 60}, + [2163] = {.lex_state = 1, .external_lex_state = 60}, + [2164] = {.lex_state = 1, .external_lex_state = 60}, + [2165] = {.lex_state = 2, .external_lex_state = 2}, [2166] = {.lex_state = 2, .external_lex_state = 2}, - [2167] = {.lex_state = 2, .external_lex_state = 2}, + [2167] = {.lex_state = 1, .external_lex_state = 106}, [2168] = {.lex_state = 2, .external_lex_state = 2}, - [2169] = {.lex_state = 1, .external_lex_state = 53}, - [2170] = {.lex_state = 1, .external_lex_state = 57}, - [2171] = {.lex_state = 1, .external_lex_state = 53}, - [2172] = {.lex_state = 1, .external_lex_state = 53}, + [2169] = {.lex_state = 1, .external_lex_state = 55}, + [2170] = {.lex_state = 1, .external_lex_state = 55}, + [2171] = {.lex_state = 1, .external_lex_state = 57}, + [2172] = {.lex_state = 2, .external_lex_state = 2}, [2173] = {.lex_state = 2, .external_lex_state = 2}, - [2174] = {.lex_state = 1, .external_lex_state = 57}, - [2175] = {.lex_state = 1, .external_lex_state = 53}, - [2176] = {.lex_state = 1, .external_lex_state = 53}, - [2177] = {.lex_state = 1, .external_lex_state = 61}, - [2178] = {.lex_state = 0, .external_lex_state = 122}, - [2179] = {.lex_state = 1, .external_lex_state = 114}, - [2180] = {.lex_state = 1, .external_lex_state = 124}, - [2181] = {.lex_state = 2, .external_lex_state = 2}, - [2182] = {.lex_state = 1, .external_lex_state = 114}, - [2183] = {.lex_state = 1, .external_lex_state = 114}, - [2184] = {.lex_state = 1, .external_lex_state = 53}, - [2185] = {.lex_state = 1, .external_lex_state = 53}, - [2186] = {.lex_state = 1, .external_lex_state = 53}, - [2187] = {.lex_state = 1, .external_lex_state = 53}, - [2188] = {.lex_state = 2, .external_lex_state = 2}, - [2189] = {.lex_state = 1, .external_lex_state = 53}, - [2190] = {.lex_state = 1, .external_lex_state = 57}, - [2191] = {.lex_state = 1, .external_lex_state = 59}, + [2174] = {.lex_state = 2, .external_lex_state = 2}, + [2175] = {.lex_state = 2, .external_lex_state = 2}, + [2176] = {.lex_state = 1, .external_lex_state = 58}, + [2177] = {.lex_state = 2, .external_lex_state = 2}, + [2178] = {.lex_state = 2, .external_lex_state = 2}, + [2179] = {.lex_state = 2, .external_lex_state = 2}, + [2180] = {.lex_state = 1, .external_lex_state = 55}, + [2181] = {.lex_state = 1, .external_lex_state = 60}, + [2182] = {.lex_state = 1, .external_lex_state = 68}, + [2183] = {.lex_state = 2, .external_lex_state = 2}, + [2184] = {.lex_state = 2, .external_lex_state = 2}, + [2185] = {.lex_state = 1, .external_lex_state = 122}, + [2186] = {.lex_state = 2, .external_lex_state = 2}, + [2187] = {.lex_state = 2, .external_lex_state = 2}, + [2188] = {.lex_state = 1, .external_lex_state = 120}, + [2189] = {.lex_state = 1, .external_lex_state = 59}, + [2190] = {.lex_state = 2, .external_lex_state = 2}, + [2191] = {.lex_state = 2, .external_lex_state = 2}, [2192] = {.lex_state = 2, .external_lex_state = 2}, [2193] = {.lex_state = 2, .external_lex_state = 2}, - [2194] = {.lex_state = 2, .external_lex_state = 2}, + [2194] = {.lex_state = 1, .external_lex_state = 57}, [2195] = {.lex_state = 2, .external_lex_state = 2}, [2196] = {.lex_state = 2, .external_lex_state = 2}, [2197] = {.lex_state = 2, .external_lex_state = 2}, - [2198] = {.lex_state = 1, .external_lex_state = 53}, - [2199] = {.lex_state = 1, .external_lex_state = 71}, + [2198] = {.lex_state = 0, .external_lex_state = 121}, + [2199] = {.lex_state = 1, .external_lex_state = 69}, [2200] = {.lex_state = 2, .external_lex_state = 2}, - [2201] = {.lex_state = 1, .external_lex_state = 53}, + [2201] = {.lex_state = 2, .external_lex_state = 2}, [2202] = {.lex_state = 2, .external_lex_state = 2}, [2203] = {.lex_state = 2, .external_lex_state = 2}, - [2204] = {.lex_state = 1, .external_lex_state = 55}, + [2204] = {.lex_state = 2, .external_lex_state = 2}, [2205] = {.lex_state = 2, .external_lex_state = 2}, [2206] = {.lex_state = 2, .external_lex_state = 2}, - [2207] = {.lex_state = 2, .external_lex_state = 2}, + [2207] = {.lex_state = 1, .external_lex_state = 60}, [2208] = {.lex_state = 2, .external_lex_state = 2}, [2209] = {.lex_state = 2, .external_lex_state = 2}, - [2210] = {.lex_state = 2, .external_lex_state = 2}, + [2210] = {.lex_state = 1, .external_lex_state = 123}, [2211] = {.lex_state = 2, .external_lex_state = 2}, - [2212] = {.lex_state = 1, .external_lex_state = 53}, + [2212] = {.lex_state = 2, .external_lex_state = 2}, [2213] = {.lex_state = 2, .external_lex_state = 2}, - [2214] = {.lex_state = 1, .external_lex_state = 53}, - [2215] = {.lex_state = 1, .external_lex_state = 58}, - [2216] = {.lex_state = 2, .external_lex_state = 2}, - [2217] = {.lex_state = 2, .external_lex_state = 2}, - [2218] = {.lex_state = 1, .external_lex_state = 71}, - [2219] = {.lex_state = 1, .external_lex_state = 53}, - [2220] = {.lex_state = 2, .external_lex_state = 2}, - [2221] = {.lex_state = 1, .external_lex_state = 53}, - [2222] = {.lex_state = 1, .external_lex_state = 58}, - [2223] = {.lex_state = 2, .external_lex_state = 2}, - [2224] = {.lex_state = 1, .external_lex_state = 53}, - [2225] = {.lex_state = 1, .external_lex_state = 125}, - [2226] = {.lex_state = 1, .external_lex_state = 126}, - [2227] = {.lex_state = 0, .external_lex_state = 127}, - [2228] = {.lex_state = 1, .external_lex_state = 72}, - [2229] = {.lex_state = 1, .external_lex_state = 75}, - [2230] = {.lex_state = 1, .external_lex_state = 128}, - [2231] = {.lex_state = 1, .external_lex_state = 120}, - [2232] = {.lex_state = 1, .external_lex_state = 72}, - [2233] = {.lex_state = 1, .external_lex_state = 72}, - [2234] = {.lex_state = 1, .external_lex_state = 72}, - [2235] = {.lex_state = 1, .external_lex_state = 75}, - [2236] = {.lex_state = 1, .external_lex_state = 75}, - [2237] = {.lex_state = 1, .external_lex_state = 83}, - [2238] = {.lex_state = 1, .external_lex_state = 126}, - [2239] = {.lex_state = 1, .external_lex_state = 128}, - [2240] = {.lex_state = 1, .external_lex_state = 128}, - [2241] = {.lex_state = 1, .external_lex_state = 75}, - [2242] = {.lex_state = 1, .external_lex_state = 75}, - [2243] = {.lex_state = 1, .external_lex_state = 128}, - [2244] = {.lex_state = 1, .external_lex_state = 75}, - [2245] = {.lex_state = 1, .external_lex_state = 75}, - [2246] = {.lex_state = 1, .external_lex_state = 75}, - [2247] = {.lex_state = 1, .external_lex_state = 128}, - [2248] = {.lex_state = 0, .external_lex_state = 127}, - [2249] = {.lex_state = 1, .external_lex_state = 128}, - [2250] = {.lex_state = 0, .external_lex_state = 127}, - [2251] = {.lex_state = 1, .external_lex_state = 128}, - [2252] = {.lex_state = 1, .external_lex_state = 128}, - [2253] = {.lex_state = 1, .external_lex_state = 71}, - [2254] = {.lex_state = 1, .external_lex_state = 129}, - [2255] = {.lex_state = 1, .external_lex_state = 129}, - [2256] = {.lex_state = 1, .external_lex_state = 129}, - [2257] = {.lex_state = 1, .external_lex_state = 129}, - [2258] = {.lex_state = 1, .external_lex_state = 129}, - [2259] = {.lex_state = 1, .external_lex_state = 87}, - [2260] = {.lex_state = 1, .external_lex_state = 129}, - [2261] = {.lex_state = 1, .external_lex_state = 128}, - [2262] = {.lex_state = 1, .external_lex_state = 120}, - [2263] = {.lex_state = 1, .external_lex_state = 72}, - [2264] = {.lex_state = 1, .external_lex_state = 72}, - [2265] = {.lex_state = 1, .external_lex_state = 87}, - [2266] = {.lex_state = 1, .external_lex_state = 87}, - [2267] = {.lex_state = 1, .external_lex_state = 87}, - [2268] = {.lex_state = 1, .external_lex_state = 66}, - [2269] = {.lex_state = 1, .external_lex_state = 125}, - [2270] = {.lex_state = 1, .external_lex_state = 119}, - [2271] = {.lex_state = 0, .external_lex_state = 127}, - [2272] = {.lex_state = 1, .external_lex_state = 129}, - [2273] = {.lex_state = 1, .external_lex_state = 129}, - [2274] = {.lex_state = 1, .external_lex_state = 72}, - [2275] = {.lex_state = 1, .external_lex_state = 129}, - [2276] = {.lex_state = 1, .external_lex_state = 121}, - [2277] = {.lex_state = 1, .external_lex_state = 72}, - [2278] = {.lex_state = 0, .external_lex_state = 127}, - [2279] = {.lex_state = 1, .external_lex_state = 71}, - [2280] = {.lex_state = 1, .external_lex_state = 119}, - [2281] = {.lex_state = 1, .external_lex_state = 66}, - [2282] = {.lex_state = 0, .external_lex_state = 122}, - [2283] = {.lex_state = 1, .external_lex_state = 67}, - [2284] = {.lex_state = 1, .external_lex_state = 125}, - [2285] = {.lex_state = 1, .external_lex_state = 71}, - [2286] = {.lex_state = 1, .external_lex_state = 125}, - [2287] = {.lex_state = 1, .external_lex_state = 130}, - [2288] = {.lex_state = 1, .external_lex_state = 67}, - [2289] = {.lex_state = 1, .external_lex_state = 125}, - [2290] = {.lex_state = 1, .external_lex_state = 121}, - [2291] = {.lex_state = 1, .external_lex_state = 130}, - [2292] = {.lex_state = 0, .external_lex_state = 122}, - [2293] = {.lex_state = 1, .external_lex_state = 130}, - [2294] = {.lex_state = 1, .external_lex_state = 75}, - [2295] = {.lex_state = 1, .external_lex_state = 71}, - [2296] = {.lex_state = 1, .external_lex_state = 87}, - [2297] = {.lex_state = 0, .external_lex_state = 127}, - [2298] = {.lex_state = 1, .external_lex_state = 129}, - [2299] = {.lex_state = 1, .external_lex_state = 72}, - [2300] = {.lex_state = 1, .external_lex_state = 66}, - [2301] = {.lex_state = 1, .external_lex_state = 87}, - [2302] = {.lex_state = 1, .external_lex_state = 129}, - [2303] = {.lex_state = 1, .external_lex_state = 123}, - [2304] = {.lex_state = 1, .external_lex_state = 128}, - [2305] = {.lex_state = 1, .external_lex_state = 130}, - [2306] = {.lex_state = 1, .external_lex_state = 66}, - [2307] = {.lex_state = 1, .external_lex_state = 87}, - [2308] = {.lex_state = 1, .external_lex_state = 87}, - [2309] = {.lex_state = 1, .external_lex_state = 130}, - [2310] = {.lex_state = 1, .external_lex_state = 130}, - [2311] = {.lex_state = 1, .external_lex_state = 87}, - [2312] = {.lex_state = 1, .external_lex_state = 130}, + [2214] = {.lex_state = 2, .external_lex_state = 2}, + [2215] = {.lex_state = 1, .external_lex_state = 60}, + [2216] = {.lex_state = 1, .external_lex_state = 59}, + [2217] = {.lex_state = 1, .external_lex_state = 55}, + [2218] = {.lex_state = 1, .external_lex_state = 55}, + [2219] = {.lex_state = 1, .external_lex_state = 57}, + [2220] = {.lex_state = 1, .external_lex_state = 120}, + [2221] = {.lex_state = 1, .external_lex_state = 120}, + [2222] = {.lex_state = 1, .external_lex_state = 120}, + [2223] = {.lex_state = 1, .external_lex_state = 59}, + [2224] = {.lex_state = 1, .external_lex_state = 69}, + [2225] = {.lex_state = 2, .external_lex_state = 2}, + [2226] = {.lex_state = 2, .external_lex_state = 2}, + [2227] = {.lex_state = 1, .external_lex_state = 112}, + [2228] = {.lex_state = 1, .external_lex_state = 59}, + [2229] = {.lex_state = 1, .external_lex_state = 112}, + [2230] = {.lex_state = 1, .external_lex_state = 57}, + [2231] = {.lex_state = 1, .external_lex_state = 57}, + [2232] = {.lex_state = 1, .external_lex_state = 116}, + [2233] = {.lex_state = 2, .external_lex_state = 2}, + [2234] = {.lex_state = 1, .external_lex_state = 120}, + [2235] = {.lex_state = 1, .external_lex_state = 60}, + [2236] = {.lex_state = 1, .external_lex_state = 60}, + [2237] = {.lex_state = 1, .external_lex_state = 120}, + [2238] = {.lex_state = 1, .external_lex_state = 61}, + [2239] = {.lex_state = 1, .external_lex_state = 124}, + [2240] = {.lex_state = 1, .external_lex_state = 57}, + [2241] = {.lex_state = 1, .external_lex_state = 57}, + [2242] = {.lex_state = 1, .external_lex_state = 120}, + [2243] = {.lex_state = 1, .external_lex_state = 116}, + [2244] = {.lex_state = 1, .external_lex_state = 59}, + [2245] = {.lex_state = 1, .external_lex_state = 116}, + [2246] = {.lex_state = 1, .external_lex_state = 116}, + [2247] = {.lex_state = 1, .external_lex_state = 120}, + [2248] = {.lex_state = 1, .external_lex_state = 57}, + [2249] = {.lex_state = 1, .external_lex_state = 120}, + [2250] = {.lex_state = 1, .external_lex_state = 56}, + [2251] = {.lex_state = 2, .external_lex_state = 2}, + [2252] = {.lex_state = 1, .external_lex_state = 60}, + [2253] = {.lex_state = 1, .external_lex_state = 60}, + [2254] = {.lex_state = 1, .external_lex_state = 60}, + [2255] = {.lex_state = 2, .external_lex_state = 2}, + [2256] = {.lex_state = 2, .external_lex_state = 2}, + [2257] = {.lex_state = 1, .external_lex_state = 60}, + [2258] = {.lex_state = 1, .external_lex_state = 57}, + [2259] = {.lex_state = 1, .external_lex_state = 57}, + [2260] = {.lex_state = 1, .external_lex_state = 57}, + [2261] = {.lex_state = 1, .external_lex_state = 57}, + [2262] = {.lex_state = 1, .external_lex_state = 57}, + [2263] = {.lex_state = 1, .external_lex_state = 57}, + [2264] = {.lex_state = 1, .external_lex_state = 57}, + [2265] = {.lex_state = 2, .external_lex_state = 2}, + [2266] = {.lex_state = 1, .external_lex_state = 118}, + [2267] = {.lex_state = 2, .external_lex_state = 2}, + [2268] = {.lex_state = 1, .external_lex_state = 60}, + [2269] = {.lex_state = 1, .external_lex_state = 57}, + [2270] = {.lex_state = 2, .external_lex_state = 2}, + [2271] = {.lex_state = 2, .external_lex_state = 2}, + [2272] = {.lex_state = 1, .external_lex_state = 69}, + [2273] = {.lex_state = 2, .external_lex_state = 2}, + [2274] = {.lex_state = 2, .external_lex_state = 2}, + [2275] = {.lex_state = 1, .external_lex_state = 118}, + [2276] = {.lex_state = 1, .external_lex_state = 118}, + [2277] = {.lex_state = 1, .external_lex_state = 118}, + [2278] = {.lex_state = 2, .external_lex_state = 2}, + [2279] = {.lex_state = 2, .external_lex_state = 2}, + [2280] = {.lex_state = 2, .external_lex_state = 2}, + [2281] = {.lex_state = 1, .external_lex_state = 57}, + [2282] = {.lex_state = 1, .external_lex_state = 57}, + [2283] = {.lex_state = 1, .external_lex_state = 58}, + [2284] = {.lex_state = 1, .external_lex_state = 60}, + [2285] = {.lex_state = 2, .external_lex_state = 2}, + [2286] = {.lex_state = 1, .external_lex_state = 60}, + [2287] = {.lex_state = 1, .external_lex_state = 57}, + [2288] = {.lex_state = 1, .external_lex_state = 56}, + [2289] = {.lex_state = 1, .external_lex_state = 55}, + [2290] = {.lex_state = 1, .external_lex_state = 60}, + [2291] = {.lex_state = 1, .external_lex_state = 65}, + [2292] = {.lex_state = 1, .external_lex_state = 69}, + [2293] = {.lex_state = 1, .external_lex_state = 125}, + [2294] = {.lex_state = 1, .external_lex_state = 125}, + [2295] = {.lex_state = 1, .external_lex_state = 125}, + [2296] = {.lex_state = 1, .external_lex_state = 125}, + [2297] = {.lex_state = 1, .external_lex_state = 125}, + [2298] = {.lex_state = 1, .external_lex_state = 125}, + [2299] = {.lex_state = 1, .external_lex_state = 73}, + [2300] = {.lex_state = 1, .external_lex_state = 125}, + [2301] = {.lex_state = 1, .external_lex_state = 125}, + [2302] = {.lex_state = 1, .external_lex_state = 125}, + [2303] = {.lex_state = 1, .external_lex_state = 113}, + [2304] = {.lex_state = 1, .external_lex_state = 113}, + [2305] = {.lex_state = 1, .external_lex_state = 73}, + [2306] = {.lex_state = 1, .external_lex_state = 73}, + [2307] = {.lex_state = 1, .external_lex_state = 73}, + [2308] = {.lex_state = 1, .external_lex_state = 73}, + [2309] = {.lex_state = 1, .external_lex_state = 73}, + [2310] = {.lex_state = 1, .external_lex_state = 76}, + [2311] = {.lex_state = 1, .external_lex_state = 126}, + [2312] = {.lex_state = 1, .external_lex_state = 126}, [2313] = {.lex_state = 1, .external_lex_state = 126}, [2314] = {.lex_state = 1, .external_lex_state = 126}, - [2315] = {.lex_state = 1, .external_lex_state = 123}, - [2316] = {.lex_state = 1, .external_lex_state = 130}, - [2317] = {.lex_state = 1, .external_lex_state = 130}, - [2318] = {.lex_state = 1, .external_lex_state = 125}, - [2319] = {.lex_state = 1, .external_lex_state = 75}, - [2320] = {.lex_state = 1, .external_lex_state = 125}, - [2321] = {.lex_state = 1, .external_lex_state = 117}, - [2322] = {.lex_state = 1, .external_lex_state = 66}, - [2323] = {.lex_state = 1, .external_lex_state = 126}, - [2324] = {.lex_state = 1, .external_lex_state = 71}, - [2325] = {.lex_state = 0, .external_lex_state = 122}, - [2326] = {.lex_state = 1, .external_lex_state = 71}, - [2327] = {.lex_state = 1, .external_lex_state = 72}, - [2328] = {.lex_state = 1, .external_lex_state = 129}, - [2329] = {.lex_state = 1, .external_lex_state = 87}, - [2330] = {.lex_state = 1, .external_lex_state = 117}, - [2331] = {.lex_state = 1, .external_lex_state = 66}, - [2332] = {.lex_state = 0, .external_lex_state = 127}, - [2333] = {.lex_state = 1, .external_lex_state = 66}, - [2334] = {.lex_state = 1, .external_lex_state = 124}, - [2335] = {.lex_state = 1, .external_lex_state = 66}, - [2336] = {.lex_state = 1, .external_lex_state = 130}, - [2337] = {.lex_state = 1, .external_lex_state = 125}, - [2338] = {.lex_state = 1, .external_lex_state = 66}, - [2339] = {.lex_state = 1, .external_lex_state = 79}, - [2340] = {.lex_state = 1, .external_lex_state = 75}, - [2341] = {.lex_state = 1, .external_lex_state = 130}, - [2342] = {.lex_state = 1, .external_lex_state = 124}, - [2343] = {.lex_state = 1, .external_lex_state = 66}, - [2344] = {.lex_state = 1, .external_lex_state = 71}, - [2345] = {.lex_state = 1, .external_lex_state = 125}, - [2346] = {.lex_state = 1, .external_lex_state = 125}, - [2347] = {.lex_state = 1, .external_lex_state = 71}, - [2348] = {.lex_state = 1, .external_lex_state = 72}, - [2349] = {.lex_state = 1, .external_lex_state = 126}, - [2350] = {.lex_state = 1, .external_lex_state = 71}, - [2351] = {.lex_state = 1, .external_lex_state = 128}, - [2352] = {.lex_state = 1, .external_lex_state = 129}, + [2315] = {.lex_state = 1, .external_lex_state = 126}, + [2316] = {.lex_state = 1, .external_lex_state = 126}, + [2317] = {.lex_state = 1, .external_lex_state = 78}, + [2318] = {.lex_state = 1, .external_lex_state = 126}, + [2319] = {.lex_state = 1, .external_lex_state = 126}, + [2320] = {.lex_state = 1, .external_lex_state = 126}, + [2321] = {.lex_state = 1, .external_lex_state = 115}, + [2322] = {.lex_state = 0, .external_lex_state = 127}, + [2323] = {.lex_state = 1, .external_lex_state = 128}, + [2324] = {.lex_state = 1, .external_lex_state = 69}, + [2325] = {.lex_state = 0, .external_lex_state = 127}, + [2326] = {.lex_state = 1, .external_lex_state = 115}, + [2327] = {.lex_state = 1, .external_lex_state = 73}, + [2328] = {.lex_state = 1, .external_lex_state = 73}, + [2329] = {.lex_state = 0, .external_lex_state = 127}, + [2330] = {.lex_state = 1, .external_lex_state = 129}, + [2331] = {.lex_state = 1, .external_lex_state = 129}, + [2332] = {.lex_state = 1, .external_lex_state = 129}, + [2333] = {.lex_state = 1, .external_lex_state = 129}, + [2334] = {.lex_state = 1, .external_lex_state = 129}, + [2335] = {.lex_state = 1, .external_lex_state = 129}, + [2336] = {.lex_state = 1, .external_lex_state = 73}, + [2337] = {.lex_state = 1, .external_lex_state = 73}, + [2338] = {.lex_state = 1, .external_lex_state = 129}, + [2339] = {.lex_state = 1, .external_lex_state = 129}, + [2340] = {.lex_state = 1, .external_lex_state = 129}, + [2341] = {.lex_state = 1, .external_lex_state = 117}, + [2342] = {.lex_state = 1, .external_lex_state = 117}, + [2343] = {.lex_state = 0, .external_lex_state = 127}, + [2344] = {.lex_state = 0, .external_lex_state = 127}, + [2345] = {.lex_state = 1, .external_lex_state = 68}, + [2346] = {.lex_state = 1, .external_lex_state = 68}, + [2347] = {.lex_state = 1, .external_lex_state = 65}, + [2348] = {.lex_state = 1, .external_lex_state = 65}, + [2349] = {.lex_state = 0, .external_lex_state = 127}, + [2350] = {.lex_state = 0, .external_lex_state = 121}, + [2351] = {.lex_state = 1, .external_lex_state = 76}, + [2352] = {.lex_state = 0, .external_lex_state = 127}, [2353] = {.lex_state = 0, .external_lex_state = 127}, - [2354] = {.lex_state = 1, .external_lex_state = 126}, - [2355] = {.lex_state = 0, .external_lex_state = 122}, - [2356] = {.lex_state = 1, .external_lex_state = 71}, + [2354] = {.lex_state = 1, .external_lex_state = 129}, + [2355] = {.lex_state = 1, .external_lex_state = 76}, + [2356] = {.lex_state = 1, .external_lex_state = 76}, [2357] = {.lex_state = 1, .external_lex_state = 126}, - [2358] = {.lex_state = 1, .external_lex_state = 71}, - [2359] = {.lex_state = 0, .external_lex_state = 127}, - [2360] = {.lex_state = 1, .external_lex_state = 126}, - [2361] = {.lex_state = 0, .external_lex_state = 127}, - [2362] = {.lex_state = 1, .external_lex_state = 126}, - [2363] = {.lex_state = 1, .external_lex_state = 66}, - [2364] = {.lex_state = 1, .external_lex_state = 95}, - [2365] = {.lex_state = 1, .external_lex_state = 66}, - [2366] = {.lex_state = 1, .external_lex_state = 83}, - [2367] = {.lex_state = 1, .external_lex_state = 66}, - [2368] = {.lex_state = 1, .external_lex_state = 79}, - [2369] = {.lex_state = 1, .external_lex_state = 66}, - [2370] = {.lex_state = 1, .external_lex_state = 79}, - [2371] = {.lex_state = 1, .external_lex_state = 131}, - [2372] = {.lex_state = 1, .external_lex_state = 98}, - [2373] = {.lex_state = 1, .external_lex_state = 66}, - [2374] = {.lex_state = 1, .external_lex_state = 66}, - [2375] = {.lex_state = 1, .external_lex_state = 66}, - [2376] = {.lex_state = 1, .external_lex_state = 79}, - [2377] = {.lex_state = 1, .external_lex_state = 79}, - [2378] = {.lex_state = 1, .external_lex_state = 79}, - [2379] = {.lex_state = 1, .external_lex_state = 83}, - [2380] = {.lex_state = 1, .external_lex_state = 79}, - [2381] = {.lex_state = 1, .external_lex_state = 66}, - [2382] = {.lex_state = 1, .external_lex_state = 83}, - [2383] = {.lex_state = 1, .external_lex_state = 83}, - [2384] = {.lex_state = 1, .external_lex_state = 66}, - [2385] = {.lex_state = 1, .external_lex_state = 66}, - [2386] = {.lex_state = 1, .external_lex_state = 79}, - [2387] = {.lex_state = 1, .external_lex_state = 79}, - [2388] = {.lex_state = 1, .external_lex_state = 83}, - [2389] = {.lex_state = 1, .external_lex_state = 79}, - [2390] = {.lex_state = 1, .external_lex_state = 83}, - [2391] = {.lex_state = 1, .external_lex_state = 79}, - [2392] = {.lex_state = 1, .external_lex_state = 83}, - [2393] = {.lex_state = 1, .external_lex_state = 79}, - [2394] = {.lex_state = 1, .external_lex_state = 83}, - [2395] = {.lex_state = 1, .external_lex_state = 83}, - [2396] = {.lex_state = 1, .external_lex_state = 83}, - [2397] = {.lex_state = 1, .external_lex_state = 83}, - [2398] = {.lex_state = 1, .external_lex_state = 88}, - [2399] = {.lex_state = 1, .external_lex_state = 98}, - [2400] = {.lex_state = 1, .external_lex_state = 98}, - [2401] = {.lex_state = 1, .external_lex_state = 98}, - [2402] = {.lex_state = 1, .external_lex_state = 95}, - [2403] = {.lex_state = 1, .external_lex_state = 88}, - [2404] = {.lex_state = 1, .external_lex_state = 98}, + [2358] = {.lex_state = 1, .external_lex_state = 125}, + [2359] = {.lex_state = 1, .external_lex_state = 73}, + [2360] = {.lex_state = 1, .external_lex_state = 65}, + [2361] = {.lex_state = 1, .external_lex_state = 76}, + [2362] = {.lex_state = 0, .external_lex_state = 127}, + [2363] = {.lex_state = 1, .external_lex_state = 130}, + [2364] = {.lex_state = 1, .external_lex_state = 65}, + [2365] = {.lex_state = 1, .external_lex_state = 65}, + [2366] = {.lex_state = 1, .external_lex_state = 76}, + [2367] = {.lex_state = 1, .external_lex_state = 130}, + [2368] = {.lex_state = 1, .external_lex_state = 76}, + [2369] = {.lex_state = 1, .external_lex_state = 125}, + [2370] = {.lex_state = 0, .external_lex_state = 121}, + [2371] = {.lex_state = 1, .external_lex_state = 80}, + [2372] = {.lex_state = 1, .external_lex_state = 76}, + [2373] = {.lex_state = 0, .external_lex_state = 127}, + [2374] = {.lex_state = 1, .external_lex_state = 76}, + [2375] = {.lex_state = 1, .external_lex_state = 129}, + [2376] = {.lex_state = 1, .external_lex_state = 65}, + [2377] = {.lex_state = 1, .external_lex_state = 126}, + [2378] = {.lex_state = 1, .external_lex_state = 65}, + [2379] = {.lex_state = 1, .external_lex_state = 76}, + [2380] = {.lex_state = 1, .external_lex_state = 130}, + [2381] = {.lex_state = 1, .external_lex_state = 130}, + [2382] = {.lex_state = 1, .external_lex_state = 130}, + [2383] = {.lex_state = 1, .external_lex_state = 76}, + [2384] = {.lex_state = 1, .external_lex_state = 65}, + [2385] = {.lex_state = 1, .external_lex_state = 73}, + [2386] = {.lex_state = 1, .external_lex_state = 76}, + [2387] = {.lex_state = 1, .external_lex_state = 69}, + [2388] = {.lex_state = 1, .external_lex_state = 129}, + [2389] = {.lex_state = 1, .external_lex_state = 65}, + [2390] = {.lex_state = 1, .external_lex_state = 129}, + [2391] = {.lex_state = 1, .external_lex_state = 122}, + [2392] = {.lex_state = 0, .external_lex_state = 121}, + [2393] = {.lex_state = 1, .external_lex_state = 69}, + [2394] = {.lex_state = 1, .external_lex_state = 69}, + [2395] = {.lex_state = 1, .external_lex_state = 69}, + [2396] = {.lex_state = 1, .external_lex_state = 128}, + [2397] = {.lex_state = 1, .external_lex_state = 124}, + [2398] = {.lex_state = 1, .external_lex_state = 122}, + [2399] = {.lex_state = 1, .external_lex_state = 128}, + [2400] = {.lex_state = 1, .external_lex_state = 128}, + [2401] = {.lex_state = 1, .external_lex_state = 128}, + [2402] = {.lex_state = 1, .external_lex_state = 89}, + [2403] = {.lex_state = 1, .external_lex_state = 128}, + [2404] = {.lex_state = 1, .external_lex_state = 128}, [2405] = {.lex_state = 1, .external_lex_state = 89}, [2406] = {.lex_state = 1, .external_lex_state = 89}, - [2407] = {.lex_state = 1, .external_lex_state = 88}, - [2408] = {.lex_state = 1, .external_lex_state = 88}, - [2409] = {.lex_state = 1, .external_lex_state = 98}, + [2407] = {.lex_state = 1, .external_lex_state = 89}, + [2408] = {.lex_state = 1, .external_lex_state = 89}, + [2409] = {.lex_state = 1, .external_lex_state = 89}, [2410] = {.lex_state = 1, .external_lex_state = 89}, - [2411] = {.lex_state = 1, .external_lex_state = 88}, - [2412] = {.lex_state = 1, .external_lex_state = 88}, - [2413] = {.lex_state = 1, .external_lex_state = 98}, - [2414] = {.lex_state = 1, .external_lex_state = 92}, - [2415] = {.lex_state = 1, .external_lex_state = 88}, - [2416] = {.lex_state = 1, .external_lex_state = 88}, - [2417] = {.lex_state = 1, .external_lex_state = 102}, + [2411] = {.lex_state = 1, .external_lex_state = 69}, + [2412] = {.lex_state = 1, .external_lex_state = 69}, + [2413] = {.lex_state = 1, .external_lex_state = 69}, + [2414] = {.lex_state = 1, .external_lex_state = 130}, + [2415] = {.lex_state = 1, .external_lex_state = 69}, + [2416] = {.lex_state = 1, .external_lex_state = 130}, + [2417] = {.lex_state = 1, .external_lex_state = 89}, [2418] = {.lex_state = 1, .external_lex_state = 89}, - [2419] = {.lex_state = 1, .external_lex_state = 95}, - [2420] = {.lex_state = 1, .external_lex_state = 88}, - [2421] = {.lex_state = 1, .external_lex_state = 101}, - [2422] = {.lex_state = 1, .external_lex_state = 98}, - [2423] = {.lex_state = 1, .external_lex_state = 89}, - [2424] = {.lex_state = 1, .external_lex_state = 98}, - [2425] = {.lex_state = 1, .external_lex_state = 89}, - [2426] = {.lex_state = 1, .external_lex_state = 88}, - [2427] = {.lex_state = 1, .external_lex_state = 95}, - [2428] = {.lex_state = 1, .external_lex_state = 95}, - [2429] = {.lex_state = 1, .external_lex_state = 95}, - [2430] = {.lex_state = 1, .external_lex_state = 95}, - [2431] = {.lex_state = 1, .external_lex_state = 88}, - [2432] = {.lex_state = 1, .external_lex_state = 92}, - [2433] = {.lex_state = 1, .external_lex_state = 92}, - [2434] = {.lex_state = 1, .external_lex_state = 88}, - [2435] = {.lex_state = 1, .external_lex_state = 98}, - [2436] = {.lex_state = 1, .external_lex_state = 92}, - [2437] = {.lex_state = 1, .external_lex_state = 92}, - [2438] = {.lex_state = 1, .external_lex_state = 89}, - [2439] = {.lex_state = 1, .external_lex_state = 98}, - [2440] = {.lex_state = 1, .external_lex_state = 95}, - [2441] = {.lex_state = 1, .external_lex_state = 95}, - [2442] = {.lex_state = 1, .external_lex_state = 89}, - [2443] = {.lex_state = 1, .external_lex_state = 89}, - [2444] = {.lex_state = 1, .external_lex_state = 98}, - [2445] = {.lex_state = 1, .external_lex_state = 95}, - [2446] = {.lex_state = 1, .external_lex_state = 92}, - [2447] = {.lex_state = 1, .external_lex_state = 89}, - [2448] = {.lex_state = 1, .external_lex_state = 92}, - [2449] = {.lex_state = 1, .external_lex_state = 92}, - [2450] = {.lex_state = 1, .external_lex_state = 89}, - [2451] = {.lex_state = 1, .external_lex_state = 92}, - [2452] = {.lex_state = 1, .external_lex_state = 95}, - [2453] = {.lex_state = 1, .external_lex_state = 92}, - [2454] = {.lex_state = 1, .external_lex_state = 95}, - [2455] = {.lex_state = 1, .external_lex_state = 92}, - [2456] = {.lex_state = 1, .external_lex_state = 71}, - [2457] = {.lex_state = 1, .external_lex_state = 89}, - [2458] = {.lex_state = 1, .external_lex_state = 106}, - [2459] = {.lex_state = 1, .external_lex_state = 85}, - [2460] = {.lex_state = 1, .external_lex_state = 106}, - [2461] = {.lex_state = 1, .external_lex_state = 102}, - [2462] = {.lex_state = 1, .external_lex_state = 102}, - [2463] = {.lex_state = 1, .external_lex_state = 85}, - [2464] = {.lex_state = 1, .external_lex_state = 85}, - [2465] = {.lex_state = 1, .external_lex_state = 102}, - [2466] = {.lex_state = 1, .external_lex_state = 101}, - [2467] = {.lex_state = 1, .external_lex_state = 102}, - [2468] = {.lex_state = 1, .external_lex_state = 111}, - [2469] = {.lex_state = 1, .external_lex_state = 104}, - [2470] = {.lex_state = 1, .external_lex_state = 85}, - [2471] = {.lex_state = 1, .external_lex_state = 104}, - [2472] = {.lex_state = 1, .external_lex_state = 85}, - [2473] = {.lex_state = 1, .external_lex_state = 106}, - [2474] = {.lex_state = 1, .external_lex_state = 111}, - [2475] = {.lex_state = 1, .external_lex_state = 104}, - [2476] = {.lex_state = 1, .external_lex_state = 104}, - [2477] = {.lex_state = 1, .external_lex_state = 106}, - [2478] = {.lex_state = 1, .external_lex_state = 111}, - [2479] = {.lex_state = 1, .external_lex_state = 104}, - [2480] = {.lex_state = 1, .external_lex_state = 106}, - [2481] = {.lex_state = 1, .external_lex_state = 106}, - [2482] = {.lex_state = 1, .external_lex_state = 85}, - [2483] = {.lex_state = 1, .external_lex_state = 104}, - [2484] = {.lex_state = 1, .external_lex_state = 106}, - [2485] = {.lex_state = 1, .external_lex_state = 102}, - [2486] = {.lex_state = 1, .external_lex_state = 111}, - [2487] = {.lex_state = 1, .external_lex_state = 111}, - [2488] = {.lex_state = 1, .external_lex_state = 111}, - [2489] = {.lex_state = 1, .external_lex_state = 104}, - [2490] = {.lex_state = 1, .external_lex_state = 85}, - [2491] = {.lex_state = 1, .external_lex_state = 102}, - [2492] = {.lex_state = 1, .external_lex_state = 102}, - [2493] = {.lex_state = 2, .external_lex_state = 20}, - [2494] = {.lex_state = 1, .external_lex_state = 106}, - [2495] = {.lex_state = 1, .external_lex_state = 106}, - [2496] = {.lex_state = 1, .external_lex_state = 101}, - [2497] = {.lex_state = 1, .external_lex_state = 111}, - [2498] = {.lex_state = 1, .external_lex_state = 111}, - [2499] = {.lex_state = 1, .external_lex_state = 111}, - [2500] = {.lex_state = 1, .external_lex_state = 106}, - [2501] = {.lex_state = 2, .external_lex_state = 20}, - [2502] = {.lex_state = 1, .external_lex_state = 101}, - [2503] = {.lex_state = 1, .external_lex_state = 101}, - [2504] = {.lex_state = 2, .external_lex_state = 15}, - [2505] = {.lex_state = 1, .external_lex_state = 104}, - [2506] = {.lex_state = 1, .external_lex_state = 101}, - [2507] = {.lex_state = 1, .external_lex_state = 104}, - [2508] = {.lex_state = 1, .external_lex_state = 104}, - [2509] = {.lex_state = 2, .external_lex_state = 20}, - [2510] = {.lex_state = 1, .external_lex_state = 102}, - [2511] = {.lex_state = 2, .external_lex_state = 20}, - [2512] = {.lex_state = 1, .external_lex_state = 101}, - [2513] = {.lex_state = 1, .external_lex_state = 111}, - [2514] = {.lex_state = 1, .external_lex_state = 104}, - [2515] = {.lex_state = 1, .external_lex_state = 101}, - [2516] = {.lex_state = 1, .external_lex_state = 111}, - [2517] = {.lex_state = 1, .external_lex_state = 101}, - [2518] = {.lex_state = 1, .external_lex_state = 85}, - [2519] = {.lex_state = 1, .external_lex_state = 85}, - [2520] = {.lex_state = 1, .external_lex_state = 85}, - [2521] = {.lex_state = 1, .external_lex_state = 101}, - [2522] = {.lex_state = 1, .external_lex_state = 111}, - [2523] = {.lex_state = 1, .external_lex_state = 104}, - [2524] = {.lex_state = 1, .external_lex_state = 106}, - [2525] = {.lex_state = 1, .external_lex_state = 106}, - [2526] = {.lex_state = 1, .external_lex_state = 85}, - [2527] = {.lex_state = 1, .external_lex_state = 101}, - [2528] = {.lex_state = 1, .external_lex_state = 102}, - [2529] = {.lex_state = 1, .external_lex_state = 102}, - [2530] = {.lex_state = 1, .external_lex_state = 102}, - [2531] = {.lex_state = 1, .external_lex_state = 101}, - [2532] = {.lex_state = 1, .external_lex_state = 115}, - [2533] = {.lex_state = 1, .external_lex_state = 113}, - [2534] = {.lex_state = 2, .external_lex_state = 22}, - [2535] = {.lex_state = 1, .external_lex_state = 116}, - [2536] = {.lex_state = 2, .external_lex_state = 22}, - [2537] = {.lex_state = 2, .external_lex_state = 22}, - [2538] = {.lex_state = 1, .external_lex_state = 114}, - [2539] = {.lex_state = 2, .external_lex_state = 22}, - [2540] = {.lex_state = 2, .external_lex_state = 132}, - [2541] = {.lex_state = 1, .external_lex_state = 115}, - [2542] = {.lex_state = 1, .external_lex_state = 116}, - [2543] = {.lex_state = 1, .external_lex_state = 116}, - [2544] = {.lex_state = 2, .external_lex_state = 22}, - [2545] = {.lex_state = 1, .external_lex_state = 116}, - [2546] = {.lex_state = 1, .external_lex_state = 116}, - [2547] = {.lex_state = 1, .external_lex_state = 114}, - [2548] = {.lex_state = 1, .external_lex_state = 116}, - [2549] = {.lex_state = 1, .external_lex_state = 115}, - [2550] = {.lex_state = 1, .external_lex_state = 118}, - [2551] = {.lex_state = 1, .external_lex_state = 116}, - [2552] = {.lex_state = 1, .external_lex_state = 116}, - [2553] = {.lex_state = 1, .external_lex_state = 116}, - [2554] = {.lex_state = 1, .external_lex_state = 115}, - [2555] = {.lex_state = 1, .external_lex_state = 114}, - [2556] = {.lex_state = 1, .external_lex_state = 115}, - [2557] = {.lex_state = 1, .external_lex_state = 115}, - [2558] = {.lex_state = 1, .external_lex_state = 118}, - [2559] = {.lex_state = 1, .external_lex_state = 118}, - [2560] = {.lex_state = 1, .external_lex_state = 118}, - [2561] = {.lex_state = 2, .external_lex_state = 22}, - [2562] = {.lex_state = 1, .external_lex_state = 115}, - [2563] = {.lex_state = 1, .external_lex_state = 118}, - [2564] = {.lex_state = 2, .external_lex_state = 22}, - [2565] = {.lex_state = 1, .external_lex_state = 113}, - [2566] = {.lex_state = 1, .external_lex_state = 118}, - [2567] = {.lex_state = 1, .external_lex_state = 115}, - [2568] = {.lex_state = 1, .external_lex_state = 118}, - [2569] = {.lex_state = 1, .external_lex_state = 118}, - [2570] = {.lex_state = 2, .external_lex_state = 132}, - [2571] = {.lex_state = 2, .external_lex_state = 22}, - [2572] = {.lex_state = 1, .external_lex_state = 118}, - [2573] = {.lex_state = 1, .external_lex_state = 118}, - [2574] = {.lex_state = 1, .external_lex_state = 116}, - [2575] = {.lex_state = 2, .external_lex_state = 132}, - [2576] = {.lex_state = 1, .external_lex_state = 114}, - [2577] = {.lex_state = 1, .external_lex_state = 115}, - [2578] = {.lex_state = 1, .external_lex_state = 114}, - [2579] = {.lex_state = 1, .external_lex_state = 114}, - [2580] = {.lex_state = 1, .external_lex_state = 115}, - [2581] = {.lex_state = 1, .external_lex_state = 114}, - [2582] = {.lex_state = 1, .external_lex_state = 114}, - [2583] = {.lex_state = 1, .external_lex_state = 116}, - [2584] = {.lex_state = 1, .external_lex_state = 113}, - [2585] = {.lex_state = 1, .external_lex_state = 113}, - [2586] = {.lex_state = 1, .external_lex_state = 113}, - [2587] = {.lex_state = 1, .external_lex_state = 113}, - [2588] = {.lex_state = 2, .external_lex_state = 22}, - [2589] = {.lex_state = 1, .external_lex_state = 114}, - [2590] = {.lex_state = 1, .external_lex_state = 113}, - [2591] = {.lex_state = 1, .external_lex_state = 113}, - [2592] = {.lex_state = 1, .external_lex_state = 115}, - [2593] = {.lex_state = 1, .external_lex_state = 116}, - [2594] = {.lex_state = 2, .external_lex_state = 132}, - [2595] = {.lex_state = 2, .external_lex_state = 22}, - [2596] = {.lex_state = 1, .external_lex_state = 114}, - [2597] = {.lex_state = 1, .external_lex_state = 113}, - [2598] = {.lex_state = 1, .external_lex_state = 113}, - [2599] = {.lex_state = 1, .external_lex_state = 114}, - [2600] = {.lex_state = 1, .external_lex_state = 118}, - [2601] = {.lex_state = 1, .external_lex_state = 114}, - [2602] = {.lex_state = 1, .external_lex_state = 113}, - [2603] = {.lex_state = 2, .external_lex_state = 22}, - [2604] = {.lex_state = 2, .external_lex_state = 133}, - [2605] = {.lex_state = 1, .external_lex_state = 128}, - [2606] = {.lex_state = 1, .external_lex_state = 126}, - [2607] = {.lex_state = 1, .external_lex_state = 130}, - [2608] = {.lex_state = 1, .external_lex_state = 130}, - [2609] = {.lex_state = 1, .external_lex_state = 126}, - [2610] = {.lex_state = 1, .external_lex_state = 130}, - [2611] = {.lex_state = 1, .external_lex_state = 125}, - [2612] = {.lex_state = 2, .external_lex_state = 133}, - [2613] = {.lex_state = 1, .external_lex_state = 126}, - [2614] = {.lex_state = 2, .external_lex_state = 133}, - [2615] = {.lex_state = 1, .external_lex_state = 87}, - [2616] = {.lex_state = 2, .external_lex_state = 133}, - [2617] = {.lex_state = 1, .external_lex_state = 87}, - [2618] = {.lex_state = 1, .external_lex_state = 129}, - [2619] = {.lex_state = 1, .external_lex_state = 126}, - [2620] = {.lex_state = 1, .external_lex_state = 129}, - [2621] = {.lex_state = 1, .external_lex_state = 126}, - [2622] = {.lex_state = 1, .external_lex_state = 126}, - [2623] = {.lex_state = 1, .external_lex_state = 129}, - [2624] = {.lex_state = 1, .external_lex_state = 129}, - [2625] = {.lex_state = 1, .external_lex_state = 130}, - [2626] = {.lex_state = 1, .external_lex_state = 125}, - [2627] = {.lex_state = 1, .external_lex_state = 87}, - [2628] = {.lex_state = 1, .external_lex_state = 130}, - [2629] = {.lex_state = 1, .external_lex_state = 126}, - [2630] = {.lex_state = 1, .external_lex_state = 125}, - [2631] = {.lex_state = 1, .external_lex_state = 130}, - [2632] = {.lex_state = 1, .external_lex_state = 129}, - [2633] = {.lex_state = 1, .external_lex_state = 125}, - [2634] = {.lex_state = 1, .external_lex_state = 129}, - [2635] = {.lex_state = 1, .external_lex_state = 87}, - [2636] = {.lex_state = 1, .external_lex_state = 129}, - [2637] = {.lex_state = 1, .external_lex_state = 130}, - [2638] = {.lex_state = 1, .external_lex_state = 130}, - [2639] = {.lex_state = 1, .external_lex_state = 125}, - [2640] = {.lex_state = 1, .external_lex_state = 125}, - [2641] = {.lex_state = 1, .external_lex_state = 129}, - [2642] = {.lex_state = 1, .external_lex_state = 129}, - [2643] = {.lex_state = 1, .external_lex_state = 129}, - [2644] = {.lex_state = 1, .external_lex_state = 128}, - [2645] = {.lex_state = 1, .external_lex_state = 130}, - [2646] = {.lex_state = 1, .external_lex_state = 128}, - [2647] = {.lex_state = 1, .external_lex_state = 128}, - [2648] = {.lex_state = 1, .external_lex_state = 130}, - [2649] = {.lex_state = 1, .external_lex_state = 125}, - [2650] = {.lex_state = 1, .external_lex_state = 126}, - [2651] = {.lex_state = 1, .external_lex_state = 125}, - [2652] = {.lex_state = 1, .external_lex_state = 125}, - [2653] = {.lex_state = 1, .external_lex_state = 128}, - [2654] = {.lex_state = 1, .external_lex_state = 129}, - [2655] = {.lex_state = 1, .external_lex_state = 130}, - [2656] = {.lex_state = 1, .external_lex_state = 126}, - [2657] = {.lex_state = 1, .external_lex_state = 126}, - [2658] = {.lex_state = 1, .external_lex_state = 128}, - [2659] = {.lex_state = 1, .external_lex_state = 125}, - [2660] = {.lex_state = 1, .external_lex_state = 87}, - [2661] = {.lex_state = 1, .external_lex_state = 128}, - [2662] = {.lex_state = 1, .external_lex_state = 128}, - [2663] = {.lex_state = 1, .external_lex_state = 130}, - [2664] = {.lex_state = 1, .external_lex_state = 128}, - [2665] = {.lex_state = 1, .external_lex_state = 126}, - [2666] = {.lex_state = 1, .external_lex_state = 87}, - [2667] = {.lex_state = 1, .external_lex_state = 87}, - [2668] = {.lex_state = 1, .external_lex_state = 125}, - [2669] = {.lex_state = 1, .external_lex_state = 129}, - [2670] = {.lex_state = 1, .external_lex_state = 128}, - [2671] = {.lex_state = 1, .external_lex_state = 87}, - [2672] = {.lex_state = 1, .external_lex_state = 128}, - [2673] = {.lex_state = 1, .external_lex_state = 87}, - [2674] = {.lex_state = 1, .external_lex_state = 87}, - [2675] = {.lex_state = 1, .external_lex_state = 87}, - [2676] = {.lex_state = 1, .external_lex_state = 87}, - [2677] = {.lex_state = 0, .external_lex_state = 134}, - [2678] = {.lex_state = 0, .external_lex_state = 134}, - [2679] = {.lex_state = 0, .external_lex_state = 134}, - [2680] = {.lex_state = 0, .external_lex_state = 134}, - [2681] = {.lex_state = 0, .external_lex_state = 134}, - [2682] = {.lex_state = 0, .external_lex_state = 134}, - [2683] = {.lex_state = 0, .external_lex_state = 134}, - [2684] = {.lex_state = 0, .external_lex_state = 134}, - [2685] = {.lex_state = 0, .external_lex_state = 134}, - [2686] = {.lex_state = 0, .external_lex_state = 134}, - [2687] = {.lex_state = 0, .external_lex_state = 134}, - [2688] = {.lex_state = 0, .external_lex_state = 134}, - [2689] = {.lex_state = 0, .external_lex_state = 134}, - [2690] = {.lex_state = 0, .external_lex_state = 134}, - [2691] = {.lex_state = 0, .external_lex_state = 134}, - [2692] = {.lex_state = 0, .external_lex_state = 134}, - [2693] = {.lex_state = 0, .external_lex_state = 134}, - [2694] = {.lex_state = 0, .external_lex_state = 134}, - [2695] = {.lex_state = 0, .external_lex_state = 134}, - [2696] = {.lex_state = 2, .external_lex_state = 135}, - [2697] = {.lex_state = 2, .external_lex_state = 135}, - [2698] = {.lex_state = 0, .external_lex_state = 134}, - [2699] = {.lex_state = 2, .external_lex_state = 135}, - [2700] = {.lex_state = 2, .external_lex_state = 136}, - [2701] = {.lex_state = 2, .external_lex_state = 137}, - [2702] = {.lex_state = 2, .external_lex_state = 137}, - [2703] = {.lex_state = 2, .external_lex_state = 138}, - [2704] = {.lex_state = 2, .external_lex_state = 136}, - [2705] = {.lex_state = 2, .external_lex_state = 136}, - [2706] = {.lex_state = 2, .external_lex_state = 138}, - [2707] = {.lex_state = 2, .external_lex_state = 138}, - [2708] = {.lex_state = 2, .external_lex_state = 137}, - [2709] = {.lex_state = 2, .external_lex_state = 7}, - [2710] = {.lex_state = 2, .external_lex_state = 7}, - [2711] = {.lex_state = 2, .external_lex_state = 7}, - [2712] = {.lex_state = 2, .external_lex_state = 7}, - [2713] = {.lex_state = 2, .external_lex_state = 7}, - [2714] = {.lex_state = 2, .external_lex_state = 7}, - [2715] = {.lex_state = 2, .external_lex_state = 7}, - [2716] = {.lex_state = 2, .external_lex_state = 7}, - [2717] = {.lex_state = 2, .external_lex_state = 7}, - [2718] = {.lex_state = 2, .external_lex_state = 7}, - [2719] = {.lex_state = 2, .external_lex_state = 7}, - [2720] = {.lex_state = 2, .external_lex_state = 7}, - [2721] = {.lex_state = 2, .external_lex_state = 7}, - [2722] = {.lex_state = 2, .external_lex_state = 7}, - [2723] = {.lex_state = 2, .external_lex_state = 7}, - [2724] = {.lex_state = 2, .external_lex_state = 7}, - [2725] = {.lex_state = 2, .external_lex_state = 7}, - [2726] = {.lex_state = 2, .external_lex_state = 7}, - [2727] = {.lex_state = 2, .external_lex_state = 7}, - [2728] = {.lex_state = 2, .external_lex_state = 7}, - [2729] = {.lex_state = 2, .external_lex_state = 7}, - [2730] = {.lex_state = 2, .external_lex_state = 7}, - [2731] = {.lex_state = 2, .external_lex_state = 7}, - [2732] = {.lex_state = 2, .external_lex_state = 7}, - [2733] = {.lex_state = 2, .external_lex_state = 7}, - [2734] = {.lex_state = 2, .external_lex_state = 7}, - [2735] = {.lex_state = 2, .external_lex_state = 7}, - [2736] = {.lex_state = 2, .external_lex_state = 7}, - [2737] = {.lex_state = 2, .external_lex_state = 7}, - [2738] = {.lex_state = 2, .external_lex_state = 7}, - [2739] = {.lex_state = 2, .external_lex_state = 7}, - [2740] = {.lex_state = 2, .external_lex_state = 7}, - [2741] = {.lex_state = 2, .external_lex_state = 7}, - [2742] = {.lex_state = 2, .external_lex_state = 7}, - [2743] = {.lex_state = 2, .external_lex_state = 7}, - [2744] = {.lex_state = 2, .external_lex_state = 7}, - [2745] = {.lex_state = 2, .external_lex_state = 7}, - [2746] = {.lex_state = 2, .external_lex_state = 7}, - [2747] = {.lex_state = 2, .external_lex_state = 7}, - [2748] = {.lex_state = 2, .external_lex_state = 7}, - [2749] = {.lex_state = 2, .external_lex_state = 7}, - [2750] = {.lex_state = 2, .external_lex_state = 139}, - [2751] = {.lex_state = 2, .external_lex_state = 7}, - [2752] = {.lex_state = 2, .external_lex_state = 7}, - [2753] = {.lex_state = 2, .external_lex_state = 7}, - [2754] = {.lex_state = 2, .external_lex_state = 7}, - [2755] = {.lex_state = 2, .external_lex_state = 7}, - [2756] = {.lex_state = 2, .external_lex_state = 7}, - [2757] = {.lex_state = 2, .external_lex_state = 7}, - [2758] = {.lex_state = 2, .external_lex_state = 7}, - [2759] = {.lex_state = 2, .external_lex_state = 7}, - [2760] = {.lex_state = 2, .external_lex_state = 7}, - [2761] = {.lex_state = 2, .external_lex_state = 7}, - [2762] = {.lex_state = 2, .external_lex_state = 7}, - [2763] = {.lex_state = 2, .external_lex_state = 7}, - [2764] = {.lex_state = 2, .external_lex_state = 7}, - [2765] = {.lex_state = 2, .external_lex_state = 7}, - [2766] = {.lex_state = 2, .external_lex_state = 7}, - [2767] = {.lex_state = 2, .external_lex_state = 7}, - [2768] = {.lex_state = 2, .external_lex_state = 7}, - [2769] = {.lex_state = 2, .external_lex_state = 139}, - [2770] = {.lex_state = 2, .external_lex_state = 7}, - [2771] = {.lex_state = 2, .external_lex_state = 139}, - [2772] = {.lex_state = 2, .external_lex_state = 7}, - [2773] = {.lex_state = 2, .external_lex_state = 8}, - [2774] = {.lex_state = 2, .external_lex_state = 8}, - [2775] = {.lex_state = 2, .external_lex_state = 8}, - [2776] = {.lex_state = 2, .external_lex_state = 135}, - [2777] = {.lex_state = 2, .external_lex_state = 8}, - [2778] = {.lex_state = 2, .external_lex_state = 8}, - [2779] = {.lex_state = 2, .external_lex_state = 8}, - [2780] = {.lex_state = 2, .external_lex_state = 8}, - [2781] = {.lex_state = 2, .external_lex_state = 135}, - [2782] = {.lex_state = 2, .external_lex_state = 8}, - [2783] = {.lex_state = 2, .external_lex_state = 8}, - [2784] = {.lex_state = 2, .external_lex_state = 8}, - [2785] = {.lex_state = 2, .external_lex_state = 8}, - [2786] = {.lex_state = 2, .external_lex_state = 8}, - [2787] = {.lex_state = 2, .external_lex_state = 8}, - [2788] = {.lex_state = 2, .external_lex_state = 8}, - [2789] = {.lex_state = 2, .external_lex_state = 8}, - [2790] = {.lex_state = 2, .external_lex_state = 8}, - [2791] = {.lex_state = 2, .external_lex_state = 8}, - [2792] = {.lex_state = 2, .external_lex_state = 8}, - [2793] = {.lex_state = 2, .external_lex_state = 8}, - [2794] = {.lex_state = 2, .external_lex_state = 8}, - [2795] = {.lex_state = 2, .external_lex_state = 8}, - [2796] = {.lex_state = 2, .external_lex_state = 8}, - [2797] = {.lex_state = 2, .external_lex_state = 8}, - [2798] = {.lex_state = 2, .external_lex_state = 8}, - [2799] = {.lex_state = 2, .external_lex_state = 8}, - [2800] = {.lex_state = 2, .external_lex_state = 8}, - [2801] = {.lex_state = 2, .external_lex_state = 8}, - [2802] = {.lex_state = 2, .external_lex_state = 8}, - [2803] = {.lex_state = 2, .external_lex_state = 8}, - [2804] = {.lex_state = 2, .external_lex_state = 8}, - [2805] = {.lex_state = 2, .external_lex_state = 8}, - [2806] = {.lex_state = 2, .external_lex_state = 8}, - [2807] = {.lex_state = 2, .external_lex_state = 8}, - [2808] = {.lex_state = 2, .external_lex_state = 8}, - [2809] = {.lex_state = 2, .external_lex_state = 8}, - [2810] = {.lex_state = 2, .external_lex_state = 8}, - [2811] = {.lex_state = 2, .external_lex_state = 8}, - [2812] = {.lex_state = 2, .external_lex_state = 8}, - [2813] = {.lex_state = 2, .external_lex_state = 8}, - [2814] = {.lex_state = 2, .external_lex_state = 8}, - [2815] = {.lex_state = 2, .external_lex_state = 8}, - [2816] = {.lex_state = 2, .external_lex_state = 8}, - [2817] = {.lex_state = 2, .external_lex_state = 8}, - [2818] = {.lex_state = 2, .external_lex_state = 8}, - [2819] = {.lex_state = 2, .external_lex_state = 8}, - [2820] = {.lex_state = 2, .external_lex_state = 8}, - [2821] = {.lex_state = 2, .external_lex_state = 8}, - [2822] = {.lex_state = 2, .external_lex_state = 8}, - [2823] = {.lex_state = 2, .external_lex_state = 8}, - [2824] = {.lex_state = 2, .external_lex_state = 8}, - [2825] = {.lex_state = 2, .external_lex_state = 8}, - [2826] = {.lex_state = 2, .external_lex_state = 8}, - [2827] = {.lex_state = 2, .external_lex_state = 8}, - [2828] = {.lex_state = 2, .external_lex_state = 8}, - [2829] = {.lex_state = 0, .external_lex_state = 140}, - [2830] = {.lex_state = 2, .external_lex_state = 8}, - [2831] = {.lex_state = 2, .external_lex_state = 8}, - [2832] = {.lex_state = 2, .external_lex_state = 8}, - [2833] = {.lex_state = 2, .external_lex_state = 8}, - [2834] = {.lex_state = 2, .external_lex_state = 8}, - [2835] = {.lex_state = 2, .external_lex_state = 8}, - [2836] = {.lex_state = 2, .external_lex_state = 8}, - [2837] = {.lex_state = 2, .external_lex_state = 9}, - [2838] = {.lex_state = 2, .external_lex_state = 9}, - [2839] = {.lex_state = 2, .external_lex_state = 9}, - [2840] = {.lex_state = 2, .external_lex_state = 9}, - [2841] = {.lex_state = 2, .external_lex_state = 9}, - [2842] = {.lex_state = 2, .external_lex_state = 9}, - [2843] = {.lex_state = 2, .external_lex_state = 9}, - [2844] = {.lex_state = 2, .external_lex_state = 9}, - [2845] = {.lex_state = 2, .external_lex_state = 9}, - [2846] = {.lex_state = 0, .external_lex_state = 141}, - [2847] = {.lex_state = 2, .external_lex_state = 142}, - [2848] = {.lex_state = 2, .external_lex_state = 9}, - [2849] = {.lex_state = 2, .external_lex_state = 9}, - [2850] = {.lex_state = 2, .external_lex_state = 142}, - [2851] = {.lex_state = 2, .external_lex_state = 9}, - [2852] = {.lex_state = 2, .external_lex_state = 9}, - [2853] = {.lex_state = 2, .external_lex_state = 9}, - [2854] = {.lex_state = 2, .external_lex_state = 142}, - [2855] = {.lex_state = 2, .external_lex_state = 9}, - [2856] = {.lex_state = 2, .external_lex_state = 9}, - [2857] = {.lex_state = 2, .external_lex_state = 9}, - [2858] = {.lex_state = 2, .external_lex_state = 9}, - [2859] = {.lex_state = 2, .external_lex_state = 9}, - [2860] = {.lex_state = 2, .external_lex_state = 9}, - [2861] = {.lex_state = 2, .external_lex_state = 9}, - [2862] = {.lex_state = 2, .external_lex_state = 9}, - [2863] = {.lex_state = 2, .external_lex_state = 9}, - [2864] = {.lex_state = 2, .external_lex_state = 9}, - [2865] = {.lex_state = 2, .external_lex_state = 9}, - [2866] = {.lex_state = 2, .external_lex_state = 9}, - [2867] = {.lex_state = 2, .external_lex_state = 9}, - [2868] = {.lex_state = 2, .external_lex_state = 9}, - [2869] = {.lex_state = 2, .external_lex_state = 9}, - [2870] = {.lex_state = 2, .external_lex_state = 9}, - [2871] = {.lex_state = 2, .external_lex_state = 9}, - [2872] = {.lex_state = 2, .external_lex_state = 9}, - [2873] = {.lex_state = 2, .external_lex_state = 9}, - [2874] = {.lex_state = 2, .external_lex_state = 9}, - [2875] = {.lex_state = 2, .external_lex_state = 9}, - [2876] = {.lex_state = 2, .external_lex_state = 9}, - [2877] = {.lex_state = 2, .external_lex_state = 9}, - [2878] = {.lex_state = 2, .external_lex_state = 9}, - [2879] = {.lex_state = 2, .external_lex_state = 9}, - [2880] = {.lex_state = 2, .external_lex_state = 9}, - [2881] = {.lex_state = 2, .external_lex_state = 9}, - [2882] = {.lex_state = 2, .external_lex_state = 9}, - [2883] = {.lex_state = 2, .external_lex_state = 9}, - [2884] = {.lex_state = 2, .external_lex_state = 9}, - [2885] = {.lex_state = 2, .external_lex_state = 9}, - [2886] = {.lex_state = 2, .external_lex_state = 9}, - [2887] = {.lex_state = 2, .external_lex_state = 9}, - [2888] = {.lex_state = 2, .external_lex_state = 9}, - [2889] = {.lex_state = 2, .external_lex_state = 9}, - [2890] = {.lex_state = 2, .external_lex_state = 9}, - [2891] = {.lex_state = 2, .external_lex_state = 9}, - [2892] = {.lex_state = 2, .external_lex_state = 9}, - [2893] = {.lex_state = 2, .external_lex_state = 9}, - [2894] = {.lex_state = 0, .external_lex_state = 23}, - [2895] = {.lex_state = 2, .external_lex_state = 9}, - [2896] = {.lex_state = 2, .external_lex_state = 9}, - [2897] = {.lex_state = 2, .external_lex_state = 9}, - [2898] = {.lex_state = 2, .external_lex_state = 9}, - [2899] = {.lex_state = 2, .external_lex_state = 9}, - [2900] = {.lex_state = 2, .external_lex_state = 9}, - [2901] = {.lex_state = 2, .external_lex_state = 9}, - [2902] = {.lex_state = 2, .external_lex_state = 9}, - [2903] = {.lex_state = 0, .external_lex_state = 30}, - [2904] = {.lex_state = 0, .external_lex_state = 143}, - [2905] = {.lex_state = 2, .external_lex_state = 144}, - [2906] = {.lex_state = 2, .external_lex_state = 144}, - [2907] = {.lex_state = 2, .external_lex_state = 144}, - [2908] = {.lex_state = 2, .external_lex_state = 145}, - [2909] = {.lex_state = 0, .external_lex_state = 143}, - [2910] = {.lex_state = 0, .external_lex_state = 143}, - [2911] = {.lex_state = 2, .external_lex_state = 144}, - [2912] = {.lex_state = 2, .external_lex_state = 144}, - [2913] = {.lex_state = 2, .external_lex_state = 144}, - [2914] = {.lex_state = 0, .external_lex_state = 143}, - [2915] = {.lex_state = 0, .external_lex_state = 143}, - [2916] = {.lex_state = 2, .external_lex_state = 144}, - [2917] = {.lex_state = 2, .external_lex_state = 144}, - [2918] = {.lex_state = 0, .external_lex_state = 143}, - [2919] = {.lex_state = 2, .external_lex_state = 96}, - [2920] = {.lex_state = 0, .external_lex_state = 146}, - [2921] = {.lex_state = 0, .external_lex_state = 34}, - [2922] = {.lex_state = 0, .external_lex_state = 141}, - [2923] = {.lex_state = 0, .external_lex_state = 147}, - [2924] = {.lex_state = 0, .external_lex_state = 141}, - [2925] = {.lex_state = 0, .external_lex_state = 143}, - [2926] = {.lex_state = 0, .external_lex_state = 146}, - [2927] = {.lex_state = 0, .external_lex_state = 141}, - [2928] = {.lex_state = 0, .external_lex_state = 146}, - [2929] = {.lex_state = 0, .external_lex_state = 141}, - [2930] = {.lex_state = 0, .external_lex_state = 141}, - [2931] = {.lex_state = 2, .external_lex_state = 148}, - [2932] = {.lex_state = 2, .external_lex_state = 148}, - [2933] = {.lex_state = 2, .external_lex_state = 148}, - [2934] = {.lex_state = 2, .external_lex_state = 148}, - [2935] = {.lex_state = 2, .external_lex_state = 148}, - [2936] = {.lex_state = 2, .external_lex_state = 148}, - [2937] = {.lex_state = 0, .external_lex_state = 47}, - [2938] = {.lex_state = 2, .external_lex_state = 148}, - [2939] = {.lex_state = 2, .external_lex_state = 148}, - [2940] = {.lex_state = 2, .external_lex_state = 148}, - [2941] = {.lex_state = 2, .external_lex_state = 135}, - [2942] = {.lex_state = 2, .external_lex_state = 148}, - [2943] = {.lex_state = 0, .external_lex_state = 143}, - [2944] = {.lex_state = 2, .external_lex_state = 148}, - [2945] = {.lex_state = 2, .external_lex_state = 148}, - [2946] = {.lex_state = 2, .external_lex_state = 148}, - [2947] = {.lex_state = 2, .external_lex_state = 148}, - [2948] = {.lex_state = 2, .external_lex_state = 148}, - [2949] = {.lex_state = 0, .external_lex_state = 47}, - [2950] = {.lex_state = 2, .external_lex_state = 148}, - [2951] = {.lex_state = 2, .external_lex_state = 148}, - [2952] = {.lex_state = 2, .external_lex_state = 148}, - [2953] = {.lex_state = 2, .external_lex_state = 148}, - [2954] = {.lex_state = 2, .external_lex_state = 148}, - [2955] = {.lex_state = 2, .external_lex_state = 148}, - [2956] = {.lex_state = 2, .external_lex_state = 148}, - [2957] = {.lex_state = 0, .external_lex_state = 47}, - [2958] = {.lex_state = 2, .external_lex_state = 148}, - [2959] = {.lex_state = 2, .external_lex_state = 148}, - [2960] = {.lex_state = 2, .external_lex_state = 148}, - [2961] = {.lex_state = 2, .external_lex_state = 148}, - [2962] = {.lex_state = 2, .external_lex_state = 148}, - [2963] = {.lex_state = 2, .external_lex_state = 148}, - [2964] = {.lex_state = 0, .external_lex_state = 47}, - [2965] = {.lex_state = 2, .external_lex_state = 148}, - [2966] = {.lex_state = 2, .external_lex_state = 148}, - [2967] = {.lex_state = 2, .external_lex_state = 148}, - [2968] = {.lex_state = 2, .external_lex_state = 148}, - [2969] = {.lex_state = 0, .external_lex_state = 47}, - [2970] = {.lex_state = 2, .external_lex_state = 148}, - [2971] = {.lex_state = 2, .external_lex_state = 148}, - [2972] = {.lex_state = 2, .external_lex_state = 148}, - [2973] = {.lex_state = 2, .external_lex_state = 148}, - [2974] = {.lex_state = 2, .external_lex_state = 148}, - [2975] = {.lex_state = 2, .external_lex_state = 148}, - [2976] = {.lex_state = 2, .external_lex_state = 148}, - [2977] = {.lex_state = 2, .external_lex_state = 148}, - [2978] = {.lex_state = 2, .external_lex_state = 148}, - [2979] = {.lex_state = 2, .external_lex_state = 148}, - [2980] = {.lex_state = 2, .external_lex_state = 148}, - [2981] = {.lex_state = 2, .external_lex_state = 148}, - [2982] = {.lex_state = 2, .external_lex_state = 148}, - [2983] = {.lex_state = 2, .external_lex_state = 148}, - [2984] = {.lex_state = 2, .external_lex_state = 148}, - [2985] = {.lex_state = 2, .external_lex_state = 148}, - [2986] = {.lex_state = 2, .external_lex_state = 148}, - [2987] = {.lex_state = 0, .external_lex_state = 47}, - [2988] = {.lex_state = 2, .external_lex_state = 148}, - [2989] = {.lex_state = 0, .external_lex_state = 149}, - [2990] = {.lex_state = 2, .external_lex_state = 148}, - [2991] = {.lex_state = 2, .external_lex_state = 148}, - [2992] = {.lex_state = 2, .external_lex_state = 148}, - [2993] = {.lex_state = 0, .external_lex_state = 47}, - [2994] = {.lex_state = 0, .external_lex_state = 149}, - [2995] = {.lex_state = 0, .external_lex_state = 150}, - [2996] = {.lex_state = 2, .external_lex_state = 148}, - [2997] = {.lex_state = 2, .external_lex_state = 148}, - [2998] = {.lex_state = 2, .external_lex_state = 148}, - [2999] = {.lex_state = 2, .external_lex_state = 148}, - [3000] = {.lex_state = 2, .external_lex_state = 148}, - [3001] = {.lex_state = 2, .external_lex_state = 148}, - [3002] = {.lex_state = 2, .external_lex_state = 148}, - [3003] = {.lex_state = 2, .external_lex_state = 148}, - [3004] = {.lex_state = 2, .external_lex_state = 148}, - [3005] = {.lex_state = 2, .external_lex_state = 148}, - [3006] = {.lex_state = 2, .external_lex_state = 148}, - [3007] = {.lex_state = 2, .external_lex_state = 148}, - [3008] = {.lex_state = 0, .external_lex_state = 47}, - [3009] = {.lex_state = 2, .external_lex_state = 148}, - [3010] = {.lex_state = 2, .external_lex_state = 148}, - [3011] = {.lex_state = 2, .external_lex_state = 148}, - [3012] = {.lex_state = 2, .external_lex_state = 148}, - [3013] = {.lex_state = 2, .external_lex_state = 148}, - [3014] = {.lex_state = 2, .external_lex_state = 148}, - [3015] = {.lex_state = 0, .external_lex_state = 47}, - [3016] = {.lex_state = 0, .external_lex_state = 47}, - [3017] = {.lex_state = 0, .external_lex_state = 47}, - [3018] = {.lex_state = 0, .external_lex_state = 47}, - [3019] = {.lex_state = 2, .external_lex_state = 148}, - [3020] = {.lex_state = 2, .external_lex_state = 148}, - [3021] = {.lex_state = 2, .external_lex_state = 148}, - [3022] = {.lex_state = 2, .external_lex_state = 148}, - [3023] = {.lex_state = 0, .external_lex_state = 147}, + [2419] = {.lex_state = 1, .external_lex_state = 89}, + [2420] = {.lex_state = 1, .external_lex_state = 123}, + [2421] = {.lex_state = 1, .external_lex_state = 124}, + [2422] = {.lex_state = 0, .external_lex_state = 121}, + [2423] = {.lex_state = 1, .external_lex_state = 128}, + [2424] = {.lex_state = 1, .external_lex_state = 128}, + [2425] = {.lex_state = 1, .external_lex_state = 130}, + [2426] = {.lex_state = 1, .external_lex_state = 128}, + [2427] = {.lex_state = 1, .external_lex_state = 130}, + [2428] = {.lex_state = 1, .external_lex_state = 130}, + [2429] = {.lex_state = 1, .external_lex_state = 69}, + [2430] = {.lex_state = 1, .external_lex_state = 69}, + [2431] = {.lex_state = 1, .external_lex_state = 123}, + [2432] = {.lex_state = 1, .external_lex_state = 80}, + [2433] = {.lex_state = 1, .external_lex_state = 65}, + [2434] = {.lex_state = 1, .external_lex_state = 78}, + [2435] = {.lex_state = 1, .external_lex_state = 80}, + [2436] = {.lex_state = 1, .external_lex_state = 78}, + [2437] = {.lex_state = 1, .external_lex_state = 80}, + [2438] = {.lex_state = 1, .external_lex_state = 80}, + [2439] = {.lex_state = 1, .external_lex_state = 80}, + [2440] = {.lex_state = 1, .external_lex_state = 80}, + [2441] = {.lex_state = 1, .external_lex_state = 78}, + [2442] = {.lex_state = 1, .external_lex_state = 78}, + [2443] = {.lex_state = 1, .external_lex_state = 80}, + [2444] = {.lex_state = 1, .external_lex_state = 80}, + [2445] = {.lex_state = 1, .external_lex_state = 80}, + [2446] = {.lex_state = 1, .external_lex_state = 80}, + [2447] = {.lex_state = 1, .external_lex_state = 80}, + [2448] = {.lex_state = 1, .external_lex_state = 65}, + [2449] = {.lex_state = 1, .external_lex_state = 78}, + [2450] = {.lex_state = 1, .external_lex_state = 65}, + [2451] = {.lex_state = 1, .external_lex_state = 65}, + [2452] = {.lex_state = 1, .external_lex_state = 78}, + [2453] = {.lex_state = 1, .external_lex_state = 78}, + [2454] = {.lex_state = 1, .external_lex_state = 65}, + [2455] = {.lex_state = 1, .external_lex_state = 65}, + [2456] = {.lex_state = 1, .external_lex_state = 93}, + [2457] = {.lex_state = 1, .external_lex_state = 78}, + [2458] = {.lex_state = 1, .external_lex_state = 131}, + [2459] = {.lex_state = 1, .external_lex_state = 78}, + [2460] = {.lex_state = 1, .external_lex_state = 65}, + [2461] = {.lex_state = 1, .external_lex_state = 65}, + [2462] = {.lex_state = 1, .external_lex_state = 65}, + [2463] = {.lex_state = 1, .external_lex_state = 65}, + [2464] = {.lex_state = 1, .external_lex_state = 78}, + [2465] = {.lex_state = 1, .external_lex_state = 78}, + [2466] = {.lex_state = 1, .external_lex_state = 78}, + [2467] = {.lex_state = 1, .external_lex_state = 92}, + [2468] = {.lex_state = 1, .external_lex_state = 80}, + [2469] = {.lex_state = 1, .external_lex_state = 69}, + [2470] = {.lex_state = 1, .external_lex_state = 108}, + [2471] = {.lex_state = 1, .external_lex_state = 88}, + [2472] = {.lex_state = 1, .external_lex_state = 92}, + [2473] = {.lex_state = 1, .external_lex_state = 90}, + [2474] = {.lex_state = 1, .external_lex_state = 87}, + [2475] = {.lex_state = 1, .external_lex_state = 87}, + [2476] = {.lex_state = 1, .external_lex_state = 88}, + [2477] = {.lex_state = 1, .external_lex_state = 90}, + [2478] = {.lex_state = 1, .external_lex_state = 92}, + [2479] = {.lex_state = 1, .external_lex_state = 92}, + [2480] = {.lex_state = 1, .external_lex_state = 88}, + [2481] = {.lex_state = 1, .external_lex_state = 93}, + [2482] = {.lex_state = 1, .external_lex_state = 93}, + [2483] = {.lex_state = 1, .external_lex_state = 87}, + [2484] = {.lex_state = 1, .external_lex_state = 90}, + [2485] = {.lex_state = 1, .external_lex_state = 93}, + [2486] = {.lex_state = 1, .external_lex_state = 93}, + [2487] = {.lex_state = 1, .external_lex_state = 87}, + [2488] = {.lex_state = 1, .external_lex_state = 87}, + [2489] = {.lex_state = 1, .external_lex_state = 87}, + [2490] = {.lex_state = 1, .external_lex_state = 93}, + [2491] = {.lex_state = 1, .external_lex_state = 88}, + [2492] = {.lex_state = 1, .external_lex_state = 87}, + [2493] = {.lex_state = 1, .external_lex_state = 87}, + [2494] = {.lex_state = 1, .external_lex_state = 87}, + [2495] = {.lex_state = 1, .external_lex_state = 93}, + [2496] = {.lex_state = 1, .external_lex_state = 88}, + [2497] = {.lex_state = 1, .external_lex_state = 87}, + [2498] = {.lex_state = 1, .external_lex_state = 88}, + [2499] = {.lex_state = 1, .external_lex_state = 92}, + [2500] = {.lex_state = 1, .external_lex_state = 90}, + [2501] = {.lex_state = 1, .external_lex_state = 92}, + [2502] = {.lex_state = 1, .external_lex_state = 90}, + [2503] = {.lex_state = 1, .external_lex_state = 87}, + [2504] = {.lex_state = 1, .external_lex_state = 93}, + [2505] = {.lex_state = 1, .external_lex_state = 90}, + [2506] = {.lex_state = 1, .external_lex_state = 90}, + [2507] = {.lex_state = 1, .external_lex_state = 90}, + [2508] = {.lex_state = 1, .external_lex_state = 88}, + [2509] = {.lex_state = 1, .external_lex_state = 88}, + [2510] = {.lex_state = 1, .external_lex_state = 93}, + [2511] = {.lex_state = 1, .external_lex_state = 109}, + [2512] = {.lex_state = 1, .external_lex_state = 93}, + [2513] = {.lex_state = 1, .external_lex_state = 88}, + [2514] = {.lex_state = 1, .external_lex_state = 90}, + [2515] = {.lex_state = 1, .external_lex_state = 93}, + [2516] = {.lex_state = 1, .external_lex_state = 93}, + [2517] = {.lex_state = 1, .external_lex_state = 92}, + [2518] = {.lex_state = 1, .external_lex_state = 88}, + [2519] = {.lex_state = 1, .external_lex_state = 92}, + [2520] = {.lex_state = 1, .external_lex_state = 92}, + [2521] = {.lex_state = 1, .external_lex_state = 90}, + [2522] = {.lex_state = 1, .external_lex_state = 92}, + [2523] = {.lex_state = 1, .external_lex_state = 88}, + [2524] = {.lex_state = 1, .external_lex_state = 103}, + [2525] = {.lex_state = 1, .external_lex_state = 93}, + [2526] = {.lex_state = 1, .external_lex_state = 92}, + [2527] = {.lex_state = 1, .external_lex_state = 90}, + [2528] = {.lex_state = 1, .external_lex_state = 88}, + [2529] = {.lex_state = 1, .external_lex_state = 92}, + [2530] = {.lex_state = 1, .external_lex_state = 87}, + [2531] = {.lex_state = 1, .external_lex_state = 88}, + [2532] = {.lex_state = 1, .external_lex_state = 90}, + [2533] = {.lex_state = 1, .external_lex_state = 90}, + [2534] = {.lex_state = 1, .external_lex_state = 92}, + [2535] = {.lex_state = 1, .external_lex_state = 104}, + [2536] = {.lex_state = 1, .external_lex_state = 104}, + [2537] = {.lex_state = 1, .external_lex_state = 109}, + [2538] = {.lex_state = 1, .external_lex_state = 103}, + [2539] = {.lex_state = 1, .external_lex_state = 104}, + [2540] = {.lex_state = 1, .external_lex_state = 109}, + [2541] = {.lex_state = 1, .external_lex_state = 101}, + [2542] = {.lex_state = 2, .external_lex_state = 20}, + [2543] = {.lex_state = 1, .external_lex_state = 77}, + [2544] = {.lex_state = 1, .external_lex_state = 77}, + [2545] = {.lex_state = 1, .external_lex_state = 103}, + [2546] = {.lex_state = 1, .external_lex_state = 103}, + [2547] = {.lex_state = 1, .external_lex_state = 104}, + [2548] = {.lex_state = 1, .external_lex_state = 77}, + [2549] = {.lex_state = 1, .external_lex_state = 77}, + [2550] = {.lex_state = 1, .external_lex_state = 109}, + [2551] = {.lex_state = 1, .external_lex_state = 77}, + [2552] = {.lex_state = 1, .external_lex_state = 104}, + [2553] = {.lex_state = 1, .external_lex_state = 103}, + [2554] = {.lex_state = 1, .external_lex_state = 101}, + [2555] = {.lex_state = 1, .external_lex_state = 101}, + [2556] = {.lex_state = 1, .external_lex_state = 109}, + [2557] = {.lex_state = 1, .external_lex_state = 103}, + [2558] = {.lex_state = 1, .external_lex_state = 101}, + [2559] = {.lex_state = 1, .external_lex_state = 103}, + [2560] = {.lex_state = 1, .external_lex_state = 101}, + [2561] = {.lex_state = 1, .external_lex_state = 109}, + [2562] = {.lex_state = 1, .external_lex_state = 101}, + [2563] = {.lex_state = 1, .external_lex_state = 109}, + [2564] = {.lex_state = 1, .external_lex_state = 101}, + [2565] = {.lex_state = 1, .external_lex_state = 109}, + [2566] = {.lex_state = 1, .external_lex_state = 109}, + [2567] = {.lex_state = 1, .external_lex_state = 103}, + [2568] = {.lex_state = 1, .external_lex_state = 104}, + [2569] = {.lex_state = 1, .external_lex_state = 77}, + [2570] = {.lex_state = 1, .external_lex_state = 101}, + [2571] = {.lex_state = 1, .external_lex_state = 101}, + [2572] = {.lex_state = 1, .external_lex_state = 101}, + [2573] = {.lex_state = 1, .external_lex_state = 101}, + [2574] = {.lex_state = 1, .external_lex_state = 101}, + [2575] = {.lex_state = 1, .external_lex_state = 104}, + [2576] = {.lex_state = 2, .external_lex_state = 15}, + [2577] = {.lex_state = 1, .external_lex_state = 103}, + [2578] = {.lex_state = 1, .external_lex_state = 77}, + [2579] = {.lex_state = 1, .external_lex_state = 77}, + [2580] = {.lex_state = 1, .external_lex_state = 77}, + [2581] = {.lex_state = 1, .external_lex_state = 103}, + [2582] = {.lex_state = 1, .external_lex_state = 77}, + [2583] = {.lex_state = 1, .external_lex_state = 104}, + [2584] = {.lex_state = 1, .external_lex_state = 109}, + [2585] = {.lex_state = 1, .external_lex_state = 104}, + [2586] = {.lex_state = 2, .external_lex_state = 20}, + [2587] = {.lex_state = 1, .external_lex_state = 108}, + [2588] = {.lex_state = 1, .external_lex_state = 103}, + [2589] = {.lex_state = 1, .external_lex_state = 108}, + [2590] = {.lex_state = 1, .external_lex_state = 77}, + [2591] = {.lex_state = 1, .external_lex_state = 108}, + [2592] = {.lex_state = 1, .external_lex_state = 101}, + [2593] = {.lex_state = 1, .external_lex_state = 104}, + [2594] = {.lex_state = 1, .external_lex_state = 108}, + [2595] = {.lex_state = 1, .external_lex_state = 103}, + [2596] = {.lex_state = 1, .external_lex_state = 108}, + [2597] = {.lex_state = 1, .external_lex_state = 108}, + [2598] = {.lex_state = 1, .external_lex_state = 108}, + [2599] = {.lex_state = 1, .external_lex_state = 104}, + [2600] = {.lex_state = 2, .external_lex_state = 20}, + [2601] = {.lex_state = 2, .external_lex_state = 20}, + [2602] = {.lex_state = 1, .external_lex_state = 104}, + [2603] = {.lex_state = 1, .external_lex_state = 77}, + [2604] = {.lex_state = 1, .external_lex_state = 108}, + [2605] = {.lex_state = 1, .external_lex_state = 108}, + [2606] = {.lex_state = 1, .external_lex_state = 104}, + [2607] = {.lex_state = 1, .external_lex_state = 109}, + [2608] = {.lex_state = 1, .external_lex_state = 108}, + [2609] = {.lex_state = 1, .external_lex_state = 108}, + [2610] = {.lex_state = 1, .external_lex_state = 109}, + [2611] = {.lex_state = 1, .external_lex_state = 108}, + [2612] = {.lex_state = 1, .external_lex_state = 103}, + [2613] = {.lex_state = 1, .external_lex_state = 109}, + [2614] = {.lex_state = 1, .external_lex_state = 119}, + [2615] = {.lex_state = 1, .external_lex_state = 120}, + [2616] = {.lex_state = 1, .external_lex_state = 120}, + [2617] = {.lex_state = 1, .external_lex_state = 114}, + [2618] = {.lex_state = 1, .external_lex_state = 114}, + [2619] = {.lex_state = 1, .external_lex_state = 116}, + [2620] = {.lex_state = 1, .external_lex_state = 120}, + [2621] = {.lex_state = 2, .external_lex_state = 22}, + [2622] = {.lex_state = 2, .external_lex_state = 132}, + [2623] = {.lex_state = 2, .external_lex_state = 22}, + [2624] = {.lex_state = 1, .external_lex_state = 114}, + [2625] = {.lex_state = 1, .external_lex_state = 114}, + [2626] = {.lex_state = 1, .external_lex_state = 114}, + [2627] = {.lex_state = 2, .external_lex_state = 22}, + [2628] = {.lex_state = 1, .external_lex_state = 119}, + [2629] = {.lex_state = 1, .external_lex_state = 120}, + [2630] = {.lex_state = 1, .external_lex_state = 119}, + [2631] = {.lex_state = 1, .external_lex_state = 119}, + [2632] = {.lex_state = 1, .external_lex_state = 119}, + [2633] = {.lex_state = 1, .external_lex_state = 119}, + [2634] = {.lex_state = 1, .external_lex_state = 116}, + [2635] = {.lex_state = 1, .external_lex_state = 114}, + [2636] = {.lex_state = 1, .external_lex_state = 120}, + [2637] = {.lex_state = 1, .external_lex_state = 118}, + [2638] = {.lex_state = 1, .external_lex_state = 120}, + [2639] = {.lex_state = 1, .external_lex_state = 118}, + [2640] = {.lex_state = 1, .external_lex_state = 120}, + [2641] = {.lex_state = 1, .external_lex_state = 120}, + [2642] = {.lex_state = 1, .external_lex_state = 114}, + [2643] = {.lex_state = 2, .external_lex_state = 22}, + [2644] = {.lex_state = 1, .external_lex_state = 116}, + [2645] = {.lex_state = 1, .external_lex_state = 118}, + [2646] = {.lex_state = 1, .external_lex_state = 118}, + [2647] = {.lex_state = 1, .external_lex_state = 116}, + [2648] = {.lex_state = 1, .external_lex_state = 116}, + [2649] = {.lex_state = 1, .external_lex_state = 116}, + [2650] = {.lex_state = 1, .external_lex_state = 116}, + [2651] = {.lex_state = 1, .external_lex_state = 118}, + [2652] = {.lex_state = 2, .external_lex_state = 22}, + [2653] = {.lex_state = 1, .external_lex_state = 116}, + [2654] = {.lex_state = 1, .external_lex_state = 120}, + [2655] = {.lex_state = 1, .external_lex_state = 116}, + [2656] = {.lex_state = 1, .external_lex_state = 119}, + [2657] = {.lex_state = 1, .external_lex_state = 118}, + [2658] = {.lex_state = 1, .external_lex_state = 119}, + [2659] = {.lex_state = 1, .external_lex_state = 120}, + [2660] = {.lex_state = 1, .external_lex_state = 118}, + [2661] = {.lex_state = 1, .external_lex_state = 119}, + [2662] = {.lex_state = 1, .external_lex_state = 116}, + [2663] = {.lex_state = 1, .external_lex_state = 119}, + [2664] = {.lex_state = 1, .external_lex_state = 116}, + [2665] = {.lex_state = 1, .external_lex_state = 116}, + [2666] = {.lex_state = 2, .external_lex_state = 132}, + [2667] = {.lex_state = 1, .external_lex_state = 118}, + [2668] = {.lex_state = 1, .external_lex_state = 114}, + [2669] = {.lex_state = 1, .external_lex_state = 114}, + [2670] = {.lex_state = 1, .external_lex_state = 114}, + [2671] = {.lex_state = 1, .external_lex_state = 119}, + [2672] = {.lex_state = 1, .external_lex_state = 118}, + [2673] = {.lex_state = 2, .external_lex_state = 22}, + [2674] = {.lex_state = 1, .external_lex_state = 118}, + [2675] = {.lex_state = 2, .external_lex_state = 22}, + [2676] = {.lex_state = 2, .external_lex_state = 22}, + [2677] = {.lex_state = 1, .external_lex_state = 120}, + [2678] = {.lex_state = 1, .external_lex_state = 114}, + [2679] = {.lex_state = 2, .external_lex_state = 132}, + [2680] = {.lex_state = 2, .external_lex_state = 22}, + [2681] = {.lex_state = 2, .external_lex_state = 22}, + [2682] = {.lex_state = 1, .external_lex_state = 118}, + [2683] = {.lex_state = 2, .external_lex_state = 22}, + [2684] = {.lex_state = 1, .external_lex_state = 114}, + [2685] = {.lex_state = 1, .external_lex_state = 116}, + [2686] = {.lex_state = 1, .external_lex_state = 119}, + [2687] = {.lex_state = 1, .external_lex_state = 118}, + [2688] = {.lex_state = 1, .external_lex_state = 120}, + [2689] = {.lex_state = 1, .external_lex_state = 118}, + [2690] = {.lex_state = 2, .external_lex_state = 132}, + [2691] = {.lex_state = 1, .external_lex_state = 130}, + [2692] = {.lex_state = 1, .external_lex_state = 128}, + [2693] = {.lex_state = 1, .external_lex_state = 89}, + [2694] = {.lex_state = 1, .external_lex_state = 125}, + [2695] = {.lex_state = 1, .external_lex_state = 125}, + [2696] = {.lex_state = 1, .external_lex_state = 125}, + [2697] = {.lex_state = 1, .external_lex_state = 125}, + [2698] = {.lex_state = 1, .external_lex_state = 125}, + [2699] = {.lex_state = 1, .external_lex_state = 129}, + [2700] = {.lex_state = 1, .external_lex_state = 125}, + [2701] = {.lex_state = 1, .external_lex_state = 129}, + [2702] = {.lex_state = 2, .external_lex_state = 133}, + [2703] = {.lex_state = 1, .external_lex_state = 129}, + [2704] = {.lex_state = 1, .external_lex_state = 129}, + [2705] = {.lex_state = 1, .external_lex_state = 129}, + [2706] = {.lex_state = 1, .external_lex_state = 89}, + [2707] = {.lex_state = 1, .external_lex_state = 125}, + [2708] = {.lex_state = 1, .external_lex_state = 130}, + [2709] = {.lex_state = 2, .external_lex_state = 133}, + [2710] = {.lex_state = 1, .external_lex_state = 125}, + [2711] = {.lex_state = 1, .external_lex_state = 128}, + [2712] = {.lex_state = 1, .external_lex_state = 129}, + [2713] = {.lex_state = 2, .external_lex_state = 133}, + [2714] = {.lex_state = 1, .external_lex_state = 129}, + [2715] = {.lex_state = 1, .external_lex_state = 125}, + [2716] = {.lex_state = 1, .external_lex_state = 89}, + [2717] = {.lex_state = 1, .external_lex_state = 128}, + [2718] = {.lex_state = 1, .external_lex_state = 128}, + [2719] = {.lex_state = 2, .external_lex_state = 133}, + [2720] = {.lex_state = 1, .external_lex_state = 128}, + [2721] = {.lex_state = 1, .external_lex_state = 129}, + [2722] = {.lex_state = 1, .external_lex_state = 129}, + [2723] = {.lex_state = 1, .external_lex_state = 129}, + [2724] = {.lex_state = 1, .external_lex_state = 129}, + [2725] = {.lex_state = 1, .external_lex_state = 128}, + [2726] = {.lex_state = 1, .external_lex_state = 130}, + [2727] = {.lex_state = 1, .external_lex_state = 130}, + [2728] = {.lex_state = 1, .external_lex_state = 126}, + [2729] = {.lex_state = 1, .external_lex_state = 130}, + [2730] = {.lex_state = 1, .external_lex_state = 125}, + [2731] = {.lex_state = 1, .external_lex_state = 125}, + [2732] = {.lex_state = 1, .external_lex_state = 130}, + [2733] = {.lex_state = 1, .external_lex_state = 89}, + [2734] = {.lex_state = 1, .external_lex_state = 130}, + [2735] = {.lex_state = 1, .external_lex_state = 129}, + [2736] = {.lex_state = 1, .external_lex_state = 130}, + [2737] = {.lex_state = 1, .external_lex_state = 130}, + [2738] = {.lex_state = 1, .external_lex_state = 130}, + [2739] = {.lex_state = 1, .external_lex_state = 89}, + [2740] = {.lex_state = 1, .external_lex_state = 128}, + [2741] = {.lex_state = 1, .external_lex_state = 130}, + [2742] = {.lex_state = 1, .external_lex_state = 89}, + [2743] = {.lex_state = 1, .external_lex_state = 126}, + [2744] = {.lex_state = 1, .external_lex_state = 89}, + [2745] = {.lex_state = 1, .external_lex_state = 126}, + [2746] = {.lex_state = 1, .external_lex_state = 126}, + [2747] = {.lex_state = 1, .external_lex_state = 129}, + [2748] = {.lex_state = 1, .external_lex_state = 128}, + [2749] = {.lex_state = 1, .external_lex_state = 128}, + [2750] = {.lex_state = 1, .external_lex_state = 125}, + [2751] = {.lex_state = 1, .external_lex_state = 89}, + [2752] = {.lex_state = 1, .external_lex_state = 128}, + [2753] = {.lex_state = 1, .external_lex_state = 89}, + [2754] = {.lex_state = 1, .external_lex_state = 126}, + [2755] = {.lex_state = 1, .external_lex_state = 89}, + [2756] = {.lex_state = 1, .external_lex_state = 126}, + [2757] = {.lex_state = 1, .external_lex_state = 126}, + [2758] = {.lex_state = 1, .external_lex_state = 125}, + [2759] = {.lex_state = 1, .external_lex_state = 126}, + [2760] = {.lex_state = 1, .external_lex_state = 126}, + [2761] = {.lex_state = 1, .external_lex_state = 126}, + [2762] = {.lex_state = 1, .external_lex_state = 128}, + [2763] = {.lex_state = 1, .external_lex_state = 128}, + [2764] = {.lex_state = 1, .external_lex_state = 89}, + [2765] = {.lex_state = 1, .external_lex_state = 126}, + [2766] = {.lex_state = 1, .external_lex_state = 89}, + [2767] = {.lex_state = 1, .external_lex_state = 126}, + [2768] = {.lex_state = 1, .external_lex_state = 89}, + [2769] = {.lex_state = 1, .external_lex_state = 130}, + [2770] = {.lex_state = 0, .external_lex_state = 134}, + [2771] = {.lex_state = 0, .external_lex_state = 134}, + [2772] = {.lex_state = 0, .external_lex_state = 134}, + [2773] = {.lex_state = 0, .external_lex_state = 134}, + [2774] = {.lex_state = 0, .external_lex_state = 134}, + [2775] = {.lex_state = 0, .external_lex_state = 134}, + [2776] = {.lex_state = 0, .external_lex_state = 134}, + [2777] = {.lex_state = 0, .external_lex_state = 134}, + [2778] = {.lex_state = 0, .external_lex_state = 134}, + [2779] = {.lex_state = 0, .external_lex_state = 134}, + [2780] = {.lex_state = 0, .external_lex_state = 134}, + [2781] = {.lex_state = 0, .external_lex_state = 134}, + [2782] = {.lex_state = 0, .external_lex_state = 134}, + [2783] = {.lex_state = 0, .external_lex_state = 134}, + [2784] = {.lex_state = 0, .external_lex_state = 134}, + [2785] = {.lex_state = 0, .external_lex_state = 134}, + [2786] = {.lex_state = 0, .external_lex_state = 134}, + [2787] = {.lex_state = 0, .external_lex_state = 134}, + [2788] = {.lex_state = 0, .external_lex_state = 134}, + [2789] = {.lex_state = 2, .external_lex_state = 135}, + [2790] = {.lex_state = 0, .external_lex_state = 134}, + [2791] = {.lex_state = 2, .external_lex_state = 135}, + [2792] = {.lex_state = 2, .external_lex_state = 135}, + [2793] = {.lex_state = 2, .external_lex_state = 136}, + [2794] = {.lex_state = 2, .external_lex_state = 136}, + [2795] = {.lex_state = 2, .external_lex_state = 137}, + [2796] = {.lex_state = 2, .external_lex_state = 136}, + [2797] = {.lex_state = 2, .external_lex_state = 138}, + [2798] = {.lex_state = 2, .external_lex_state = 137}, + [2799] = {.lex_state = 2, .external_lex_state = 138}, + [2800] = {.lex_state = 2, .external_lex_state = 138}, + [2801] = {.lex_state = 2, .external_lex_state = 137}, + [2802] = {.lex_state = 2, .external_lex_state = 7}, + [2803] = {.lex_state = 2, .external_lex_state = 139}, + [2804] = {.lex_state = 2, .external_lex_state = 7}, + [2805] = {.lex_state = 2, .external_lex_state = 7}, + [2806] = {.lex_state = 2, .external_lex_state = 7}, + [2807] = {.lex_state = 2, .external_lex_state = 7}, + [2808] = {.lex_state = 2, .external_lex_state = 7}, + [2809] = {.lex_state = 2, .external_lex_state = 7}, + [2810] = {.lex_state = 2, .external_lex_state = 139}, + [2811] = {.lex_state = 2, .external_lex_state = 7}, + [2812] = {.lex_state = 2, .external_lex_state = 7}, + [2813] = {.lex_state = 2, .external_lex_state = 7}, + [2814] = {.lex_state = 2, .external_lex_state = 7}, + [2815] = {.lex_state = 2, .external_lex_state = 7}, + [2816] = {.lex_state = 2, .external_lex_state = 7}, + [2817] = {.lex_state = 2, .external_lex_state = 7}, + [2818] = {.lex_state = 2, .external_lex_state = 7}, + [2819] = {.lex_state = 2, .external_lex_state = 7}, + [2820] = {.lex_state = 2, .external_lex_state = 7}, + [2821] = {.lex_state = 2, .external_lex_state = 7}, + [2822] = {.lex_state = 2, .external_lex_state = 7}, + [2823] = {.lex_state = 2, .external_lex_state = 7}, + [2824] = {.lex_state = 2, .external_lex_state = 7}, + [2825] = {.lex_state = 2, .external_lex_state = 7}, + [2826] = {.lex_state = 2, .external_lex_state = 7}, + [2827] = {.lex_state = 2, .external_lex_state = 7}, + [2828] = {.lex_state = 2, .external_lex_state = 7}, + [2829] = {.lex_state = 2, .external_lex_state = 7}, + [2830] = {.lex_state = 2, .external_lex_state = 7}, + [2831] = {.lex_state = 2, .external_lex_state = 7}, + [2832] = {.lex_state = 2, .external_lex_state = 7}, + [2833] = {.lex_state = 2, .external_lex_state = 7}, + [2834] = {.lex_state = 2, .external_lex_state = 7}, + [2835] = {.lex_state = 2, .external_lex_state = 7}, + [2836] = {.lex_state = 2, .external_lex_state = 7}, + [2837] = {.lex_state = 2, .external_lex_state = 7}, + [2838] = {.lex_state = 2, .external_lex_state = 7}, + [2839] = {.lex_state = 2, .external_lex_state = 7}, + [2840] = {.lex_state = 2, .external_lex_state = 7}, + [2841] = {.lex_state = 2, .external_lex_state = 139}, + [2842] = {.lex_state = 2, .external_lex_state = 7}, + [2843] = {.lex_state = 2, .external_lex_state = 7}, + [2844] = {.lex_state = 2, .external_lex_state = 7}, + [2845] = {.lex_state = 2, .external_lex_state = 7}, + [2846] = {.lex_state = 2, .external_lex_state = 7}, + [2847] = {.lex_state = 2, .external_lex_state = 7}, + [2848] = {.lex_state = 2, .external_lex_state = 7}, + [2849] = {.lex_state = 2, .external_lex_state = 7}, + [2850] = {.lex_state = 2, .external_lex_state = 7}, + [2851] = {.lex_state = 2, .external_lex_state = 7}, + [2852] = {.lex_state = 2, .external_lex_state = 7}, + [2853] = {.lex_state = 2, .external_lex_state = 7}, + [2854] = {.lex_state = 2, .external_lex_state = 7}, + [2855] = {.lex_state = 2, .external_lex_state = 7}, + [2856] = {.lex_state = 2, .external_lex_state = 7}, + [2857] = {.lex_state = 2, .external_lex_state = 7}, + [2858] = {.lex_state = 2, .external_lex_state = 7}, + [2859] = {.lex_state = 2, .external_lex_state = 7}, + [2860] = {.lex_state = 2, .external_lex_state = 7}, + [2861] = {.lex_state = 2, .external_lex_state = 7}, + [2862] = {.lex_state = 2, .external_lex_state = 7}, + [2863] = {.lex_state = 2, .external_lex_state = 7}, + [2864] = {.lex_state = 2, .external_lex_state = 7}, + [2865] = {.lex_state = 2, .external_lex_state = 7}, + [2866] = {.lex_state = 2, .external_lex_state = 8}, + [2867] = {.lex_state = 2, .external_lex_state = 8}, + [2868] = {.lex_state = 2, .external_lex_state = 8}, + [2869] = {.lex_state = 2, .external_lex_state = 8}, + [2870] = {.lex_state = 2, .external_lex_state = 8}, + [2871] = {.lex_state = 2, .external_lex_state = 8}, + [2872] = {.lex_state = 2, .external_lex_state = 135}, + [2873] = {.lex_state = 2, .external_lex_state = 135}, + [2874] = {.lex_state = 0, .external_lex_state = 140}, + [2875] = {.lex_state = 2, .external_lex_state = 8}, + [2876] = {.lex_state = 2, .external_lex_state = 8}, + [2877] = {.lex_state = 2, .external_lex_state = 8}, + [2878] = {.lex_state = 2, .external_lex_state = 8}, + [2879] = {.lex_state = 2, .external_lex_state = 8}, + [2880] = {.lex_state = 2, .external_lex_state = 8}, + [2881] = {.lex_state = 2, .external_lex_state = 8}, + [2882] = {.lex_state = 2, .external_lex_state = 8}, + [2883] = {.lex_state = 2, .external_lex_state = 8}, + [2884] = {.lex_state = 2, .external_lex_state = 8}, + [2885] = {.lex_state = 2, .external_lex_state = 8}, + [2886] = {.lex_state = 2, .external_lex_state = 8}, + [2887] = {.lex_state = 2, .external_lex_state = 8}, + [2888] = {.lex_state = 2, .external_lex_state = 8}, + [2889] = {.lex_state = 2, .external_lex_state = 8}, + [2890] = {.lex_state = 2, .external_lex_state = 8}, + [2891] = {.lex_state = 2, .external_lex_state = 8}, + [2892] = {.lex_state = 2, .external_lex_state = 8}, + [2893] = {.lex_state = 2, .external_lex_state = 8}, + [2894] = {.lex_state = 2, .external_lex_state = 8}, + [2895] = {.lex_state = 2, .external_lex_state = 8}, + [2896] = {.lex_state = 2, .external_lex_state = 8}, + [2897] = {.lex_state = 2, .external_lex_state = 8}, + [2898] = {.lex_state = 2, .external_lex_state = 8}, + [2899] = {.lex_state = 2, .external_lex_state = 8}, + [2900] = {.lex_state = 2, .external_lex_state = 8}, + [2901] = {.lex_state = 2, .external_lex_state = 8}, + [2902] = {.lex_state = 2, .external_lex_state = 8}, + [2903] = {.lex_state = 2, .external_lex_state = 8}, + [2904] = {.lex_state = 2, .external_lex_state = 8}, + [2905] = {.lex_state = 2, .external_lex_state = 8}, + [2906] = {.lex_state = 2, .external_lex_state = 8}, + [2907] = {.lex_state = 2, .external_lex_state = 8}, + [2908] = {.lex_state = 2, .external_lex_state = 8}, + [2909] = {.lex_state = 2, .external_lex_state = 8}, + [2910] = {.lex_state = 2, .external_lex_state = 8}, + [2911] = {.lex_state = 2, .external_lex_state = 8}, + [2912] = {.lex_state = 2, .external_lex_state = 8}, + [2913] = {.lex_state = 2, .external_lex_state = 8}, + [2914] = {.lex_state = 2, .external_lex_state = 8}, + [2915] = {.lex_state = 2, .external_lex_state = 8}, + [2916] = {.lex_state = 2, .external_lex_state = 8}, + [2917] = {.lex_state = 2, .external_lex_state = 8}, + [2918] = {.lex_state = 2, .external_lex_state = 8}, + [2919] = {.lex_state = 2, .external_lex_state = 8}, + [2920] = {.lex_state = 2, .external_lex_state = 8}, + [2921] = {.lex_state = 2, .external_lex_state = 8}, + [2922] = {.lex_state = 2, .external_lex_state = 8}, + [2923] = {.lex_state = 2, .external_lex_state = 8}, + [2924] = {.lex_state = 2, .external_lex_state = 8}, + [2925] = {.lex_state = 2, .external_lex_state = 8}, + [2926] = {.lex_state = 2, .external_lex_state = 8}, + [2927] = {.lex_state = 2, .external_lex_state = 8}, + [2928] = {.lex_state = 2, .external_lex_state = 8}, + [2929] = {.lex_state = 2, .external_lex_state = 8}, + [2930] = {.lex_state = 2, .external_lex_state = 9}, + [2931] = {.lex_state = 2, .external_lex_state = 9}, + [2932] = {.lex_state = 2, .external_lex_state = 9}, + [2933] = {.lex_state = 2, .external_lex_state = 9}, + [2934] = {.lex_state = 2, .external_lex_state = 9}, + [2935] = {.lex_state = 2, .external_lex_state = 9}, + [2936] = {.lex_state = 2, .external_lex_state = 9}, + [2937] = {.lex_state = 2, .external_lex_state = 9}, + [2938] = {.lex_state = 2, .external_lex_state = 9}, + [2939] = {.lex_state = 2, .external_lex_state = 9}, + [2940] = {.lex_state = 2, .external_lex_state = 9}, + [2941] = {.lex_state = 2, .external_lex_state = 9}, + [2942] = {.lex_state = 2, .external_lex_state = 9}, + [2943] = {.lex_state = 2, .external_lex_state = 9}, + [2944] = {.lex_state = 2, .external_lex_state = 141}, + [2945] = {.lex_state = 2, .external_lex_state = 9}, + [2946] = {.lex_state = 2, .external_lex_state = 9}, + [2947] = {.lex_state = 2, .external_lex_state = 9}, + [2948] = {.lex_state = 2, .external_lex_state = 9}, + [2949] = {.lex_state = 0, .external_lex_state = 23}, + [2950] = {.lex_state = 2, .external_lex_state = 9}, + [2951] = {.lex_state = 2, .external_lex_state = 9}, + [2952] = {.lex_state = 2, .external_lex_state = 141}, + [2953] = {.lex_state = 2, .external_lex_state = 9}, + [2954] = {.lex_state = 2, .external_lex_state = 9}, + [2955] = {.lex_state = 2, .external_lex_state = 9}, + [2956] = {.lex_state = 2, .external_lex_state = 9}, + [2957] = {.lex_state = 2, .external_lex_state = 9}, + [2958] = {.lex_state = 2, .external_lex_state = 9}, + [2959] = {.lex_state = 2, .external_lex_state = 9}, + [2960] = {.lex_state = 2, .external_lex_state = 9}, + [2961] = {.lex_state = 2, .external_lex_state = 9}, + [2962] = {.lex_state = 2, .external_lex_state = 9}, + [2963] = {.lex_state = 2, .external_lex_state = 9}, + [2964] = {.lex_state = 2, .external_lex_state = 9}, + [2965] = {.lex_state = 2, .external_lex_state = 9}, + [2966] = {.lex_state = 2, .external_lex_state = 9}, + [2967] = {.lex_state = 2, .external_lex_state = 9}, + [2968] = {.lex_state = 2, .external_lex_state = 9}, + [2969] = {.lex_state = 2, .external_lex_state = 9}, + [2970] = {.lex_state = 2, .external_lex_state = 9}, + [2971] = {.lex_state = 2, .external_lex_state = 9}, + [2972] = {.lex_state = 2, .external_lex_state = 9}, + [2973] = {.lex_state = 2, .external_lex_state = 9}, + [2974] = {.lex_state = 2, .external_lex_state = 9}, + [2975] = {.lex_state = 2, .external_lex_state = 9}, + [2976] = {.lex_state = 2, .external_lex_state = 9}, + [2977] = {.lex_state = 2, .external_lex_state = 9}, + [2978] = {.lex_state = 2, .external_lex_state = 9}, + [2979] = {.lex_state = 2, .external_lex_state = 9}, + [2980] = {.lex_state = 2, .external_lex_state = 9}, + [2981] = {.lex_state = 2, .external_lex_state = 9}, + [2982] = {.lex_state = 2, .external_lex_state = 9}, + [2983] = {.lex_state = 2, .external_lex_state = 141}, + [2984] = {.lex_state = 2, .external_lex_state = 9}, + [2985] = {.lex_state = 0, .external_lex_state = 142}, + [2986] = {.lex_state = 2, .external_lex_state = 9}, + [2987] = {.lex_state = 2, .external_lex_state = 9}, + [2988] = {.lex_state = 2, .external_lex_state = 9}, + [2989] = {.lex_state = 2, .external_lex_state = 9}, + [2990] = {.lex_state = 2, .external_lex_state = 9}, + [2991] = {.lex_state = 2, .external_lex_state = 9}, + [2992] = {.lex_state = 2, .external_lex_state = 9}, + [2993] = {.lex_state = 2, .external_lex_state = 9}, + [2994] = {.lex_state = 2, .external_lex_state = 9}, + [2995] = {.lex_state = 2, .external_lex_state = 9}, + [2996] = {.lex_state = 2, .external_lex_state = 143}, + [2997] = {.lex_state = 2, .external_lex_state = 143}, + [2998] = {.lex_state = 0, .external_lex_state = 144}, + [2999] = {.lex_state = 2, .external_lex_state = 91}, + [3000] = {.lex_state = 2, .external_lex_state = 143}, + [3001] = {.lex_state = 0, .external_lex_state = 30}, + [3002] = {.lex_state = 0, .external_lex_state = 144}, + [3003] = {.lex_state = 2, .external_lex_state = 143}, + [3004] = {.lex_state = 2, .external_lex_state = 143}, + [3005] = {.lex_state = 0, .external_lex_state = 144}, + [3006] = {.lex_state = 0, .external_lex_state = 144}, + [3007] = {.lex_state = 2, .external_lex_state = 143}, + [3008] = {.lex_state = 0, .external_lex_state = 144}, + [3009] = {.lex_state = 2, .external_lex_state = 145}, + [3010] = {.lex_state = 2, .external_lex_state = 143}, + [3011] = {.lex_state = 0, .external_lex_state = 144}, + [3012] = {.lex_state = 2, .external_lex_state = 143}, + [3013] = {.lex_state = 0, .external_lex_state = 146}, + [3014] = {.lex_state = 0, .external_lex_state = 147}, + [3015] = {.lex_state = 0, .external_lex_state = 146}, + [3016] = {.lex_state = 0, .external_lex_state = 142}, + [3017] = {.lex_state = 0, .external_lex_state = 142}, + [3018] = {.lex_state = 0, .external_lex_state = 142}, + [3019] = {.lex_state = 0, .external_lex_state = 142}, + [3020] = {.lex_state = 0, .external_lex_state = 146}, + [3021] = {.lex_state = 0, .external_lex_state = 144}, + [3022] = {.lex_state = 0, .external_lex_state = 142}, + [3023] = {.lex_state = 0, .external_lex_state = 34}, [3024] = {.lex_state = 2, .external_lex_state = 148}, [3025] = {.lex_state = 2, .external_lex_state = 148}, [3026] = {.lex_state = 2, .external_lex_state = 148}, - [3027] = {.lex_state = 0, .external_lex_state = 47}, + [3027] = {.lex_state = 2, .external_lex_state = 148}, [3028] = {.lex_state = 2, .external_lex_state = 148}, [3029] = {.lex_state = 2, .external_lex_state = 148}, [3030] = {.lex_state = 2, .external_lex_state = 148}, - [3031] = {.lex_state = 2, .external_lex_state = 148}, + [3031] = {.lex_state = 0, .external_lex_state = 46}, [3032] = {.lex_state = 2, .external_lex_state = 148}, - [3033] = {.lex_state = 2, .external_lex_state = 148}, - [3034] = {.lex_state = 2, .external_lex_state = 148}, + [3033] = {.lex_state = 0, .external_lex_state = 46}, + [3034] = {.lex_state = 0, .external_lex_state = 46}, [3035] = {.lex_state = 2, .external_lex_state = 148}, - [3036] = {.lex_state = 2, .external_lex_state = 148}, - [3037] = {.lex_state = 0, .external_lex_state = 47}, - [3038] = {.lex_state = 2, .external_lex_state = 148}, - [3039] = {.lex_state = 2, .external_lex_state = 148}, - [3040] = {.lex_state = 2, .external_lex_state = 148}, + [3036] = {.lex_state = 0, .external_lex_state = 46}, + [3037] = {.lex_state = 0, .external_lex_state = 46}, + [3038] = {.lex_state = 0, .external_lex_state = 46}, + [3039] = {.lex_state = 0, .external_lex_state = 46}, + [3040] = {.lex_state = 2, .external_lex_state = 135}, [3041] = {.lex_state = 2, .external_lex_state = 148}, - [3042] = {.lex_state = 0, .external_lex_state = 47}, + [3042] = {.lex_state = 2, .external_lex_state = 148}, [3043] = {.lex_state = 2, .external_lex_state = 148}, [3044] = {.lex_state = 2, .external_lex_state = 148}, - [3045] = {.lex_state = 0, .external_lex_state = 47}, - [3046] = {.lex_state = 0, .external_lex_state = 47}, - [3047] = {.lex_state = 2, .external_lex_state = 148}, - [3048] = {.lex_state = 2, .external_lex_state = 148}, + [3045] = {.lex_state = 2, .external_lex_state = 148}, + [3046] = {.lex_state = 2, .external_lex_state = 148}, + [3047] = {.lex_state = 0, .external_lex_state = 46}, + [3048] = {.lex_state = 0, .external_lex_state = 46}, [3049] = {.lex_state = 2, .external_lex_state = 148}, [3050] = {.lex_state = 2, .external_lex_state = 148}, - [3051] = {.lex_state = 0, .external_lex_state = 47}, - [3052] = {.lex_state = 0, .external_lex_state = 47}, - [3053] = {.lex_state = 2, .external_lex_state = 148}, - [3054] = {.lex_state = 2, .external_lex_state = 148}, - [3055] = {.lex_state = 2, .external_lex_state = 151}, + [3051] = {.lex_state = 2, .external_lex_state = 148}, + [3052] = {.lex_state = 0, .external_lex_state = 46}, + [3053] = {.lex_state = 0, .external_lex_state = 149}, + [3054] = {.lex_state = 0, .external_lex_state = 46}, + [3055] = {.lex_state = 2, .external_lex_state = 148}, [3056] = {.lex_state = 2, .external_lex_state = 148}, [3057] = {.lex_state = 2, .external_lex_state = 148}, - [3058] = {.lex_state = 2, .external_lex_state = 148}, + [3058] = {.lex_state = 0, .external_lex_state = 46}, [3059] = {.lex_state = 2, .external_lex_state = 148}, [3060] = {.lex_state = 2, .external_lex_state = 148}, - [3061] = {.lex_state = 0, .external_lex_state = 47}, - [3062] = {.lex_state = 0, .external_lex_state = 47}, - [3063] = {.lex_state = 0, .external_lex_state = 47}, - [3064] = {.lex_state = 2, .external_lex_state = 148}, - [3065] = {.lex_state = 0, .external_lex_state = 47}, - [3066] = {.lex_state = 0, .external_lex_state = 47}, - [3067] = {.lex_state = 2, .external_lex_state = 148}, - [3068] = {.lex_state = 2, .external_lex_state = 148}, - [3069] = {.lex_state = 2, .external_lex_state = 148}, - [3070] = {.lex_state = 0, .external_lex_state = 47}, + [3061] = {.lex_state = 2, .external_lex_state = 148}, + [3062] = {.lex_state = 2, .external_lex_state = 148}, + [3063] = {.lex_state = 0, .external_lex_state = 46}, + [3064] = {.lex_state = 0, .external_lex_state = 54}, + [3065] = {.lex_state = 2, .external_lex_state = 148}, + [3066] = {.lex_state = 0, .external_lex_state = 46}, + [3067] = {.lex_state = 0, .external_lex_state = 46}, + [3068] = {.lex_state = 0, .external_lex_state = 46}, + [3069] = {.lex_state = 0, .external_lex_state = 46}, + [3070] = {.lex_state = 0, .external_lex_state = 46}, [3071] = {.lex_state = 2, .external_lex_state = 148}, - [3072] = {.lex_state = 2, .external_lex_state = 148}, + [3072] = {.lex_state = 2, .external_lex_state = 150}, [3073] = {.lex_state = 2, .external_lex_state = 148}, - [3074] = {.lex_state = 0, .external_lex_state = 47}, - [3075] = {.lex_state = 0, .external_lex_state = 47}, - [3076] = {.lex_state = 2, .external_lex_state = 148}, - [3077] = {.lex_state = 2, .external_lex_state = 148}, - [3078] = {.lex_state = 2, .external_lex_state = 148}, - [3079] = {.lex_state = 0, .external_lex_state = 47}, + [3074] = {.lex_state = 0, .external_lex_state = 46}, + [3075] = {.lex_state = 0, .external_lex_state = 46}, + [3076] = {.lex_state = 0, .external_lex_state = 46}, + [3077] = {.lex_state = 0, .external_lex_state = 151}, + [3078] = {.lex_state = 0, .external_lex_state = 46}, + [3079] = {.lex_state = 2, .external_lex_state = 148}, [3080] = {.lex_state = 2, .external_lex_state = 148}, [3081] = {.lex_state = 2, .external_lex_state = 148}, [3082] = {.lex_state = 2, .external_lex_state = 148}, - [3083] = {.lex_state = 2, .external_lex_state = 148}, + [3083] = {.lex_state = 0, .external_lex_state = 46}, [3084] = {.lex_state = 2, .external_lex_state = 148}, - [3085] = {.lex_state = 2, .external_lex_state = 148}, - [3086] = {.lex_state = 2, .external_lex_state = 148}, - [3087] = {.lex_state = 2, .external_lex_state = 148}, - [3088] = {.lex_state = 0, .external_lex_state = 149}, - [3089] = {.lex_state = 0, .external_lex_state = 60}, + [3085] = {.lex_state = 0, .external_lex_state = 46}, + [3086] = {.lex_state = 0, .external_lex_state = 46}, + [3087] = {.lex_state = 0, .external_lex_state = 46}, + [3088] = {.lex_state = 0, .external_lex_state = 151}, + [3089] = {.lex_state = 0, .external_lex_state = 151}, [3090] = {.lex_state = 2, .external_lex_state = 148}, [3091] = {.lex_state = 2, .external_lex_state = 148}, [3092] = {.lex_state = 2, .external_lex_state = 148}, - [3093] = {.lex_state = 2, .external_lex_state = 148}, + [3093] = {.lex_state = 0, .external_lex_state = 46}, [3094] = {.lex_state = 2, .external_lex_state = 148}, [3095] = {.lex_state = 2, .external_lex_state = 148}, [3096] = {.lex_state = 2, .external_lex_state = 148}, [3097] = {.lex_state = 2, .external_lex_state = 148}, - [3098] = {.lex_state = 0, .external_lex_state = 47}, - [3099] = {.lex_state = 0, .external_lex_state = 47}, - [3100] = {.lex_state = 0, .external_lex_state = 47}, + [3098] = {.lex_state = 2, .external_lex_state = 148}, + [3099] = {.lex_state = 0, .external_lex_state = 46}, + [3100] = {.lex_state = 2, .external_lex_state = 148}, [3101] = {.lex_state = 2, .external_lex_state = 148}, [3102] = {.lex_state = 2, .external_lex_state = 148}, - [3103] = {.lex_state = 2, .external_lex_state = 148}, + [3103] = {.lex_state = 0, .external_lex_state = 144}, [3104] = {.lex_state = 2, .external_lex_state = 148}, [3105] = {.lex_state = 2, .external_lex_state = 148}, [3106] = {.lex_state = 2, .external_lex_state = 148}, [3107] = {.lex_state = 2, .external_lex_state = 148}, [3108] = {.lex_state = 2, .external_lex_state = 148}, - [3109] = {.lex_state = 0, .external_lex_state = 47}, - [3110] = {.lex_state = 0, .external_lex_state = 47}, + [3109] = {.lex_state = 2, .external_lex_state = 148}, + [3110] = {.lex_state = 2, .external_lex_state = 148}, [3111] = {.lex_state = 2, .external_lex_state = 148}, [3112] = {.lex_state = 2, .external_lex_state = 148}, [3113] = {.lex_state = 2, .external_lex_state = 148}, [3114] = {.lex_state = 2, .external_lex_state = 148}, - [3115] = {.lex_state = 2, .external_lex_state = 148}, + [3115] = {.lex_state = 0, .external_lex_state = 46}, [3116] = {.lex_state = 2, .external_lex_state = 148}, - [3117] = {.lex_state = 2, .external_lex_state = 148}, + [3117] = {.lex_state = 0, .external_lex_state = 46}, [3118] = {.lex_state = 2, .external_lex_state = 148}, - [3119] = {.lex_state = 0, .external_lex_state = 47}, + [3119] = {.lex_state = 2, .external_lex_state = 148}, [3120] = {.lex_state = 2, .external_lex_state = 148}, - [3121] = {.lex_state = 0, .external_lex_state = 47}, + [3121] = {.lex_state = 2, .external_lex_state = 148}, [3122] = {.lex_state = 2, .external_lex_state = 148}, - [3123] = {.lex_state = 0, .external_lex_state = 47}, - [3124] = {.lex_state = 0, .external_lex_state = 47}, + [3123] = {.lex_state = 2, .external_lex_state = 148}, + [3124] = {.lex_state = 2, .external_lex_state = 148}, [3125] = {.lex_state = 2, .external_lex_state = 148}, - [3126] = {.lex_state = 0, .external_lex_state = 47}, - [3127] = {.lex_state = 2, .external_lex_state = 148}, + [3126] = {.lex_state = 2, .external_lex_state = 148}, + [3127] = {.lex_state = 0, .external_lex_state = 46}, [3128] = {.lex_state = 2, .external_lex_state = 148}, [3129] = {.lex_state = 2, .external_lex_state = 148}, - [3130] = {.lex_state = 0, .external_lex_state = 47}, + [3130] = {.lex_state = 2, .external_lex_state = 148}, [3131] = {.lex_state = 2, .external_lex_state = 148}, [3132] = {.lex_state = 2, .external_lex_state = 148}, [3133] = {.lex_state = 2, .external_lex_state = 148}, - [3134] = {.lex_state = 0, .external_lex_state = 47}, + [3134] = {.lex_state = 2, .external_lex_state = 148}, [3135] = {.lex_state = 2, .external_lex_state = 148}, [3136] = {.lex_state = 2, .external_lex_state = 148}, - [3137] = {.lex_state = 2, .external_lex_state = 148}, - [3138] = {.lex_state = 2, .external_lex_state = 135}, - [3139] = {.lex_state = 0, .external_lex_state = 62}, - [3140] = {.lex_state = 0, .external_lex_state = 62}, - [3141] = {.lex_state = 0, .external_lex_state = 62}, - [3142] = {.lex_state = 0, .external_lex_state = 65}, - [3143] = {.lex_state = 0, .external_lex_state = 65}, - [3144] = {.lex_state = 0, .external_lex_state = 65}, - [3145] = {.lex_state = 0, .external_lex_state = 62}, - [3146] = {.lex_state = 0, .external_lex_state = 62}, - [3147] = {.lex_state = 0, .external_lex_state = 62}, - [3148] = {.lex_state = 0, .external_lex_state = 65}, - [3149] = {.lex_state = 0, .external_lex_state = 62}, - [3150] = {.lex_state = 0, .external_lex_state = 62}, - [3151] = {.lex_state = 0, .external_lex_state = 62}, - [3152] = {.lex_state = 0, .external_lex_state = 62}, - [3153] = {.lex_state = 2, .external_lex_state = 132}, - [3154] = {.lex_state = 0, .external_lex_state = 62}, - [3155] = {.lex_state = 2, .external_lex_state = 152}, - [3156] = {.lex_state = 0, .external_lex_state = 65}, - [3157] = {.lex_state = 0, .external_lex_state = 62}, - [3158] = {.lex_state = 0, .external_lex_state = 62}, - [3159] = {.lex_state = 0, .external_lex_state = 62}, - [3160] = {.lex_state = 2, .external_lex_state = 153}, - [3161] = {.lex_state = 2, .external_lex_state = 138}, - [3162] = {.lex_state = 2, .external_lex_state = 135}, - [3163] = {.lex_state = 0, .external_lex_state = 62}, - [3164] = {.lex_state = 0, .external_lex_state = 62}, - [3165] = {.lex_state = 2, .external_lex_state = 135}, - [3166] = {.lex_state = 0, .external_lex_state = 62}, - [3167] = {.lex_state = 0, .external_lex_state = 62}, - [3168] = {.lex_state = 0, .external_lex_state = 62}, - [3169] = {.lex_state = 0, .external_lex_state = 62}, - [3170] = {.lex_state = 0, .external_lex_state = 62}, - [3171] = {.lex_state = 0, .external_lex_state = 62}, - [3172] = {.lex_state = 0, .external_lex_state = 65}, - [3173] = {.lex_state = 0, .external_lex_state = 65}, - [3174] = {.lex_state = 2, .external_lex_state = 153}, - [3175] = {.lex_state = 0, .external_lex_state = 65}, - [3176] = {.lex_state = 0, .external_lex_state = 65}, - [3177] = {.lex_state = 0, .external_lex_state = 62}, - [3178] = {.lex_state = 0, .external_lex_state = 65}, - [3179] = {.lex_state = 0, .external_lex_state = 65}, - [3180] = {.lex_state = 0, .external_lex_state = 65}, - [3181] = {.lex_state = 0, .external_lex_state = 65}, - [3182] = {.lex_state = 0, .external_lex_state = 65}, - [3183] = {.lex_state = 0, .external_lex_state = 65}, - [3184] = {.lex_state = 0, .external_lex_state = 65}, - [3185] = {.lex_state = 0, .external_lex_state = 65}, - [3186] = {.lex_state = 0, .external_lex_state = 65}, - [3187] = {.lex_state = 0, .external_lex_state = 62}, - [3188] = {.lex_state = 0, .external_lex_state = 65}, - [3189] = {.lex_state = 0, .external_lex_state = 62}, - [3190] = {.lex_state = 0, .external_lex_state = 62}, - [3191] = {.lex_state = 0, .external_lex_state = 65}, - [3192] = {.lex_state = 2, .external_lex_state = 135}, - [3193] = {.lex_state = 0, .external_lex_state = 65}, - [3194] = {.lex_state = 2, .external_lex_state = 135}, - [3195] = {.lex_state = 0, .external_lex_state = 154}, - [3196] = {.lex_state = 0, .external_lex_state = 65}, - [3197] = {.lex_state = 0, .external_lex_state = 62}, - [3198] = {.lex_state = 0, .external_lex_state = 65}, - [3199] = {.lex_state = 2, .external_lex_state = 135}, - [3200] = {.lex_state = 0, .external_lex_state = 62}, - [3201] = {.lex_state = 0, .external_lex_state = 62}, - [3202] = {.lex_state = 2, .external_lex_state = 135}, - [3203] = {.lex_state = 2, .external_lex_state = 135}, - [3204] = {.lex_state = 0, .external_lex_state = 65}, - [3205] = {.lex_state = 0, .external_lex_state = 65}, - [3206] = {.lex_state = 0, .external_lex_state = 65}, - [3207] = {.lex_state = 2, .external_lex_state = 135}, - [3208] = {.lex_state = 0, .external_lex_state = 65}, - [3209] = {.lex_state = 0, .external_lex_state = 65}, - [3210] = {.lex_state = 0, .external_lex_state = 65}, - [3211] = {.lex_state = 0, .external_lex_state = 62}, - [3212] = {.lex_state = 0, .external_lex_state = 154}, - [3213] = {.lex_state = 0, .external_lex_state = 149}, - [3214] = {.lex_state = 0, .external_lex_state = 65}, - [3215] = {.lex_state = 0, .external_lex_state = 62}, - [3216] = {.lex_state = 2, .external_lex_state = 137}, - [3217] = {.lex_state = 2, .external_lex_state = 135}, - [3218] = {.lex_state = 0, .external_lex_state = 65}, - [3219] = {.lex_state = 0, .external_lex_state = 65}, - [3220] = {.lex_state = 0, .external_lex_state = 62}, - [3221] = {.lex_state = 2, .external_lex_state = 135}, - [3222] = {.lex_state = 2, .external_lex_state = 135}, - [3223] = {.lex_state = 2, .external_lex_state = 135}, - [3224] = {.lex_state = 0, .external_lex_state = 65}, - [3225] = {.lex_state = 2, .external_lex_state = 135}, - [3226] = {.lex_state = 0, .external_lex_state = 65}, - [3227] = {.lex_state = 2, .external_lex_state = 135}, - [3228] = {.lex_state = 2, .external_lex_state = 135}, - [3229] = {.lex_state = 0, .external_lex_state = 65}, - [3230] = {.lex_state = 2, .external_lex_state = 135}, - [3231] = {.lex_state = 2, .external_lex_state = 135}, - [3232] = {.lex_state = 2, .external_lex_state = 135}, - [3233] = {.lex_state = 2, .external_lex_state = 135}, - [3234] = {.lex_state = 0, .external_lex_state = 62}, - [3235] = {.lex_state = 0, .external_lex_state = 62}, - [3236] = {.lex_state = 2, .external_lex_state = 135}, - [3237] = {.lex_state = 0, .external_lex_state = 154}, - [3238] = {.lex_state = 0, .external_lex_state = 62}, - [3239] = {.lex_state = 2, .external_lex_state = 135}, + [3137] = {.lex_state = 0, .external_lex_state = 46}, + [3138] = {.lex_state = 2, .external_lex_state = 148}, + [3139] = {.lex_state = 2, .external_lex_state = 148}, + [3140] = {.lex_state = 2, .external_lex_state = 148}, + [3141] = {.lex_state = 2, .external_lex_state = 148}, + [3142] = {.lex_state = 2, .external_lex_state = 148}, + [3143] = {.lex_state = 2, .external_lex_state = 148}, + [3144] = {.lex_state = 2, .external_lex_state = 148}, + [3145] = {.lex_state = 2, .external_lex_state = 148}, + [3146] = {.lex_state = 2, .external_lex_state = 148}, + [3147] = {.lex_state = 2, .external_lex_state = 148}, + [3148] = {.lex_state = 2, .external_lex_state = 148}, + [3149] = {.lex_state = 0, .external_lex_state = 46}, + [3150] = {.lex_state = 0, .external_lex_state = 46}, + [3151] = {.lex_state = 2, .external_lex_state = 148}, + [3152] = {.lex_state = 2, .external_lex_state = 148}, + [3153] = {.lex_state = 2, .external_lex_state = 148}, + [3154] = {.lex_state = 2, .external_lex_state = 148}, + [3155] = {.lex_state = 2, .external_lex_state = 148}, + [3156] = {.lex_state = 2, .external_lex_state = 148}, + [3157] = {.lex_state = 2, .external_lex_state = 148}, + [3158] = {.lex_state = 0, .external_lex_state = 46}, + [3159] = {.lex_state = 2, .external_lex_state = 148}, + [3160] = {.lex_state = 0, .external_lex_state = 46}, + [3161] = {.lex_state = 0, .external_lex_state = 46}, + [3162] = {.lex_state = 2, .external_lex_state = 148}, + [3163] = {.lex_state = 2, .external_lex_state = 148}, + [3164] = {.lex_state = 2, .external_lex_state = 148}, + [3165] = {.lex_state = 2, .external_lex_state = 148}, + [3166] = {.lex_state = 2, .external_lex_state = 148}, + [3167] = {.lex_state = 2, .external_lex_state = 148}, + [3168] = {.lex_state = 2, .external_lex_state = 148}, + [3169] = {.lex_state = 2, .external_lex_state = 148}, + [3170] = {.lex_state = 2, .external_lex_state = 148}, + [3171] = {.lex_state = 2, .external_lex_state = 148}, + [3172] = {.lex_state = 2, .external_lex_state = 148}, + [3173] = {.lex_state = 2, .external_lex_state = 148}, + [3174] = {.lex_state = 2, .external_lex_state = 148}, + [3175] = {.lex_state = 2, .external_lex_state = 148}, + [3176] = {.lex_state = 2, .external_lex_state = 148}, + [3177] = {.lex_state = 2, .external_lex_state = 148}, + [3178] = {.lex_state = 2, .external_lex_state = 148}, + [3179] = {.lex_state = 2, .external_lex_state = 148}, + [3180] = {.lex_state = 2, .external_lex_state = 148}, + [3181] = {.lex_state = 2, .external_lex_state = 148}, + [3182] = {.lex_state = 2, .external_lex_state = 148}, + [3183] = {.lex_state = 2, .external_lex_state = 148}, + [3184] = {.lex_state = 2, .external_lex_state = 148}, + [3185] = {.lex_state = 2, .external_lex_state = 148}, + [3186] = {.lex_state = 2, .external_lex_state = 148}, + [3187] = {.lex_state = 2, .external_lex_state = 148}, + [3188] = {.lex_state = 2, .external_lex_state = 148}, + [3189] = {.lex_state = 0, .external_lex_state = 46}, + [3190] = {.lex_state = 2, .external_lex_state = 148}, + [3191] = {.lex_state = 2, .external_lex_state = 148}, + [3192] = {.lex_state = 2, .external_lex_state = 148}, + [3193] = {.lex_state = 2, .external_lex_state = 148}, + [3194] = {.lex_state = 2, .external_lex_state = 148}, + [3195] = {.lex_state = 2, .external_lex_state = 148}, + [3196] = {.lex_state = 2, .external_lex_state = 148}, + [3197] = {.lex_state = 2, .external_lex_state = 148}, + [3198] = {.lex_state = 2, .external_lex_state = 148}, + [3199] = {.lex_state = 0, .external_lex_state = 46}, + [3200] = {.lex_state = 2, .external_lex_state = 148}, + [3201] = {.lex_state = 2, .external_lex_state = 148}, + [3202] = {.lex_state = 2, .external_lex_state = 148}, + [3203] = {.lex_state = 2, .external_lex_state = 148}, + [3204] = {.lex_state = 2, .external_lex_state = 148}, + [3205] = {.lex_state = 2, .external_lex_state = 148}, + [3206] = {.lex_state = 2, .external_lex_state = 148}, + [3207] = {.lex_state = 0, .external_lex_state = 46}, + [3208] = {.lex_state = 0, .external_lex_state = 46}, + [3209] = {.lex_state = 2, .external_lex_state = 148}, + [3210] = {.lex_state = 0, .external_lex_state = 46}, + [3211] = {.lex_state = 2, .external_lex_state = 148}, + [3212] = {.lex_state = 2, .external_lex_state = 148}, + [3213] = {.lex_state = 2, .external_lex_state = 148}, + [3214] = {.lex_state = 2, .external_lex_state = 148}, + [3215] = {.lex_state = 2, .external_lex_state = 148}, + [3216] = {.lex_state = 2, .external_lex_state = 148}, + [3217] = {.lex_state = 2, .external_lex_state = 148}, + [3218] = {.lex_state = 2, .external_lex_state = 148}, + [3219] = {.lex_state = 2, .external_lex_state = 148}, + [3220] = {.lex_state = 2, .external_lex_state = 148}, + [3221] = {.lex_state = 2, .external_lex_state = 148}, + [3222] = {.lex_state = 2, .external_lex_state = 148}, + [3223] = {.lex_state = 0, .external_lex_state = 46}, + [3224] = {.lex_state = 2, .external_lex_state = 148}, + [3225] = {.lex_state = 2, .external_lex_state = 148}, + [3226] = {.lex_state = 2, .external_lex_state = 148}, + [3227] = {.lex_state = 2, .external_lex_state = 148}, + [3228] = {.lex_state = 2, .external_lex_state = 148}, + [3229] = {.lex_state = 2, .external_lex_state = 148}, + [3230] = {.lex_state = 2, .external_lex_state = 148}, + [3231] = {.lex_state = 2, .external_lex_state = 148}, + [3232] = {.lex_state = 0, .external_lex_state = 147}, + [3233] = {.lex_state = 2, .external_lex_state = 148}, + [3234] = {.lex_state = 2, .external_lex_state = 135}, + [3235] = {.lex_state = 0, .external_lex_state = 63}, + [3236] = {.lex_state = 0, .external_lex_state = 63}, + [3237] = {.lex_state = 0, .external_lex_state = 63}, + [3238] = {.lex_state = 0, .external_lex_state = 63}, + [3239] = {.lex_state = 0, .external_lex_state = 63}, [3240] = {.lex_state = 2, .external_lex_state = 135}, [3241] = {.lex_state = 2, .external_lex_state = 135}, - [3242] = {.lex_state = 2, .external_lex_state = 135}, - [3243] = {.lex_state = 2, .external_lex_state = 135}, - [3244] = {.lex_state = 0, .external_lex_state = 62}, + [3242] = {.lex_state = 0, .external_lex_state = 152}, + [3243] = {.lex_state = 0, .external_lex_state = 152}, + [3244] = {.lex_state = 0, .external_lex_state = 63}, [3245] = {.lex_state = 2, .external_lex_state = 135}, - [3246] = {.lex_state = 0, .external_lex_state = 65}, - [3247] = {.lex_state = 2, .external_lex_state = 138}, - [3248] = {.lex_state = 2, .external_lex_state = 137}, - [3249] = {.lex_state = 0, .external_lex_state = 155}, - [3250] = {.lex_state = 2, .external_lex_state = 137}, - [3251] = {.lex_state = 0, .external_lex_state = 156}, - [3252] = {.lex_state = 0, .external_lex_state = 155}, - [3253] = {.lex_state = 0, .external_lex_state = 155}, - [3254] = {.lex_state = 2, .external_lex_state = 137}, - [3255] = {.lex_state = 0, .external_lex_state = 155}, - [3256] = {.lex_state = 0, .external_lex_state = 157}, - [3257] = {.lex_state = 2, .external_lex_state = 137}, - [3258] = {.lex_state = 2, .external_lex_state = 137}, - [3259] = {.lex_state = 3, .external_lex_state = 153}, - [3260] = {.lex_state = 2, .external_lex_state = 137}, - [3261] = {.lex_state = 0, .external_lex_state = 157}, - [3262] = {.lex_state = 0, .external_lex_state = 157}, - [3263] = {.lex_state = 0, .external_lex_state = 155}, - [3264] = {.lex_state = 2, .external_lex_state = 152}, - [3265] = {.lex_state = 2, .external_lex_state = 138}, - [3266] = {.lex_state = 2, .external_lex_state = 138}, - [3267] = {.lex_state = 2, .external_lex_state = 138}, - [3268] = {.lex_state = 2, .external_lex_state = 138}, - [3269] = {.lex_state = 2, .external_lex_state = 138}, - [3270] = {.lex_state = 2, .external_lex_state = 138}, - [3271] = {.lex_state = 2, .external_lex_state = 138}, - [3272] = {.lex_state = 2, .external_lex_state = 138}, - [3273] = {.lex_state = 2, .external_lex_state = 137}, - [3274] = {.lex_state = 2, .external_lex_state = 137}, - [3275] = {.lex_state = 2, .external_lex_state = 138}, - [3276] = {.lex_state = 2, .external_lex_state = 137}, - [3277] = {.lex_state = 2, .external_lex_state = 138}, - [3278] = {.lex_state = 2, .external_lex_state = 137}, - [3279] = {.lex_state = 2, .external_lex_state = 138}, - [3280] = {.lex_state = 2, .external_lex_state = 152}, - [3281] = {.lex_state = 2, .external_lex_state = 138}, - [3282] = {.lex_state = 2, .external_lex_state = 138}, - [3283] = {.lex_state = 2, .external_lex_state = 138}, - [3284] = {.lex_state = 2, .external_lex_state = 138}, - [3285] = {.lex_state = 2, .external_lex_state = 138}, - [3286] = {.lex_state = 2, .external_lex_state = 138}, - [3287] = {.lex_state = 2, .external_lex_state = 138}, - [3288] = {.lex_state = 2, .external_lex_state = 137}, - [3289] = {.lex_state = 0, .external_lex_state = 158}, - [3290] = {.lex_state = 0, .external_lex_state = 158}, - [3291] = {.lex_state = 0, .external_lex_state = 155}, - [3292] = {.lex_state = 2, .external_lex_state = 138}, - [3293] = {.lex_state = 2, .external_lex_state = 152}, - [3294] = {.lex_state = 0, .external_lex_state = 156}, - [3295] = {.lex_state = 0, .external_lex_state = 156}, - [3296] = {.lex_state = 2, .external_lex_state = 138}, - [3297] = {.lex_state = 2, .external_lex_state = 138}, - [3298] = {.lex_state = 2, .external_lex_state = 137}, - [3299] = {.lex_state = 0, .external_lex_state = 158}, - [3300] = {.lex_state = 2, .external_lex_state = 138}, - [3301] = {.lex_state = 2, .external_lex_state = 138}, - [3302] = {.lex_state = 2, .external_lex_state = 137}, - [3303] = {.lex_state = 2, .external_lex_state = 137}, - [3304] = {.lex_state = 2, .external_lex_state = 137}, - [3305] = {.lex_state = 2, .external_lex_state = 137}, - [3306] = {.lex_state = 2, .external_lex_state = 138}, - [3307] = {.lex_state = 2, .external_lex_state = 137}, - [3308] = {.lex_state = 2, .external_lex_state = 152}, - [3309] = {.lex_state = 2, .external_lex_state = 137}, - [3310] = {.lex_state = 2, .external_lex_state = 137}, - [3311] = {.lex_state = 2, .external_lex_state = 137}, - [3312] = {.lex_state = 2, .external_lex_state = 137}, - [3313] = {.lex_state = 2, .external_lex_state = 139}, - [3314] = {.lex_state = 2, .external_lex_state = 138}, - [3315] = {.lex_state = 2, .external_lex_state = 137}, - [3316] = {.lex_state = 2, .external_lex_state = 159}, - [3317] = {.lex_state = 2, .external_lex_state = 137}, - [3318] = {.lex_state = 2, .external_lex_state = 137}, - [3319] = {.lex_state = 2, .external_lex_state = 138}, - [3320] = {.lex_state = 2, .external_lex_state = 137}, - [3321] = {.lex_state = 2, .external_lex_state = 137}, - [3322] = {.lex_state = 2, .external_lex_state = 137}, - [3323] = {.lex_state = 0, .external_lex_state = 160}, - [3324] = {.lex_state = 0, .external_lex_state = 161}, - [3325] = {.lex_state = 2, .external_lex_state = 139}, - [3326] = {.lex_state = 2, .external_lex_state = 153}, - [3327] = {.lex_state = 2, .external_lex_state = 139}, - [3328] = {.lex_state = 2, .external_lex_state = 153}, - [3329] = {.lex_state = 2, .external_lex_state = 139}, - [3330] = {.lex_state = 2, .external_lex_state = 139}, - [3331] = {.lex_state = 2, .external_lex_state = 139}, - [3332] = {.lex_state = 2, .external_lex_state = 139}, - [3333] = {.lex_state = 2, .external_lex_state = 139}, - [3334] = {.lex_state = 2, .external_lex_state = 153}, - [3335] = {.lex_state = 2, .external_lex_state = 139}, - [3336] = {.lex_state = 2, .external_lex_state = 139}, - [3337] = {.lex_state = 2, .external_lex_state = 139}, - [3338] = {.lex_state = 0, .external_lex_state = 162}, - [3339] = {.lex_state = 2, .external_lex_state = 139}, - [3340] = {.lex_state = 0, .external_lex_state = 161}, - [3341] = {.lex_state = 2, .external_lex_state = 153}, - [3342] = {.lex_state = 2, .external_lex_state = 153}, - [3343] = {.lex_state = 2, .external_lex_state = 153}, - [3344] = {.lex_state = 0, .external_lex_state = 161}, - [3345] = {.lex_state = 0, .external_lex_state = 161}, - [3346] = {.lex_state = 2, .external_lex_state = 153}, - [3347] = {.lex_state = 0, .external_lex_state = 161}, - [3348] = {.lex_state = 2, .external_lex_state = 153}, - [3349] = {.lex_state = 0, .external_lex_state = 161}, - [3350] = {.lex_state = 2, .external_lex_state = 153}, - [3351] = {.lex_state = 2, .external_lex_state = 153}, - [3352] = {.lex_state = 0, .external_lex_state = 161}, - [3353] = {.lex_state = 0, .external_lex_state = 161}, - [3354] = {.lex_state = 2, .external_lex_state = 153}, - [3355] = {.lex_state = 0, .external_lex_state = 161}, - [3356] = {.lex_state = 2, .external_lex_state = 153}, - [3357] = {.lex_state = 0, .external_lex_state = 161}, - [3358] = {.lex_state = 0, .external_lex_state = 161}, - [3359] = {.lex_state = 2, .external_lex_state = 153}, - [3360] = {.lex_state = 2, .external_lex_state = 153}, - [3361] = {.lex_state = 2, .external_lex_state = 153}, - [3362] = {.lex_state = 0, .external_lex_state = 161}, - [3363] = {.lex_state = 2, .external_lex_state = 153}, - [3364] = {.lex_state = 0, .external_lex_state = 160}, - [3365] = {.lex_state = 2, .external_lex_state = 139}, - [3366] = {.lex_state = 0, .external_lex_state = 161}, - [3367] = {.lex_state = 0, .external_lex_state = 161}, - [3368] = {.lex_state = 2, .external_lex_state = 153}, - [3369] = {.lex_state = 2, .external_lex_state = 153}, - [3370] = {.lex_state = 2, .external_lex_state = 153}, - [3371] = {.lex_state = 0, .external_lex_state = 161}, - [3372] = {.lex_state = 2, .external_lex_state = 163}, - [3373] = {.lex_state = 0, .external_lex_state = 161}, - [3374] = {.lex_state = 2, .external_lex_state = 153}, - [3375] = {.lex_state = 2, .external_lex_state = 153}, - [3376] = {.lex_state = 0, .external_lex_state = 161}, - [3377] = {.lex_state = 2, .external_lex_state = 153}, - [3378] = {.lex_state = 0, .external_lex_state = 161}, - [3379] = {.lex_state = 0, .external_lex_state = 161}, - [3380] = {.lex_state = 2, .external_lex_state = 153}, - [3381] = {.lex_state = 0, .external_lex_state = 161}, - [3382] = {.lex_state = 2, .external_lex_state = 153}, - [3383] = {.lex_state = 2, .external_lex_state = 153}, - [3384] = {.lex_state = 0, .external_lex_state = 161}, - [3385] = {.lex_state = 0, .external_lex_state = 161}, - [3386] = {.lex_state = 0, .external_lex_state = 161}, - [3387] = {.lex_state = 2, .external_lex_state = 139}, - [3388] = {.lex_state = 2, .external_lex_state = 153}, - [3389] = {.lex_state = 0, .external_lex_state = 161}, - [3390] = {.lex_state = 2, .external_lex_state = 153}, - [3391] = {.lex_state = 2, .external_lex_state = 153}, - [3392] = {.lex_state = 2, .external_lex_state = 139}, - [3393] = {.lex_state = 2, .external_lex_state = 139}, - [3394] = {.lex_state = 0, .external_lex_state = 161}, - [3395] = {.lex_state = 2, .external_lex_state = 153}, - [3396] = {.lex_state = 2, .external_lex_state = 139}, - [3397] = {.lex_state = 2, .external_lex_state = 139}, - [3398] = {.lex_state = 2, .external_lex_state = 163}, - [3399] = {.lex_state = 0, .external_lex_state = 161}, - [3400] = {.lex_state = 0, .external_lex_state = 164}, - [3401] = {.lex_state = 0, .external_lex_state = 161}, - [3402] = {.lex_state = 0, .external_lex_state = 161}, - [3403] = {.lex_state = 2, .external_lex_state = 153}, - [3404] = {.lex_state = 2, .external_lex_state = 148}, - [3405] = {.lex_state = 2, .external_lex_state = 153}, - [3406] = {.lex_state = 0, .external_lex_state = 161}, - [3407] = {.lex_state = 0, .external_lex_state = 161}, - [3408] = {.lex_state = 0, .external_lex_state = 160}, - [3409] = {.lex_state = 0, .external_lex_state = 165}, - [3410] = {.lex_state = 2, .external_lex_state = 153}, - [3411] = {.lex_state = 2, .external_lex_state = 139}, - [3412] = {.lex_state = 2, .external_lex_state = 153}, - [3413] = {.lex_state = 0, .external_lex_state = 161}, - [3414] = {.lex_state = 2, .external_lex_state = 153}, - [3415] = {.lex_state = 2, .external_lex_state = 153}, - [3416] = {.lex_state = 2, .external_lex_state = 153}, - [3417] = {.lex_state = 2, .external_lex_state = 148}, - [3418] = {.lex_state = 2, .external_lex_state = 153}, - [3419] = {.lex_state = 2, .external_lex_state = 139}, - [3420] = {.lex_state = 0, .external_lex_state = 161}, - [3421] = {.lex_state = 2, .external_lex_state = 153}, - [3422] = {.lex_state = 0, .external_lex_state = 161}, - [3423] = {.lex_state = 0, .external_lex_state = 161}, - [3424] = {.lex_state = 2, .external_lex_state = 153}, - [3425] = {.lex_state = 2, .external_lex_state = 139}, - [3426] = {.lex_state = 2, .external_lex_state = 153}, - [3427] = {.lex_state = 0, .external_lex_state = 164}, - [3428] = {.lex_state = 0, .external_lex_state = 161}, - [3429] = {.lex_state = 0, .external_lex_state = 164}, - [3430] = {.lex_state = 2, .external_lex_state = 153}, - [3431] = {.lex_state = 2, .external_lex_state = 153}, - [3432] = {.lex_state = 2, .external_lex_state = 139}, - [3433] = {.lex_state = 0, .external_lex_state = 161}, + [3246] = {.lex_state = 0, .external_lex_state = 67}, + [3247] = {.lex_state = 0, .external_lex_state = 63}, + [3248] = {.lex_state = 0, .external_lex_state = 63}, + [3249] = {.lex_state = 0, .external_lex_state = 63}, + [3250] = {.lex_state = 0, .external_lex_state = 63}, + [3251] = {.lex_state = 0, .external_lex_state = 63}, + [3252] = {.lex_state = 0, .external_lex_state = 67}, + [3253] = {.lex_state = 0, .external_lex_state = 67}, + [3254] = {.lex_state = 2, .external_lex_state = 135}, + [3255] = {.lex_state = 2, .external_lex_state = 135}, + [3256] = {.lex_state = 2, .external_lex_state = 135}, + [3257] = {.lex_state = 2, .external_lex_state = 135}, + [3258] = {.lex_state = 0, .external_lex_state = 67}, + [3259] = {.lex_state = 0, .external_lex_state = 67}, + [3260] = {.lex_state = 0, .external_lex_state = 63}, + [3261] = {.lex_state = 0, .external_lex_state = 67}, + [3262] = {.lex_state = 0, .external_lex_state = 63}, + [3263] = {.lex_state = 0, .external_lex_state = 67}, + [3264] = {.lex_state = 0, .external_lex_state = 63}, + [3265] = {.lex_state = 2, .external_lex_state = 153}, + [3266] = {.lex_state = 0, .external_lex_state = 67}, + [3267] = {.lex_state = 0, .external_lex_state = 63}, + [3268] = {.lex_state = 2, .external_lex_state = 135}, + [3269] = {.lex_state = 0, .external_lex_state = 63}, + [3270] = {.lex_state = 0, .external_lex_state = 63}, + [3271] = {.lex_state = 0, .external_lex_state = 63}, + [3272] = {.lex_state = 2, .external_lex_state = 135}, + [3273] = {.lex_state = 0, .external_lex_state = 63}, + [3274] = {.lex_state = 2, .external_lex_state = 135}, + [3275] = {.lex_state = 0, .external_lex_state = 67}, + [3276] = {.lex_state = 2, .external_lex_state = 135}, + [3277] = {.lex_state = 0, .external_lex_state = 63}, + [3278] = {.lex_state = 2, .external_lex_state = 135}, + [3279] = {.lex_state = 0, .external_lex_state = 63}, + [3280] = {.lex_state = 0, .external_lex_state = 63}, + [3281] = {.lex_state = 0, .external_lex_state = 63}, + [3282] = {.lex_state = 0, .external_lex_state = 63}, + [3283] = {.lex_state = 2, .external_lex_state = 135}, + [3284] = {.lex_state = 0, .external_lex_state = 63}, + [3285] = {.lex_state = 0, .external_lex_state = 67}, + [3286] = {.lex_state = 0, .external_lex_state = 152}, + [3287] = {.lex_state = 2, .external_lex_state = 135}, + [3288] = {.lex_state = 2, .external_lex_state = 135}, + [3289] = {.lex_state = 0, .external_lex_state = 63}, + [3290] = {.lex_state = 0, .external_lex_state = 63}, + [3291] = {.lex_state = 0, .external_lex_state = 67}, + [3292] = {.lex_state = 0, .external_lex_state = 67}, + [3293] = {.lex_state = 0, .external_lex_state = 63}, + [3294] = {.lex_state = 0, .external_lex_state = 63}, + [3295] = {.lex_state = 2, .external_lex_state = 135}, + [3296] = {.lex_state = 2, .external_lex_state = 135}, + [3297] = {.lex_state = 0, .external_lex_state = 63}, + [3298] = {.lex_state = 2, .external_lex_state = 135}, + [3299] = {.lex_state = 2, .external_lex_state = 154}, + [3300] = {.lex_state = 2, .external_lex_state = 135}, + [3301] = {.lex_state = 2, .external_lex_state = 135}, + [3302] = {.lex_state = 2, .external_lex_state = 135}, + [3303] = {.lex_state = 0, .external_lex_state = 67}, + [3304] = {.lex_state = 0, .external_lex_state = 67}, + [3305] = {.lex_state = 0, .external_lex_state = 67}, + [3306] = {.lex_state = 0, .external_lex_state = 67}, + [3307] = {.lex_state = 0, .external_lex_state = 67}, + [3308] = {.lex_state = 2, .external_lex_state = 132}, + [3309] = {.lex_state = 0, .external_lex_state = 67}, + [3310] = {.lex_state = 0, .external_lex_state = 67}, + [3311] = {.lex_state = 0, .external_lex_state = 67}, + [3312] = {.lex_state = 0, .external_lex_state = 63}, + [3313] = {.lex_state = 0, .external_lex_state = 67}, + [3314] = {.lex_state = 2, .external_lex_state = 153}, + [3315] = {.lex_state = 0, .external_lex_state = 67}, + [3316] = {.lex_state = 0, .external_lex_state = 67}, + [3317] = {.lex_state = 0, .external_lex_state = 67}, + [3318] = {.lex_state = 0, .external_lex_state = 63}, + [3319] = {.lex_state = 0, .external_lex_state = 67}, + [3320] = {.lex_state = 2, .external_lex_state = 135}, + [3321] = {.lex_state = 0, .external_lex_state = 63}, + [3322] = {.lex_state = 0, .external_lex_state = 67}, + [3323] = {.lex_state = 2, .external_lex_state = 137}, + [3324] = {.lex_state = 0, .external_lex_state = 63}, + [3325] = {.lex_state = 2, .external_lex_state = 135}, + [3326] = {.lex_state = 0, .external_lex_state = 67}, + [3327] = {.lex_state = 0, .external_lex_state = 67}, + [3328] = {.lex_state = 0, .external_lex_state = 67}, + [3329] = {.lex_state = 0, .external_lex_state = 67}, + [3330] = {.lex_state = 0, .external_lex_state = 67}, + [3331] = {.lex_state = 0, .external_lex_state = 63}, + [3332] = {.lex_state = 0, .external_lex_state = 63}, + [3333] = {.lex_state = 0, .external_lex_state = 63}, + [3334] = {.lex_state = 2, .external_lex_state = 135}, + [3335] = {.lex_state = 2, .external_lex_state = 135}, + [3336] = {.lex_state = 2, .external_lex_state = 135}, + [3337] = {.lex_state = 0, .external_lex_state = 67}, + [3338] = {.lex_state = 2, .external_lex_state = 136}, + [3339] = {.lex_state = 0, .external_lex_state = 67}, + [3340] = {.lex_state = 2, .external_lex_state = 135}, + [3341] = {.lex_state = 2, .external_lex_state = 135}, + [3342] = {.lex_state = 0, .external_lex_state = 63}, + [3343] = {.lex_state = 0, .external_lex_state = 67}, + [3344] = {.lex_state = 0, .external_lex_state = 67}, + [3345] = {.lex_state = 0, .external_lex_state = 67}, + [3346] = {.lex_state = 0, .external_lex_state = 63}, + [3347] = {.lex_state = 0, .external_lex_state = 151}, + [3348] = {.lex_state = 0, .external_lex_state = 67}, + [3349] = {.lex_state = 0, .external_lex_state = 67}, + [3350] = {.lex_state = 0, .external_lex_state = 67}, + [3351] = {.lex_state = 0, .external_lex_state = 155}, + [3352] = {.lex_state = 0, .external_lex_state = 155}, + [3353] = {.lex_state = 2, .external_lex_state = 137}, + [3354] = {.lex_state = 2, .external_lex_state = 137}, + [3355] = {.lex_state = 2, .external_lex_state = 137}, + [3356] = {.lex_state = 0, .external_lex_state = 156}, + [3357] = {.lex_state = 2, .external_lex_state = 136}, + [3358] = {.lex_state = 2, .external_lex_state = 136}, + [3359] = {.lex_state = 0, .external_lex_state = 155}, + [3360] = {.lex_state = 0, .external_lex_state = 157}, + [3361] = {.lex_state = 2, .external_lex_state = 136}, + [3362] = {.lex_state = 2, .external_lex_state = 136}, + [3363] = {.lex_state = 0, .external_lex_state = 157}, + [3364] = {.lex_state = 2, .external_lex_state = 136}, + [3365] = {.lex_state = 2, .external_lex_state = 137}, + [3366] = {.lex_state = 2, .external_lex_state = 154}, + [3367] = {.lex_state = 2, .external_lex_state = 137}, + [3368] = {.lex_state = 2, .external_lex_state = 136}, + [3369] = {.lex_state = 2, .external_lex_state = 136}, + [3370] = {.lex_state = 2, .external_lex_state = 136}, + [3371] = {.lex_state = 2, .external_lex_state = 136}, + [3372] = {.lex_state = 2, .external_lex_state = 136}, + [3373] = {.lex_state = 2, .external_lex_state = 137}, + [3374] = {.lex_state = 2, .external_lex_state = 136}, + [3375] = {.lex_state = 2, .external_lex_state = 136}, + [3376] = {.lex_state = 2, .external_lex_state = 136}, + [3377] = {.lex_state = 2, .external_lex_state = 136}, + [3378] = {.lex_state = 2, .external_lex_state = 139}, + [3379] = {.lex_state = 0, .external_lex_state = 156}, + [3380] = {.lex_state = 2, .external_lex_state = 137}, + [3381] = {.lex_state = 2, .external_lex_state = 137}, + [3382] = {.lex_state = 0, .external_lex_state = 158}, + [3383] = {.lex_state = 2, .external_lex_state = 137}, + [3384] = {.lex_state = 2, .external_lex_state = 137}, + [3385] = {.lex_state = 2, .external_lex_state = 137}, + [3386] = {.lex_state = 2, .external_lex_state = 137}, + [3387] = {.lex_state = 2, .external_lex_state = 137}, + [3388] = {.lex_state = 2, .external_lex_state = 136}, + [3389] = {.lex_state = 2, .external_lex_state = 136}, + [3390] = {.lex_state = 3, .external_lex_state = 153}, + [3391] = {.lex_state = 2, .external_lex_state = 137}, + [3392] = {.lex_state = 2, .external_lex_state = 137}, + [3393] = {.lex_state = 2, .external_lex_state = 137}, + [3394] = {.lex_state = 0, .external_lex_state = 156}, + [3395] = {.lex_state = 2, .external_lex_state = 136}, + [3396] = {.lex_state = 2, .external_lex_state = 136}, + [3397] = {.lex_state = 2, .external_lex_state = 136}, + [3398] = {.lex_state = 2, .external_lex_state = 137}, + [3399] = {.lex_state = 2, .external_lex_state = 137}, + [3400] = {.lex_state = 2, .external_lex_state = 137}, + [3401] = {.lex_state = 2, .external_lex_state = 154}, + [3402] = {.lex_state = 2, .external_lex_state = 136}, + [3403] = {.lex_state = 2, .external_lex_state = 137}, + [3404] = {.lex_state = 2, .external_lex_state = 154}, + [3405] = {.lex_state = 2, .external_lex_state = 136}, + [3406] = {.lex_state = 2, .external_lex_state = 136}, + [3407] = {.lex_state = 2, .external_lex_state = 136}, + [3408] = {.lex_state = 2, .external_lex_state = 136}, + [3409] = {.lex_state = 2, .external_lex_state = 136}, + [3410] = {.lex_state = 2, .external_lex_state = 136}, + [3411] = {.lex_state = 2, .external_lex_state = 137}, + [3412] = {.lex_state = 2, .external_lex_state = 154}, + [3413] = {.lex_state = 0, .external_lex_state = 156}, + [3414] = {.lex_state = 2, .external_lex_state = 136}, + [3415] = {.lex_state = 2, .external_lex_state = 137}, + [3416] = {.lex_state = 2, .external_lex_state = 136}, + [3417] = {.lex_state = 2, .external_lex_state = 137}, + [3418] = {.lex_state = 0, .external_lex_state = 156}, + [3419] = {.lex_state = 0, .external_lex_state = 158}, + [3420] = {.lex_state = 0, .external_lex_state = 158}, + [3421] = {.lex_state = 2, .external_lex_state = 137}, + [3422] = {.lex_state = 0, .external_lex_state = 156}, + [3423] = {.lex_state = 2, .external_lex_state = 137}, + [3424] = {.lex_state = 0, .external_lex_state = 157}, + [3425] = {.lex_state = 2, .external_lex_state = 137}, + [3426] = {.lex_state = 2, .external_lex_state = 137}, + [3427] = {.lex_state = 2, .external_lex_state = 136}, + [3428] = {.lex_state = 2, .external_lex_state = 137}, + [3429] = {.lex_state = 2, .external_lex_state = 159}, + [3430] = {.lex_state = 2, .external_lex_state = 137}, + [3431] = {.lex_state = 2, .external_lex_state = 148}, + [3432] = {.lex_state = 0, .external_lex_state = 160}, + [3433] = {.lex_state = 0, .external_lex_state = 160}, [3434] = {.lex_state = 2, .external_lex_state = 153}, - [3435] = {.lex_state = 2, .external_lex_state = 153}, - [3436] = {.lex_state = 2, .external_lex_state = 139}, - [3437] = {.lex_state = 0, .external_lex_state = 161}, - [3438] = {.lex_state = 0, .external_lex_state = 161}, - [3439] = {.lex_state = 2, .external_lex_state = 153}, - [3440] = {.lex_state = 2, .external_lex_state = 139}, - [3441] = {.lex_state = 0, .external_lex_state = 161}, - [3442] = {.lex_state = 2, .external_lex_state = 139}, - [3443] = {.lex_state = 2, .external_lex_state = 153}, - [3444] = {.lex_state = 0, .external_lex_state = 161}, - [3445] = {.lex_state = 2, .external_lex_state = 153}, - [3446] = {.lex_state = 0, .external_lex_state = 161}, - [3447] = {.lex_state = 2, .external_lex_state = 139}, - [3448] = {.lex_state = 0, .external_lex_state = 161}, - [3449] = {.lex_state = 0, .external_lex_state = 162}, - [3450] = {.lex_state = 2, .external_lex_state = 153}, - [3451] = {.lex_state = 0, .external_lex_state = 161}, - [3452] = {.lex_state = 2, .external_lex_state = 139}, - [3453] = {.lex_state = 0, .external_lex_state = 161}, - [3454] = {.lex_state = 0, .external_lex_state = 165}, - [3455] = {.lex_state = 0, .external_lex_state = 165}, - [3456] = {.lex_state = 0, .external_lex_state = 161}, - [3457] = {.lex_state = 0, .external_lex_state = 161}, + [3435] = {.lex_state = 2, .external_lex_state = 139}, + [3436] = {.lex_state = 2, .external_lex_state = 153}, + [3437] = {.lex_state = 2, .external_lex_state = 153}, + [3438] = {.lex_state = 0, .external_lex_state = 160}, + [3439] = {.lex_state = 2, .external_lex_state = 139}, + [3440] = {.lex_state = 0, .external_lex_state = 160}, + [3441] = {.lex_state = 2, .external_lex_state = 139}, + [3442] = {.lex_state = 0, .external_lex_state = 160}, + [3443] = {.lex_state = 2, .external_lex_state = 139}, + [3444] = {.lex_state = 2, .external_lex_state = 139}, + [3445] = {.lex_state = 0, .external_lex_state = 160}, + [3446] = {.lex_state = 0, .external_lex_state = 160}, + [3447] = {.lex_state = 0, .external_lex_state = 160}, + [3448] = {.lex_state = 2, .external_lex_state = 139}, + [3449] = {.lex_state = 2, .external_lex_state = 153}, + [3450] = {.lex_state = 2, .external_lex_state = 139}, + [3451] = {.lex_state = 2, .external_lex_state = 139}, + [3452] = {.lex_state = 2, .external_lex_state = 153}, + [3453] = {.lex_state = 2, .external_lex_state = 153}, + [3454] = {.lex_state = 2, .external_lex_state = 153}, + [3455] = {.lex_state = 2, .external_lex_state = 139}, + [3456] = {.lex_state = 2, .external_lex_state = 139}, + [3457] = {.lex_state = 0, .external_lex_state = 160}, [3458] = {.lex_state = 0, .external_lex_state = 161}, - [3459] = {.lex_state = 0, .external_lex_state = 162}, + [3459] = {.lex_state = 2, .external_lex_state = 153}, [3460] = {.lex_state = 2, .external_lex_state = 153}, - [3461] = {.lex_state = 0, .external_lex_state = 161}, - [3462] = {.lex_state = 2, .external_lex_state = 166}, - [3463] = {.lex_state = 0, .external_lex_state = 161}, - [3464] = {.lex_state = 2, .external_lex_state = 139}, + [3461] = {.lex_state = 2, .external_lex_state = 162}, + [3462] = {.lex_state = 2, .external_lex_state = 153}, + [3463] = {.lex_state = 2, .external_lex_state = 153}, + [3464] = {.lex_state = 2, .external_lex_state = 153}, [3465] = {.lex_state = 2, .external_lex_state = 153}, - [3466] = {.lex_state = 0, .external_lex_state = 161}, - [3467] = {.lex_state = 2, .external_lex_state = 153}, + [3466] = {.lex_state = 2, .external_lex_state = 153}, + [3467] = {.lex_state = 2, .external_lex_state = 139}, [3468] = {.lex_state = 2, .external_lex_state = 153}, - [3469] = {.lex_state = 2, .external_lex_state = 153}, - [3470] = {.lex_state = 2, .external_lex_state = 153}, - [3471] = {.lex_state = 2, .external_lex_state = 153}, + [3469] = {.lex_state = 2, .external_lex_state = 139}, + [3470] = {.lex_state = 0, .external_lex_state = 160}, + [3471] = {.lex_state = 2, .external_lex_state = 139}, [3472] = {.lex_state = 2, .external_lex_state = 153}, - [3473] = {.lex_state = 0, .external_lex_state = 161}, - [3474] = {.lex_state = 0, .external_lex_state = 154}, - [3475] = {.lex_state = 2, .external_lex_state = 167}, - [3476] = {.lex_state = 2, .external_lex_state = 167}, - [3477] = {.lex_state = 0, .external_lex_state = 168}, - [3478] = {.lex_state = 0, .external_lex_state = 169}, - [3479] = {.lex_state = 0, .external_lex_state = 170}, - [3480] = {.lex_state = 2, .external_lex_state = 167}, - [3481] = {.lex_state = 0, .external_lex_state = 169}, - [3482] = {.lex_state = 2, .external_lex_state = 167}, - [3483] = {.lex_state = 0, .external_lex_state = 161}, - [3484] = {.lex_state = 2, .external_lex_state = 167}, - [3485] = {.lex_state = 2, .external_lex_state = 167}, - [3486] = {.lex_state = 2, .external_lex_state = 167}, - [3487] = {.lex_state = 0, .external_lex_state = 170}, - [3488] = {.lex_state = 2, .external_lex_state = 167}, - [3489] = {.lex_state = 2, .external_lex_state = 167}, - [3490] = {.lex_state = 2, .external_lex_state = 167}, - [3491] = {.lex_state = 2, .external_lex_state = 167}, - [3492] = {.lex_state = 2, .external_lex_state = 167}, - [3493] = {.lex_state = 2, .external_lex_state = 167}, - [3494] = {.lex_state = 2, .external_lex_state = 167}, - [3495] = {.lex_state = 2, .external_lex_state = 167}, - [3496] = {.lex_state = 0, .external_lex_state = 161}, - [3497] = {.lex_state = 2, .external_lex_state = 167}, - [3498] = {.lex_state = 2, .external_lex_state = 167}, - [3499] = {.lex_state = 2, .external_lex_state = 167}, - [3500] = {.lex_state = 2, .external_lex_state = 167}, - [3501] = {.lex_state = 2, .external_lex_state = 167}, + [3473] = {.lex_state = 2, .external_lex_state = 153}, + [3474] = {.lex_state = 2, .external_lex_state = 153}, + [3475] = {.lex_state = 0, .external_lex_state = 160}, + [3476] = {.lex_state = 2, .external_lex_state = 139}, + [3477] = {.lex_state = 2, .external_lex_state = 153}, + [3478] = {.lex_state = 2, .external_lex_state = 153}, + [3479] = {.lex_state = 2, .external_lex_state = 153}, + [3480] = {.lex_state = 2, .external_lex_state = 153}, + [3481] = {.lex_state = 2, .external_lex_state = 139}, + [3482] = {.lex_state = 2, .external_lex_state = 139}, + [3483] = {.lex_state = 2, .external_lex_state = 139}, + [3484] = {.lex_state = 0, .external_lex_state = 160}, + [3485] = {.lex_state = 2, .external_lex_state = 153}, + [3486] = {.lex_state = 2, .external_lex_state = 153}, + [3487] = {.lex_state = 2, .external_lex_state = 153}, + [3488] = {.lex_state = 2, .external_lex_state = 153}, + [3489] = {.lex_state = 0, .external_lex_state = 160}, + [3490] = {.lex_state = 2, .external_lex_state = 153}, + [3491] = {.lex_state = 2, .external_lex_state = 153}, + [3492] = {.lex_state = 0, .external_lex_state = 160}, + [3493] = {.lex_state = 0, .external_lex_state = 160}, + [3494] = {.lex_state = 2, .external_lex_state = 153}, + [3495] = {.lex_state = 0, .external_lex_state = 160}, + [3496] = {.lex_state = 2, .external_lex_state = 139}, + [3497] = {.lex_state = 0, .external_lex_state = 161}, + [3498] = {.lex_state = 2, .external_lex_state = 153}, + [3499] = {.lex_state = 2, .external_lex_state = 139}, + [3500] = {.lex_state = 0, .external_lex_state = 160}, + [3501] = {.lex_state = 2, .external_lex_state = 153}, [3502] = {.lex_state = 2, .external_lex_state = 153}, - [3503] = {.lex_state = 0, .external_lex_state = 169}, - [3504] = {.lex_state = 2, .external_lex_state = 167}, - [3505] = {.lex_state = 0, .external_lex_state = 161}, - [3506] = {.lex_state = 2, .external_lex_state = 167}, - [3507] = {.lex_state = 2, .external_lex_state = 142}, - [3508] = {.lex_state = 2, .external_lex_state = 167}, - [3509] = {.lex_state = 2, .external_lex_state = 167}, - [3510] = {.lex_state = 2, .external_lex_state = 167}, + [3503] = {.lex_state = 2, .external_lex_state = 153}, + [3504] = {.lex_state = 2, .external_lex_state = 139}, + [3505] = {.lex_state = 0, .external_lex_state = 160}, + [3506] = {.lex_state = 0, .external_lex_state = 160}, + [3507] = {.lex_state = 0, .external_lex_state = 160}, + [3508] = {.lex_state = 2, .external_lex_state = 139}, + [3509] = {.lex_state = 2, .external_lex_state = 153}, + [3510] = {.lex_state = 2, .external_lex_state = 153}, [3511] = {.lex_state = 0, .external_lex_state = 161}, - [3512] = {.lex_state = 0, .external_lex_state = 154}, - [3513] = {.lex_state = 2, .external_lex_state = 167}, - [3514] = {.lex_state = 0, .external_lex_state = 171}, - [3515] = {.lex_state = 0, .external_lex_state = 170}, - [3516] = {.lex_state = 0, .external_lex_state = 161}, - [3517] = {.lex_state = 0, .external_lex_state = 161}, - [3518] = {.lex_state = 2, .external_lex_state = 167}, - [3519] = {.lex_state = 2, .external_lex_state = 167}, - [3520] = {.lex_state = 2, .external_lex_state = 167}, - [3521] = {.lex_state = 2, .external_lex_state = 172}, - [3522] = {.lex_state = 0, .external_lex_state = 73}, - [3523] = {.lex_state = 0, .external_lex_state = 171}, - [3524] = {.lex_state = 2, .external_lex_state = 167}, - [3525] = {.lex_state = 2, .external_lex_state = 167}, - [3526] = {.lex_state = 2, .external_lex_state = 167}, - [3527] = {.lex_state = 2, .external_lex_state = 167}, - [3528] = {.lex_state = 2, .external_lex_state = 167}, - [3529] = {.lex_state = 2, .external_lex_state = 167}, - [3530] = {.lex_state = 2, .external_lex_state = 167}, - [3531] = {.lex_state = 2, .external_lex_state = 167}, - [3532] = {.lex_state = 0, .external_lex_state = 171}, - [3533] = {.lex_state = 2, .external_lex_state = 167}, - [3534] = {.lex_state = 2, .external_lex_state = 167}, - [3535] = {.lex_state = 0, .external_lex_state = 173}, - [3536] = {.lex_state = 2, .external_lex_state = 167}, - [3537] = {.lex_state = 2, .external_lex_state = 167}, - [3538] = {.lex_state = 0, .external_lex_state = 173}, - [3539] = {.lex_state = 0, .external_lex_state = 173}, - [3540] = {.lex_state = 2, .external_lex_state = 167}, - [3541] = {.lex_state = 2, .external_lex_state = 167}, - [3542] = {.lex_state = 2, .external_lex_state = 167}, - [3543] = {.lex_state = 2, .external_lex_state = 167}, - [3544] = {.lex_state = 0, .external_lex_state = 174}, - [3545] = {.lex_state = 2, .external_lex_state = 167}, - [3546] = {.lex_state = 2, .external_lex_state = 167}, - [3547] = {.lex_state = 0, .external_lex_state = 174}, - [3548] = {.lex_state = 2, .external_lex_state = 167}, - [3549] = {.lex_state = 2, .external_lex_state = 167}, - [3550] = {.lex_state = 2, .external_lex_state = 167}, - [3551] = {.lex_state = 2, .external_lex_state = 167}, - [3552] = {.lex_state = 2, .external_lex_state = 167}, - [3553] = {.lex_state = 0, .external_lex_state = 174}, - [3554] = {.lex_state = 2, .external_lex_state = 167}, - [3555] = {.lex_state = 0, .external_lex_state = 168}, - [3556] = {.lex_state = 0, .external_lex_state = 168}, - [3557] = {.lex_state = 0, .external_lex_state = 175}, - [3558] = {.lex_state = 0, .external_lex_state = 175}, - [3559] = {.lex_state = 0, .external_lex_state = 122}, - [3560] = {.lex_state = 0, .external_lex_state = 122}, - [3561] = {.lex_state = 0, .external_lex_state = 175}, - [3562] = {.lex_state = 0, .external_lex_state = 175}, - [3563] = {.lex_state = 2, .external_lex_state = 153}, - [3564] = {.lex_state = 0, .external_lex_state = 175}, - [3565] = {.lex_state = 0, .external_lex_state = 175}, - [3566] = {.lex_state = 0, .external_lex_state = 175}, - [3567] = {.lex_state = 0, .external_lex_state = 175}, - [3568] = {.lex_state = 0, .external_lex_state = 175}, - [3569] = {.lex_state = 0, .external_lex_state = 175}, - [3570] = {.lex_state = 0, .external_lex_state = 175}, - [3571] = {.lex_state = 0, .external_lex_state = 175}, - [3572] = {.lex_state = 0, .external_lex_state = 175}, - [3573] = {.lex_state = 0, .external_lex_state = 175}, - [3574] = {.lex_state = 0, .external_lex_state = 175}, - [3575] = {.lex_state = 0, .external_lex_state = 175}, - [3576] = {.lex_state = 0, .external_lex_state = 175}, - [3577] = {.lex_state = 0, .external_lex_state = 175}, - [3578] = {.lex_state = 0, .external_lex_state = 175}, - [3579] = {.lex_state = 0, .external_lex_state = 175}, - [3580] = {.lex_state = 0, .external_lex_state = 175}, - [3581] = {.lex_state = 0, .external_lex_state = 175}, - [3582] = {.lex_state = 0, .external_lex_state = 175}, - [3583] = {.lex_state = 0, .external_lex_state = 175}, - [3584] = {.lex_state = 0, .external_lex_state = 175}, - [3585] = {.lex_state = 0, .external_lex_state = 175}, - [3586] = {.lex_state = 0, .external_lex_state = 175}, - [3587] = {.lex_state = 0, .external_lex_state = 175}, - [3588] = {.lex_state = 0, .external_lex_state = 175}, - [3589] = {.lex_state = 0, .external_lex_state = 175}, - [3590] = {.lex_state = 0, .external_lex_state = 175}, - [3591] = {.lex_state = 2, .external_lex_state = 142}, - [3592] = {.lex_state = 0, .external_lex_state = 175}, - [3593] = {.lex_state = 0, .external_lex_state = 175}, - [3594] = {.lex_state = 0, .external_lex_state = 175}, - [3595] = {.lex_state = 0, .external_lex_state = 175}, - [3596] = {.lex_state = 2, .external_lex_state = 78}, - [3597] = {.lex_state = 0, .external_lex_state = 175}, - [3598] = {.lex_state = 0, .external_lex_state = 176}, - [3599] = {.lex_state = 0, .external_lex_state = 175}, - [3600] = {.lex_state = 0, .external_lex_state = 175}, - [3601] = {.lex_state = 0, .external_lex_state = 122}, - [3602] = {.lex_state = 0, .external_lex_state = 175}, - [3603] = {.lex_state = 0, .external_lex_state = 175}, - [3604] = {.lex_state = 2, .external_lex_state = 78}, - [3605] = {.lex_state = 0, .external_lex_state = 122}, - [3606] = {.lex_state = 0, .external_lex_state = 175}, - [3607] = {.lex_state = 0, .external_lex_state = 175}, - [3608] = {.lex_state = 0, .external_lex_state = 175}, - [3609] = {.lex_state = 0, .external_lex_state = 175}, - [3610] = {.lex_state = 0, .external_lex_state = 175}, - [3611] = {.lex_state = 0, .external_lex_state = 175}, - [3612] = {.lex_state = 0, .external_lex_state = 175}, - [3613] = {.lex_state = 0, .external_lex_state = 175}, - [3614] = {.lex_state = 2, .external_lex_state = 78}, - [3615] = {.lex_state = 0, .external_lex_state = 175}, - [3616] = {.lex_state = 0, .external_lex_state = 175}, - [3617] = {.lex_state = 0, .external_lex_state = 175}, - [3618] = {.lex_state = 0, .external_lex_state = 175}, - [3619] = {.lex_state = 0, .external_lex_state = 175}, - [3620] = {.lex_state = 0, .external_lex_state = 175}, - [3621] = {.lex_state = 0, .external_lex_state = 175}, - [3622] = {.lex_state = 0, .external_lex_state = 175}, - [3623] = {.lex_state = 0, .external_lex_state = 175}, - [3624] = {.lex_state = 2, .external_lex_state = 78}, - [3625] = {.lex_state = 0, .external_lex_state = 175}, - [3626] = {.lex_state = 0, .external_lex_state = 175}, - [3627] = {.lex_state = 0, .external_lex_state = 175}, - [3628] = {.lex_state = 0, .external_lex_state = 175}, - [3629] = {.lex_state = 0, .external_lex_state = 175}, - [3630] = {.lex_state = 0, .external_lex_state = 175}, - [3631] = {.lex_state = 0, .external_lex_state = 175}, - [3632] = {.lex_state = 0, .external_lex_state = 175}, - [3633] = {.lex_state = 2, .external_lex_state = 78}, - [3634] = {.lex_state = 2, .external_lex_state = 78}, - [3635] = {.lex_state = 0, .external_lex_state = 175}, - [3636] = {.lex_state = 2, .external_lex_state = 78}, - [3637] = {.lex_state = 0, .external_lex_state = 175}, - [3638] = {.lex_state = 0, .external_lex_state = 175}, - [3639] = {.lex_state = 0, .external_lex_state = 175}, - [3640] = {.lex_state = 0, .external_lex_state = 175}, - [3641] = {.lex_state = 0, .external_lex_state = 175}, - [3642] = {.lex_state = 0, .external_lex_state = 175}, - [3643] = {.lex_state = 0, .external_lex_state = 175}, - [3644] = {.lex_state = 0, .external_lex_state = 175}, - [3645] = {.lex_state = 0, .external_lex_state = 175}, - [3646] = {.lex_state = 0, .external_lex_state = 175}, - [3647] = {.lex_state = 0, .external_lex_state = 175}, - [3648] = {.lex_state = 0, .external_lex_state = 175}, - [3649] = {.lex_state = 2, .external_lex_state = 78}, - [3650] = {.lex_state = 2, .external_lex_state = 78}, - [3651] = {.lex_state = 0, .external_lex_state = 175}, - [3652] = {.lex_state = 2, .external_lex_state = 78}, - [3653] = {.lex_state = 2, .external_lex_state = 78}, - [3654] = {.lex_state = 0, .external_lex_state = 175}, - [3655] = {.lex_state = 0, .external_lex_state = 175}, - [3656] = {.lex_state = 0, .external_lex_state = 175}, - [3657] = {.lex_state = 0, .external_lex_state = 175}, - [3658] = {.lex_state = 0, .external_lex_state = 122}, - [3659] = {.lex_state = 0, .external_lex_state = 175}, - [3660] = {.lex_state = 2, .external_lex_state = 153}, - [3661] = {.lex_state = 0, .external_lex_state = 175}, - [3662] = {.lex_state = 2, .external_lex_state = 142}, - [3663] = {.lex_state = 2, .external_lex_state = 153}, - [3664] = {.lex_state = 0, .external_lex_state = 175}, - [3665] = {.lex_state = 0, .external_lex_state = 175}, - [3666] = {.lex_state = 2, .external_lex_state = 142}, - [3667] = {.lex_state = 2, .external_lex_state = 78}, + [3512] = {.lex_state = 2, .external_lex_state = 153}, + [3513] = {.lex_state = 2, .external_lex_state = 153}, + [3514] = {.lex_state = 2, .external_lex_state = 139}, + [3515] = {.lex_state = 0, .external_lex_state = 160}, + [3516] = {.lex_state = 2, .external_lex_state = 153}, + [3517] = {.lex_state = 2, .external_lex_state = 139}, + [3518] = {.lex_state = 2, .external_lex_state = 162}, + [3519] = {.lex_state = 0, .external_lex_state = 163}, + [3520] = {.lex_state = 0, .external_lex_state = 163}, + [3521] = {.lex_state = 0, .external_lex_state = 160}, + [3522] = {.lex_state = 2, .external_lex_state = 153}, + [3523] = {.lex_state = 2, .external_lex_state = 153}, + [3524] = {.lex_state = 2, .external_lex_state = 153}, + [3525] = {.lex_state = 0, .external_lex_state = 164}, + [3526] = {.lex_state = 2, .external_lex_state = 153}, + [3527] = {.lex_state = 2, .external_lex_state = 153}, + [3528] = {.lex_state = 0, .external_lex_state = 160}, + [3529] = {.lex_state = 0, .external_lex_state = 160}, + [3530] = {.lex_state = 0, .external_lex_state = 160}, + [3531] = {.lex_state = 2, .external_lex_state = 153}, + [3532] = {.lex_state = 0, .external_lex_state = 160}, + [3533] = {.lex_state = 2, .external_lex_state = 153}, + [3534] = {.lex_state = 0, .external_lex_state = 160}, + [3535] = {.lex_state = 2, .external_lex_state = 153}, + [3536] = {.lex_state = 0, .external_lex_state = 165}, + [3537] = {.lex_state = 0, .external_lex_state = 160}, + [3538] = {.lex_state = 0, .external_lex_state = 160}, + [3539] = {.lex_state = 0, .external_lex_state = 160}, + [3540] = {.lex_state = 2, .external_lex_state = 139}, + [3541] = {.lex_state = 2, .external_lex_state = 153}, + [3542] = {.lex_state = 0, .external_lex_state = 160}, + [3543] = {.lex_state = 2, .external_lex_state = 139}, + [3544] = {.lex_state = 2, .external_lex_state = 148}, + [3545] = {.lex_state = 0, .external_lex_state = 160}, + [3546] = {.lex_state = 0, .external_lex_state = 160}, + [3547] = {.lex_state = 2, .external_lex_state = 139}, + [3548] = {.lex_state = 2, .external_lex_state = 153}, + [3549] = {.lex_state = 2, .external_lex_state = 153}, + [3550] = {.lex_state = 0, .external_lex_state = 160}, + [3551] = {.lex_state = 0, .external_lex_state = 160}, + [3552] = {.lex_state = 0, .external_lex_state = 160}, + [3553] = {.lex_state = 0, .external_lex_state = 160}, + [3554] = {.lex_state = 0, .external_lex_state = 160}, + [3555] = {.lex_state = 2, .external_lex_state = 153}, + [3556] = {.lex_state = 2, .external_lex_state = 153}, + [3557] = {.lex_state = 0, .external_lex_state = 160}, + [3558] = {.lex_state = 0, .external_lex_state = 160}, + [3559] = {.lex_state = 0, .external_lex_state = 164}, + [3560] = {.lex_state = 2, .external_lex_state = 139}, + [3561] = {.lex_state = 0, .external_lex_state = 164}, + [3562] = {.lex_state = 0, .external_lex_state = 160}, + [3563] = {.lex_state = 2, .external_lex_state = 139}, + [3564] = {.lex_state = 0, .external_lex_state = 160}, + [3565] = {.lex_state = 2, .external_lex_state = 139}, + [3566] = {.lex_state = 2, .external_lex_state = 153}, + [3567] = {.lex_state = 0, .external_lex_state = 160}, + [3568] = {.lex_state = 0, .external_lex_state = 163}, + [3569] = {.lex_state = 0, .external_lex_state = 160}, + [3570] = {.lex_state = 0, .external_lex_state = 160}, + [3571] = {.lex_state = 0, .external_lex_state = 160}, + [3572] = {.lex_state = 2, .external_lex_state = 153}, + [3573] = {.lex_state = 2, .external_lex_state = 166}, + [3574] = {.lex_state = 0, .external_lex_state = 165}, + [3575] = {.lex_state = 0, .external_lex_state = 160}, + [3576] = {.lex_state = 0, .external_lex_state = 160}, + [3577] = {.lex_state = 0, .external_lex_state = 165}, + [3578] = {.lex_state = 2, .external_lex_state = 153}, + [3579] = {.lex_state = 0, .external_lex_state = 160}, + [3580] = {.lex_state = 0, .external_lex_state = 160}, + [3581] = {.lex_state = 2, .external_lex_state = 153}, + [3582] = {.lex_state = 0, .external_lex_state = 160}, + [3583] = {.lex_state = 2, .external_lex_state = 153}, + [3584] = {.lex_state = 2, .external_lex_state = 167}, + [3585] = {.lex_state = 2, .external_lex_state = 167}, + [3586] = {.lex_state = 0, .external_lex_state = 168}, + [3587] = {.lex_state = 2, .external_lex_state = 167}, + [3588] = {.lex_state = 2, .external_lex_state = 167}, + [3589] = {.lex_state = 2, .external_lex_state = 167}, + [3590] = {.lex_state = 0, .external_lex_state = 169}, + [3591] = {.lex_state = 2, .external_lex_state = 167}, + [3592] = {.lex_state = 2, .external_lex_state = 167}, + [3593] = {.lex_state = 2, .external_lex_state = 167}, + [3594] = {.lex_state = 0, .external_lex_state = 169}, + [3595] = {.lex_state = 2, .external_lex_state = 167}, + [3596] = {.lex_state = 0, .external_lex_state = 170}, + [3597] = {.lex_state = 0, .external_lex_state = 168}, + [3598] = {.lex_state = 2, .external_lex_state = 167}, + [3599] = {.lex_state = 2, .external_lex_state = 167}, + [3600] = {.lex_state = 2, .external_lex_state = 167}, + [3601] = {.lex_state = 2, .external_lex_state = 167}, + [3602] = {.lex_state = 2, .external_lex_state = 167}, + [3603] = {.lex_state = 2, .external_lex_state = 167}, + [3604] = {.lex_state = 2, .external_lex_state = 167}, + [3605] = {.lex_state = 0, .external_lex_state = 169}, + [3606] = {.lex_state = 2, .external_lex_state = 167}, + [3607] = {.lex_state = 2, .external_lex_state = 167}, + [3608] = {.lex_state = 2, .external_lex_state = 167}, + [3609] = {.lex_state = 2, .external_lex_state = 167}, + [3610] = {.lex_state = 2, .external_lex_state = 167}, + [3611] = {.lex_state = 2, .external_lex_state = 167}, + [3612] = {.lex_state = 2, .external_lex_state = 167}, + [3613] = {.lex_state = 2, .external_lex_state = 167}, + [3614] = {.lex_state = 2, .external_lex_state = 167}, + [3615] = {.lex_state = 2, .external_lex_state = 167}, + [3616] = {.lex_state = 2, .external_lex_state = 167}, + [3617] = {.lex_state = 2, .external_lex_state = 167}, + [3618] = {.lex_state = 0, .external_lex_state = 171}, + [3619] = {.lex_state = 2, .external_lex_state = 167}, + [3620] = {.lex_state = 2, .external_lex_state = 167}, + [3621] = {.lex_state = 2, .external_lex_state = 167}, + [3622] = {.lex_state = 0, .external_lex_state = 171}, + [3623] = {.lex_state = 0, .external_lex_state = 168}, + [3624] = {.lex_state = 2, .external_lex_state = 167}, + [3625] = {.lex_state = 2, .external_lex_state = 167}, + [3626] = {.lex_state = 2, .external_lex_state = 167}, + [3627] = {.lex_state = 0, .external_lex_state = 172}, + [3628] = {.lex_state = 0, .external_lex_state = 172}, + [3629] = {.lex_state = 2, .external_lex_state = 173}, + [3630] = {.lex_state = 2, .external_lex_state = 153}, + [3631] = {.lex_state = 2, .external_lex_state = 167}, + [3632] = {.lex_state = 2, .external_lex_state = 167}, + [3633] = {.lex_state = 2, .external_lex_state = 167}, + [3634] = {.lex_state = 2, .external_lex_state = 167}, + [3635] = {.lex_state = 2, .external_lex_state = 167}, + [3636] = {.lex_state = 2, .external_lex_state = 167}, + [3637] = {.lex_state = 0, .external_lex_state = 171}, + [3638] = {.lex_state = 2, .external_lex_state = 167}, + [3639] = {.lex_state = 0, .external_lex_state = 170}, + [3640] = {.lex_state = 2, .external_lex_state = 167}, + [3641] = {.lex_state = 2, .external_lex_state = 167}, + [3642] = {.lex_state = 2, .external_lex_state = 141}, + [3643] = {.lex_state = 0, .external_lex_state = 160}, + [3644] = {.lex_state = 2, .external_lex_state = 167}, + [3645] = {.lex_state = 2, .external_lex_state = 167}, + [3646] = {.lex_state = 0, .external_lex_state = 174}, + [3647] = {.lex_state = 0, .external_lex_state = 172}, + [3648] = {.lex_state = 0, .external_lex_state = 72}, + [3649] = {.lex_state = 2, .external_lex_state = 167}, + [3650] = {.lex_state = 0, .external_lex_state = 160}, + [3651] = {.lex_state = 0, .external_lex_state = 160}, + [3652] = {.lex_state = 0, .external_lex_state = 160}, + [3653] = {.lex_state = 0, .external_lex_state = 174}, + [3654] = {.lex_state = 0, .external_lex_state = 160}, + [3655] = {.lex_state = 2, .external_lex_state = 167}, + [3656] = {.lex_state = 0, .external_lex_state = 152}, + [3657] = {.lex_state = 0, .external_lex_state = 170}, + [3658] = {.lex_state = 2, .external_lex_state = 167}, + [3659] = {.lex_state = 0, .external_lex_state = 174}, + [3660] = {.lex_state = 2, .external_lex_state = 167}, + [3661] = {.lex_state = 0, .external_lex_state = 152}, + [3662] = {.lex_state = 2, .external_lex_state = 167}, + [3663] = {.lex_state = 2, .external_lex_state = 167}, + [3664] = {.lex_state = 2, .external_lex_state = 167}, + [3665] = {.lex_state = 0, .external_lex_state = 160}, + [3666] = {.lex_state = 2, .external_lex_state = 167}, + [3667] = {.lex_state = 0, .external_lex_state = 175}, [3668] = {.lex_state = 0, .external_lex_state = 175}, - [3669] = {.lex_state = 2, .external_lex_state = 78}, + [3669] = {.lex_state = 2, .external_lex_state = 153}, [3670] = {.lex_state = 0, .external_lex_state = 175}, - [3671] = {.lex_state = 0, .external_lex_state = 175}, - [3672] = {.lex_state = 2, .external_lex_state = 78}, - [3673] = {.lex_state = 0, .external_lex_state = 175}, - [3674] = {.lex_state = 0, .external_lex_state = 175}, - [3675] = {.lex_state = 2, .external_lex_state = 78}, - [3676] = {.lex_state = 0, .external_lex_state = 175}, - [3677] = {.lex_state = 2, .external_lex_state = 78}, - [3678] = {.lex_state = 0, .external_lex_state = 175}, - [3679] = {.lex_state = 2, .external_lex_state = 78}, - [3680] = {.lex_state = 2, .external_lex_state = 78}, - [3681] = {.lex_state = 2, .external_lex_state = 78}, - [3682] = {.lex_state = 0, .external_lex_state = 175}, - [3683] = {.lex_state = 0, .external_lex_state = 175}, + [3671] = {.lex_state = 2, .external_lex_state = 84}, + [3672] = {.lex_state = 2, .external_lex_state = 84}, + [3673] = {.lex_state = 2, .external_lex_state = 84}, + [3674] = {.lex_state = 2, .external_lex_state = 84}, + [3675] = {.lex_state = 2, .external_lex_state = 84}, + [3676] = {.lex_state = 0, .external_lex_state = 127}, + [3677] = {.lex_state = 2, .external_lex_state = 84}, + [3678] = {.lex_state = 2, .external_lex_state = 84}, + [3679] = {.lex_state = 2, .external_lex_state = 84}, + [3680] = {.lex_state = 0, .external_lex_state = 175}, + [3681] = {.lex_state = 0, .external_lex_state = 175}, + [3682] = {.lex_state = 2, .external_lex_state = 84}, + [3683] = {.lex_state = 2, .external_lex_state = 84}, [3684] = {.lex_state = 0, .external_lex_state = 175}, - [3685] = {.lex_state = 0, .external_lex_state = 175}, - [3686] = {.lex_state = 0, .external_lex_state = 175}, - [3687] = {.lex_state = 0, .external_lex_state = 175}, - [3688] = {.lex_state = 0, .external_lex_state = 175}, - [3689] = {.lex_state = 0, .external_lex_state = 122}, - [3690] = {.lex_state = 2, .external_lex_state = 142}, - [3691] = {.lex_state = 2, .external_lex_state = 142}, - [3692] = {.lex_state = 2, .external_lex_state = 78}, - [3693] = {.lex_state = 2, .external_lex_state = 78}, - [3694] = {.lex_state = 2, .external_lex_state = 78}, - [3695] = {.lex_state = 2, .external_lex_state = 78}, - [3696] = {.lex_state = 2, .external_lex_state = 78}, - [3697] = {.lex_state = 2, .external_lex_state = 78}, - [3698] = {.lex_state = 2, .external_lex_state = 78}, - [3699] = {.lex_state = 0, .external_lex_state = 175}, - [3700] = {.lex_state = 2, .external_lex_state = 142}, - [3701] = {.lex_state = 0, .external_lex_state = 175}, - [3702] = {.lex_state = 0, .external_lex_state = 175}, - [3703] = {.lex_state = 2, .external_lex_state = 142}, - [3704] = {.lex_state = 2, .external_lex_state = 142}, - [3705] = {.lex_state = 2, .external_lex_state = 142}, - [3706] = {.lex_state = 0, .external_lex_state = 161}, - [3707] = {.lex_state = 0, .external_lex_state = 122}, - [3708] = {.lex_state = 2, .external_lex_state = 142}, - [3709] = {.lex_state = 2, .external_lex_state = 142}, - [3710] = {.lex_state = 2, .external_lex_state = 142}, - [3711] = {.lex_state = 2, .external_lex_state = 142}, - [3712] = {.lex_state = 2, .external_lex_state = 78}, - [3713] = {.lex_state = 2, .external_lex_state = 78}, - [3714] = {.lex_state = 2, .external_lex_state = 78}, - [3715] = {.lex_state = 2, .external_lex_state = 78}, - [3716] = {.lex_state = 2, .external_lex_state = 142}, - [3717] = {.lex_state = 2, .external_lex_state = 142}, - [3718] = {.lex_state = 2, .external_lex_state = 142}, - [3719] = {.lex_state = 2, .external_lex_state = 142}, - [3720] = {.lex_state = 0, .external_lex_state = 175}, - [3721] = {.lex_state = 2, .external_lex_state = 142}, - [3722] = {.lex_state = 0, .external_lex_state = 175}, - [3723] = {.lex_state = 2, .external_lex_state = 142}, - [3724] = {.lex_state = 0, .external_lex_state = 175}, - [3725] = {.lex_state = 2, .external_lex_state = 142}, - [3726] = {.lex_state = 0, .external_lex_state = 175}, - [3727] = {.lex_state = 0, .external_lex_state = 161}, - [3728] = {.lex_state = 0, .external_lex_state = 175}, - [3729] = {.lex_state = 0, .external_lex_state = 175}, - [3730] = {.lex_state = 0, .external_lex_state = 176}, - [3731] = {.lex_state = 0, .external_lex_state = 175}, - [3732] = {.lex_state = 2, .external_lex_state = 78}, - [3733] = {.lex_state = 0, .external_lex_state = 175}, - [3734] = {.lex_state = 2, .external_lex_state = 78}, - [3735] = {.lex_state = 2, .external_lex_state = 78}, - [3736] = {.lex_state = 0, .external_lex_state = 175}, - [3737] = {.lex_state = 0, .external_lex_state = 175}, - [3738] = {.lex_state = 2, .external_lex_state = 142}, - [3739] = {.lex_state = 0, .external_lex_state = 175}, - [3740] = {.lex_state = 2, .external_lex_state = 142}, - [3741] = {.lex_state = 0, .external_lex_state = 175}, - [3742] = {.lex_state = 0, .external_lex_state = 175}, - [3743] = {.lex_state = 0, .external_lex_state = 175}, - [3744] = {.lex_state = 0, .external_lex_state = 175}, - [3745] = {.lex_state = 0, .external_lex_state = 176}, - [3746] = {.lex_state = 2, .external_lex_state = 78}, - [3747] = {.lex_state = 2, .external_lex_state = 78}, - [3748] = {.lex_state = 0, .external_lex_state = 174}, - [3749] = {.lex_state = 2, .external_lex_state = 153}, - [3750] = {.lex_state = 2, .external_lex_state = 78}, - [3751] = {.lex_state = 2, .external_lex_state = 78}, - [3752] = {.lex_state = 0, .external_lex_state = 175}, - [3753] = {.lex_state = 0, .external_lex_state = 175}, - [3754] = {.lex_state = 2, .external_lex_state = 142}, - [3755] = {.lex_state = 0, .external_lex_state = 175}, - [3756] = {.lex_state = 0, .external_lex_state = 175}, - [3757] = {.lex_state = 0, .external_lex_state = 175}, - [3758] = {.lex_state = 0, .external_lex_state = 175}, - [3759] = {.lex_state = 0, .external_lex_state = 127}, - [3760] = {.lex_state = 0, .external_lex_state = 127}, - [3761] = {.lex_state = 0, .external_lex_state = 175}, - [3762] = {.lex_state = 0, .external_lex_state = 175}, - [3763] = {.lex_state = 2, .external_lex_state = 142}, - [3764] = {.lex_state = 0, .external_lex_state = 175}, + [3685] = {.lex_state = 2, .external_lex_state = 84}, + [3686] = {.lex_state = 2, .external_lex_state = 84}, + [3687] = {.lex_state = 2, .external_lex_state = 84}, + [3688] = {.lex_state = 2, .external_lex_state = 84}, + [3689] = {.lex_state = 0, .external_lex_state = 175}, + [3690] = {.lex_state = 0, .external_lex_state = 127}, + [3691] = {.lex_state = 2, .external_lex_state = 141}, + [3692] = {.lex_state = 2, .external_lex_state = 84}, + [3693] = {.lex_state = 0, .external_lex_state = 127}, + [3694] = {.lex_state = 2, .external_lex_state = 141}, + [3695] = {.lex_state = 2, .external_lex_state = 84}, + [3696] = {.lex_state = 2, .external_lex_state = 141}, + [3697] = {.lex_state = 2, .external_lex_state = 141}, + [3698] = {.lex_state = 0, .external_lex_state = 175}, + [3699] = {.lex_state = 0, .external_lex_state = 127}, + [3700] = {.lex_state = 0, .external_lex_state = 127}, + [3701] = {.lex_state = 0, .external_lex_state = 127}, + [3702] = {.lex_state = 0, .external_lex_state = 127}, + [3703] = {.lex_state = 2, .external_lex_state = 141}, + [3704] = {.lex_state = 0, .external_lex_state = 175}, + [3705] = {.lex_state = 0, .external_lex_state = 175}, + [3706] = {.lex_state = 0, .external_lex_state = 175}, + [3707] = {.lex_state = 0, .external_lex_state = 175}, + [3708] = {.lex_state = 0, .external_lex_state = 175}, + [3709] = {.lex_state = 0, .external_lex_state = 127}, + [3710] = {.lex_state = 2, .external_lex_state = 141}, + [3711] = {.lex_state = 2, .external_lex_state = 84}, + [3712] = {.lex_state = 2, .external_lex_state = 84}, + [3713] = {.lex_state = 2, .external_lex_state = 153}, + [3714] = {.lex_state = 2, .external_lex_state = 84}, + [3715] = {.lex_state = 2, .external_lex_state = 84}, + [3716] = {.lex_state = 2, .external_lex_state = 141}, + [3717] = {.lex_state = 2, .external_lex_state = 153}, + [3718] = {.lex_state = 2, .external_lex_state = 84}, + [3719] = {.lex_state = 2, .external_lex_state = 84}, + [3720] = {.lex_state = 0, .external_lex_state = 176}, + [3721] = {.lex_state = 2, .external_lex_state = 141}, + [3722] = {.lex_state = 0, .external_lex_state = 127}, + [3723] = {.lex_state = 2, .external_lex_state = 141}, + [3724] = {.lex_state = 2, .external_lex_state = 141}, + [3725] = {.lex_state = 0, .external_lex_state = 127}, + [3726] = {.lex_state = 2, .external_lex_state = 84}, + [3727] = {.lex_state = 0, .external_lex_state = 121}, + [3728] = {.lex_state = 0, .external_lex_state = 121}, + [3729] = {.lex_state = 2, .external_lex_state = 141}, + [3730] = {.lex_state = 2, .external_lex_state = 84}, + [3731] = {.lex_state = 2, .external_lex_state = 153}, + [3732] = {.lex_state = 2, .external_lex_state = 141}, + [3733] = {.lex_state = 2, .external_lex_state = 84}, + [3734] = {.lex_state = 2, .external_lex_state = 141}, + [3735] = {.lex_state = 2, .external_lex_state = 141}, + [3736] = {.lex_state = 2, .external_lex_state = 141}, + [3737] = {.lex_state = 2, .external_lex_state = 141}, + [3738] = {.lex_state = 2, .external_lex_state = 141}, + [3739] = {.lex_state = 2, .external_lex_state = 141}, + [3740] = {.lex_state = 2, .external_lex_state = 141}, + [3741] = {.lex_state = 0, .external_lex_state = 170}, + [3742] = {.lex_state = 2, .external_lex_state = 141}, + [3743] = {.lex_state = 2, .external_lex_state = 141}, + [3744] = {.lex_state = 2, .external_lex_state = 141}, + [3745] = {.lex_state = 2, .external_lex_state = 153}, + [3746] = {.lex_state = 0, .external_lex_state = 175}, + [3747] = {.lex_state = 0, .external_lex_state = 170}, + [3748] = {.lex_state = 2, .external_lex_state = 141}, + [3749] = {.lex_state = 0, .external_lex_state = 175}, + [3750] = {.lex_state = 2, .external_lex_state = 84}, + [3751] = {.lex_state = 0, .external_lex_state = 175}, + [3752] = {.lex_state = 2, .external_lex_state = 84}, + [3753] = {.lex_state = 2, .external_lex_state = 84}, + [3754] = {.lex_state = 0, .external_lex_state = 160}, + [3755] = {.lex_state = 2, .external_lex_state = 84}, + [3756] = {.lex_state = 2, .external_lex_state = 153}, + [3757] = {.lex_state = 2, .external_lex_state = 141}, + [3758] = {.lex_state = 0, .external_lex_state = 127}, + [3759] = {.lex_state = 0, .external_lex_state = 175}, + [3760] = {.lex_state = 0, .external_lex_state = 175}, + [3761] = {.lex_state = 2, .external_lex_state = 84}, + [3762] = {.lex_state = 2, .external_lex_state = 141}, + [3763] = {.lex_state = 0, .external_lex_state = 175}, + [3764] = {.lex_state = 2, .external_lex_state = 84}, [3765] = {.lex_state = 0, .external_lex_state = 175}, - [3766] = {.lex_state = 0, .external_lex_state = 175}, - [3767] = {.lex_state = 0, .external_lex_state = 175}, - [3768] = {.lex_state = 2, .external_lex_state = 142}, - [3769] = {.lex_state = 0, .external_lex_state = 174}, - [3770] = {.lex_state = 2, .external_lex_state = 142}, - [3771] = {.lex_state = 0, .external_lex_state = 175}, - [3772] = {.lex_state = 0, .external_lex_state = 122}, - [3773] = {.lex_state = 2, .external_lex_state = 153}, - [3774] = {.lex_state = 0, .external_lex_state = 175}, - [3775] = {.lex_state = 0, .external_lex_state = 122}, + [3766] = {.lex_state = 2, .external_lex_state = 141}, + [3767] = {.lex_state = 2, .external_lex_state = 153}, + [3768] = {.lex_state = 0, .external_lex_state = 127}, + [3769] = {.lex_state = 0, .external_lex_state = 175}, + [3770] = {.lex_state = 0, .external_lex_state = 175}, + [3771] = {.lex_state = 2, .external_lex_state = 141}, + [3772] = {.lex_state = 2, .external_lex_state = 84}, + [3773] = {.lex_state = 0, .external_lex_state = 121}, + [3774] = {.lex_state = 0, .external_lex_state = 121}, + [3775] = {.lex_state = 0, .external_lex_state = 175}, [3776] = {.lex_state = 0, .external_lex_state = 175}, - [3777] = {.lex_state = 0, .external_lex_state = 122}, + [3777] = {.lex_state = 2, .external_lex_state = 177}, [3778] = {.lex_state = 0, .external_lex_state = 175}, - [3779] = {.lex_state = 2, .external_lex_state = 153}, - [3780] = {.lex_state = 2, .external_lex_state = 153}, - [3781] = {.lex_state = 0, .external_lex_state = 175}, - [3782] = {.lex_state = 0, .external_lex_state = 122}, - [3783] = {.lex_state = 0, .external_lex_state = 175}, + [3779] = {.lex_state = 0, .external_lex_state = 175}, + [3780] = {.lex_state = 0, .external_lex_state = 127}, + [3781] = {.lex_state = 0, .external_lex_state = 127}, + [3782] = {.lex_state = 2, .external_lex_state = 153}, + [3783] = {.lex_state = 2, .external_lex_state = 84}, [3784] = {.lex_state = 0, .external_lex_state = 175}, [3785] = {.lex_state = 0, .external_lex_state = 175}, [3786] = {.lex_state = 0, .external_lex_state = 175}, [3787] = {.lex_state = 0, .external_lex_state = 175}, - [3788] = {.lex_state = 2, .external_lex_state = 78}, - [3789] = {.lex_state = 2, .external_lex_state = 78}, - [3790] = {.lex_state = 0, .external_lex_state = 122}, - [3791] = {.lex_state = 2, .external_lex_state = 153}, - [3792] = {.lex_state = 0, .external_lex_state = 122}, - [3793] = {.lex_state = 0, .external_lex_state = 175}, - [3794] = {.lex_state = 0, .external_lex_state = 175}, + [3788] = {.lex_state = 0, .external_lex_state = 175}, + [3789] = {.lex_state = 0, .external_lex_state = 175}, + [3790] = {.lex_state = 0, .external_lex_state = 175}, + [3791] = {.lex_state = 0, .external_lex_state = 175}, + [3792] = {.lex_state = 0, .external_lex_state = 175}, + [3793] = {.lex_state = 0, .external_lex_state = 127}, + [3794] = {.lex_state = 2, .external_lex_state = 153}, [3795] = {.lex_state = 0, .external_lex_state = 175}, - [3796] = {.lex_state = 2, .external_lex_state = 177}, + [3796] = {.lex_state = 0, .external_lex_state = 175}, [3797] = {.lex_state = 0, .external_lex_state = 175}, [3798] = {.lex_state = 0, .external_lex_state = 175}, - [3799] = {.lex_state = 2, .external_lex_state = 153}, + [3799] = {.lex_state = 0, .external_lex_state = 175}, [3800] = {.lex_state = 0, .external_lex_state = 175}, - [3801] = {.lex_state = 0, .external_lex_state = 122}, - [3802] = {.lex_state = 2, .external_lex_state = 153}, - [3803] = {.lex_state = 0, .external_lex_state = 175}, + [3801] = {.lex_state = 0, .external_lex_state = 175}, + [3802] = {.lex_state = 0, .external_lex_state = 175}, + [3803] = {.lex_state = 0, .external_lex_state = 121}, [3804] = {.lex_state = 0, .external_lex_state = 175}, - [3805] = {.lex_state = 0, .external_lex_state = 127}, + [3805] = {.lex_state = 0, .external_lex_state = 175}, [3806] = {.lex_state = 0, .external_lex_state = 175}, - [3807] = {.lex_state = 2, .external_lex_state = 153}, - [3808] = {.lex_state = 0, .external_lex_state = 127}, - [3809] = {.lex_state = 0, .external_lex_state = 127}, - [3810] = {.lex_state = 0, .external_lex_state = 122}, - [3811] = {.lex_state = 0, .external_lex_state = 127}, - [3812] = {.lex_state = 0, .external_lex_state = 122}, - [3813] = {.lex_state = 0, .external_lex_state = 175}, - [3814] = {.lex_state = 0, .external_lex_state = 122}, - [3815] = {.lex_state = 0, .external_lex_state = 127}, + [3807] = {.lex_state = 0, .external_lex_state = 175}, + [3808] = {.lex_state = 0, .external_lex_state = 175}, + [3809] = {.lex_state = 2, .external_lex_state = 84}, + [3810] = {.lex_state = 0, .external_lex_state = 127}, + [3811] = {.lex_state = 0, .external_lex_state = 175}, + [3812] = {.lex_state = 0, .external_lex_state = 175}, + [3813] = {.lex_state = 2, .external_lex_state = 178}, + [3814] = {.lex_state = 0, .external_lex_state = 175}, + [3815] = {.lex_state = 0, .external_lex_state = 175}, [3816] = {.lex_state = 0, .external_lex_state = 175}, - [3817] = {.lex_state = 0, .external_lex_state = 127}, - [3818] = {.lex_state = 0, .external_lex_state = 122}, - [3819] = {.lex_state = 0, .external_lex_state = 122}, + [3817] = {.lex_state = 0, .external_lex_state = 175}, + [3818] = {.lex_state = 2, .external_lex_state = 84}, + [3819] = {.lex_state = 0, .external_lex_state = 175}, [3820] = {.lex_state = 0, .external_lex_state = 175}, - [3821] = {.lex_state = 0, .external_lex_state = 122}, - [3822] = {.lex_state = 0, .external_lex_state = 122}, - [3823] = {.lex_state = 0, .external_lex_state = 127}, - [3824] = {.lex_state = 0, .external_lex_state = 127}, - [3825] = {.lex_state = 2, .external_lex_state = 142}, - [3826] = {.lex_state = 0, .external_lex_state = 127}, - [3827] = {.lex_state = 0, .external_lex_state = 122}, - [3828] = {.lex_state = 0, .external_lex_state = 122}, - [3829] = {.lex_state = 2, .external_lex_state = 178}, - [3830] = {.lex_state = 0, .external_lex_state = 127}, - [3831] = {.lex_state = 0, .external_lex_state = 122}, - [3832] = {.lex_state = 0, .external_lex_state = 122}, - [3833] = {.lex_state = 0, .external_lex_state = 127}, + [3821] = {.lex_state = 0, .external_lex_state = 175}, + [3822] = {.lex_state = 2, .external_lex_state = 153}, + [3823] = {.lex_state = 0, .external_lex_state = 175}, + [3824] = {.lex_state = 0, .external_lex_state = 175}, + [3825] = {.lex_state = 0, .external_lex_state = 175}, + [3826] = {.lex_state = 0, .external_lex_state = 175}, + [3827] = {.lex_state = 0, .external_lex_state = 175}, + [3828] = {.lex_state = 0, .external_lex_state = 175}, + [3829] = {.lex_state = 0, .external_lex_state = 175}, + [3830] = {.lex_state = 0, .external_lex_state = 175}, + [3831] = {.lex_state = 0, .external_lex_state = 127}, + [3832] = {.lex_state = 0, .external_lex_state = 175}, + [3833] = {.lex_state = 0, .external_lex_state = 175}, [3834] = {.lex_state = 0, .external_lex_state = 127}, - [3835] = {.lex_state = 0, .external_lex_state = 127}, + [3835] = {.lex_state = 0, .external_lex_state = 175}, [3836] = {.lex_state = 0, .external_lex_state = 127}, [3837] = {.lex_state = 0, .external_lex_state = 127}, - [3838] = {.lex_state = 0, .external_lex_state = 127}, - [3839] = {.lex_state = 0, .external_lex_state = 127}, - [3840] = {.lex_state = 0, .external_lex_state = 127}, - [3841] = {.lex_state = 0, .external_lex_state = 127}, + [3838] = {.lex_state = 0, .external_lex_state = 175}, + [3839] = {.lex_state = 0, .external_lex_state = 175}, + [3840] = {.lex_state = 0, .external_lex_state = 121}, + [3841] = {.lex_state = 0, .external_lex_state = 175}, [3842] = {.lex_state = 0, .external_lex_state = 127}, - [3843] = {.lex_state = 0, .external_lex_state = 127}, - [3844] = {.lex_state = 0, .external_lex_state = 122}, - [3845] = {.lex_state = 0, .external_lex_state = 122}, - [3846] = {.lex_state = 0, .external_lex_state = 122}, - [3847] = {.lex_state = 0, .external_lex_state = 122}, - [3848] = {.lex_state = 0, .external_lex_state = 127}, - [3849] = {.lex_state = 0, .external_lex_state = 127}, - [3850] = {.lex_state = 0, .external_lex_state = 127}, - [3851] = {.lex_state = 0, .external_lex_state = 127}, - [3852] = {.lex_state = 0, .external_lex_state = 127}, - [3853] = {.lex_state = 0, .external_lex_state = 127}, - [3854] = {.lex_state = 0, .external_lex_state = 122}, - [3855] = {.lex_state = 0, .external_lex_state = 122}, + [3843] = {.lex_state = 0, .external_lex_state = 175}, + [3844] = {.lex_state = 0, .external_lex_state = 127}, + [3845] = {.lex_state = 0, .external_lex_state = 175}, + [3846] = {.lex_state = 0, .external_lex_state = 175}, + [3847] = {.lex_state = 0, .external_lex_state = 175}, + [3848] = {.lex_state = 0, .external_lex_state = 121}, + [3849] = {.lex_state = 0, .external_lex_state = 175}, + [3850] = {.lex_state = 0, .external_lex_state = 121}, + [3851] = {.lex_state = 2, .external_lex_state = 84}, + [3852] = {.lex_state = 0, .external_lex_state = 175}, + [3853] = {.lex_state = 0, .external_lex_state = 175}, + [3854] = {.lex_state = 0, .external_lex_state = 175}, + [3855] = {.lex_state = 0, .external_lex_state = 175}, [3856] = {.lex_state = 0, .external_lex_state = 127}, - [3857] = {.lex_state = 0, .external_lex_state = 127}, - [3858] = {.lex_state = 0, .external_lex_state = 127}, - [3859] = {.lex_state = 0, .external_lex_state = 122}, - [3860] = {.lex_state = 2, .external_lex_state = 153}, - [3861] = {.lex_state = 2, .external_lex_state = 153}, - [3862] = {.lex_state = 2, .external_lex_state = 153}, - [3863] = {.lex_state = 2, .external_lex_state = 153}, - [3864] = {.lex_state = 2, .external_lex_state = 153}, - [3865] = {.lex_state = 2, .external_lex_state = 153}, - [3866] = {.lex_state = 2, .external_lex_state = 97}, - [3867] = {.lex_state = 2, .external_lex_state = 153}, - [3868] = {.lex_state = 2, .external_lex_state = 97}, - [3869] = {.lex_state = 2, .external_lex_state = 153}, - [3870] = {.lex_state = 2, .external_lex_state = 97}, - [3871] = {.lex_state = 2, .external_lex_state = 153}, - [3872] = {.lex_state = 2, .external_lex_state = 153}, - [3873] = {.lex_state = 2, .external_lex_state = 153}, - [3874] = {.lex_state = 2, .external_lex_state = 153}, - [3875] = {.lex_state = 2, .external_lex_state = 153}, - [3876] = {.lex_state = 2, .external_lex_state = 153}, - [3877] = {.lex_state = 2, .external_lex_state = 153}, - [3878] = {.lex_state = 2, .external_lex_state = 153}, - [3879] = {.lex_state = 2, .external_lex_state = 153}, - [3880] = {.lex_state = 2, .external_lex_state = 153}, - [3881] = {.lex_state = 2, .external_lex_state = 153}, - [3882] = {.lex_state = 2, .external_lex_state = 153}, - [3883] = {.lex_state = 2, .external_lex_state = 153}, - [3884] = {.lex_state = 2, .external_lex_state = 153}, - [3885] = {.lex_state = 2, .external_lex_state = 153}, - [3886] = {.lex_state = 2, .external_lex_state = 153}, - [3887] = {.lex_state = 2, .external_lex_state = 153}, - [3888] = {.lex_state = 2, .external_lex_state = 153}, - [3889] = {.lex_state = 2, .external_lex_state = 153}, + [3857] = {.lex_state = 0, .external_lex_state = 175}, + [3858] = {.lex_state = 0, .external_lex_state = 175}, + [3859] = {.lex_state = 0, .external_lex_state = 175}, + [3860] = {.lex_state = 0, .external_lex_state = 175}, + [3861] = {.lex_state = 0, .external_lex_state = 121}, + [3862] = {.lex_state = 0, .external_lex_state = 175}, + [3863] = {.lex_state = 0, .external_lex_state = 175}, + [3864] = {.lex_state = 0, .external_lex_state = 175}, + [3865] = {.lex_state = 0, .external_lex_state = 127}, + [3866] = {.lex_state = 0, .external_lex_state = 176}, + [3867] = {.lex_state = 0, .external_lex_state = 175}, + [3868] = {.lex_state = 0, .external_lex_state = 175}, + [3869] = {.lex_state = 0, .external_lex_state = 175}, + [3870] = {.lex_state = 0, .external_lex_state = 175}, + [3871] = {.lex_state = 0, .external_lex_state = 175}, + [3872] = {.lex_state = 2, .external_lex_state = 84}, + [3873] = {.lex_state = 0, .external_lex_state = 175}, + [3874] = {.lex_state = 0, .external_lex_state = 175}, + [3875] = {.lex_state = 0, .external_lex_state = 175}, + [3876] = {.lex_state = 0, .external_lex_state = 175}, + [3877] = {.lex_state = 0, .external_lex_state = 175}, + [3878] = {.lex_state = 0, .external_lex_state = 127}, + [3879] = {.lex_state = 0, .external_lex_state = 175}, + [3880] = {.lex_state = 0, .external_lex_state = 160}, + [3881] = {.lex_state = 0, .external_lex_state = 175}, + [3882] = {.lex_state = 0, .external_lex_state = 176}, + [3883] = {.lex_state = 0, .external_lex_state = 175}, + [3884] = {.lex_state = 0, .external_lex_state = 175}, + [3885] = {.lex_state = 0, .external_lex_state = 175}, + [3886] = {.lex_state = 0, .external_lex_state = 175}, + [3887] = {.lex_state = 0, .external_lex_state = 175}, + [3888] = {.lex_state = 0, .external_lex_state = 175}, + [3889] = {.lex_state = 0, .external_lex_state = 175}, [3890] = {.lex_state = 2, .external_lex_state = 153}, - [3891] = {.lex_state = 2, .external_lex_state = 153}, - [3892] = {.lex_state = 2, .external_lex_state = 153}, - [3893] = {.lex_state = 2, .external_lex_state = 153}, - [3894] = {.lex_state = 2, .external_lex_state = 153}, - [3895] = {.lex_state = 2, .external_lex_state = 153}, - [3896] = {.lex_state = 2, .external_lex_state = 153}, - [3897] = {.lex_state = 2, .external_lex_state = 153}, - [3898] = {.lex_state = 2, .external_lex_state = 153}, - [3899] = {.lex_state = 2, .external_lex_state = 153}, - [3900] = {.lex_state = 2, .external_lex_state = 153}, - [3901] = {.lex_state = 2, .external_lex_state = 153}, - [3902] = {.lex_state = 2, .external_lex_state = 153}, - [3903] = {.lex_state = 2, .external_lex_state = 153}, - [3904] = {.lex_state = 0, .external_lex_state = 146}, - [3905] = {.lex_state = 2, .external_lex_state = 153}, - [3906] = {.lex_state = 2, .external_lex_state = 153}, - [3907] = {.lex_state = 2, .external_lex_state = 153}, - [3908] = {.lex_state = 2, .external_lex_state = 153}, - [3909] = {.lex_state = 2, .external_lex_state = 97}, - [3910] = {.lex_state = 2, .external_lex_state = 153}, - [3911] = {.lex_state = 2, .external_lex_state = 153}, - [3912] = {.lex_state = 0, .external_lex_state = 146}, - [3913] = {.lex_state = 2, .external_lex_state = 153}, - [3914] = {.lex_state = 2, .external_lex_state = 153}, - [3915] = {.lex_state = 2, .external_lex_state = 153}, - [3916] = {.lex_state = 2, .external_lex_state = 153}, - [3917] = {.lex_state = 2, .external_lex_state = 153}, - [3918] = {.lex_state = 2, .external_lex_state = 153}, - [3919] = {.lex_state = 2, .external_lex_state = 153}, - [3920] = {.lex_state = 2, .external_lex_state = 153}, - [3921] = {.lex_state = 2, .external_lex_state = 153}, - [3922] = {.lex_state = 2, .external_lex_state = 153}, - [3923] = {.lex_state = 2, .external_lex_state = 153}, - [3924] = {.lex_state = 2, .external_lex_state = 153}, - [3925] = {.lex_state = 2, .external_lex_state = 153}, - [3926] = {.lex_state = 2, .external_lex_state = 153}, - [3927] = {.lex_state = 2, .external_lex_state = 153}, - [3928] = {.lex_state = 2, .external_lex_state = 153}, - [3929] = {.lex_state = 2, .external_lex_state = 153}, - [3930] = {.lex_state = 2, .external_lex_state = 153}, - [3931] = {.lex_state = 2, .external_lex_state = 153}, - [3932] = {.lex_state = 2, .external_lex_state = 153}, - [3933] = {.lex_state = 2, .external_lex_state = 153}, - [3934] = {.lex_state = 2, .external_lex_state = 153}, - [3935] = {.lex_state = 2, .external_lex_state = 153}, - [3936] = {.lex_state = 2, .external_lex_state = 153}, - [3937] = {.lex_state = 0, .external_lex_state = 146}, - [3938] = {.lex_state = 2, .external_lex_state = 153}, - [3939] = {.lex_state = 2, .external_lex_state = 153}, - [3940] = {.lex_state = 2, .external_lex_state = 153}, - [3941] = {.lex_state = 2, .external_lex_state = 153}, - [3942] = {.lex_state = 2, .external_lex_state = 153}, - [3943] = {.lex_state = 2, .external_lex_state = 153}, - [3944] = {.lex_state = 0, .external_lex_state = 146}, - [3945] = {.lex_state = 2, .external_lex_state = 153}, - [3946] = {.lex_state = 2, .external_lex_state = 153}, - [3947] = {.lex_state = 2, .external_lex_state = 97}, - [3948] = {.lex_state = 2, .external_lex_state = 97}, - [3949] = {.lex_state = 2, .external_lex_state = 153}, - [3950] = {.lex_state = 2, .external_lex_state = 153}, - [3951] = {.lex_state = 2, .external_lex_state = 97}, - [3952] = {.lex_state = 2, .external_lex_state = 153}, - [3953] = {.lex_state = 2, .external_lex_state = 153}, - [3954] = {.lex_state = 2, .external_lex_state = 153}, - [3955] = {.lex_state = 2, .external_lex_state = 153}, - [3956] = {.lex_state = 2, .external_lex_state = 153}, - [3957] = {.lex_state = 2, .external_lex_state = 153}, - [3958] = {.lex_state = 2, .external_lex_state = 153}, - [3959] = {.lex_state = 2, .external_lex_state = 153}, - [3960] = {.lex_state = 2, .external_lex_state = 153}, - [3961] = {.lex_state = 2, .external_lex_state = 153}, - [3962] = {.lex_state = 2, .external_lex_state = 153}, - [3963] = {.lex_state = 2, .external_lex_state = 153}, - [3964] = {.lex_state = 2, .external_lex_state = 153}, - [3965] = {.lex_state = 2, .external_lex_state = 153}, - [3966] = {.lex_state = 2, .external_lex_state = 153}, - [3967] = {.lex_state = 2, .external_lex_state = 153}, - [3968] = {.lex_state = 2, .external_lex_state = 97}, - [3969] = {.lex_state = 0, .external_lex_state = 146}, - [3970] = {.lex_state = 2, .external_lex_state = 145}, - [3971] = {.lex_state = 2, .external_lex_state = 97}, - [3972] = {.lex_state = 2, .external_lex_state = 179}, - [3973] = {.lex_state = 2, .external_lex_state = 153}, - [3974] = {.lex_state = 2, .external_lex_state = 153}, - [3975] = {.lex_state = 2, .external_lex_state = 153}, - [3976] = {.lex_state = 2, .external_lex_state = 153}, - [3977] = {.lex_state = 2, .external_lex_state = 153}, + [3891] = {.lex_state = 0, .external_lex_state = 175}, + [3892] = {.lex_state = 0, .external_lex_state = 175}, + [3893] = {.lex_state = 0, .external_lex_state = 175}, + [3894] = {.lex_state = 0, .external_lex_state = 127}, + [3895] = {.lex_state = 0, .external_lex_state = 175}, + [3896] = {.lex_state = 0, .external_lex_state = 175}, + [3897] = {.lex_state = 0, .external_lex_state = 175}, + [3898] = {.lex_state = 0, .external_lex_state = 175}, + [3899] = {.lex_state = 2, .external_lex_state = 84}, + [3900] = {.lex_state = 0, .external_lex_state = 175}, + [3901] = {.lex_state = 0, .external_lex_state = 175}, + [3902] = {.lex_state = 0, .external_lex_state = 127}, + [3903] = {.lex_state = 0, .external_lex_state = 127}, + [3904] = {.lex_state = 0, .external_lex_state = 127}, + [3905] = {.lex_state = 0, .external_lex_state = 175}, + [3906] = {.lex_state = 0, .external_lex_state = 175}, + [3907] = {.lex_state = 0, .external_lex_state = 175}, + [3908] = {.lex_state = 0, .external_lex_state = 175}, + [3909] = {.lex_state = 0, .external_lex_state = 127}, + [3910] = {.lex_state = 0, .external_lex_state = 121}, + [3911] = {.lex_state = 0, .external_lex_state = 121}, + [3912] = {.lex_state = 0, .external_lex_state = 121}, + [3913] = {.lex_state = 0, .external_lex_state = 121}, + [3914] = {.lex_state = 0, .external_lex_state = 175}, + [3915] = {.lex_state = 0, .external_lex_state = 175}, + [3916] = {.lex_state = 0, .external_lex_state = 121}, + [3917] = {.lex_state = 0, .external_lex_state = 127}, + [3918] = {.lex_state = 0, .external_lex_state = 121}, + [3919] = {.lex_state = 0, .external_lex_state = 121}, + [3920] = {.lex_state = 0, .external_lex_state = 175}, + [3921] = {.lex_state = 0, .external_lex_state = 127}, + [3922] = {.lex_state = 0, .external_lex_state = 121}, + [3923] = {.lex_state = 0, .external_lex_state = 175}, + [3924] = {.lex_state = 0, .external_lex_state = 175}, + [3925] = {.lex_state = 0, .external_lex_state = 175}, + [3926] = {.lex_state = 0, .external_lex_state = 121}, + [3927] = {.lex_state = 0, .external_lex_state = 121}, + [3928] = {.lex_state = 0, .external_lex_state = 175}, + [3929] = {.lex_state = 0, .external_lex_state = 121}, + [3930] = {.lex_state = 0, .external_lex_state = 175}, + [3931] = {.lex_state = 0, .external_lex_state = 127}, + [3932] = {.lex_state = 0, .external_lex_state = 175}, + [3933] = {.lex_state = 0, .external_lex_state = 121}, + [3934] = {.lex_state = 0, .external_lex_state = 121}, + [3935] = {.lex_state = 2, .external_lex_state = 141}, + [3936] = {.lex_state = 0, .external_lex_state = 121}, + [3937] = {.lex_state = 0, .external_lex_state = 121}, + [3938] = {.lex_state = 0, .external_lex_state = 175}, + [3939] = {.lex_state = 0, .external_lex_state = 121}, + [3940] = {.lex_state = 0, .external_lex_state = 175}, + [3941] = {.lex_state = 0, .external_lex_state = 175}, + [3942] = {.lex_state = 0, .external_lex_state = 175}, + [3943] = {.lex_state = 0, .external_lex_state = 121}, + [3944] = {.lex_state = 0, .external_lex_state = 121}, + [3945] = {.lex_state = 0, .external_lex_state = 175}, + [3946] = {.lex_state = 0, .external_lex_state = 175}, + [3947] = {.lex_state = 0, .external_lex_state = 121}, + [3948] = {.lex_state = 0, .external_lex_state = 175}, + [3949] = {.lex_state = 0, .external_lex_state = 175}, + [3950] = {.lex_state = 0, .external_lex_state = 175}, + [3951] = {.lex_state = 0, .external_lex_state = 175}, + [3952] = {.lex_state = 0, .external_lex_state = 121}, + [3953] = {.lex_state = 2, .external_lex_state = 84}, + [3954] = {.lex_state = 0, .external_lex_state = 175}, + [3955] = {.lex_state = 0, .external_lex_state = 121}, + [3956] = {.lex_state = 0, .external_lex_state = 127}, + [3957] = {.lex_state = 0, .external_lex_state = 127}, + [3958] = {.lex_state = 0, .external_lex_state = 175}, + [3959] = {.lex_state = 0, .external_lex_state = 121}, + [3960] = {.lex_state = 0, .external_lex_state = 175}, + [3961] = {.lex_state = 0, .external_lex_state = 121}, + [3962] = {.lex_state = 0, .external_lex_state = 175}, + [3963] = {.lex_state = 0, .external_lex_state = 175}, + [3964] = {.lex_state = 0, .external_lex_state = 175}, + [3965] = {.lex_state = 0, .external_lex_state = 175}, + [3966] = {.lex_state = 2, .external_lex_state = 141}, + [3967] = {.lex_state = 0, .external_lex_state = 175}, + [3968] = {.lex_state = 0, .external_lex_state = 175}, + [3969] = {.lex_state = 0, .external_lex_state = 175}, + [3970] = {.lex_state = 0, .external_lex_state = 175}, + [3971] = {.lex_state = 0, .external_lex_state = 175}, + [3972] = {.lex_state = 0, .external_lex_state = 175}, + [3973] = {.lex_state = 0, .external_lex_state = 121}, + [3974] = {.lex_state = 0, .external_lex_state = 121}, + [3975] = {.lex_state = 0, .external_lex_state = 121}, + [3976] = {.lex_state = 0, .external_lex_state = 175}, + [3977] = {.lex_state = 0, .external_lex_state = 175}, [3978] = {.lex_state = 2, .external_lex_state = 153}, [3979] = {.lex_state = 2, .external_lex_state = 153}, [3980] = {.lex_state = 2, .external_lex_state = 153}, [3981] = {.lex_state = 2, .external_lex_state = 153}, [3982] = {.lex_state = 2, .external_lex_state = 153}, [3983] = {.lex_state = 2, .external_lex_state = 153}, - [3984] = {.lex_state = 2, .external_lex_state = 153}, + [3984] = {.lex_state = 2, .external_lex_state = 96}, [3985] = {.lex_state = 2, .external_lex_state = 153}, [3986] = {.lex_state = 2, .external_lex_state = 153}, [3987] = {.lex_state = 2, .external_lex_state = 153}, @@ -16667,21 +17092,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3989] = {.lex_state = 2, .external_lex_state = 153}, [3990] = {.lex_state = 2, .external_lex_state = 153}, [3991] = {.lex_state = 2, .external_lex_state = 153}, - [3992] = {.lex_state = 2, .external_lex_state = 153}, - [3993] = {.lex_state = 2, .external_lex_state = 97}, - [3994] = {.lex_state = 2, .external_lex_state = 153}, + [3992] = {.lex_state = 2, .external_lex_state = 96}, + [3993] = {.lex_state = 2, .external_lex_state = 153}, + [3994] = {.lex_state = 2, .external_lex_state = 96}, [3995] = {.lex_state = 2, .external_lex_state = 153}, [3996] = {.lex_state = 2, .external_lex_state = 153}, [3997] = {.lex_state = 2, .external_lex_state = 153}, [3998] = {.lex_state = 2, .external_lex_state = 153}, - [3999] = {.lex_state = 2, .external_lex_state = 97}, + [3999] = {.lex_state = 2, .external_lex_state = 153}, [4000] = {.lex_state = 2, .external_lex_state = 153}, [4001] = {.lex_state = 2, .external_lex_state = 153}, [4002] = {.lex_state = 2, .external_lex_state = 153}, [4003] = {.lex_state = 2, .external_lex_state = 153}, [4004] = {.lex_state = 2, .external_lex_state = 153}, [4005] = {.lex_state = 2, .external_lex_state = 153}, - [4006] = {.lex_state = 2, .external_lex_state = 153}, + [4006] = {.lex_state = 2, .external_lex_state = 96}, [4007] = {.lex_state = 2, .external_lex_state = 153}, [4008] = {.lex_state = 2, .external_lex_state = 153}, [4009] = {.lex_state = 2, .external_lex_state = 153}, @@ -16692,61 +17117,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4014] = {.lex_state = 2, .external_lex_state = 153}, [4015] = {.lex_state = 2, .external_lex_state = 153}, [4016] = {.lex_state = 2, .external_lex_state = 153}, - [4017] = {.lex_state = 2, .external_lex_state = 97}, + [4017] = {.lex_state = 2, .external_lex_state = 153}, [4018] = {.lex_state = 2, .external_lex_state = 153}, [4019] = {.lex_state = 2, .external_lex_state = 153}, [4020] = {.lex_state = 2, .external_lex_state = 153}, [4021] = {.lex_state = 2, .external_lex_state = 153}, [4022] = {.lex_state = 2, .external_lex_state = 153}, [4023] = {.lex_state = 2, .external_lex_state = 153}, - [4024] = {.lex_state = 2, .external_lex_state = 153}, + [4024] = {.lex_state = 2, .external_lex_state = 96}, [4025] = {.lex_state = 2, .external_lex_state = 153}, [4026] = {.lex_state = 2, .external_lex_state = 153}, [4027] = {.lex_state = 2, .external_lex_state = 153}, [4028] = {.lex_state = 2, .external_lex_state = 153}, [4029] = {.lex_state = 2, .external_lex_state = 153}, [4030] = {.lex_state = 2, .external_lex_state = 153}, - [4031] = {.lex_state = 2, .external_lex_state = 153}, + [4031] = {.lex_state = 2, .external_lex_state = 96}, [4032] = {.lex_state = 2, .external_lex_state = 153}, [4033] = {.lex_state = 2, .external_lex_state = 153}, [4034] = {.lex_state = 2, .external_lex_state = 153}, [4035] = {.lex_state = 2, .external_lex_state = 153}, [4036] = {.lex_state = 2, .external_lex_state = 153}, [4037] = {.lex_state = 2, .external_lex_state = 153}, - [4038] = {.lex_state = 2, .external_lex_state = 97}, - [4039] = {.lex_state = 2, .external_lex_state = 97}, + [4038] = {.lex_state = 2, .external_lex_state = 153}, + [4039] = {.lex_state = 2, .external_lex_state = 153}, [4040] = {.lex_state = 2, .external_lex_state = 153}, [4041] = {.lex_state = 2, .external_lex_state = 153}, - [4042] = {.lex_state = 2, .external_lex_state = 97}, + [4042] = {.lex_state = 2, .external_lex_state = 96}, [4043] = {.lex_state = 2, .external_lex_state = 153}, [4044] = {.lex_state = 2, .external_lex_state = 153}, [4045] = {.lex_state = 2, .external_lex_state = 153}, [4046] = {.lex_state = 2, .external_lex_state = 153}, [4047] = {.lex_state = 2, .external_lex_state = 153}, [4048] = {.lex_state = 2, .external_lex_state = 153}, - [4049] = {.lex_state = 2, .external_lex_state = 153}, + [4049] = {.lex_state = 0, .external_lex_state = 146}, [4050] = {.lex_state = 2, .external_lex_state = 153}, [4051] = {.lex_state = 2, .external_lex_state = 153}, - [4052] = {.lex_state = 2, .external_lex_state = 97}, - [4053] = {.lex_state = 2, .external_lex_state = 153}, + [4052] = {.lex_state = 2, .external_lex_state = 96}, + [4053] = {.lex_state = 2, .external_lex_state = 96}, [4054] = {.lex_state = 2, .external_lex_state = 153}, - [4055] = {.lex_state = 2, .external_lex_state = 153}, + [4055] = {.lex_state = 2, .external_lex_state = 96}, [4056] = {.lex_state = 2, .external_lex_state = 153}, - [4057] = {.lex_state = 2, .external_lex_state = 97}, - [4058] = {.lex_state = 2, .external_lex_state = 97}, + [4057] = {.lex_state = 0, .external_lex_state = 146}, + [4058] = {.lex_state = 2, .external_lex_state = 153}, [4059] = {.lex_state = 2, .external_lex_state = 153}, - [4060] = {.lex_state = 2, .external_lex_state = 97}, + [4060] = {.lex_state = 2, .external_lex_state = 96}, [4061] = {.lex_state = 2, .external_lex_state = 153}, - [4062] = {.lex_state = 2, .external_lex_state = 153}, + [4062] = {.lex_state = 2, .external_lex_state = 96}, [4063] = {.lex_state = 2, .external_lex_state = 153}, [4064] = {.lex_state = 2, .external_lex_state = 153}, [4065] = {.lex_state = 2, .external_lex_state = 153}, [4066] = {.lex_state = 2, .external_lex_state = 153}, - [4067] = {.lex_state = 2, .external_lex_state = 97}, + [4067] = {.lex_state = 2, .external_lex_state = 153}, [4068] = {.lex_state = 2, .external_lex_state = 153}, [4069] = {.lex_state = 2, .external_lex_state = 153}, [4070] = {.lex_state = 2, .external_lex_state = 153}, - [4071] = {.lex_state = 2, .external_lex_state = 153}, + [4071] = {.lex_state = 2, .external_lex_state = 96}, [4072] = {.lex_state = 2, .external_lex_state = 153}, [4073] = {.lex_state = 2, .external_lex_state = 153}, [4074] = {.lex_state = 2, .external_lex_state = 153}, @@ -16754,27 +17179,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4076] = {.lex_state = 2, .external_lex_state = 153}, [4077] = {.lex_state = 2, .external_lex_state = 153}, [4078] = {.lex_state = 2, .external_lex_state = 153}, - [4079] = {.lex_state = 2, .external_lex_state = 97}, - [4080] = {.lex_state = 2, .external_lex_state = 97}, - [4081] = {.lex_state = 2, .external_lex_state = 97}, + [4079] = {.lex_state = 2, .external_lex_state = 96}, + [4080] = {.lex_state = 2, .external_lex_state = 153}, + [4081] = {.lex_state = 2, .external_lex_state = 153}, [4082] = {.lex_state = 2, .external_lex_state = 153}, [4083] = {.lex_state = 2, .external_lex_state = 153}, - [4084] = {.lex_state = 2, .external_lex_state = 153}, + [4084] = {.lex_state = 0, .external_lex_state = 146}, [4085] = {.lex_state = 2, .external_lex_state = 153}, - [4086] = {.lex_state = 2, .external_lex_state = 97}, + [4086] = {.lex_state = 2, .external_lex_state = 153}, [4087] = {.lex_state = 2, .external_lex_state = 153}, - [4088] = {.lex_state = 2, .external_lex_state = 97}, - [4089] = {.lex_state = 2, .external_lex_state = 97}, - [4090] = {.lex_state = 2, .external_lex_state = 97}, - [4091] = {.lex_state = 2, .external_lex_state = 97}, + [4088] = {.lex_state = 2, .external_lex_state = 153}, + [4089] = {.lex_state = 2, .external_lex_state = 153}, + [4090] = {.lex_state = 2, .external_lex_state = 96}, + [4091] = {.lex_state = 0, .external_lex_state = 146}, [4092] = {.lex_state = 2, .external_lex_state = 153}, [4093] = {.lex_state = 2, .external_lex_state = 153}, [4094] = {.lex_state = 2, .external_lex_state = 153}, [4095] = {.lex_state = 2, .external_lex_state = 153}, [4096] = {.lex_state = 2, .external_lex_state = 153}, - [4097] = {.lex_state = 2, .external_lex_state = 97}, + [4097] = {.lex_state = 2, .external_lex_state = 153}, [4098] = {.lex_state = 2, .external_lex_state = 153}, - [4099] = {.lex_state = 2, .external_lex_state = 97}, + [4099] = {.lex_state = 2, .external_lex_state = 153}, [4100] = {.lex_state = 2, .external_lex_state = 153}, [4101] = {.lex_state = 2, .external_lex_state = 153}, [4102] = {.lex_state = 2, .external_lex_state = 153}, @@ -16790,28 +17215,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4112] = {.lex_state = 2, .external_lex_state = 153}, [4113] = {.lex_state = 2, .external_lex_state = 153}, [4114] = {.lex_state = 2, .external_lex_state = 153}, - [4115] = {.lex_state = 2, .external_lex_state = 153}, - [4116] = {.lex_state = 2, .external_lex_state = 97}, + [4115] = {.lex_state = 2, .external_lex_state = 96}, + [4116] = {.lex_state = 2, .external_lex_state = 153}, [4117] = {.lex_state = 2, .external_lex_state = 153}, [4118] = {.lex_state = 2, .external_lex_state = 153}, - [4119] = {.lex_state = 2, .external_lex_state = 97}, + [4119] = {.lex_state = 2, .external_lex_state = 145}, [4120] = {.lex_state = 2, .external_lex_state = 153}, - [4121] = {.lex_state = 2, .external_lex_state = 97}, - [4122] = {.lex_state = 2, .external_lex_state = 153}, + [4121] = {.lex_state = 2, .external_lex_state = 153}, + [4122] = {.lex_state = 2, .external_lex_state = 96}, [4123] = {.lex_state = 2, .external_lex_state = 153}, - [4124] = {.lex_state = 2, .external_lex_state = 97}, + [4124] = {.lex_state = 2, .external_lex_state = 153}, [4125] = {.lex_state = 2, .external_lex_state = 153}, [4126] = {.lex_state = 2, .external_lex_state = 153}, [4127] = {.lex_state = 2, .external_lex_state = 153}, [4128] = {.lex_state = 2, .external_lex_state = 153}, [4129] = {.lex_state = 2, .external_lex_state = 153}, - [4130] = {.lex_state = 2, .external_lex_state = 153}, - [4131] = {.lex_state = 2, .external_lex_state = 97}, - [4132] = {.lex_state = 2, .external_lex_state = 153}, + [4130] = {.lex_state = 0, .external_lex_state = 146}, + [4131] = {.lex_state = 2, .external_lex_state = 153}, + [4132] = {.lex_state = 0, .external_lex_state = 179}, [4133] = {.lex_state = 2, .external_lex_state = 153}, [4134] = {.lex_state = 2, .external_lex_state = 153}, [4135] = {.lex_state = 2, .external_lex_state = 153}, - [4136] = {.lex_state = 2, .external_lex_state = 153}, + [4136] = {.lex_state = 2, .external_lex_state = 96}, [4137] = {.lex_state = 2, .external_lex_state = 153}, [4138] = {.lex_state = 2, .external_lex_state = 153}, [4139] = {.lex_state = 2, .external_lex_state = 153}, @@ -16823,7 +17248,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4145] = {.lex_state = 2, .external_lex_state = 153}, [4146] = {.lex_state = 2, .external_lex_state = 153}, [4147] = {.lex_state = 2, .external_lex_state = 153}, - [4148] = {.lex_state = 0, .external_lex_state = 180}, + [4148] = {.lex_state = 2, .external_lex_state = 153}, [4149] = {.lex_state = 2, .external_lex_state = 153}, [4150] = {.lex_state = 2, .external_lex_state = 153}, [4151] = {.lex_state = 2, .external_lex_state = 153}, @@ -16832,3980 +17257,4201 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4154] = {.lex_state = 2, .external_lex_state = 153}, [4155] = {.lex_state = 2, .external_lex_state = 153}, [4156] = {.lex_state = 2, .external_lex_state = 153}, - [4157] = {.lex_state = 2, .external_lex_state = 153}, + [4157] = {.lex_state = 2, .external_lex_state = 96}, [4158] = {.lex_state = 2, .external_lex_state = 153}, - [4159] = {.lex_state = 2, .external_lex_state = 153}, + [4159] = {.lex_state = 0, .external_lex_state = 179}, [4160] = {.lex_state = 2, .external_lex_state = 153}, - [4161] = {.lex_state = 2, .external_lex_state = 153}, + [4161] = {.lex_state = 2, .external_lex_state = 96}, [4162] = {.lex_state = 2, .external_lex_state = 153}, [4163] = {.lex_state = 2, .external_lex_state = 153}, - [4164] = {.lex_state = 2, .external_lex_state = 97}, + [4164] = {.lex_state = 2, .external_lex_state = 153}, [4165] = {.lex_state = 2, .external_lex_state = 153}, [4166] = {.lex_state = 2, .external_lex_state = 153}, - [4167] = {.lex_state = 2, .external_lex_state = 153}, + [4167] = {.lex_state = 2, .external_lex_state = 96}, [4168] = {.lex_state = 2, .external_lex_state = 153}, [4169] = {.lex_state = 2, .external_lex_state = 153}, [4170] = {.lex_state = 2, .external_lex_state = 153}, - [4171] = {.lex_state = 0, .external_lex_state = 180}, - [4172] = {.lex_state = 2, .external_lex_state = 97}, - [4173] = {.lex_state = 2, .external_lex_state = 97}, + [4171] = {.lex_state = 2, .external_lex_state = 153}, + [4172] = {.lex_state = 2, .external_lex_state = 96}, + [4173] = {.lex_state = 2, .external_lex_state = 153}, [4174] = {.lex_state = 2, .external_lex_state = 153}, [4175] = {.lex_state = 2, .external_lex_state = 153}, - [4176] = {.lex_state = 0, .external_lex_state = 180}, + [4176] = {.lex_state = 2, .external_lex_state = 153}, [4177] = {.lex_state = 2, .external_lex_state = 153}, [4178] = {.lex_state = 2, .external_lex_state = 153}, - [4179] = {.lex_state = 2, .external_lex_state = 97}, - [4180] = {.lex_state = 0, .external_lex_state = 146}, - [4181] = {.lex_state = 2, .external_lex_state = 103}, - [4182] = {.lex_state = 2, .external_lex_state = 103}, - [4183] = {.lex_state = 2, .external_lex_state = 103}, - [4184] = {.lex_state = 2, .external_lex_state = 103}, - [4185] = {.lex_state = 2, .external_lex_state = 103}, - [4186] = {.lex_state = 0, .external_lex_state = 146}, - [4187] = {.lex_state = 2, .external_lex_state = 103}, - [4188] = {.lex_state = 2, .external_lex_state = 103}, - [4189] = {.lex_state = 2, .external_lex_state = 103}, - [4190] = {.lex_state = 0, .external_lex_state = 146}, - [4191] = {.lex_state = 0, .external_lex_state = 146}, - [4192] = {.lex_state = 0, .external_lex_state = 146}, - [4193] = {.lex_state = 0, .external_lex_state = 146}, - [4194] = {.lex_state = 2, .external_lex_state = 103}, - [4195] = {.lex_state = 2, .external_lex_state = 103}, - [4196] = {.lex_state = 2, .external_lex_state = 103}, - [4197] = {.lex_state = 2, .external_lex_state = 103}, - [4198] = {.lex_state = 2, .external_lex_state = 103}, - [4199] = {.lex_state = 2, .external_lex_state = 103}, - [4200] = {.lex_state = 2, .external_lex_state = 103}, - [4201] = {.lex_state = 0, .external_lex_state = 146}, - [4202] = {.lex_state = 0, .external_lex_state = 146}, - [4203] = {.lex_state = 2, .external_lex_state = 103}, - [4204] = {.lex_state = 2, .external_lex_state = 103}, - [4205] = {.lex_state = 2, .external_lex_state = 103}, - [4206] = {.lex_state = 2, .external_lex_state = 103}, - [4207] = {.lex_state = 2, .external_lex_state = 181}, - [4208] = {.lex_state = 2, .external_lex_state = 103}, - [4209] = {.lex_state = 2, .external_lex_state = 182}, - [4210] = {.lex_state = 2, .external_lex_state = 103}, - [4211] = {.lex_state = 2, .external_lex_state = 103}, - [4212] = {.lex_state = 2, .external_lex_state = 103}, - [4213] = {.lex_state = 0, .external_lex_state = 146}, - [4214] = {.lex_state = 2, .external_lex_state = 103}, - [4215] = {.lex_state = 2, .external_lex_state = 103}, - [4216] = {.lex_state = 0, .external_lex_state = 146}, - [4217] = {.lex_state = 0, .external_lex_state = 146}, - [4218] = {.lex_state = 2, .external_lex_state = 103}, - [4219] = {.lex_state = 2, .external_lex_state = 103}, - [4220] = {.lex_state = 2, .external_lex_state = 103}, - [4221] = {.lex_state = 2, .external_lex_state = 103}, - [4222] = {.lex_state = 2, .external_lex_state = 103}, - [4223] = {.lex_state = 2, .external_lex_state = 103}, - [4224] = {.lex_state = 0, .external_lex_state = 146}, - [4225] = {.lex_state = 0, .external_lex_state = 146}, - [4226] = {.lex_state = 0, .external_lex_state = 146}, - [4227] = {.lex_state = 0, .external_lex_state = 146}, - [4228] = {.lex_state = 2, .external_lex_state = 103}, - [4229] = {.lex_state = 2, .external_lex_state = 103}, - [4230] = {.lex_state = 0, .external_lex_state = 146}, - [4231] = {.lex_state = 2, .external_lex_state = 103}, - [4232] = {.lex_state = 2, .external_lex_state = 103}, - [4233] = {.lex_state = 2, .external_lex_state = 103}, - [4234] = {.lex_state = 2, .external_lex_state = 103}, - [4235] = {.lex_state = 0, .external_lex_state = 146}, - [4236] = {.lex_state = 0, .external_lex_state = 146}, - [4237] = {.lex_state = 0, .external_lex_state = 146}, - [4238] = {.lex_state = 0, .external_lex_state = 146}, - [4239] = {.lex_state = 0, .external_lex_state = 146}, - [4240] = {.lex_state = 2, .external_lex_state = 103}, - [4241] = {.lex_state = 0, .external_lex_state = 146}, - [4242] = {.lex_state = 0, .external_lex_state = 146}, - [4243] = {.lex_state = 0, .external_lex_state = 146}, - [4244] = {.lex_state = 0, .external_lex_state = 146}, - [4245] = {.lex_state = 0, .external_lex_state = 146}, - [4246] = {.lex_state = 0, .external_lex_state = 146}, - [4247] = {.lex_state = 0, .external_lex_state = 146}, - [4248] = {.lex_state = 2, .external_lex_state = 103}, - [4249] = {.lex_state = 0, .external_lex_state = 146}, - [4250] = {.lex_state = 0, .external_lex_state = 183}, - [4251] = {.lex_state = 0, .external_lex_state = 183}, - [4252] = {.lex_state = 0, .external_lex_state = 183}, - [4253] = {.lex_state = 0, .external_lex_state = 184}, - [4254] = {.lex_state = 2, .external_lex_state = 185}, - [4255] = {.lex_state = 0, .external_lex_state = 183}, - [4256] = {.lex_state = 0, .external_lex_state = 183}, - [4257] = {.lex_state = 0, .external_lex_state = 183}, - [4258] = {.lex_state = 0, .external_lex_state = 186}, - [4259] = {.lex_state = 0, .external_lex_state = 183}, - [4260] = {.lex_state = 2, .external_lex_state = 187}, - [4261] = {.lex_state = 0, .external_lex_state = 154}, - [4262] = {.lex_state = 0, .external_lex_state = 183}, - [4263] = {.lex_state = 2, .external_lex_state = 136}, - [4264] = {.lex_state = 0, .external_lex_state = 154}, - [4265] = {.lex_state = 0, .external_lex_state = 154}, - [4266] = {.lex_state = 2, .external_lex_state = 136}, - [4267] = {.lex_state = 0, .external_lex_state = 157}, - [4268] = {.lex_state = 2, .external_lex_state = 136}, - [4269] = {.lex_state = 2, .external_lex_state = 136}, - [4270] = {.lex_state = 0, .external_lex_state = 154}, - [4271] = {.lex_state = 0, .external_lex_state = 154}, - [4272] = {.lex_state = 2, .external_lex_state = 136}, - [4273] = {.lex_state = 2, .external_lex_state = 136}, - [4274] = {.lex_state = 2, .external_lex_state = 136}, - [4275] = {.lex_state = 0, .external_lex_state = 154}, - [4276] = {.lex_state = 0, .external_lex_state = 154}, - [4277] = {.lex_state = 2, .external_lex_state = 136}, - [4278] = {.lex_state = 0, .external_lex_state = 154}, - [4279] = {.lex_state = 2, .external_lex_state = 136}, - [4280] = {.lex_state = 0, .external_lex_state = 154}, - [4281] = {.lex_state = 0, .external_lex_state = 154}, - [4282] = {.lex_state = 0, .external_lex_state = 154}, - [4283] = {.lex_state = 0, .external_lex_state = 154}, - [4284] = {.lex_state = 0, .external_lex_state = 154}, - [4285] = {.lex_state = 0, .external_lex_state = 156}, - [4286] = {.lex_state = 0, .external_lex_state = 154}, - [4287] = {.lex_state = 0, .external_lex_state = 154}, - [4288] = {.lex_state = 0, .external_lex_state = 154}, - [4289] = {.lex_state = 0, .external_lex_state = 154}, - [4290] = {.lex_state = 2, .external_lex_state = 136}, - [4291] = {.lex_state = 0, .external_lex_state = 158}, - [4292] = {.lex_state = 0, .external_lex_state = 154}, - [4293] = {.lex_state = 0, .external_lex_state = 154}, - [4294] = {.lex_state = 2, .external_lex_state = 136}, - [4295] = {.lex_state = 0, .external_lex_state = 154}, - [4296] = {.lex_state = 2, .external_lex_state = 136}, - [4297] = {.lex_state = 0, .external_lex_state = 154}, - [4298] = {.lex_state = 2, .external_lex_state = 136}, - [4299] = {.lex_state = 0, .external_lex_state = 154}, - [4300] = {.lex_state = 0, .external_lex_state = 154}, - [4301] = {.lex_state = 0, .external_lex_state = 154}, - [4302] = {.lex_state = 0, .external_lex_state = 154}, - [4303] = {.lex_state = 0, .external_lex_state = 154}, - [4304] = {.lex_state = 0, .external_lex_state = 154}, - [4305] = {.lex_state = 0, .external_lex_state = 154}, - [4306] = {.lex_state = 0, .external_lex_state = 157}, - [4307] = {.lex_state = 0, .external_lex_state = 158}, - [4308] = {.lex_state = 0, .external_lex_state = 188}, - [4309] = {.lex_state = 0, .external_lex_state = 188}, - [4310] = {.lex_state = 0, .external_lex_state = 158}, - [4311] = {.lex_state = 0, .external_lex_state = 158}, - [4312] = {.lex_state = 0, .external_lex_state = 158}, - [4313] = {.lex_state = 0, .external_lex_state = 157}, - [4314] = {.lex_state = 0, .external_lex_state = 158}, - [4315] = {.lex_state = 0, .external_lex_state = 158}, - [4316] = {.lex_state = 0, .external_lex_state = 158}, - [4317] = {.lex_state = 0, .external_lex_state = 157}, - [4318] = {.lex_state = 0, .external_lex_state = 157}, - [4319] = {.lex_state = 0, .external_lex_state = 157}, - [4320] = {.lex_state = 0, .external_lex_state = 157}, - [4321] = {.lex_state = 0, .external_lex_state = 157}, - [4322] = {.lex_state = 0, .external_lex_state = 157}, - [4323] = {.lex_state = 0, .external_lex_state = 188}, - [4324] = {.lex_state = 0, .external_lex_state = 160}, - [4325] = {.lex_state = 0, .external_lex_state = 157}, - [4326] = {.lex_state = 0, .external_lex_state = 157}, - [4327] = {.lex_state = 0, .external_lex_state = 158}, - [4328] = {.lex_state = 0, .external_lex_state = 156}, - [4329] = {.lex_state = 0, .external_lex_state = 188}, - [4330] = {.lex_state = 0, .external_lex_state = 156}, - [4331] = {.lex_state = 0, .external_lex_state = 157}, - [4332] = {.lex_state = 0, .external_lex_state = 157}, - [4333] = {.lex_state = 0, .external_lex_state = 158}, - [4334] = {.lex_state = 0, .external_lex_state = 156}, - [4335] = {.lex_state = 0, .external_lex_state = 189}, - [4336] = {.lex_state = 0, .external_lex_state = 156}, - [4337] = {.lex_state = 0, .external_lex_state = 190}, - [4338] = {.lex_state = 0, .external_lex_state = 157}, - [4339] = {.lex_state = 0, .external_lex_state = 156}, - [4340] = {.lex_state = 0, .external_lex_state = 158}, - [4341] = {.lex_state = 0, .external_lex_state = 156}, - [4342] = {.lex_state = 0, .external_lex_state = 158}, - [4343] = {.lex_state = 0, .external_lex_state = 157}, - [4344] = {.lex_state = 0, .external_lex_state = 156}, - [4345] = {.lex_state = 0, .external_lex_state = 156}, - [4346] = {.lex_state = 0, .external_lex_state = 157}, - [4347] = {.lex_state = 2, .external_lex_state = 159}, - [4348] = {.lex_state = 0, .external_lex_state = 156}, - [4349] = {.lex_state = 0, .external_lex_state = 156}, - [4350] = {.lex_state = 0, .external_lex_state = 156}, - [4351] = {.lex_state = 0, .external_lex_state = 157}, - [4352] = {.lex_state = 0, .external_lex_state = 156}, - [4353] = {.lex_state = 0, .external_lex_state = 157}, - [4354] = {.lex_state = 0, .external_lex_state = 156}, - [4355] = {.lex_state = 0, .external_lex_state = 164}, - [4356] = {.lex_state = 0, .external_lex_state = 156}, - [4357] = {.lex_state = 0, .external_lex_state = 168}, - [4358] = {.lex_state = 0, .external_lex_state = 156}, - [4359] = {.lex_state = 0, .external_lex_state = 156}, - [4360] = {.lex_state = 0, .external_lex_state = 165}, - [4361] = {.lex_state = 0, .external_lex_state = 158}, - [4362] = {.lex_state = 0, .external_lex_state = 156}, - [4363] = {.lex_state = 0, .external_lex_state = 156}, - [4364] = {.lex_state = 0, .external_lex_state = 156}, - [4365] = {.lex_state = 0, .external_lex_state = 156}, - [4366] = {.lex_state = 0, .external_lex_state = 158}, - [4367] = {.lex_state = 0, .external_lex_state = 158}, - [4368] = {.lex_state = 0, .external_lex_state = 157}, - [4369] = {.lex_state = 0, .external_lex_state = 158}, - [4370] = {.lex_state = 0, .external_lex_state = 191}, - [4371] = {.lex_state = 0, .external_lex_state = 158}, - [4372] = {.lex_state = 0, .external_lex_state = 190}, - [4373] = {.lex_state = 0, .external_lex_state = 156}, - [4374] = {.lex_state = 0, .external_lex_state = 156}, - [4375] = {.lex_state = 0, .external_lex_state = 157}, - [4376] = {.lex_state = 0, .external_lex_state = 188}, - [4377] = {.lex_state = 0, .external_lex_state = 156}, - [4378] = {.lex_state = 0, .external_lex_state = 157}, - [4379] = {.lex_state = 0, .external_lex_state = 158}, - [4380] = {.lex_state = 0, .external_lex_state = 158}, - [4381] = {.lex_state = 0, .external_lex_state = 158}, - [4382] = {.lex_state = 0, .external_lex_state = 156}, - [4383] = {.lex_state = 0, .external_lex_state = 158}, - [4384] = {.lex_state = 0, .external_lex_state = 158}, - [4385] = {.lex_state = 0, .external_lex_state = 156}, - [4386] = {.lex_state = 0, .external_lex_state = 158}, - [4387] = {.lex_state = 2, .external_lex_state = 192}, - [4388] = {.lex_state = 0, .external_lex_state = 157}, - [4389] = {.lex_state = 0, .external_lex_state = 156}, - [4390] = {.lex_state = 0, .external_lex_state = 158}, - [4391] = {.lex_state = 0, .external_lex_state = 158}, - [4392] = {.lex_state = 0, .external_lex_state = 157}, - [4393] = {.lex_state = 0, .external_lex_state = 158}, - [4394] = {.lex_state = 0, .external_lex_state = 157}, - [4395] = {.lex_state = 0, .external_lex_state = 157}, - [4396] = {.lex_state = 0, .external_lex_state = 156}, - [4397] = {.lex_state = 0, .external_lex_state = 158}, - [4398] = {.lex_state = 0, .external_lex_state = 157}, - [4399] = {.lex_state = 0, .external_lex_state = 157}, - [4400] = {.lex_state = 0, .external_lex_state = 158}, - [4401] = {.lex_state = 0, .external_lex_state = 157}, - [4402] = {.lex_state = 0, .external_lex_state = 188}, - [4403] = {.lex_state = 0, .external_lex_state = 164}, - [4404] = {.lex_state = 0, .external_lex_state = 165}, - [4405] = {.lex_state = 0, .external_lex_state = 160}, - [4406] = {.lex_state = 0, .external_lex_state = 164}, - [4407] = {.lex_state = 0, .external_lex_state = 188}, - [4408] = {.lex_state = 0, .external_lex_state = 164}, - [4409] = {.lex_state = 0, .external_lex_state = 160}, - [4410] = {.lex_state = 0, .external_lex_state = 160}, - [4411] = {.lex_state = 0, .external_lex_state = 164}, - [4412] = {.lex_state = 0, .external_lex_state = 164}, - [4413] = {.lex_state = 0, .external_lex_state = 164}, - [4414] = {.lex_state = 0, .external_lex_state = 164}, - [4415] = {.lex_state = 0, .external_lex_state = 160}, - [4416] = {.lex_state = 0, .external_lex_state = 164}, - [4417] = {.lex_state = 0, .external_lex_state = 164}, - [4418] = {.lex_state = 0, .external_lex_state = 165}, - [4419] = {.lex_state = 0, .external_lex_state = 160}, - [4420] = {.lex_state = 0, .external_lex_state = 193}, - [4421] = {.lex_state = 0, .external_lex_state = 168}, - [4422] = {.lex_state = 0, .external_lex_state = 164}, - [4423] = {.lex_state = 0, .external_lex_state = 165}, - [4424] = {.lex_state = 0, .external_lex_state = 165}, - [4425] = {.lex_state = 0, .external_lex_state = 164}, - [4426] = {.lex_state = 0, .external_lex_state = 165}, - [4427] = {.lex_state = 0, .external_lex_state = 194}, - [4428] = {.lex_state = 0, .external_lex_state = 164}, - [4429] = {.lex_state = 0, .external_lex_state = 165}, - [4430] = {.lex_state = 0, .external_lex_state = 195}, - [4431] = {.lex_state = 0, .external_lex_state = 193}, - [4432] = {.lex_state = 0, .external_lex_state = 160}, - [4433] = {.lex_state = 0, .external_lex_state = 164}, - [4434] = {.lex_state = 0, .external_lex_state = 160}, - [4435] = {.lex_state = 0, .external_lex_state = 164}, - [4436] = {.lex_state = 0, .external_lex_state = 165}, - [4437] = {.lex_state = 0, .external_lex_state = 165}, - [4438] = {.lex_state = 0, .external_lex_state = 160}, - [4439] = {.lex_state = 0, .external_lex_state = 165}, - [4440] = {.lex_state = 0, .external_lex_state = 165}, - [4441] = {.lex_state = 0, .external_lex_state = 174}, - [4442] = {.lex_state = 0, .external_lex_state = 164}, - [4443] = {.lex_state = 0, .external_lex_state = 194}, - [4444] = {.lex_state = 0, .external_lex_state = 165}, - [4445] = {.lex_state = 0, .external_lex_state = 170}, - [4446] = {.lex_state = 0, .external_lex_state = 165}, - [4447] = {.lex_state = 0, .external_lex_state = 165}, - [4448] = {.lex_state = 0, .external_lex_state = 194}, - [4449] = {.lex_state = 0, .external_lex_state = 165}, - [4450] = {.lex_state = 0, .external_lex_state = 160}, - [4451] = {.lex_state = 0, .external_lex_state = 164}, - [4452] = {.lex_state = 0, .external_lex_state = 164}, - [4453] = {.lex_state = 0, .external_lex_state = 165}, - [4454] = {.lex_state = 0, .external_lex_state = 188}, - [4455] = {.lex_state = 0, .external_lex_state = 165}, - [4456] = {.lex_state = 0, .external_lex_state = 169}, - [4457] = {.lex_state = 0, .external_lex_state = 165}, - [4458] = {.lex_state = 0, .external_lex_state = 165}, - [4459] = {.lex_state = 0, .external_lex_state = 164}, - [4460] = {.lex_state = 0, .external_lex_state = 164}, - [4461] = {.lex_state = 0, .external_lex_state = 165}, - [4462] = {.lex_state = 2, .external_lex_state = 148}, - [4463] = {.lex_state = 0, .external_lex_state = 165}, - [4464] = {.lex_state = 0, .external_lex_state = 165}, - [4465] = {.lex_state = 0, .external_lex_state = 165}, - [4466] = {.lex_state = 0, .external_lex_state = 164}, - [4467] = {.lex_state = 0, .external_lex_state = 164}, - [4468] = {.lex_state = 0, .external_lex_state = 165}, - [4469] = {.lex_state = 0, .external_lex_state = 165}, - [4470] = {.lex_state = 0, .external_lex_state = 164}, - [4471] = {.lex_state = 0, .external_lex_state = 175}, - [4472] = {.lex_state = 0, .external_lex_state = 160}, - [4473] = {.lex_state = 0, .external_lex_state = 165}, - [4474] = {.lex_state = 0, .external_lex_state = 160}, - [4475] = {.lex_state = 0, .external_lex_state = 160}, - [4476] = {.lex_state = 0, .external_lex_state = 160}, - [4477] = {.lex_state = 0, .external_lex_state = 160}, - [4478] = {.lex_state = 0, .external_lex_state = 160}, - [4479] = {.lex_state = 0, .external_lex_state = 160}, - [4480] = {.lex_state = 0, .external_lex_state = 160}, - [4481] = {.lex_state = 0, .external_lex_state = 160}, - [4482] = {.lex_state = 0, .external_lex_state = 165}, - [4483] = {.lex_state = 0, .external_lex_state = 160}, - [4484] = {.lex_state = 0, .external_lex_state = 160}, - [4485] = {.lex_state = 0, .external_lex_state = 146}, - [4486] = {.lex_state = 0, .external_lex_state = 160}, - [4487] = {.lex_state = 0, .external_lex_state = 160}, - [4488] = {.lex_state = 0, .external_lex_state = 160}, - [4489] = {.lex_state = 0, .external_lex_state = 160}, - [4490] = {.lex_state = 0, .external_lex_state = 160}, - [4491] = {.lex_state = 0, .external_lex_state = 160}, - [4492] = {.lex_state = 0, .external_lex_state = 164}, - [4493] = {.lex_state = 0, .external_lex_state = 191}, - [4494] = {.lex_state = 0, .external_lex_state = 164}, - [4495] = {.lex_state = 0, .external_lex_state = 165}, - [4496] = {.lex_state = 0, .external_lex_state = 173}, - [4497] = {.lex_state = 0, .external_lex_state = 160}, - [4498] = {.lex_state = 0, .external_lex_state = 171}, - [4499] = {.lex_state = 0, .external_lex_state = 164}, - [4500] = {.lex_state = 0, .external_lex_state = 194}, - [4501] = {.lex_state = 0, .external_lex_state = 164}, - [4502] = {.lex_state = 0, .external_lex_state = 164}, - [4503] = {.lex_state = 0, .external_lex_state = 196}, - [4504] = {.lex_state = 0, .external_lex_state = 197}, - [4505] = {.lex_state = 0, .external_lex_state = 198}, - [4506] = {.lex_state = 0, .external_lex_state = 169}, - [4507] = {.lex_state = 0, .external_lex_state = 174}, - [4508] = {.lex_state = 0, .external_lex_state = 174}, - [4509] = {.lex_state = 0, .external_lex_state = 193}, - [4510] = {.lex_state = 0, .external_lex_state = 174}, - [4511] = {.lex_state = 0, .external_lex_state = 174}, - [4512] = {.lex_state = 0, .external_lex_state = 174}, - [4513] = {.lex_state = 0, .external_lex_state = 171}, - [4514] = {.lex_state = 0, .external_lex_state = 199}, - [4515] = {.lex_state = 0, .external_lex_state = 170}, - [4516] = {.lex_state = 0, .external_lex_state = 174}, - [4517] = {.lex_state = 0, .external_lex_state = 193}, - [4518] = {.lex_state = 0, .external_lex_state = 169}, - [4519] = {.lex_state = 0, .external_lex_state = 169}, - [4520] = {.lex_state = 0, .external_lex_state = 169}, - [4521] = {.lex_state = 0, .external_lex_state = 174}, - [4522] = {.lex_state = 0, .external_lex_state = 171}, - [4523] = {.lex_state = 0, .external_lex_state = 174}, - [4524] = {.lex_state = 0, .external_lex_state = 169}, - [4525] = {.lex_state = 0, .external_lex_state = 199}, - [4526] = {.lex_state = 0, .external_lex_state = 174}, - [4527] = {.lex_state = 0, .external_lex_state = 169}, - [4528] = {.lex_state = 0, .external_lex_state = 174}, - [4529] = {.lex_state = 0, .external_lex_state = 174}, - [4530] = {.lex_state = 0, .external_lex_state = 174}, - [4531] = {.lex_state = 0, .external_lex_state = 199}, - [4532] = {.lex_state = 0, .external_lex_state = 149}, - [4533] = {.lex_state = 0, .external_lex_state = 169}, - [4534] = {.lex_state = 0, .external_lex_state = 174}, - [4535] = {.lex_state = 0, .external_lex_state = 174}, - [4536] = {.lex_state = 0, .external_lex_state = 174}, - [4537] = {.lex_state = 0, .external_lex_state = 174}, - [4538] = {.lex_state = 0, .external_lex_state = 171}, - [4539] = {.lex_state = 0, .external_lex_state = 169}, - [4540] = {.lex_state = 0, .external_lex_state = 169}, - [4541] = {.lex_state = 0, .external_lex_state = 174}, - [4542] = {.lex_state = 0, .external_lex_state = 169}, - [4543] = {.lex_state = 0, .external_lex_state = 176}, - [4544] = {.lex_state = 0, .external_lex_state = 174}, - [4545] = {.lex_state = 0, .external_lex_state = 168}, - [4546] = {.lex_state = 0, .external_lex_state = 149}, - [4547] = {.lex_state = 0, .external_lex_state = 169}, - [4548] = {.lex_state = 0, .external_lex_state = 199}, - [4549] = {.lex_state = 0, .external_lex_state = 174}, - [4550] = {.lex_state = 0, .external_lex_state = 169}, - [4551] = {.lex_state = 0, .external_lex_state = 169}, - [4552] = {.lex_state = 0, .external_lex_state = 200}, - [4553] = {.lex_state = 0, .external_lex_state = 174}, - [4554] = {.lex_state = 0, .external_lex_state = 149}, - [4555] = {.lex_state = 0, .external_lex_state = 174}, - [4556] = {.lex_state = 0, .external_lex_state = 169}, - [4557] = {.lex_state = 0, .external_lex_state = 174}, - [4558] = {.lex_state = 0, .external_lex_state = 169}, - [4559] = {.lex_state = 0, .external_lex_state = 169}, - [4560] = {.lex_state = 0, .external_lex_state = 173}, - [4561] = {.lex_state = 0, .external_lex_state = 168}, - [4562] = {.lex_state = 0, .external_lex_state = 168}, - [4563] = {.lex_state = 0, .external_lex_state = 198}, - [4564] = {.lex_state = 0, .external_lex_state = 201}, - [4565] = {.lex_state = 0, .external_lex_state = 171}, - [4566] = {.lex_state = 0, .external_lex_state = 168}, - [4567] = {.lex_state = 0, .external_lex_state = 171}, - [4568] = {.lex_state = 0, .external_lex_state = 170}, - [4569] = {.lex_state = 0, .external_lex_state = 168}, - [4570] = {.lex_state = 0, .external_lex_state = 168}, - [4571] = {.lex_state = 2, .external_lex_state = 153}, - [4572] = {.lex_state = 0, .external_lex_state = 168}, - [4573] = {.lex_state = 0, .external_lex_state = 171}, - [4574] = {.lex_state = 0, .external_lex_state = 171}, - [4575] = {.lex_state = 0, .external_lex_state = 149}, - [4576] = {.lex_state = 0, .external_lex_state = 168}, - [4577] = {.lex_state = 0, .external_lex_state = 168}, - [4578] = {.lex_state = 0, .external_lex_state = 169}, - [4579] = {.lex_state = 0, .external_lex_state = 171}, - [4580] = {.lex_state = 0, .external_lex_state = 173}, - [4581] = {.lex_state = 0, .external_lex_state = 168}, - [4582] = {.lex_state = 0, .external_lex_state = 170}, - [4583] = {.lex_state = 0, .external_lex_state = 168}, - [4584] = {.lex_state = 0, .external_lex_state = 170}, - [4585] = {.lex_state = 0, .external_lex_state = 171}, - [4586] = {.lex_state = 0, .external_lex_state = 193}, - [4587] = {.lex_state = 0, .external_lex_state = 168}, - [4588] = {.lex_state = 0, .external_lex_state = 170}, - [4589] = {.lex_state = 0, .external_lex_state = 201}, - [4590] = {.lex_state = 0, .external_lex_state = 170}, - [4591] = {.lex_state = 0, .external_lex_state = 202}, - [4592] = {.lex_state = 0, .external_lex_state = 168}, - [4593] = {.lex_state = 0, .external_lex_state = 193}, - [4594] = {.lex_state = 0, .external_lex_state = 169}, - [4595] = {.lex_state = 0, .external_lex_state = 168}, - [4596] = {.lex_state = 0, .external_lex_state = 174}, - [4597] = {.lex_state = 0, .external_lex_state = 171}, - [4598] = {.lex_state = 0, .external_lex_state = 193}, - [4599] = {.lex_state = 0, .external_lex_state = 168}, - [4600] = {.lex_state = 0, .external_lex_state = 174}, - [4601] = {.lex_state = 0, .external_lex_state = 168}, - [4602] = {.lex_state = 0, .external_lex_state = 168}, - [4603] = {.lex_state = 0, .external_lex_state = 168}, - [4604] = {.lex_state = 0, .external_lex_state = 168}, - [4605] = {.lex_state = 0, .external_lex_state = 168}, - [4606] = {.lex_state = 0, .external_lex_state = 171}, - [4607] = {.lex_state = 0, .external_lex_state = 169}, - [4608] = {.lex_state = 0, .external_lex_state = 149}, - [4609] = {.lex_state = 0, .external_lex_state = 169}, - [4610] = {.lex_state = 0, .external_lex_state = 171}, - [4611] = {.lex_state = 0, .external_lex_state = 190}, - [4612] = {.lex_state = 0, .external_lex_state = 170}, - [4613] = {.lex_state = 0, .external_lex_state = 168}, - [4614] = {.lex_state = 0, .external_lex_state = 168}, - [4615] = {.lex_state = 0, .external_lex_state = 170}, - [4616] = {.lex_state = 0, .external_lex_state = 170}, - [4617] = {.lex_state = 0, .external_lex_state = 193}, - [4618] = {.lex_state = 0, .external_lex_state = 170}, - [4619] = {.lex_state = 0, .external_lex_state = 168}, - [4620] = {.lex_state = 2, .external_lex_state = 177}, - [4621] = {.lex_state = 0, .external_lex_state = 171}, - [4622] = {.lex_state = 0, .external_lex_state = 171}, - [4623] = {.lex_state = 2, .external_lex_state = 177}, - [4624] = {.lex_state = 0, .external_lex_state = 169}, - [4625] = {.lex_state = 0, .external_lex_state = 170}, - [4626] = {.lex_state = 0, .external_lex_state = 171}, - [4627] = {.lex_state = 0, .external_lex_state = 170}, - [4628] = {.lex_state = 0, .external_lex_state = 170}, - [4629] = {.lex_state = 0, .external_lex_state = 199}, - [4630] = {.lex_state = 0, .external_lex_state = 168}, - [4631] = {.lex_state = 0, .external_lex_state = 170}, - [4632] = {.lex_state = 0, .external_lex_state = 171}, - [4633] = {.lex_state = 0, .external_lex_state = 171}, - [4634] = {.lex_state = 0, .external_lex_state = 170}, - [4635] = {.lex_state = 0, .external_lex_state = 170}, - [4636] = {.lex_state = 0, .external_lex_state = 168}, - [4637] = {.lex_state = 0, .external_lex_state = 203}, - [4638] = {.lex_state = 0, .external_lex_state = 149}, - [4639] = {.lex_state = 0, .external_lex_state = 168}, - [4640] = {.lex_state = 0, .external_lex_state = 171}, - [4641] = {.lex_state = 0, .external_lex_state = 171}, - [4642] = {.lex_state = 0, .external_lex_state = 198}, - [4643] = {.lex_state = 0, .external_lex_state = 169}, - [4644] = {.lex_state = 0, .external_lex_state = 169}, - [4645] = {.lex_state = 0, .external_lex_state = 171}, - [4646] = {.lex_state = 0, .external_lex_state = 149}, - [4647] = {.lex_state = 0, .external_lex_state = 168}, - [4648] = {.lex_state = 0, .external_lex_state = 170}, - [4649] = {.lex_state = 0, .external_lex_state = 171}, - [4650] = {.lex_state = 0, .external_lex_state = 169}, - [4651] = {.lex_state = 0, .external_lex_state = 171}, - [4652] = {.lex_state = 0, .external_lex_state = 171}, - [4653] = {.lex_state = 0, .external_lex_state = 204}, - [4654] = {.lex_state = 0, .external_lex_state = 203}, - [4655] = {.lex_state = 0, .external_lex_state = 171}, - [4656] = {.lex_state = 0, .external_lex_state = 149}, - [4657] = {.lex_state = 0, .external_lex_state = 149}, - [4658] = {.lex_state = 0, .external_lex_state = 173}, - [4659] = {.lex_state = 0, .external_lex_state = 173}, + [4179] = {.lex_state = 2, .external_lex_state = 153}, + [4180] = {.lex_state = 2, .external_lex_state = 96}, + [4181] = {.lex_state = 2, .external_lex_state = 153}, + [4182] = {.lex_state = 2, .external_lex_state = 96}, + [4183] = {.lex_state = 2, .external_lex_state = 96}, + [4184] = {.lex_state = 2, .external_lex_state = 96}, + [4185] = {.lex_state = 2, .external_lex_state = 153}, + [4186] = {.lex_state = 2, .external_lex_state = 153}, + [4187] = {.lex_state = 2, .external_lex_state = 153}, + [4188] = {.lex_state = 2, .external_lex_state = 153}, + [4189] = {.lex_state = 2, .external_lex_state = 153}, + [4190] = {.lex_state = 2, .external_lex_state = 153}, + [4191] = {.lex_state = 2, .external_lex_state = 153}, + [4192] = {.lex_state = 2, .external_lex_state = 96}, + [4193] = {.lex_state = 0, .external_lex_state = 179}, + [4194] = {.lex_state = 2, .external_lex_state = 153}, + [4195] = {.lex_state = 2, .external_lex_state = 153}, + [4196] = {.lex_state = 2, .external_lex_state = 153}, + [4197] = {.lex_state = 2, .external_lex_state = 153}, + [4198] = {.lex_state = 2, .external_lex_state = 153}, + [4199] = {.lex_state = 2, .external_lex_state = 153}, + [4200] = {.lex_state = 2, .external_lex_state = 153}, + [4201] = {.lex_state = 2, .external_lex_state = 153}, + [4202] = {.lex_state = 2, .external_lex_state = 153}, + [4203] = {.lex_state = 2, .external_lex_state = 153}, + [4204] = {.lex_state = 2, .external_lex_state = 153}, + [4205] = {.lex_state = 2, .external_lex_state = 153}, + [4206] = {.lex_state = 2, .external_lex_state = 153}, + [4207] = {.lex_state = 2, .external_lex_state = 153}, + [4208] = {.lex_state = 2, .external_lex_state = 153}, + [4209] = {.lex_state = 2, .external_lex_state = 153}, + [4210] = {.lex_state = 2, .external_lex_state = 153}, + [4211] = {.lex_state = 2, .external_lex_state = 153}, + [4212] = {.lex_state = 2, .external_lex_state = 153}, + [4213] = {.lex_state = 2, .external_lex_state = 96}, + [4214] = {.lex_state = 2, .external_lex_state = 153}, + [4215] = {.lex_state = 2, .external_lex_state = 153}, + [4216] = {.lex_state = 2, .external_lex_state = 96}, + [4217] = {.lex_state = 2, .external_lex_state = 153}, + [4218] = {.lex_state = 2, .external_lex_state = 96}, + [4219] = {.lex_state = 2, .external_lex_state = 153}, + [4220] = {.lex_state = 2, .external_lex_state = 96}, + [4221] = {.lex_state = 2, .external_lex_state = 153}, + [4222] = {.lex_state = 2, .external_lex_state = 153}, + [4223] = {.lex_state = 2, .external_lex_state = 153}, + [4224] = {.lex_state = 2, .external_lex_state = 153}, + [4225] = {.lex_state = 2, .external_lex_state = 153}, + [4226] = {.lex_state = 2, .external_lex_state = 153}, + [4227] = {.lex_state = 2, .external_lex_state = 153}, + [4228] = {.lex_state = 2, .external_lex_state = 153}, + [4229] = {.lex_state = 2, .external_lex_state = 96}, + [4230] = {.lex_state = 2, .external_lex_state = 153}, + [4231] = {.lex_state = 2, .external_lex_state = 153}, + [4232] = {.lex_state = 2, .external_lex_state = 153}, + [4233] = {.lex_state = 2, .external_lex_state = 153}, + [4234] = {.lex_state = 2, .external_lex_state = 153}, + [4235] = {.lex_state = 2, .external_lex_state = 153}, + [4236] = {.lex_state = 2, .external_lex_state = 153}, + [4237] = {.lex_state = 2, .external_lex_state = 153}, + [4238] = {.lex_state = 2, .external_lex_state = 96}, + [4239] = {.lex_state = 2, .external_lex_state = 153}, + [4240] = {.lex_state = 2, .external_lex_state = 153}, + [4241] = {.lex_state = 2, .external_lex_state = 153}, + [4242] = {.lex_state = 2, .external_lex_state = 153}, + [4243] = {.lex_state = 2, .external_lex_state = 153}, + [4244] = {.lex_state = 2, .external_lex_state = 153}, + [4245] = {.lex_state = 2, .external_lex_state = 153}, + [4246] = {.lex_state = 2, .external_lex_state = 96}, + [4247] = {.lex_state = 2, .external_lex_state = 96}, + [4248] = {.lex_state = 2, .external_lex_state = 153}, + [4249] = {.lex_state = 2, .external_lex_state = 153}, + [4250] = {.lex_state = 2, .external_lex_state = 153}, + [4251] = {.lex_state = 2, .external_lex_state = 153}, + [4252] = {.lex_state = 2, .external_lex_state = 153}, + [4253] = {.lex_state = 2, .external_lex_state = 153}, + [4254] = {.lex_state = 2, .external_lex_state = 153}, + [4255] = {.lex_state = 2, .external_lex_state = 153}, + [4256] = {.lex_state = 2, .external_lex_state = 153}, + [4257] = {.lex_state = 2, .external_lex_state = 153}, + [4258] = {.lex_state = 2, .external_lex_state = 153}, + [4259] = {.lex_state = 2, .external_lex_state = 153}, + [4260] = {.lex_state = 2, .external_lex_state = 153}, + [4261] = {.lex_state = 2, .external_lex_state = 153}, + [4262] = {.lex_state = 2, .external_lex_state = 153}, + [4263] = {.lex_state = 2, .external_lex_state = 153}, + [4264] = {.lex_state = 2, .external_lex_state = 153}, + [4265] = {.lex_state = 2, .external_lex_state = 153}, + [4266] = {.lex_state = 2, .external_lex_state = 153}, + [4267] = {.lex_state = 2, .external_lex_state = 153}, + [4268] = {.lex_state = 2, .external_lex_state = 153}, + [4269] = {.lex_state = 2, .external_lex_state = 153}, + [4270] = {.lex_state = 2, .external_lex_state = 153}, + [4271] = {.lex_state = 2, .external_lex_state = 96}, + [4272] = {.lex_state = 2, .external_lex_state = 153}, + [4273] = {.lex_state = 2, .external_lex_state = 153}, + [4274] = {.lex_state = 2, .external_lex_state = 153}, + [4275] = {.lex_state = 2, .external_lex_state = 180}, + [4276] = {.lex_state = 2, .external_lex_state = 153}, + [4277] = {.lex_state = 2, .external_lex_state = 153}, + [4278] = {.lex_state = 2, .external_lex_state = 153}, + [4279] = {.lex_state = 2, .external_lex_state = 153}, + [4280] = {.lex_state = 2, .external_lex_state = 153}, + [4281] = {.lex_state = 2, .external_lex_state = 153}, + [4282] = {.lex_state = 2, .external_lex_state = 153}, + [4283] = {.lex_state = 2, .external_lex_state = 153}, + [4284] = {.lex_state = 2, .external_lex_state = 153}, + [4285] = {.lex_state = 2, .external_lex_state = 153}, + [4286] = {.lex_state = 2, .external_lex_state = 153}, + [4287] = {.lex_state = 2, .external_lex_state = 153}, + [4288] = {.lex_state = 2, .external_lex_state = 153}, + [4289] = {.lex_state = 2, .external_lex_state = 153}, + [4290] = {.lex_state = 2, .external_lex_state = 153}, + [4291] = {.lex_state = 2, .external_lex_state = 153}, + [4292] = {.lex_state = 2, .external_lex_state = 153}, + [4293] = {.lex_state = 2, .external_lex_state = 153}, + [4294] = {.lex_state = 2, .external_lex_state = 153}, + [4295] = {.lex_state = 2, .external_lex_state = 153}, + [4296] = {.lex_state = 2, .external_lex_state = 153}, + [4297] = {.lex_state = 2, .external_lex_state = 153}, + [4298] = {.lex_state = 2, .external_lex_state = 153}, + [4299] = {.lex_state = 2, .external_lex_state = 96}, + [4300] = {.lex_state = 2, .external_lex_state = 153}, + [4301] = {.lex_state = 2, .external_lex_state = 153}, + [4302] = {.lex_state = 2, .external_lex_state = 153}, + [4303] = {.lex_state = 2, .external_lex_state = 153}, + [4304] = {.lex_state = 2, .external_lex_state = 96}, + [4305] = {.lex_state = 2, .external_lex_state = 153}, + [4306] = {.lex_state = 2, .external_lex_state = 153}, + [4307] = {.lex_state = 2, .external_lex_state = 153}, + [4308] = {.lex_state = 2, .external_lex_state = 153}, + [4309] = {.lex_state = 2, .external_lex_state = 153}, + [4310] = {.lex_state = 2, .external_lex_state = 153}, + [4311] = {.lex_state = 2, .external_lex_state = 153}, + [4312] = {.lex_state = 2, .external_lex_state = 153}, + [4313] = {.lex_state = 2, .external_lex_state = 96}, + [4314] = {.lex_state = 2, .external_lex_state = 153}, + [4315] = {.lex_state = 0, .external_lex_state = 146}, + [4316] = {.lex_state = 2, .external_lex_state = 102}, + [4317] = {.lex_state = 0, .external_lex_state = 146}, + [4318] = {.lex_state = 0, .external_lex_state = 146}, + [4319] = {.lex_state = 0, .external_lex_state = 146}, + [4320] = {.lex_state = 0, .external_lex_state = 146}, + [4321] = {.lex_state = 0, .external_lex_state = 146}, + [4322] = {.lex_state = 0, .external_lex_state = 146}, + [4323] = {.lex_state = 0, .external_lex_state = 146}, + [4324] = {.lex_state = 0, .external_lex_state = 146}, + [4325] = {.lex_state = 0, .external_lex_state = 146}, + [4326] = {.lex_state = 2, .external_lex_state = 181}, + [4327] = {.lex_state = 0, .external_lex_state = 146}, + [4328] = {.lex_state = 0, .external_lex_state = 146}, + [4329] = {.lex_state = 0, .external_lex_state = 146}, + [4330] = {.lex_state = 0, .external_lex_state = 146}, + [4331] = {.lex_state = 0, .external_lex_state = 146}, + [4332] = {.lex_state = 0, .external_lex_state = 146}, + [4333] = {.lex_state = 0, .external_lex_state = 146}, + [4334] = {.lex_state = 0, .external_lex_state = 146}, + [4335] = {.lex_state = 0, .external_lex_state = 146}, + [4336] = {.lex_state = 0, .external_lex_state = 146}, + [4337] = {.lex_state = 2, .external_lex_state = 182}, + [4338] = {.lex_state = 0, .external_lex_state = 146}, + [4339] = {.lex_state = 0, .external_lex_state = 146}, + [4340] = {.lex_state = 2, .external_lex_state = 102}, + [4341] = {.lex_state = 0, .external_lex_state = 146}, + [4342] = {.lex_state = 0, .external_lex_state = 146}, + [4343] = {.lex_state = 2, .external_lex_state = 102}, + [4344] = {.lex_state = 2, .external_lex_state = 102}, + [4345] = {.lex_state = 2, .external_lex_state = 102}, + [4346] = {.lex_state = 2, .external_lex_state = 102}, + [4347] = {.lex_state = 2, .external_lex_state = 102}, + [4348] = {.lex_state = 2, .external_lex_state = 102}, + [4349] = {.lex_state = 2, .external_lex_state = 102}, + [4350] = {.lex_state = 2, .external_lex_state = 102}, + [4351] = {.lex_state = 2, .external_lex_state = 102}, + [4352] = {.lex_state = 0, .external_lex_state = 146}, + [4353] = {.lex_state = 0, .external_lex_state = 146}, + [4354] = {.lex_state = 2, .external_lex_state = 102}, + [4355] = {.lex_state = 0, .external_lex_state = 146}, + [4356] = {.lex_state = 2, .external_lex_state = 102}, + [4357] = {.lex_state = 2, .external_lex_state = 102}, + [4358] = {.lex_state = 0, .external_lex_state = 146}, + [4359] = {.lex_state = 0, .external_lex_state = 146}, + [4360] = {.lex_state = 0, .external_lex_state = 146}, + [4361] = {.lex_state = 2, .external_lex_state = 102}, + [4362] = {.lex_state = 2, .external_lex_state = 102}, + [4363] = {.lex_state = 0, .external_lex_state = 146}, + [4364] = {.lex_state = 2, .external_lex_state = 102}, + [4365] = {.lex_state = 2, .external_lex_state = 102}, + [4366] = {.lex_state = 2, .external_lex_state = 102}, + [4367] = {.lex_state = 2, .external_lex_state = 102}, + [4368] = {.lex_state = 2, .external_lex_state = 102}, + [4369] = {.lex_state = 2, .external_lex_state = 102}, + [4370] = {.lex_state = 2, .external_lex_state = 102}, + [4371] = {.lex_state = 2, .external_lex_state = 102}, + [4372] = {.lex_state = 2, .external_lex_state = 102}, + [4373] = {.lex_state = 2, .external_lex_state = 102}, + [4374] = {.lex_state = 2, .external_lex_state = 102}, + [4375] = {.lex_state = 2, .external_lex_state = 102}, + [4376] = {.lex_state = 2, .external_lex_state = 102}, + [4377] = {.lex_state = 2, .external_lex_state = 102}, + [4378] = {.lex_state = 2, .external_lex_state = 102}, + [4379] = {.lex_state = 2, .external_lex_state = 102}, + [4380] = {.lex_state = 2, .external_lex_state = 102}, + [4381] = {.lex_state = 2, .external_lex_state = 102}, + [4382] = {.lex_state = 2, .external_lex_state = 102}, + [4383] = {.lex_state = 2, .external_lex_state = 102}, + [4384] = {.lex_state = 2, .external_lex_state = 102}, + [4385] = {.lex_state = 2, .external_lex_state = 102}, + [4386] = {.lex_state = 2, .external_lex_state = 102}, + [4387] = {.lex_state = 0, .external_lex_state = 183}, + [4388] = {.lex_state = 0, .external_lex_state = 183}, + [4389] = {.lex_state = 0, .external_lex_state = 183}, + [4390] = {.lex_state = 0, .external_lex_state = 152}, + [4391] = {.lex_state = 2, .external_lex_state = 184}, + [4392] = {.lex_state = 0, .external_lex_state = 183}, + [4393] = {.lex_state = 0, .external_lex_state = 185}, + [4394] = {.lex_state = 2, .external_lex_state = 186}, + [4395] = {.lex_state = 0, .external_lex_state = 187}, + [4396] = {.lex_state = 0, .external_lex_state = 183}, + [4397] = {.lex_state = 0, .external_lex_state = 183}, + [4398] = {.lex_state = 0, .external_lex_state = 183}, + [4399] = {.lex_state = 0, .external_lex_state = 183}, + [4400] = {.lex_state = 2, .external_lex_state = 138}, + [4401] = {.lex_state = 0, .external_lex_state = 152}, + [4402] = {.lex_state = 0, .external_lex_state = 152}, + [4403] = {.lex_state = 0, .external_lex_state = 152}, + [4404] = {.lex_state = 0, .external_lex_state = 152}, + [4405] = {.lex_state = 0, .external_lex_state = 152}, + [4406] = {.lex_state = 2, .external_lex_state = 138}, + [4407] = {.lex_state = 2, .external_lex_state = 138}, + [4408] = {.lex_state = 2, .external_lex_state = 138}, + [4409] = {.lex_state = 2, .external_lex_state = 138}, + [4410] = {.lex_state = 2, .external_lex_state = 138}, + [4411] = {.lex_state = 0, .external_lex_state = 152}, + [4412] = {.lex_state = 2, .external_lex_state = 138}, + [4413] = {.lex_state = 0, .external_lex_state = 152}, + [4414] = {.lex_state = 2, .external_lex_state = 138}, + [4415] = {.lex_state = 0, .external_lex_state = 152}, + [4416] = {.lex_state = 2, .external_lex_state = 138}, + [4417] = {.lex_state = 2, .external_lex_state = 138}, + [4418] = {.lex_state = 0, .external_lex_state = 152}, + [4419] = {.lex_state = 0, .external_lex_state = 152}, + [4420] = {.lex_state = 2, .external_lex_state = 138}, + [4421] = {.lex_state = 0, .external_lex_state = 157}, + [4422] = {.lex_state = 0, .external_lex_state = 152}, + [4423] = {.lex_state = 0, .external_lex_state = 152}, + [4424] = {.lex_state = 0, .external_lex_state = 152}, + [4425] = {.lex_state = 0, .external_lex_state = 152}, + [4426] = {.lex_state = 0, .external_lex_state = 152}, + [4427] = {.lex_state = 0, .external_lex_state = 152}, + [4428] = {.lex_state = 0, .external_lex_state = 152}, + [4429] = {.lex_state = 0, .external_lex_state = 152}, + [4430] = {.lex_state = 0, .external_lex_state = 152}, + [4431] = {.lex_state = 0, .external_lex_state = 152}, + [4432] = {.lex_state = 0, .external_lex_state = 152}, + [4433] = {.lex_state = 0, .external_lex_state = 158}, + [4434] = {.lex_state = 0, .external_lex_state = 152}, + [4435] = {.lex_state = 0, .external_lex_state = 152}, + [4436] = {.lex_state = 2, .external_lex_state = 138}, + [4437] = {.lex_state = 0, .external_lex_state = 152}, + [4438] = {.lex_state = 0, .external_lex_state = 152}, + [4439] = {.lex_state = 0, .external_lex_state = 152}, + [4440] = {.lex_state = 0, .external_lex_state = 152}, + [4441] = {.lex_state = 0, .external_lex_state = 155}, + [4442] = {.lex_state = 0, .external_lex_state = 152}, + [4443] = {.lex_state = 2, .external_lex_state = 138}, + [4444] = {.lex_state = 0, .external_lex_state = 152}, + [4445] = {.lex_state = 0, .external_lex_state = 157}, + [4446] = {.lex_state = 0, .external_lex_state = 155}, + [4447] = {.lex_state = 0, .external_lex_state = 155}, + [4448] = {.lex_state = 0, .external_lex_state = 157}, + [4449] = {.lex_state = 0, .external_lex_state = 155}, + [4450] = {.lex_state = 0, .external_lex_state = 157}, + [4451] = {.lex_state = 0, .external_lex_state = 157}, + [4452] = {.lex_state = 0, .external_lex_state = 188}, + [4453] = {.lex_state = 0, .external_lex_state = 163}, + [4454] = {.lex_state = 0, .external_lex_state = 155}, + [4455] = {.lex_state = 0, .external_lex_state = 188}, + [4456] = {.lex_state = 0, .external_lex_state = 164}, + [4457] = {.lex_state = 0, .external_lex_state = 157}, + [4458] = {.lex_state = 0, .external_lex_state = 158}, + [4459] = {.lex_state = 0, .external_lex_state = 158}, + [4460] = {.lex_state = 0, .external_lex_state = 157}, + [4461] = {.lex_state = 0, .external_lex_state = 158}, + [4462] = {.lex_state = 0, .external_lex_state = 158}, + [4463] = {.lex_state = 0, .external_lex_state = 172}, + [4464] = {.lex_state = 0, .external_lex_state = 189}, + [4465] = {.lex_state = 0, .external_lex_state = 157}, + [4466] = {.lex_state = 0, .external_lex_state = 189}, + [4467] = {.lex_state = 0, .external_lex_state = 158}, + [4468] = {.lex_state = 0, .external_lex_state = 189}, + [4469] = {.lex_state = 0, .external_lex_state = 158}, + [4470] = {.lex_state = 0, .external_lex_state = 158}, + [4471] = {.lex_state = 0, .external_lex_state = 155}, + [4472] = {.lex_state = 0, .external_lex_state = 155}, + [4473] = {.lex_state = 0, .external_lex_state = 158}, + [4474] = {.lex_state = 0, .external_lex_state = 158}, + [4475] = {.lex_state = 0, .external_lex_state = 157}, + [4476] = {.lex_state = 0, .external_lex_state = 158}, + [4477] = {.lex_state = 0, .external_lex_state = 155}, + [4478] = {.lex_state = 0, .external_lex_state = 155}, + [4479] = {.lex_state = 0, .external_lex_state = 155}, + [4480] = {.lex_state = 0, .external_lex_state = 165}, + [4481] = {.lex_state = 0, .external_lex_state = 157}, + [4482] = {.lex_state = 0, .external_lex_state = 158}, + [4483] = {.lex_state = 0, .external_lex_state = 158}, + [4484] = {.lex_state = 0, .external_lex_state = 157}, + [4485] = {.lex_state = 0, .external_lex_state = 158}, + [4486] = {.lex_state = 0, .external_lex_state = 158}, + [4487] = {.lex_state = 0, .external_lex_state = 189}, + [4488] = {.lex_state = 0, .external_lex_state = 155}, + [4489] = {.lex_state = 0, .external_lex_state = 158}, + [4490] = {.lex_state = 0, .external_lex_state = 158}, + [4491] = {.lex_state = 0, .external_lex_state = 158}, + [4492] = {.lex_state = 0, .external_lex_state = 157}, + [4493] = {.lex_state = 0, .external_lex_state = 158}, + [4494] = {.lex_state = 0, .external_lex_state = 157}, + [4495] = {.lex_state = 0, .external_lex_state = 158}, + [4496] = {.lex_state = 2, .external_lex_state = 190}, + [4497] = {.lex_state = 0, .external_lex_state = 157}, + [4498] = {.lex_state = 0, .external_lex_state = 191}, + [4499] = {.lex_state = 0, .external_lex_state = 157}, + [4500] = {.lex_state = 0, .external_lex_state = 158}, + [4501] = {.lex_state = 0, .external_lex_state = 158}, + [4502] = {.lex_state = 0, .external_lex_state = 158}, + [4503] = {.lex_state = 0, .external_lex_state = 157}, + [4504] = {.lex_state = 0, .external_lex_state = 157}, + [4505] = {.lex_state = 0, .external_lex_state = 189}, + [4506] = {.lex_state = 0, .external_lex_state = 157}, + [4507] = {.lex_state = 0, .external_lex_state = 157}, + [4508] = {.lex_state = 0, .external_lex_state = 158}, + [4509] = {.lex_state = 0, .external_lex_state = 192}, + [4510] = {.lex_state = 0, .external_lex_state = 158}, + [4511] = {.lex_state = 0, .external_lex_state = 158}, + [4512] = {.lex_state = 0, .external_lex_state = 155}, + [4513] = {.lex_state = 2, .external_lex_state = 159}, + [4514] = {.lex_state = 0, .external_lex_state = 155}, + [4515] = {.lex_state = 0, .external_lex_state = 157}, + [4516] = {.lex_state = 0, .external_lex_state = 157}, + [4517] = {.lex_state = 0, .external_lex_state = 155}, + [4518] = {.lex_state = 0, .external_lex_state = 155}, + [4519] = {.lex_state = 0, .external_lex_state = 158}, + [4520] = {.lex_state = 0, .external_lex_state = 157}, + [4521] = {.lex_state = 0, .external_lex_state = 155}, + [4522] = {.lex_state = 0, .external_lex_state = 155}, + [4523] = {.lex_state = 0, .external_lex_state = 155}, + [4524] = {.lex_state = 0, .external_lex_state = 157}, + [4525] = {.lex_state = 0, .external_lex_state = 155}, + [4526] = {.lex_state = 0, .external_lex_state = 155}, + [4527] = {.lex_state = 0, .external_lex_state = 157}, + [4528] = {.lex_state = 0, .external_lex_state = 155}, + [4529] = {.lex_state = 0, .external_lex_state = 155}, + [4530] = {.lex_state = 0, .external_lex_state = 158}, + [4531] = {.lex_state = 0, .external_lex_state = 157}, + [4532] = {.lex_state = 0, .external_lex_state = 155}, + [4533] = {.lex_state = 0, .external_lex_state = 155}, + [4534] = {.lex_state = 0, .external_lex_state = 158}, + [4535] = {.lex_state = 0, .external_lex_state = 158}, + [4536] = {.lex_state = 0, .external_lex_state = 155}, + [4537] = {.lex_state = 0, .external_lex_state = 155}, + [4538] = {.lex_state = 0, .external_lex_state = 155}, + [4539] = {.lex_state = 0, .external_lex_state = 155}, + [4540] = {.lex_state = 0, .external_lex_state = 155}, + [4541] = {.lex_state = 0, .external_lex_state = 155}, + [4542] = {.lex_state = 0, .external_lex_state = 189}, + [4543] = {.lex_state = 0, .external_lex_state = 157}, + [4544] = {.lex_state = 0, .external_lex_state = 157}, + [4545] = {.lex_state = 0, .external_lex_state = 157}, + [4546] = {.lex_state = 0, .external_lex_state = 157}, + [4547] = {.lex_state = 0, .external_lex_state = 157}, + [4548] = {.lex_state = 0, .external_lex_state = 193}, + [4549] = {.lex_state = 0, .external_lex_state = 165}, + [4550] = {.lex_state = 0, .external_lex_state = 193}, + [4551] = {.lex_state = 0, .external_lex_state = 163}, + [4552] = {.lex_state = 0, .external_lex_state = 163}, + [4553] = {.lex_state = 0, .external_lex_state = 163}, + [4554] = {.lex_state = 0, .external_lex_state = 163}, + [4555] = {.lex_state = 0, .external_lex_state = 163}, + [4556] = {.lex_state = 0, .external_lex_state = 163}, + [4557] = {.lex_state = 0, .external_lex_state = 193}, + [4558] = {.lex_state = 0, .external_lex_state = 194}, + [4559] = {.lex_state = 0, .external_lex_state = 168}, + [4560] = {.lex_state = 0, .external_lex_state = 163}, + [4561] = {.lex_state = 0, .external_lex_state = 163}, + [4562] = {.lex_state = 0, .external_lex_state = 164}, + [4563] = {.lex_state = 0, .external_lex_state = 163}, + [4564] = {.lex_state = 0, .external_lex_state = 191}, + [4565] = {.lex_state = 0, .external_lex_state = 175}, + [4566] = {.lex_state = 0, .external_lex_state = 163}, + [4567] = {.lex_state = 0, .external_lex_state = 164}, + [4568] = {.lex_state = 0, .external_lex_state = 164}, + [4569] = {.lex_state = 0, .external_lex_state = 164}, + [4570] = {.lex_state = 0, .external_lex_state = 163}, + [4571] = {.lex_state = 0, .external_lex_state = 163}, + [4572] = {.lex_state = 0, .external_lex_state = 170}, + [4573] = {.lex_state = 0, .external_lex_state = 164}, + [4574] = {.lex_state = 0, .external_lex_state = 163}, + [4575] = {.lex_state = 0, .external_lex_state = 165}, + [4576] = {.lex_state = 0, .external_lex_state = 165}, + [4577] = {.lex_state = 2, .external_lex_state = 148}, + [4578] = {.lex_state = 0, .external_lex_state = 165}, + [4579] = {.lex_state = 0, .external_lex_state = 163}, + [4580] = {.lex_state = 0, .external_lex_state = 164}, + [4581] = {.lex_state = 0, .external_lex_state = 164}, + [4582] = {.lex_state = 0, .external_lex_state = 189}, + [4583] = {.lex_state = 0, .external_lex_state = 164}, + [4584] = {.lex_state = 0, .external_lex_state = 164}, + [4585] = {.lex_state = 0, .external_lex_state = 164}, + [4586] = {.lex_state = 0, .external_lex_state = 165}, + [4587] = {.lex_state = 0, .external_lex_state = 164}, + [4588] = {.lex_state = 0, .external_lex_state = 165}, + [4589] = {.lex_state = 0, .external_lex_state = 163}, + [4590] = {.lex_state = 0, .external_lex_state = 165}, + [4591] = {.lex_state = 0, .external_lex_state = 165}, + [4592] = {.lex_state = 0, .external_lex_state = 165}, + [4593] = {.lex_state = 0, .external_lex_state = 163}, + [4594] = {.lex_state = 0, .external_lex_state = 163}, + [4595] = {.lex_state = 0, .external_lex_state = 171}, + [4596] = {.lex_state = 0, .external_lex_state = 165}, + [4597] = {.lex_state = 0, .external_lex_state = 163}, + [4598] = {.lex_state = 0, .external_lex_state = 163}, + [4599] = {.lex_state = 0, .external_lex_state = 165}, + [4600] = {.lex_state = 0, .external_lex_state = 165}, + [4601] = {.lex_state = 0, .external_lex_state = 189}, + [4602] = {.lex_state = 0, .external_lex_state = 195}, + [4603] = {.lex_state = 0, .external_lex_state = 165}, + [4604] = {.lex_state = 0, .external_lex_state = 196}, + [4605] = {.lex_state = 0, .external_lex_state = 165}, + [4606] = {.lex_state = 0, .external_lex_state = 163}, + [4607] = {.lex_state = 0, .external_lex_state = 172}, + [4608] = {.lex_state = 0, .external_lex_state = 165}, + [4609] = {.lex_state = 0, .external_lex_state = 164}, + [4610] = {.lex_state = 0, .external_lex_state = 163}, + [4611] = {.lex_state = 0, .external_lex_state = 165}, + [4612] = {.lex_state = 0, .external_lex_state = 165}, + [4613] = {.lex_state = 0, .external_lex_state = 165}, + [4614] = {.lex_state = 0, .external_lex_state = 165}, + [4615] = {.lex_state = 0, .external_lex_state = 165}, + [4616] = {.lex_state = 0, .external_lex_state = 163}, + [4617] = {.lex_state = 0, .external_lex_state = 165}, + [4618] = {.lex_state = 0, .external_lex_state = 165}, + [4619] = {.lex_state = 0, .external_lex_state = 165}, + [4620] = {.lex_state = 0, .external_lex_state = 164}, + [4621] = {.lex_state = 0, .external_lex_state = 163}, + [4622] = {.lex_state = 0, .external_lex_state = 163}, + [4623] = {.lex_state = 0, .external_lex_state = 165}, + [4624] = {.lex_state = 0, .external_lex_state = 164}, + [4625] = {.lex_state = 0, .external_lex_state = 164}, + [4626] = {.lex_state = 0, .external_lex_state = 174}, + [4627] = {.lex_state = 0, .external_lex_state = 164}, + [4628] = {.lex_state = 0, .external_lex_state = 164}, + [4629] = {.lex_state = 0, .external_lex_state = 163}, + [4630] = {.lex_state = 0, .external_lex_state = 193}, + [4631] = {.lex_state = 0, .external_lex_state = 164}, + [4632] = {.lex_state = 0, .external_lex_state = 164}, + [4633] = {.lex_state = 0, .external_lex_state = 163}, + [4634] = {.lex_state = 0, .external_lex_state = 163}, + [4635] = {.lex_state = 0, .external_lex_state = 164}, + [4636] = {.lex_state = 0, .external_lex_state = 165}, + [4637] = {.lex_state = 0, .external_lex_state = 164}, + [4638] = {.lex_state = 0, .external_lex_state = 169}, + [4639] = {.lex_state = 0, .external_lex_state = 164}, + [4640] = {.lex_state = 0, .external_lex_state = 146}, + [4641] = {.lex_state = 0, .external_lex_state = 164}, + [4642] = {.lex_state = 0, .external_lex_state = 164}, + [4643] = {.lex_state = 0, .external_lex_state = 165}, + [4644] = {.lex_state = 0, .external_lex_state = 164}, + [4645] = {.lex_state = 0, .external_lex_state = 163}, + [4646] = {.lex_state = 0, .external_lex_state = 165}, + [4647] = {.lex_state = 0, .external_lex_state = 163}, + [4648] = {.lex_state = 0, .external_lex_state = 165}, + [4649] = {.lex_state = 0, .external_lex_state = 165}, + [4650] = {.lex_state = 0, .external_lex_state = 164}, + [4651] = {.lex_state = 0, .external_lex_state = 164}, + [4652] = {.lex_state = 0, .external_lex_state = 164}, + [4653] = {.lex_state = 0, .external_lex_state = 164}, + [4654] = {.lex_state = 0, .external_lex_state = 196}, + [4655] = {.lex_state = 0, .external_lex_state = 172}, + [4656] = {.lex_state = 0, .external_lex_state = 170}, + [4657] = {.lex_state = 0, .external_lex_state = 171}, + [4658] = {.lex_state = 0, .external_lex_state = 172}, + [4659] = {.lex_state = 0, .external_lex_state = 169}, [4660] = {.lex_state = 0, .external_lex_state = 169}, - [4661] = {.lex_state = 0, .external_lex_state = 171}, + [4661] = {.lex_state = 0, .external_lex_state = 197}, [4662] = {.lex_state = 0, .external_lex_state = 170}, - [4663] = {.lex_state = 0, .external_lex_state = 170}, - [4664] = {.lex_state = 0, .external_lex_state = 170}, - [4665] = {.lex_state = 0, .external_lex_state = 203}, - [4666] = {.lex_state = 0, .external_lex_state = 201}, - [4667] = {.lex_state = 0, .external_lex_state = 174}, - [4668] = {.lex_state = 0, .external_lex_state = 170}, - [4669] = {.lex_state = 0, .external_lex_state = 173}, - [4670] = {.lex_state = 0, .external_lex_state = 149}, - [4671] = {.lex_state = 0, .external_lex_state = 197}, - [4672] = {.lex_state = 0, .external_lex_state = 149}, - [4673] = {.lex_state = 0, .external_lex_state = 149}, - [4674] = {.lex_state = 0, .external_lex_state = 149}, + [4663] = {.lex_state = 0, .external_lex_state = 169}, + [4664] = {.lex_state = 0, .external_lex_state = 169}, + [4665] = {.lex_state = 0, .external_lex_state = 151}, + [4666] = {.lex_state = 0, .external_lex_state = 171}, + [4667] = {.lex_state = 0, .external_lex_state = 198}, + [4668] = {.lex_state = 0, .external_lex_state = 171}, + [4669] = {.lex_state = 0, .external_lex_state = 199}, + [4670] = {.lex_state = 0, .external_lex_state = 174}, + [4671] = {.lex_state = 0, .external_lex_state = 188}, + [4672] = {.lex_state = 0, .external_lex_state = 151}, + [4673] = {.lex_state = 0, .external_lex_state = 169}, + [4674] = {.lex_state = 0, .external_lex_state = 197}, [4675] = {.lex_state = 0, .external_lex_state = 174}, - [4676] = {.lex_state = 0, .external_lex_state = 170}, - [4677] = {.lex_state = 0, .external_lex_state = 149}, - [4678] = {.lex_state = 0, .external_lex_state = 149}, - [4679] = {.lex_state = 0, .external_lex_state = 170}, - [4680] = {.lex_state = 0, .external_lex_state = 170}, - [4681] = {.lex_state = 0, .external_lex_state = 204}, - [4682] = {.lex_state = 0, .external_lex_state = 173}, - [4683] = {.lex_state = 0, .external_lex_state = 149}, + [4676] = {.lex_state = 0, .external_lex_state = 169}, + [4677] = {.lex_state = 0, .external_lex_state = 174}, + [4678] = {.lex_state = 0, .external_lex_state = 169}, + [4679] = {.lex_state = 0, .external_lex_state = 172}, + [4680] = {.lex_state = 0, .external_lex_state = 169}, + [4681] = {.lex_state = 0, .external_lex_state = 169}, + [4682] = {.lex_state = 0, .external_lex_state = 169}, + [4683] = {.lex_state = 0, .external_lex_state = 169}, [4684] = {.lex_state = 0, .external_lex_state = 170}, - [4685] = {.lex_state = 0, .external_lex_state = 173}, + [4685] = {.lex_state = 0, .external_lex_state = 169}, [4686] = {.lex_state = 0, .external_lex_state = 170}, - [4687] = {.lex_state = 0, .external_lex_state = 170}, - [4688] = {.lex_state = 0, .external_lex_state = 149}, - [4689] = {.lex_state = 0, .external_lex_state = 174}, - [4690] = {.lex_state = 0, .external_lex_state = 173}, - [4691] = {.lex_state = 0, .external_lex_state = 171}, - [4692] = {.lex_state = 0, .external_lex_state = 173}, - [4693] = {.lex_state = 0, .external_lex_state = 173}, - [4694] = {.lex_state = 0, .external_lex_state = 173}, - [4695] = {.lex_state = 0, .external_lex_state = 173}, - [4696] = {.lex_state = 0, .external_lex_state = 197}, - [4697] = {.lex_state = 0, .external_lex_state = 169}, - [4698] = {.lex_state = 0, .external_lex_state = 173}, - [4699] = {.lex_state = 0, .external_lex_state = 173}, - [4700] = {.lex_state = 0, .external_lex_state = 173}, - [4701] = {.lex_state = 0, .external_lex_state = 173}, - [4702] = {.lex_state = 0, .external_lex_state = 173}, - [4703] = {.lex_state = 0, .external_lex_state = 173}, - [4704] = {.lex_state = 0, .external_lex_state = 173}, - [4705] = {.lex_state = 0, .external_lex_state = 173}, - [4706] = {.lex_state = 0, .external_lex_state = 171}, - [4707] = {.lex_state = 0, .external_lex_state = 173}, - [4708] = {.lex_state = 0, .external_lex_state = 173}, - [4709] = {.lex_state = 0, .external_lex_state = 169}, - [4710] = {.lex_state = 0, .external_lex_state = 173}, - [4711] = {.lex_state = 0, .external_lex_state = 173}, - [4712] = {.lex_state = 0, .external_lex_state = 173}, - [4713] = {.lex_state = 0, .external_lex_state = 173}, - [4714] = {.lex_state = 0, .external_lex_state = 173}, - [4715] = {.lex_state = 0, .external_lex_state = 205}, - [4716] = {.lex_state = 0, .external_lex_state = 176}, - [4717] = {.lex_state = 0, .external_lex_state = 176}, - [4718] = {.lex_state = 0, .external_lex_state = 176}, - [4719] = {.lex_state = 0, .external_lex_state = 205}, - [4720] = {.lex_state = 0, .external_lex_state = 202}, - [4721] = {.lex_state = 0, .external_lex_state = 176}, - [4722] = {.lex_state = 0, .external_lex_state = 197}, - [4723] = {.lex_state = 0, .external_lex_state = 176}, - [4724] = {.lex_state = 0, .external_lex_state = 197}, - [4725] = {.lex_state = 0, .external_lex_state = 176}, - [4726] = {.lex_state = 0, .external_lex_state = 171}, - [4727] = {.lex_state = 0, .external_lex_state = 180}, - [4728] = {.lex_state = 0, .external_lex_state = 197}, - [4729] = {.lex_state = 0, .external_lex_state = 205}, - [4730] = {.lex_state = 0, .external_lex_state = 205}, - [4731] = {.lex_state = 2, .external_lex_state = 153}, - [4732] = {.lex_state = 0, .external_lex_state = 176}, - [4733] = {.lex_state = 0, .external_lex_state = 202}, - [4734] = {.lex_state = 0, .external_lex_state = 176}, - [4735] = {.lex_state = 0, .external_lex_state = 206}, - [4736] = {.lex_state = 0, .external_lex_state = 197}, - [4737] = {.lex_state = 0, .external_lex_state = 176}, - [4738] = {.lex_state = 0, .external_lex_state = 193}, - [4739] = {.lex_state = 0, .external_lex_state = 171}, - [4740] = {.lex_state = 0, .external_lex_state = 176}, - [4741] = {.lex_state = 0, .external_lex_state = 176}, - [4742] = {.lex_state = 0, .external_lex_state = 207}, - [4743] = {.lex_state = 0, .external_lex_state = 197}, - [4744] = {.lex_state = 0, .external_lex_state = 176}, - [4745] = {.lex_state = 0, .external_lex_state = 197}, - [4746] = {.lex_state = 0, .external_lex_state = 176}, - [4747] = {.lex_state = 0, .external_lex_state = 176}, - [4748] = {.lex_state = 0, .external_lex_state = 202}, + [4687] = {.lex_state = 0, .external_lex_state = 169}, + [4688] = {.lex_state = 0, .external_lex_state = 169}, + [4689] = {.lex_state = 0, .external_lex_state = 169}, + [4690] = {.lex_state = 0, .external_lex_state = 172}, + [4691] = {.lex_state = 0, .external_lex_state = 168}, + [4692] = {.lex_state = 0, .external_lex_state = 151}, + [4693] = {.lex_state = 0, .external_lex_state = 200}, + [4694] = {.lex_state = 0, .external_lex_state = 151}, + [4695] = {.lex_state = 0, .external_lex_state = 169}, + [4696] = {.lex_state = 0, .external_lex_state = 170}, + [4697] = {.lex_state = 0, .external_lex_state = 174}, + [4698] = {.lex_state = 0, .external_lex_state = 151}, + [4699] = {.lex_state = 0, .external_lex_state = 168}, + [4700] = {.lex_state = 0, .external_lex_state = 174}, + [4701] = {.lex_state = 0, .external_lex_state = 174}, + [4702] = {.lex_state = 0, .external_lex_state = 171}, + [4703] = {.lex_state = 0, .external_lex_state = 201}, + [4704] = {.lex_state = 0, .external_lex_state = 172}, + [4705] = {.lex_state = 0, .external_lex_state = 170}, + [4706] = {.lex_state = 0, .external_lex_state = 202}, + [4707] = {.lex_state = 0, .external_lex_state = 169}, + [4708] = {.lex_state = 0, .external_lex_state = 151}, + [4709] = {.lex_state = 0, .external_lex_state = 151}, + [4710] = {.lex_state = 0, .external_lex_state = 168}, + [4711] = {.lex_state = 0, .external_lex_state = 151}, + [4712] = {.lex_state = 0, .external_lex_state = 168}, + [4713] = {.lex_state = 0, .external_lex_state = 168}, + [4714] = {.lex_state = 0, .external_lex_state = 172}, + [4715] = {.lex_state = 0, .external_lex_state = 170}, + [4716] = {.lex_state = 0, .external_lex_state = 198}, + [4717] = {.lex_state = 0, .external_lex_state = 169}, + [4718] = {.lex_state = 0, .external_lex_state = 172}, + [4719] = {.lex_state = 0, .external_lex_state = 199}, + [4720] = {.lex_state = 0, .external_lex_state = 172}, + [4721] = {.lex_state = 0, .external_lex_state = 168}, + [4722] = {.lex_state = 0, .external_lex_state = 168}, + [4723] = {.lex_state = 0, .external_lex_state = 174}, + [4724] = {.lex_state = 0, .external_lex_state = 170}, + [4725] = {.lex_state = 0, .external_lex_state = 170}, + [4726] = {.lex_state = 0, .external_lex_state = 170}, + [4727] = {.lex_state = 0, .external_lex_state = 197}, + [4728] = {.lex_state = 0, .external_lex_state = 169}, + [4729] = {.lex_state = 0, .external_lex_state = 168}, + [4730] = {.lex_state = 0, .external_lex_state = 168}, + [4731] = {.lex_state = 0, .external_lex_state = 168}, + [4732] = {.lex_state = 0, .external_lex_state = 170}, + [4733] = {.lex_state = 0, .external_lex_state = 172}, + [4734] = {.lex_state = 0, .external_lex_state = 201}, + [4735] = {.lex_state = 0, .external_lex_state = 168}, + [4736] = {.lex_state = 0, .external_lex_state = 168}, + [4737] = {.lex_state = 0, .external_lex_state = 170}, + [4738] = {.lex_state = 0, .external_lex_state = 172}, + [4739] = {.lex_state = 0, .external_lex_state = 174}, + [4740] = {.lex_state = 0, .external_lex_state = 169}, + [4741] = {.lex_state = 0, .external_lex_state = 203}, + [4742] = {.lex_state = 0, .external_lex_state = 204}, + [4743] = {.lex_state = 0, .external_lex_state = 169}, + [4744] = {.lex_state = 0, .external_lex_state = 196}, + [4745] = {.lex_state = 0, .external_lex_state = 168}, + [4746] = {.lex_state = 0, .external_lex_state = 168}, + [4747] = {.lex_state = 0, .external_lex_state = 172}, + [4748] = {.lex_state = 0, .external_lex_state = 168}, [4749] = {.lex_state = 0, .external_lex_state = 197}, - [4750] = {.lex_state = 0, .external_lex_state = 205}, - [4751] = {.lex_state = 0, .external_lex_state = 205}, - [4752] = {.lex_state = 0, .external_lex_state = 205}, - [4753] = {.lex_state = 0, .external_lex_state = 176}, - [4754] = {.lex_state = 0, .external_lex_state = 205}, - [4755] = {.lex_state = 0, .external_lex_state = 205}, - [4756] = {.lex_state = 0, .external_lex_state = 171}, - [4757] = {.lex_state = 0, .external_lex_state = 176}, - [4758] = {.lex_state = 0, .external_lex_state = 176}, - [4759] = {.lex_state = 0, .external_lex_state = 207}, - [4760] = {.lex_state = 0, .external_lex_state = 197}, - [4761] = {.lex_state = 0, .external_lex_state = 197}, - [4762] = {.lex_state = 0, .external_lex_state = 197}, - [4763] = {.lex_state = 0, .external_lex_state = 207}, - [4764] = {.lex_state = 0, .external_lex_state = 197}, - [4765] = {.lex_state = 0, .external_lex_state = 176}, - [4766] = {.lex_state = 0, .external_lex_state = 202}, - [4767] = {.lex_state = 0, .external_lex_state = 171}, - [4768] = {.lex_state = 0, .external_lex_state = 176}, - [4769] = {.lex_state = 0, .external_lex_state = 176}, - [4770] = {.lex_state = 0, .external_lex_state = 176}, - [4771] = {.lex_state = 0, .external_lex_state = 176}, - [4772] = {.lex_state = 0, .external_lex_state = 176}, - [4773] = {.lex_state = 0, .external_lex_state = 197}, - [4774] = {.lex_state = 0, .external_lex_state = 176}, - [4775] = {.lex_state = 0, .external_lex_state = 202}, - [4776] = {.lex_state = 0, .external_lex_state = 176}, + [4750] = {.lex_state = 0, .external_lex_state = 151}, + [4751] = {.lex_state = 0, .external_lex_state = 170}, + [4752] = {.lex_state = 0, .external_lex_state = 174}, + [4753] = {.lex_state = 0, .external_lex_state = 168}, + [4754] = {.lex_state = 0, .external_lex_state = 168}, + [4755] = {.lex_state = 0, .external_lex_state = 168}, + [4756] = {.lex_state = 2, .external_lex_state = 178}, + [4757] = {.lex_state = 0, .external_lex_state = 172}, + [4758] = {.lex_state = 0, .external_lex_state = 151}, + [4759] = {.lex_state = 2, .external_lex_state = 153}, + [4760] = {.lex_state = 0, .external_lex_state = 196}, + [4761] = {.lex_state = 0, .external_lex_state = 168}, + [4762] = {.lex_state = 0, .external_lex_state = 169}, + [4763] = {.lex_state = 0, .external_lex_state = 168}, + [4764] = {.lex_state = 0, .external_lex_state = 171}, + [4765] = {.lex_state = 0, .external_lex_state = 172}, + [4766] = {.lex_state = 0, .external_lex_state = 151}, + [4767] = {.lex_state = 0, .external_lex_state = 151}, + [4768] = {.lex_state = 0, .external_lex_state = 174}, + [4769] = {.lex_state = 0, .external_lex_state = 170}, + [4770] = {.lex_state = 0, .external_lex_state = 168}, + [4771] = {.lex_state = 2, .external_lex_state = 178}, + [4772] = {.lex_state = 0, .external_lex_state = 172}, + [4773] = {.lex_state = 0, .external_lex_state = 151}, + [4774] = {.lex_state = 0, .external_lex_state = 204}, + [4775] = {.lex_state = 0, .external_lex_state = 197}, + [4776] = {.lex_state = 0, .external_lex_state = 174}, [4777] = {.lex_state = 0, .external_lex_state = 197}, - [4778] = {.lex_state = 0, .external_lex_state = 202}, - [4779] = {.lex_state = 0, .external_lex_state = 205}, - [4780] = {.lex_state = 0, .external_lex_state = 205}, - [4781] = {.lex_state = 0, .external_lex_state = 175}, - [4782] = {.lex_state = 0, .external_lex_state = 205}, - [4783] = {.lex_state = 0, .external_lex_state = 202}, - [4784] = {.lex_state = 0, .external_lex_state = 176}, - [4785] = {.lex_state = 0, .external_lex_state = 176}, - [4786] = {.lex_state = 0, .external_lex_state = 208}, - [4787] = {.lex_state = 0, .external_lex_state = 180}, - [4788] = {.lex_state = 0, .external_lex_state = 206}, - [4789] = {.lex_state = 0, .external_lex_state = 180}, - [4790] = {.lex_state = 0, .external_lex_state = 206}, - [4791] = {.lex_state = 0, .external_lex_state = 209}, - [4792] = {.lex_state = 0, .external_lex_state = 206}, - [4793] = {.lex_state = 0, .external_lex_state = 210}, - [4794] = {.lex_state = 0, .external_lex_state = 208}, - [4795] = {.lex_state = 3, .external_lex_state = 175}, - [4796] = {.lex_state = 0, .external_lex_state = 180}, - [4797] = {.lex_state = 0, .external_lex_state = 211}, - [4798] = {.lex_state = 0, .external_lex_state = 209}, - [4799] = {.lex_state = 0, .external_lex_state = 210}, - [4800] = {.lex_state = 0, .external_lex_state = 206}, - [4801] = {.lex_state = 0, .external_lex_state = 206}, - [4802] = {.lex_state = 0, .external_lex_state = 209}, - [4803] = {.lex_state = 0, .external_lex_state = 186}, - [4804] = {.lex_state = 0, .external_lex_state = 175}, - [4805] = {.lex_state = 0, .external_lex_state = 209}, - [4806] = {.lex_state = 0, .external_lex_state = 173}, - [4807] = {.lex_state = 0, .external_lex_state = 188}, - [4808] = {.lex_state = 0, .external_lex_state = 180}, - [4809] = {.lex_state = 0, .external_lex_state = 209}, - [4810] = {.lex_state = 0, .external_lex_state = 209}, - [4811] = {.lex_state = 0, .external_lex_state = 180}, - [4812] = {.lex_state = 0, .external_lex_state = 180}, - [4813] = {.lex_state = 0, .external_lex_state = 209}, - [4814] = {.lex_state = 0, .external_lex_state = 212}, - [4815] = {.lex_state = 0, .external_lex_state = 209}, - [4816] = {.lex_state = 0, .external_lex_state = 180}, - [4817] = {.lex_state = 0, .external_lex_state = 173}, - [4818] = {.lex_state = 0, .external_lex_state = 209}, - [4819] = {.lex_state = 0, .external_lex_state = 180}, - [4820] = {.lex_state = 0, .external_lex_state = 206}, - [4821] = {.lex_state = 0, .external_lex_state = 180}, - [4822] = {.lex_state = 0, .external_lex_state = 206}, - [4823] = {.lex_state = 0, .external_lex_state = 194}, - [4824] = {.lex_state = 0, .external_lex_state = 180}, - [4825] = {.lex_state = 0, .external_lex_state = 210}, - [4826] = {.lex_state = 0, .external_lex_state = 206}, - [4827] = {.lex_state = 0, .external_lex_state = 209}, - [4828] = {.lex_state = 0, .external_lex_state = 213}, - [4829] = {.lex_state = 0, .external_lex_state = 209}, - [4830] = {.lex_state = 0, .external_lex_state = 214}, - [4831] = {.lex_state = 0, .external_lex_state = 206}, - [4832] = {.lex_state = 0, .external_lex_state = 209}, - [4833] = {.lex_state = 0, .external_lex_state = 213}, - [4834] = {.lex_state = 0, .external_lex_state = 215}, - [4835] = {.lex_state = 0, .external_lex_state = 206}, - [4836] = {.lex_state = 0, .external_lex_state = 180}, - [4837] = {.lex_state = 0, .external_lex_state = 206}, - [4838] = {.lex_state = 0, .external_lex_state = 213}, - [4839] = {.lex_state = 0, .external_lex_state = 211}, - [4840] = {.lex_state = 0, .external_lex_state = 209}, - [4841] = {.lex_state = 0, .external_lex_state = 209}, - [4842] = {.lex_state = 0, .external_lex_state = 206}, - [4843] = {.lex_state = 0, .external_lex_state = 210}, - [4844] = {.lex_state = 0, .external_lex_state = 180}, - [4845] = {.lex_state = 0, .external_lex_state = 210}, - [4846] = {.lex_state = 0, .external_lex_state = 214}, - [4847] = {.lex_state = 0, .external_lex_state = 197}, - [4848] = {.lex_state = 0, .external_lex_state = 186}, - [4849] = {.lex_state = 0, .external_lex_state = 211}, - [4850] = {.lex_state = 0, .external_lex_state = 203}, - [4851] = {.lex_state = 0, .external_lex_state = 203}, - [4852] = {.lex_state = 0, .external_lex_state = 206}, - [4853] = {.lex_state = 0, .external_lex_state = 209}, - [4854] = {.lex_state = 0, .external_lex_state = 211}, - [4855] = {.lex_state = 0, .external_lex_state = 216}, - [4856] = {.lex_state = 0, .external_lex_state = 198}, - [4857] = {.lex_state = 0, .external_lex_state = 217}, - [4858] = {.lex_state = 0, .external_lex_state = 186}, - [4859] = {.lex_state = 0, .external_lex_state = 180}, - [4860] = {.lex_state = 0, .external_lex_state = 218}, - [4861] = {.lex_state = 0, .external_lex_state = 210}, - [4862] = {.lex_state = 0, .external_lex_state = 209}, - [4863] = {.lex_state = 0, .external_lex_state = 206}, - [4864] = {.lex_state = 0, .external_lex_state = 198}, - [4865] = {.lex_state = 0, .external_lex_state = 180}, - [4866] = {.lex_state = 0, .external_lex_state = 175}, - [4867] = {.lex_state = 0, .external_lex_state = 209}, - [4868] = {.lex_state = 0, .external_lex_state = 180}, - [4869] = {.lex_state = 0, .external_lex_state = 180}, - [4870] = {.lex_state = 0, .external_lex_state = 180}, - [4871] = {.lex_state = 0, .external_lex_state = 180}, - [4872] = {.lex_state = 0, .external_lex_state = 219}, - [4873] = {.lex_state = 0, .external_lex_state = 218}, - [4874] = {.lex_state = 0, .external_lex_state = 194}, - [4875] = {.lex_state = 0, .external_lex_state = 180}, - [4876] = {.lex_state = 0, .external_lex_state = 203}, - [4877] = {.lex_state = 0, .external_lex_state = 211}, - [4878] = {.lex_state = 0, .external_lex_state = 198}, - [4879] = {.lex_state = 0, .external_lex_state = 209}, - [4880] = {.lex_state = 0, .external_lex_state = 209}, - [4881] = {.lex_state = 0, .external_lex_state = 180}, - [4882] = {.lex_state = 0, .external_lex_state = 180}, - [4883] = {.lex_state = 0, .external_lex_state = 180}, - [4884] = {.lex_state = 0, .external_lex_state = 213}, - [4885] = {.lex_state = 0, .external_lex_state = 180}, - [4886] = {.lex_state = 0, .external_lex_state = 180}, - [4887] = {.lex_state = 0, .external_lex_state = 220}, - [4888] = {.lex_state = 0, .external_lex_state = 173}, - [4889] = {.lex_state = 0, .external_lex_state = 206}, - [4890] = {.lex_state = 0, .external_lex_state = 180}, - [4891] = {.lex_state = 0, .external_lex_state = 180}, - [4892] = {.lex_state = 0, .external_lex_state = 210}, - [4893] = {.lex_state = 0, .external_lex_state = 209}, - [4894] = {.lex_state = 0, .external_lex_state = 211}, - [4895] = {.lex_state = 0, .external_lex_state = 194}, - [4896] = {.lex_state = 0, .external_lex_state = 180}, - [4897] = {.lex_state = 0, .external_lex_state = 175}, - [4898] = {.lex_state = 0, .external_lex_state = 175}, - [4899] = {.lex_state = 0, .external_lex_state = 221}, - [4900] = {.lex_state = 0, .external_lex_state = 175}, - [4901] = {.lex_state = 0, .external_lex_state = 175}, - [4902] = {.lex_state = 0, .external_lex_state = 175}, - [4903] = {.lex_state = 0, .external_lex_state = 222}, - [4904] = {.lex_state = 0, .external_lex_state = 223}, - [4905] = {.lex_state = 0, .external_lex_state = 175}, - [4906] = {.lex_state = 0, .external_lex_state = 224}, - [4907] = {.lex_state = 0, .external_lex_state = 175}, - [4908] = {.lex_state = 0, .external_lex_state = 175}, - [4909] = {.lex_state = 0, .external_lex_state = 175}, - [4910] = {.lex_state = 0, .external_lex_state = 175}, - [4911] = {.lex_state = 0, .external_lex_state = 175}, - [4912] = {.lex_state = 0, .external_lex_state = 175}, - [4913] = {.lex_state = 0, .external_lex_state = 175}, - [4914] = {.lex_state = 0, .external_lex_state = 224}, - [4915] = {.lex_state = 0, .external_lex_state = 175}, - [4916] = {.lex_state = 0, .external_lex_state = 173}, - [4917] = {.lex_state = 0, .external_lex_state = 175}, - [4918] = {.lex_state = 0, .external_lex_state = 175}, - [4919] = {.lex_state = 0, .external_lex_state = 175}, - [4920] = {.lex_state = 0, .external_lex_state = 225}, - [4921] = {.lex_state = 0, .external_lex_state = 226}, - [4922] = {.lex_state = 0, .external_lex_state = 175}, - [4923] = {.lex_state = 0, .external_lex_state = 175}, - [4924] = {.lex_state = 0, .external_lex_state = 175}, + [4778] = {.lex_state = 0, .external_lex_state = 203}, + [4779] = {.lex_state = 0, .external_lex_state = 151}, + [4780] = {.lex_state = 0, .external_lex_state = 170}, + [4781] = {.lex_state = 0, .external_lex_state = 168}, + [4782] = {.lex_state = 0, .external_lex_state = 172}, + [4783] = {.lex_state = 0, .external_lex_state = 171}, + [4784] = {.lex_state = 0, .external_lex_state = 171}, + [4785] = {.lex_state = 0, .external_lex_state = 171}, + [4786] = {.lex_state = 0, .external_lex_state = 171}, + [4787] = {.lex_state = 0, .external_lex_state = 170}, + [4788] = {.lex_state = 0, .external_lex_state = 168}, + [4789] = {.lex_state = 0, .external_lex_state = 172}, + [4790] = {.lex_state = 0, .external_lex_state = 168}, + [4791] = {.lex_state = 0, .external_lex_state = 168}, + [4792] = {.lex_state = 0, .external_lex_state = 170}, + [4793] = {.lex_state = 0, .external_lex_state = 171}, + [4794] = {.lex_state = 0, .external_lex_state = 168}, + [4795] = {.lex_state = 0, .external_lex_state = 168}, + [4796] = {.lex_state = 0, .external_lex_state = 170}, + [4797] = {.lex_state = 0, .external_lex_state = 170}, + [4798] = {.lex_state = 0, .external_lex_state = 171}, + [4799] = {.lex_state = 0, .external_lex_state = 174}, + [4800] = {.lex_state = 0, .external_lex_state = 170}, + [4801] = {.lex_state = 0, .external_lex_state = 172}, + [4802] = {.lex_state = 0, .external_lex_state = 171}, + [4803] = {.lex_state = 0, .external_lex_state = 176}, + [4804] = {.lex_state = 0, .external_lex_state = 170}, + [4805] = {.lex_state = 0, .external_lex_state = 172}, + [4806] = {.lex_state = 0, .external_lex_state = 174}, + [4807] = {.lex_state = 0, .external_lex_state = 172}, + [4808] = {.lex_state = 0, .external_lex_state = 172}, + [4809] = {.lex_state = 0, .external_lex_state = 196}, + [4810] = {.lex_state = 0, .external_lex_state = 172}, + [4811] = {.lex_state = 0, .external_lex_state = 151}, + [4812] = {.lex_state = 0, .external_lex_state = 169}, + [4813] = {.lex_state = 0, .external_lex_state = 174}, + [4814] = {.lex_state = 0, .external_lex_state = 172}, + [4815] = {.lex_state = 0, .external_lex_state = 168}, + [4816] = {.lex_state = 0, .external_lex_state = 170}, + [4817] = {.lex_state = 0, .external_lex_state = 169}, + [4818] = {.lex_state = 0, .external_lex_state = 171}, + [4819] = {.lex_state = 0, .external_lex_state = 172}, + [4820] = {.lex_state = 0, .external_lex_state = 151}, + [4821] = {.lex_state = 0, .external_lex_state = 171}, + [4822] = {.lex_state = 0, .external_lex_state = 196}, + [4823] = {.lex_state = 0, .external_lex_state = 151}, + [4824] = {.lex_state = 0, .external_lex_state = 168}, + [4825] = {.lex_state = 0, .external_lex_state = 170}, + [4826] = {.lex_state = 0, .external_lex_state = 171}, + [4827] = {.lex_state = 0, .external_lex_state = 170}, + [4828] = {.lex_state = 0, .external_lex_state = 171}, + [4829] = {.lex_state = 0, .external_lex_state = 172}, + [4830] = {.lex_state = 0, .external_lex_state = 171}, + [4831] = {.lex_state = 0, .external_lex_state = 171}, + [4832] = {.lex_state = 0, .external_lex_state = 171}, + [4833] = {.lex_state = 0, .external_lex_state = 196}, + [4834] = {.lex_state = 0, .external_lex_state = 171}, + [4835] = {.lex_state = 0, .external_lex_state = 203}, + [4836] = {.lex_state = 0, .external_lex_state = 170}, + [4837] = {.lex_state = 0, .external_lex_state = 196}, + [4838] = {.lex_state = 0, .external_lex_state = 170}, + [4839] = {.lex_state = 0, .external_lex_state = 199}, + [4840] = {.lex_state = 0, .external_lex_state = 172}, + [4841] = {.lex_state = 0, .external_lex_state = 169}, + [4842] = {.lex_state = 0, .external_lex_state = 204}, + [4843] = {.lex_state = 0, .external_lex_state = 151}, + [4844] = {.lex_state = 0, .external_lex_state = 151}, + [4845] = {.lex_state = 0, .external_lex_state = 174}, + [4846] = {.lex_state = 0, .external_lex_state = 171}, + [4847] = {.lex_state = 0, .external_lex_state = 151}, + [4848] = {.lex_state = 0, .external_lex_state = 171}, + [4849] = {.lex_state = 0, .external_lex_state = 171}, + [4850] = {.lex_state = 0, .external_lex_state = 172}, + [4851] = {.lex_state = 0, .external_lex_state = 169}, + [4852] = {.lex_state = 0, .external_lex_state = 171}, + [4853] = {.lex_state = 0, .external_lex_state = 169}, + [4854] = {.lex_state = 0, .external_lex_state = 171}, + [4855] = {.lex_state = 0, .external_lex_state = 174}, + [4856] = {.lex_state = 0, .external_lex_state = 174}, + [4857] = {.lex_state = 0, .external_lex_state = 171}, + [4858] = {.lex_state = 0, .external_lex_state = 171}, + [4859] = {.lex_state = 0, .external_lex_state = 174}, + [4860] = {.lex_state = 0, .external_lex_state = 172}, + [4861] = {.lex_state = 0, .external_lex_state = 174}, + [4862] = {.lex_state = 0, .external_lex_state = 197}, + [4863] = {.lex_state = 0, .external_lex_state = 170}, + [4864] = {.lex_state = 0, .external_lex_state = 172}, + [4865] = {.lex_state = 0, .external_lex_state = 169}, + [4866] = {.lex_state = 0, .external_lex_state = 169}, + [4867] = {.lex_state = 0, .external_lex_state = 174}, + [4868] = {.lex_state = 0, .external_lex_state = 198}, + [4869] = {.lex_state = 0, .external_lex_state = 174}, + [4870] = {.lex_state = 0, .external_lex_state = 174}, + [4871] = {.lex_state = 0, .external_lex_state = 172}, + [4872] = {.lex_state = 0, .external_lex_state = 170}, + [4873] = {.lex_state = 0, .external_lex_state = 174}, + [4874] = {.lex_state = 0, .external_lex_state = 171}, + [4875] = {.lex_state = 0, .external_lex_state = 171}, + [4876] = {.lex_state = 0, .external_lex_state = 174}, + [4877] = {.lex_state = 0, .external_lex_state = 170}, + [4878] = {.lex_state = 0, .external_lex_state = 174}, + [4879] = {.lex_state = 0, .external_lex_state = 174}, + [4880] = {.lex_state = 0, .external_lex_state = 174}, + [4881] = {.lex_state = 0, .external_lex_state = 174}, + [4882] = {.lex_state = 0, .external_lex_state = 174}, + [4883] = {.lex_state = 0, .external_lex_state = 205}, + [4884] = {.lex_state = 0, .external_lex_state = 176}, + [4885] = {.lex_state = 0, .external_lex_state = 176}, + [4886] = {.lex_state = 0, .external_lex_state = 176}, + [4887] = {.lex_state = 0, .external_lex_state = 205}, + [4888] = {.lex_state = 0, .external_lex_state = 176}, + [4889] = {.lex_state = 0, .external_lex_state = 176}, + [4890] = {.lex_state = 0, .external_lex_state = 205}, + [4891] = {.lex_state = 0, .external_lex_state = 176}, + [4892] = {.lex_state = 0, .external_lex_state = 176}, + [4893] = {.lex_state = 0, .external_lex_state = 176}, + [4894] = {.lex_state = 0, .external_lex_state = 176}, + [4895] = {.lex_state = 0, .external_lex_state = 176}, + [4896] = {.lex_state = 0, .external_lex_state = 176}, + [4897] = {.lex_state = 0, .external_lex_state = 205}, + [4898] = {.lex_state = 0, .external_lex_state = 205}, + [4899] = {.lex_state = 0, .external_lex_state = 202}, + [4900] = {.lex_state = 0, .external_lex_state = 176}, + [4901] = {.lex_state = 0, .external_lex_state = 176}, + [4902] = {.lex_state = 0, .external_lex_state = 176}, + [4903] = {.lex_state = 0, .external_lex_state = 202}, + [4904] = {.lex_state = 0, .external_lex_state = 176}, + [4905] = {.lex_state = 0, .external_lex_state = 176}, + [4906] = {.lex_state = 0, .external_lex_state = 176}, + [4907] = {.lex_state = 0, .external_lex_state = 176}, + [4908] = {.lex_state = 0, .external_lex_state = 176}, + [4909] = {.lex_state = 0, .external_lex_state = 205}, + [4910] = {.lex_state = 0, .external_lex_state = 205}, + [4911] = {.lex_state = 0, .external_lex_state = 202}, + [4912] = {.lex_state = 0, .external_lex_state = 198}, + [4913] = {.lex_state = 0, .external_lex_state = 198}, + [4914] = {.lex_state = 0, .external_lex_state = 198}, + [4915] = {.lex_state = 0, .external_lex_state = 205}, + [4916] = {.lex_state = 0, .external_lex_state = 206}, + [4917] = {.lex_state = 0, .external_lex_state = 176}, + [4918] = {.lex_state = 0, .external_lex_state = 176}, + [4919] = {.lex_state = 0, .external_lex_state = 176}, + [4920] = {.lex_state = 0, .external_lex_state = 176}, + [4921] = {.lex_state = 0, .external_lex_state = 205}, + [4922] = {.lex_state = 0, .external_lex_state = 176}, + [4923] = {.lex_state = 0, .external_lex_state = 171}, + [4924] = {.lex_state = 0, .external_lex_state = 207}, [4925] = {.lex_state = 0, .external_lex_state = 175}, - [4926] = {.lex_state = 0, .external_lex_state = 175}, - [4927] = {.lex_state = 0, .external_lex_state = 175}, - [4928] = {.lex_state = 0, .external_lex_state = 175}, - [4929] = {.lex_state = 0, .external_lex_state = 223}, - [4930] = {.lex_state = 0, .external_lex_state = 175}, - [4931] = {.lex_state = 0, .external_lex_state = 175}, - [4932] = {.lex_state = 0, .external_lex_state = 175}, - [4933] = {.lex_state = 0, .external_lex_state = 175}, - [4934] = {.lex_state = 0, .external_lex_state = 175}, - [4935] = {.lex_state = 0, .external_lex_state = 227}, - [4936] = {.lex_state = 0, .external_lex_state = 226}, - [4937] = {.lex_state = 0, .external_lex_state = 175}, - [4938] = {.lex_state = 0, .external_lex_state = 226}, - [4939] = {.lex_state = 0, .external_lex_state = 175}, - [4940] = {.lex_state = 0, .external_lex_state = 175}, - [4941] = {.lex_state = 0, .external_lex_state = 175}, - [4942] = {.lex_state = 0, .external_lex_state = 224}, - [4943] = {.lex_state = 0, .external_lex_state = 226}, - [4944] = {.lex_state = 0, .external_lex_state = 175}, - [4945] = {.lex_state = 0, .external_lex_state = 175}, - [4946] = {.lex_state = 0, .external_lex_state = 170}, - [4947] = {.lex_state = 0, .external_lex_state = 175}, - [4948] = {.lex_state = 0, .external_lex_state = 175}, - [4949] = {.lex_state = 0, .external_lex_state = 175}, - [4950] = {.lex_state = 0, .external_lex_state = 175}, - [4951] = {.lex_state = 0, .external_lex_state = 175}, - [4952] = {.lex_state = 0, .external_lex_state = 175}, - [4953] = {.lex_state = 0, .external_lex_state = 175}, - [4954] = {.lex_state = 0, .external_lex_state = 175}, - [4955] = {.lex_state = 0, .external_lex_state = 175}, - [4956] = {.lex_state = 0, .external_lex_state = 175}, - [4957] = {.lex_state = 0, .external_lex_state = 175}, - [4958] = {.lex_state = 0, .external_lex_state = 224}, - [4959] = {.lex_state = 0, .external_lex_state = 170}, - [4960] = {.lex_state = 0, .external_lex_state = 175}, - [4961] = {.lex_state = 0, .external_lex_state = 175}, - [4962] = {.lex_state = 0, .external_lex_state = 175}, - [4963] = {.lex_state = 0, .external_lex_state = 175}, - [4964] = {.lex_state = 0, .external_lex_state = 226}, - [4965] = {.lex_state = 0, .external_lex_state = 175}, - [4966] = {.lex_state = 0, .external_lex_state = 228}, - [4967] = {.lex_state = 0, .external_lex_state = 175}, - [4968] = {.lex_state = 0, .external_lex_state = 175}, - [4969] = {.lex_state = 0, .external_lex_state = 175}, - [4970] = {.lex_state = 0, .external_lex_state = 175}, - [4971] = {.lex_state = 0, .external_lex_state = 175}, - [4972] = {.lex_state = 0, .external_lex_state = 175}, - [4973] = {.lex_state = 0, .external_lex_state = 186}, - [4974] = {.lex_state = 0, .external_lex_state = 225}, - [4975] = {.lex_state = 0, .external_lex_state = 175}, - [4976] = {.lex_state = 0, .external_lex_state = 175}, - [4977] = {.lex_state = 0, .external_lex_state = 223}, - [4978] = {.lex_state = 0, .external_lex_state = 175}, - [4979] = {.lex_state = 0, .external_lex_state = 175}, - [4980] = {.lex_state = 0, .external_lex_state = 175}, - [4981] = {.lex_state = 0, .external_lex_state = 223}, - [4982] = {.lex_state = 0, .external_lex_state = 175}, - [4983] = {.lex_state = 0, .external_lex_state = 229}, - [4984] = {.lex_state = 0, .external_lex_state = 184}, - [4985] = {.lex_state = 0, .external_lex_state = 213}, - [4986] = {.lex_state = 0, .external_lex_state = 175}, - [4987] = {.lex_state = 0, .external_lex_state = 223}, - [4988] = {.lex_state = 0, .external_lex_state = 230}, - [4989] = {.lex_state = 0, .external_lex_state = 175}, - [4990] = {.lex_state = 0, .external_lex_state = 230}, - [4991] = {.lex_state = 0, .external_lex_state = 175}, - [4992] = {.lex_state = 0, .external_lex_state = 223}, - [4993] = {.lex_state = 0, .external_lex_state = 231}, - [4994] = {.lex_state = 0, .external_lex_state = 175}, - [4995] = {.lex_state = 0, .external_lex_state = 175}, - [4996] = {.lex_state = 0, .external_lex_state = 186}, - [4997] = {.lex_state = 0, .external_lex_state = 230}, - [4998] = {.lex_state = 0, .external_lex_state = 230}, - [4999] = {.lex_state = 0, .external_lex_state = 232}, - [5000] = {.lex_state = 0, .external_lex_state = 232}, - [5001] = {.lex_state = 0, .external_lex_state = 232}, - [5002] = {.lex_state = 0, .external_lex_state = 233}, - [5003] = {.lex_state = 0, .external_lex_state = 230}, - [5004] = {.lex_state = 0, .external_lex_state = 231}, - [5005] = {.lex_state = 0, .external_lex_state = 231}, - [5006] = {.lex_state = 0, .external_lex_state = 223}, - [5007] = {.lex_state = 0, .external_lex_state = 175}, - [5008] = {.lex_state = 0, .external_lex_state = 231}, - [5009] = {.lex_state = 0, .external_lex_state = 231}, - [5010] = {.lex_state = 0, .external_lex_state = 193}, - [5011] = {.lex_state = 0, .external_lex_state = 230}, - [5012] = {.lex_state = 0, .external_lex_state = 175}, - [5013] = {.lex_state = 0, .external_lex_state = 232}, - [5014] = {.lex_state = 0, .external_lex_state = 234}, - [5015] = {.lex_state = 0, .external_lex_state = 230}, - [5016] = {.lex_state = 0, .external_lex_state = 194}, - [5017] = {.lex_state = 0, .external_lex_state = 231}, - [5018] = {.lex_state = 0, .external_lex_state = 175}, - [5019] = {.lex_state = 0, .external_lex_state = 230}, - [5020] = {.lex_state = 0, .external_lex_state = 175}, - [5021] = {.lex_state = 0, .external_lex_state = 230}, - [5022] = {.lex_state = 0, .external_lex_state = 175}, - [5023] = {.lex_state = 0, .external_lex_state = 175}, - [5024] = {.lex_state = 0, .external_lex_state = 230}, - [5025] = {.lex_state = 0, .external_lex_state = 232}, - [5026] = {.lex_state = 0, .external_lex_state = 173}, - [5027] = {.lex_state = 0, .external_lex_state = 231}, - [5028] = {.lex_state = 0, .external_lex_state = 235}, - [5029] = {.lex_state = 0, .external_lex_state = 170}, - [5030] = {.lex_state = 0, .external_lex_state = 175}, - [5031] = {.lex_state = 0, .external_lex_state = 223}, - [5032] = {.lex_state = 0, .external_lex_state = 230}, - [5033] = {.lex_state = 0, .external_lex_state = 222}, - [5034] = {.lex_state = 0, .external_lex_state = 231}, - [5035] = {.lex_state = 0, .external_lex_state = 230}, - [5036] = {.lex_state = 0, .external_lex_state = 230}, - [5037] = {.lex_state = 0, .external_lex_state = 231}, - [5038] = {.lex_state = 0, .external_lex_state = 175}, - [5039] = {.lex_state = 0, .external_lex_state = 175}, - [5040] = {.lex_state = 0, .external_lex_state = 193}, - [5041] = {.lex_state = 0, .external_lex_state = 175}, + [4926] = {.lex_state = 0, .external_lex_state = 202}, + [4927] = {.lex_state = 0, .external_lex_state = 171}, + [4928] = {.lex_state = 0, .external_lex_state = 171}, + [4929] = {.lex_state = 0, .external_lex_state = 176}, + [4930] = {.lex_state = 0, .external_lex_state = 202}, + [4931] = {.lex_state = 0, .external_lex_state = 205}, + [4932] = {.lex_state = 0, .external_lex_state = 205}, + [4933] = {.lex_state = 0, .external_lex_state = 206}, + [4934] = {.lex_state = 0, .external_lex_state = 198}, + [4935] = {.lex_state = 0, .external_lex_state = 205}, + [4936] = {.lex_state = 0, .external_lex_state = 202}, + [4937] = {.lex_state = 0, .external_lex_state = 202}, + [4938] = {.lex_state = 0, .external_lex_state = 198}, + [4939] = {.lex_state = 0, .external_lex_state = 198}, + [4940] = {.lex_state = 0, .external_lex_state = 176}, + [4941] = {.lex_state = 0, .external_lex_state = 198}, + [4942] = {.lex_state = 0, .external_lex_state = 176}, + [4943] = {.lex_state = 0, .external_lex_state = 171}, + [4944] = {.lex_state = 0, .external_lex_state = 196}, + [4945] = {.lex_state = 0, .external_lex_state = 198}, + [4946] = {.lex_state = 0, .external_lex_state = 171}, + [4947] = {.lex_state = 0, .external_lex_state = 198}, + [4948] = {.lex_state = 0, .external_lex_state = 198}, + [4949] = {.lex_state = 0, .external_lex_state = 171}, + [4950] = {.lex_state = 0, .external_lex_state = 198}, + [4951] = {.lex_state = 0, .external_lex_state = 179}, + [4952] = {.lex_state = 0, .external_lex_state = 176}, + [4953] = {.lex_state = 0, .external_lex_state = 198}, + [4954] = {.lex_state = 2, .external_lex_state = 153}, + [4955] = {.lex_state = 0, .external_lex_state = 176}, + [4956] = {.lex_state = 0, .external_lex_state = 198}, + [4957] = {.lex_state = 0, .external_lex_state = 206}, + [4958] = {.lex_state = 0, .external_lex_state = 204}, + [4959] = {.lex_state = 0, .external_lex_state = 174}, + [4960] = {.lex_state = 0, .external_lex_state = 208}, + [4961] = {.lex_state = 0, .external_lex_state = 203}, + [4962] = {.lex_state = 0, .external_lex_state = 209}, + [4963] = {.lex_state = 0, .external_lex_state = 207}, + [4964] = {.lex_state = 0, .external_lex_state = 210}, + [4965] = {.lex_state = 0, .external_lex_state = 203}, + [4966] = {.lex_state = 0, .external_lex_state = 204}, + [4967] = {.lex_state = 3, .external_lex_state = 175}, + [4968] = {.lex_state = 0, .external_lex_state = 211}, + [4969] = {.lex_state = 0, .external_lex_state = 212}, + [4970] = {.lex_state = 0, .external_lex_state = 203}, + [4971] = {.lex_state = 0, .external_lex_state = 213}, + [4972] = {.lex_state = 0, .external_lex_state = 211}, + [4973] = {.lex_state = 0, .external_lex_state = 214}, + [4974] = {.lex_state = 0, .external_lex_state = 211}, + [4975] = {.lex_state = 0, .external_lex_state = 187}, + [4976] = {.lex_state = 0, .external_lex_state = 215}, + [4977] = {.lex_state = 0, .external_lex_state = 216}, + [4978] = {.lex_state = 0, .external_lex_state = 207}, + [4979] = {.lex_state = 0, .external_lex_state = 179}, + [4980] = {.lex_state = 0, .external_lex_state = 217}, + [4981] = {.lex_state = 0, .external_lex_state = 179}, + [4982] = {.lex_state = 0, .external_lex_state = 207}, + [4983] = {.lex_state = 0, .external_lex_state = 218}, + [4984] = {.lex_state = 0, .external_lex_state = 219}, + [4985] = {.lex_state = 0, .external_lex_state = 220}, + [4986] = {.lex_state = 0, .external_lex_state = 207}, + [4987] = {.lex_state = 0, .external_lex_state = 220}, + [4988] = {.lex_state = 0, .external_lex_state = 174}, + [4989] = {.lex_state = 0, .external_lex_state = 198}, + [4990] = {.lex_state = 0, .external_lex_state = 189}, + [4991] = {.lex_state = 0, .external_lex_state = 218}, + [4992] = {.lex_state = 0, .external_lex_state = 213}, + [4993] = {.lex_state = 0, .external_lex_state = 214}, + [4994] = {.lex_state = 0, .external_lex_state = 211}, + [4995] = {.lex_state = 0, .external_lex_state = 207}, + [4996] = {.lex_state = 0, .external_lex_state = 211}, + [4997] = {.lex_state = 0, .external_lex_state = 207}, + [4998] = {.lex_state = 0, .external_lex_state = 213}, + [4999] = {.lex_state = 0, .external_lex_state = 174}, + [5000] = {.lex_state = 0, .external_lex_state = 211}, + [5001] = {.lex_state = 0, .external_lex_state = 218}, + [5002] = {.lex_state = 0, .external_lex_state = 187}, + [5003] = {.lex_state = 0, .external_lex_state = 218}, + [5004] = {.lex_state = 0, .external_lex_state = 207}, + [5005] = {.lex_state = 0, .external_lex_state = 204}, + [5006] = {.lex_state = 0, .external_lex_state = 211}, + [5007] = {.lex_state = 0, .external_lex_state = 179}, + [5008] = {.lex_state = 0, .external_lex_state = 179}, + [5009] = {.lex_state = 0, .external_lex_state = 218}, + [5010] = {.lex_state = 0, .external_lex_state = 218}, + [5011] = {.lex_state = 0, .external_lex_state = 218}, + [5012] = {.lex_state = 0, .external_lex_state = 218}, + [5013] = {.lex_state = 0, .external_lex_state = 179}, + [5014] = {.lex_state = 0, .external_lex_state = 219}, + [5015] = {.lex_state = 0, .external_lex_state = 213}, + [5016] = {.lex_state = 0, .external_lex_state = 218}, + [5017] = {.lex_state = 0, .external_lex_state = 179}, + [5018] = {.lex_state = 0, .external_lex_state = 179}, + [5019] = {.lex_state = 0, .external_lex_state = 218}, + [5020] = {.lex_state = 0, .external_lex_state = 213}, + [5021] = {.lex_state = 0, .external_lex_state = 175}, + [5022] = {.lex_state = 0, .external_lex_state = 179}, + [5023] = {.lex_state = 0, .external_lex_state = 179}, + [5024] = {.lex_state = 0, .external_lex_state = 218}, + [5025] = {.lex_state = 0, .external_lex_state = 179}, + [5026] = {.lex_state = 0, .external_lex_state = 179}, + [5027] = {.lex_state = 0, .external_lex_state = 179}, + [5028] = {.lex_state = 0, .external_lex_state = 179}, + [5029] = {.lex_state = 0, .external_lex_state = 179}, + [5030] = {.lex_state = 0, .external_lex_state = 179}, + [5031] = {.lex_state = 0, .external_lex_state = 179}, + [5032] = {.lex_state = 0, .external_lex_state = 179}, + [5033] = {.lex_state = 0, .external_lex_state = 207}, + [5034] = {.lex_state = 0, .external_lex_state = 220}, + [5035] = {.lex_state = 0, .external_lex_state = 179}, + [5036] = {.lex_state = 0, .external_lex_state = 193}, + [5037] = {.lex_state = 0, .external_lex_state = 193}, + [5038] = {.lex_state = 0, .external_lex_state = 179}, + [5039] = {.lex_state = 0, .external_lex_state = 220}, + [5040] = {.lex_state = 0, .external_lex_state = 218}, + [5041] = {.lex_state = 0, .external_lex_state = 207}, [5042] = {.lex_state = 0, .external_lex_state = 175}, - [5043] = {.lex_state = 0, .external_lex_state = 230}, - [5044] = {.lex_state = 0, .external_lex_state = 175}, - [5045] = {.lex_state = 0, .external_lex_state = 230}, - [5046] = {.lex_state = 0, .external_lex_state = 235}, - [5047] = {.lex_state = 0, .external_lex_state = 175}, - [5048] = {.lex_state = 0, .external_lex_state = 193}, - [5049] = {.lex_state = 0, .external_lex_state = 175}, - [5050] = {.lex_state = 0, .external_lex_state = 234}, - [5051] = {.lex_state = 0, .external_lex_state = 235}, - [5052] = {.lex_state = 0, .external_lex_state = 230}, - [5053] = {.lex_state = 0, .external_lex_state = 175}, - [5054] = {.lex_state = 0, .external_lex_state = 186}, - [5055] = {.lex_state = 0, .external_lex_state = 175}, - [5056] = {.lex_state = 0, .external_lex_state = 230}, - [5057] = {.lex_state = 0, .external_lex_state = 175}, - [5058] = {.lex_state = 0, .external_lex_state = 175}, - [5059] = {.lex_state = 0, .external_lex_state = 209}, - [5060] = {.lex_state = 0, .external_lex_state = 230}, - [5061] = {.lex_state = 0, .external_lex_state = 230}, - [5062] = {.lex_state = 0, .external_lex_state = 193}, - [5063] = {.lex_state = 0, .external_lex_state = 175}, - [5064] = {.lex_state = 0, .external_lex_state = 232}, - [5065] = {.lex_state = 0, .external_lex_state = 230}, - [5066] = {.lex_state = 0, .external_lex_state = 231}, - [5067] = {.lex_state = 0, .external_lex_state = 232}, - [5068] = {.lex_state = 0, .external_lex_state = 230}, - [5069] = {.lex_state = 0, .external_lex_state = 175}, - [5070] = {.lex_state = 0, .external_lex_state = 230}, - [5071] = {.lex_state = 0, .external_lex_state = 232}, - [5072] = {.lex_state = 0, .external_lex_state = 175}, - [5073] = {.lex_state = 0, .external_lex_state = 230}, - [5074] = {.lex_state = 0, .external_lex_state = 236}, + [5043] = {.lex_state = 0, .external_lex_state = 179}, + [5044] = {.lex_state = 0, .external_lex_state = 218}, + [5045] = {.lex_state = 0, .external_lex_state = 213}, + [5046] = {.lex_state = 0, .external_lex_state = 179}, + [5047] = {.lex_state = 0, .external_lex_state = 218}, + [5048] = {.lex_state = 0, .external_lex_state = 179}, + [5049] = {.lex_state = 0, .external_lex_state = 207}, + [5050] = {.lex_state = 0, .external_lex_state = 187}, + [5051] = {.lex_state = 0, .external_lex_state = 207}, + [5052] = {.lex_state = 0, .external_lex_state = 179}, + [5053] = {.lex_state = 0, .external_lex_state = 179}, + [5054] = {.lex_state = 0, .external_lex_state = 193}, + [5055] = {.lex_state = 0, .external_lex_state = 207}, + [5056] = {.lex_state = 0, .external_lex_state = 179}, + [5057] = {.lex_state = 0, .external_lex_state = 179}, + [5058] = {.lex_state = 0, .external_lex_state = 218}, + [5059] = {.lex_state = 0, .external_lex_state = 218}, + [5060] = {.lex_state = 0, .external_lex_state = 207}, + [5061] = {.lex_state = 0, .external_lex_state = 207}, + [5062] = {.lex_state = 0, .external_lex_state = 179}, + [5063] = {.lex_state = 0, .external_lex_state = 179}, + [5064] = {.lex_state = 0, .external_lex_state = 216}, + [5065] = {.lex_state = 0, .external_lex_state = 218}, + [5066] = {.lex_state = 0, .external_lex_state = 179}, + [5067] = {.lex_state = 0, .external_lex_state = 218}, + [5068] = {.lex_state = 0, .external_lex_state = 218}, + [5069] = {.lex_state = 0, .external_lex_state = 207}, + [5070] = {.lex_state = 0, .external_lex_state = 218}, + [5071] = {.lex_state = 0, .external_lex_state = 221}, + [5072] = {.lex_state = 0, .external_lex_state = 222}, + [5073] = {.lex_state = 0, .external_lex_state = 175}, + [5074] = {.lex_state = 0, .external_lex_state = 175}, [5075] = {.lex_state = 0, .external_lex_state = 175}, [5076] = {.lex_state = 0, .external_lex_state = 175}, [5077] = {.lex_state = 0, .external_lex_state = 175}, - [5078] = {.lex_state = 0, .external_lex_state = 230}, + [5078] = {.lex_state = 0, .external_lex_state = 175}, [5079] = {.lex_state = 0, .external_lex_state = 175}, - [5080] = {.lex_state = 0, .external_lex_state = 230}, - [5081] = {.lex_state = 0, .external_lex_state = 237}, - [5082] = {.lex_state = 0, .external_lex_state = 222}, - [5083] = {.lex_state = 0, .external_lex_state = 231}, - [5084] = {.lex_state = 0, .external_lex_state = 223}, - [5085] = {.lex_state = 0, .external_lex_state = 231}, - [5086] = {.lex_state = 0, .external_lex_state = 238}, - [5087] = {.lex_state = 0, .external_lex_state = 186}, - [5088] = {.lex_state = 0, .external_lex_state = 230}, - [5089] = {.lex_state = 0, .external_lex_state = 223}, - [5090] = {.lex_state = 0, .external_lex_state = 230}, - [5091] = {.lex_state = 0, .external_lex_state = 210}, - [5092] = {.lex_state = 0, .external_lex_state = 230}, - [5093] = {.lex_state = 0, .external_lex_state = 234}, - [5094] = {.lex_state = 0, .external_lex_state = 235}, - [5095] = {.lex_state = 0, .external_lex_state = 230}, - [5096] = {.lex_state = 0, .external_lex_state = 223}, - [5097] = {.lex_state = 0, .external_lex_state = 239}, + [5080] = {.lex_state = 0, .external_lex_state = 175}, + [5081] = {.lex_state = 0, .external_lex_state = 175}, + [5082] = {.lex_state = 0, .external_lex_state = 187}, + [5083] = {.lex_state = 0, .external_lex_state = 169}, + [5084] = {.lex_state = 0, .external_lex_state = 175}, + [5085] = {.lex_state = 0, .external_lex_state = 175}, + [5086] = {.lex_state = 0, .external_lex_state = 175}, + [5087] = {.lex_state = 0, .external_lex_state = 175}, + [5088] = {.lex_state = 0, .external_lex_state = 175}, + [5089] = {.lex_state = 0, .external_lex_state = 175}, + [5090] = {.lex_state = 0, .external_lex_state = 221}, + [5091] = {.lex_state = 0, .external_lex_state = 175}, + [5092] = {.lex_state = 0, .external_lex_state = 175}, + [5093] = {.lex_state = 0, .external_lex_state = 223}, + [5094] = {.lex_state = 0, .external_lex_state = 175}, + [5095] = {.lex_state = 0, .external_lex_state = 221}, + [5096] = {.lex_state = 0, .external_lex_state = 175}, + [5097] = {.lex_state = 0, .external_lex_state = 175}, [5098] = {.lex_state = 0, .external_lex_state = 175}, - [5099] = {.lex_state = 0, .external_lex_state = 175}, - [5100] = {.lex_state = 0, .external_lex_state = 193}, - [5101] = {.lex_state = 0, .external_lex_state = 230}, - [5102] = {.lex_state = 0, .external_lex_state = 230}, - [5103] = {.lex_state = 0, .external_lex_state = 175}, - [5104] = {.lex_state = 0, .external_lex_state = 231}, - [5105] = {.lex_state = 0, .external_lex_state = 193}, - [5106] = {.lex_state = 0, .external_lex_state = 231}, - [5107] = {.lex_state = 0, .external_lex_state = 230}, - [5108] = {.lex_state = 0, .external_lex_state = 230}, - [5109] = {.lex_state = 0, .external_lex_state = 209}, - [5110] = {.lex_state = 0, .external_lex_state = 231}, - [5111] = {.lex_state = 0, .external_lex_state = 230}, - [5112] = {.lex_state = 0, .external_lex_state = 231}, - [5113] = {.lex_state = 0, .external_lex_state = 186}, + [5099] = {.lex_state = 0, .external_lex_state = 224}, + [5100] = {.lex_state = 0, .external_lex_state = 175}, + [5101] = {.lex_state = 0, .external_lex_state = 175}, + [5102] = {.lex_state = 0, .external_lex_state = 175}, + [5103] = {.lex_state = 0, .external_lex_state = 225}, + [5104] = {.lex_state = 0, .external_lex_state = 175}, + [5105] = {.lex_state = 0, .external_lex_state = 175}, + [5106] = {.lex_state = 0, .external_lex_state = 175}, + [5107] = {.lex_state = 0, .external_lex_state = 224}, + [5108] = {.lex_state = 0, .external_lex_state = 222}, + [5109] = {.lex_state = 0, .external_lex_state = 185}, + [5110] = {.lex_state = 0, .external_lex_state = 175}, + [5111] = {.lex_state = 0, .external_lex_state = 175}, + [5112] = {.lex_state = 0, .external_lex_state = 226}, + [5113] = {.lex_state = 0, .external_lex_state = 175}, [5114] = {.lex_state = 0, .external_lex_state = 175}, - [5115] = {.lex_state = 0, .external_lex_state = 230}, - [5116] = {.lex_state = 0, .external_lex_state = 193}, - [5117] = {.lex_state = 0, .external_lex_state = 186}, - [5118] = {.lex_state = 0, .external_lex_state = 210}, - [5119] = {.lex_state = 0, .external_lex_state = 186}, + [5115] = {.lex_state = 0, .external_lex_state = 175}, + [5116] = {.lex_state = 0, .external_lex_state = 175}, + [5117] = {.lex_state = 0, .external_lex_state = 227}, + [5118] = {.lex_state = 0, .external_lex_state = 175}, + [5119] = {.lex_state = 0, .external_lex_state = 175}, [5120] = {.lex_state = 0, .external_lex_state = 175}, - [5121] = {.lex_state = 0, .external_lex_state = 230}, + [5121] = {.lex_state = 0, .external_lex_state = 175}, [5122] = {.lex_state = 0, .external_lex_state = 175}, - [5123] = {.lex_state = 0, .external_lex_state = 146}, - [5124] = {.lex_state = 0, .external_lex_state = 230}, - [5125] = {.lex_state = 0, .external_lex_state = 175}, - [5126] = {.lex_state = 0, .external_lex_state = 228}, - [5127] = {.lex_state = 0, .external_lex_state = 222}, - [5128] = {.lex_state = 0, .external_lex_state = 231}, - [5129] = {.lex_state = 0, .external_lex_state = 230}, + [5123] = {.lex_state = 0, .external_lex_state = 175}, + [5124] = {.lex_state = 0, .external_lex_state = 175}, + [5125] = {.lex_state = 0, .external_lex_state = 228}, + [5126] = {.lex_state = 0, .external_lex_state = 175}, + [5127] = {.lex_state = 0, .external_lex_state = 175}, + [5128] = {.lex_state = 0, .external_lex_state = 175}, + [5129] = {.lex_state = 0, .external_lex_state = 220}, [5130] = {.lex_state = 0, .external_lex_state = 175}, - [5131] = {.lex_state = 0, .external_lex_state = 230}, - [5132] = {.lex_state = 0, .external_lex_state = 231}, - [5133] = {.lex_state = 0, .external_lex_state = 230}, - [5134] = {.lex_state = 0, .external_lex_state = 230}, - [5135] = {.lex_state = 0, .external_lex_state = 236}, - [5136] = {.lex_state = 0, .external_lex_state = 230}, - [5137] = {.lex_state = 0, .external_lex_state = 231}, - [5138] = {.lex_state = 0, .external_lex_state = 175}, - [5139] = {.lex_state = 0, .external_lex_state = 193}, - [5140] = {.lex_state = 0, .external_lex_state = 230}, - [5141] = {.lex_state = 0, .external_lex_state = 231}, - [5142] = {.lex_state = 0, .external_lex_state = 194}, - [5143] = {.lex_state = 0, .external_lex_state = 231}, + [5131] = {.lex_state = 0, .external_lex_state = 227}, + [5132] = {.lex_state = 0, .external_lex_state = 169}, + [5133] = {.lex_state = 0, .external_lex_state = 222}, + [5134] = {.lex_state = 0, .external_lex_state = 175}, + [5135] = {.lex_state = 0, .external_lex_state = 175}, + [5136] = {.lex_state = 0, .external_lex_state = 175}, + [5137] = {.lex_state = 0, .external_lex_state = 229}, + [5138] = {.lex_state = 0, .external_lex_state = 227}, + [5139] = {.lex_state = 0, .external_lex_state = 175}, + [5140] = {.lex_state = 0, .external_lex_state = 221}, + [5141] = {.lex_state = 0, .external_lex_state = 175}, + [5142] = {.lex_state = 0, .external_lex_state = 175}, + [5143] = {.lex_state = 0, .external_lex_state = 175}, [5144] = {.lex_state = 0, .external_lex_state = 175}, - [5145] = {.lex_state = 0, .external_lex_state = 230}, + [5145] = {.lex_state = 0, .external_lex_state = 175}, [5146] = {.lex_state = 0, .external_lex_state = 175}, - [5147] = {.lex_state = 0, .external_lex_state = 230}, - [5148] = {.lex_state = 0, .external_lex_state = 230}, - [5149] = {.lex_state = 0, .external_lex_state = 223}, - [5150] = {.lex_state = 0, .external_lex_state = 231}, - [5151] = {.lex_state = 0, .external_lex_state = 230}, - [5152] = {.lex_state = 0, .external_lex_state = 230}, - [5153] = {.lex_state = 0, .external_lex_state = 230}, - [5154] = {.lex_state = 0, .external_lex_state = 230}, + [5147] = {.lex_state = 0, .external_lex_state = 222}, + [5148] = {.lex_state = 0, .external_lex_state = 174}, + [5149] = {.lex_state = 0, .external_lex_state = 175}, + [5150] = {.lex_state = 0, .external_lex_state = 175}, + [5151] = {.lex_state = 0, .external_lex_state = 227}, + [5152] = {.lex_state = 0, .external_lex_state = 175}, + [5153] = {.lex_state = 0, .external_lex_state = 175}, + [5154] = {.lex_state = 0, .external_lex_state = 175}, [5155] = {.lex_state = 0, .external_lex_state = 175}, [5156] = {.lex_state = 0, .external_lex_state = 175}, - [5157] = {.lex_state = 0, .external_lex_state = 232}, - [5158] = {.lex_state = 0, .external_lex_state = 186}, + [5157] = {.lex_state = 0, .external_lex_state = 222}, + [5158] = {.lex_state = 0, .external_lex_state = 175}, [5159] = {.lex_state = 0, .external_lex_state = 175}, - [5160] = {.lex_state = 0, .external_lex_state = 223}, - [5161] = {.lex_state = 0, .external_lex_state = 186}, + [5160] = {.lex_state = 0, .external_lex_state = 175}, + [5161] = {.lex_state = 0, .external_lex_state = 175}, [5162] = {.lex_state = 0, .external_lex_state = 230}, [5163] = {.lex_state = 0, .external_lex_state = 175}, - [5164] = {.lex_state = 0, .external_lex_state = 240}, - [5165] = {.lex_state = 0, .external_lex_state = 240}, - [5166] = {.lex_state = 0, .external_lex_state = 241}, - [5167] = {.lex_state = 0, .external_lex_state = 240}, - [5168] = {.lex_state = 0, .external_lex_state = 240}, - [5169] = {.lex_state = 0, .external_lex_state = 236}, - [5170] = {.lex_state = 0, .external_lex_state = 240}, - [5171] = {.lex_state = 0, .external_lex_state = 240}, - [5172] = {.lex_state = 0, .external_lex_state = 242}, - [5173] = {.lex_state = 0, .external_lex_state = 242}, - [5174] = {.lex_state = 0, .external_lex_state = 186}, - [5175] = {.lex_state = 0, .external_lex_state = 186}, - [5176] = {.lex_state = 0, .external_lex_state = 186}, - [5177] = {.lex_state = 0, .external_lex_state = 186}, - [5178] = {.lex_state = 0, .external_lex_state = 240}, - [5179] = {.lex_state = 0, .external_lex_state = 240}, - [5180] = {.lex_state = 0, .external_lex_state = 240}, - [5181] = {.lex_state = 0, .external_lex_state = 240}, - [5182] = {.lex_state = 0, .external_lex_state = 186}, - [5183] = {.lex_state = 0, .external_lex_state = 243}, - [5184] = {.lex_state = 0, .external_lex_state = 240}, - [5185] = {.lex_state = 0, .external_lex_state = 201}, - [5186] = {.lex_state = 0, .external_lex_state = 240}, - [5187] = {.lex_state = 0, .external_lex_state = 225}, - [5188] = {.lex_state = 0, .external_lex_state = 244}, - [5189] = {.lex_state = 0, .external_lex_state = 240}, - [5190] = {.lex_state = 0, .external_lex_state = 224}, - [5191] = {.lex_state = 0, .external_lex_state = 240}, - [5192] = {.lex_state = 0, .external_lex_state = 240}, - [5193] = {.lex_state = 0, .external_lex_state = 224}, - [5194] = {.lex_state = 0, .external_lex_state = 240}, - [5195] = {.lex_state = 0, .external_lex_state = 222}, - [5196] = {.lex_state = 0, .external_lex_state = 222}, - [5197] = {.lex_state = 0, .external_lex_state = 186}, - [5198] = {.lex_state = 0, .external_lex_state = 222}, - [5199] = {.lex_state = 0, .external_lex_state = 240}, - [5200] = {.lex_state = 0, .external_lex_state = 240}, - [5201] = {.lex_state = 0, .external_lex_state = 245}, - [5202] = {.lex_state = 0, .external_lex_state = 240}, - [5203] = {.lex_state = 0, .external_lex_state = 240}, - [5204] = {.lex_state = 0, .external_lex_state = 240}, - [5205] = {.lex_state = 0, .external_lex_state = 240}, - [5206] = {.lex_state = 0, .external_lex_state = 186}, - [5207] = {.lex_state = 0, .external_lex_state = 240}, - [5208] = {.lex_state = 0, .external_lex_state = 186}, - [5209] = {.lex_state = 0, .external_lex_state = 240}, - [5210] = {.lex_state = 0, .external_lex_state = 242}, - [5211] = {.lex_state = 0, .external_lex_state = 240}, - [5212] = {.lex_state = 0, .external_lex_state = 240}, - [5213] = {.lex_state = 0, .external_lex_state = 186}, - [5214] = {.lex_state = 0, .external_lex_state = 190}, - [5215] = {.lex_state = 0, .external_lex_state = 246}, - [5216] = {.lex_state = 0, .external_lex_state = 190}, - [5217] = {.lex_state = 0, .external_lex_state = 175}, - [5218] = {.lex_state = 0, .external_lex_state = 246}, - [5219] = {.lex_state = 0, .external_lex_state = 240}, - [5220] = {.lex_state = 0, .external_lex_state = 240}, - [5221] = {.lex_state = 0, .external_lex_state = 246}, - [5222] = {.lex_state = 0, .external_lex_state = 240}, - [5223] = {.lex_state = 0, .external_lex_state = 240}, - [5224] = {.lex_state = 0, .external_lex_state = 186}, - [5225] = {.lex_state = 0, .external_lex_state = 240}, - [5226] = {.lex_state = 0, .external_lex_state = 240}, - [5227] = {.lex_state = 0, .external_lex_state = 240}, - [5228] = {.lex_state = 0, .external_lex_state = 240}, - [5229] = {.lex_state = 0, .external_lex_state = 186}, - [5230] = {.lex_state = 0, .external_lex_state = 186}, - [5231] = {.lex_state = 0, .external_lex_state = 186}, - [5232] = {.lex_state = 0, .external_lex_state = 240}, - [5233] = {.lex_state = 0, .external_lex_state = 240}, - [5234] = {.lex_state = 0, .external_lex_state = 240}, - [5235] = {.lex_state = 0, .external_lex_state = 207}, - [5236] = {.lex_state = 0, .external_lex_state = 240}, - [5237] = {.lex_state = 0, .external_lex_state = 186}, - [5238] = {.lex_state = 0, .external_lex_state = 225}, - [5239] = {.lex_state = 0, .external_lex_state = 236}, - [5240] = {.lex_state = 0, .external_lex_state = 240}, - [5241] = {.lex_state = 0, .external_lex_state = 225}, - [5242] = {.lex_state = 0, .external_lex_state = 241}, - [5243] = {.lex_state = 0, .external_lex_state = 240}, - [5244] = {.lex_state = 0, .external_lex_state = 201}, - [5245] = {.lex_state = 0, .external_lex_state = 223}, - [5246] = {.lex_state = 0, .external_lex_state = 225}, - [5247] = {.lex_state = 0, .external_lex_state = 240}, - [5248] = {.lex_state = 0, .external_lex_state = 240}, - [5249] = {.lex_state = 0, .external_lex_state = 214}, - [5250] = {.lex_state = 0, .external_lex_state = 240}, - [5251] = {.lex_state = 0, .external_lex_state = 232}, - [5252] = {.lex_state = 0, .external_lex_state = 186}, - [5253] = {.lex_state = 0, .external_lex_state = 240}, - [5254] = {.lex_state = 0, .external_lex_state = 240}, - [5255] = {.lex_state = 0, .external_lex_state = 186}, - [5256] = {.lex_state = 0, .external_lex_state = 240}, - [5257] = {.lex_state = 0, .external_lex_state = 186}, - [5258] = {.lex_state = 0, .external_lex_state = 170}, - [5259] = {.lex_state = 0, .external_lex_state = 186}, - [5260] = {.lex_state = 0, .external_lex_state = 245}, - [5261] = {.lex_state = 0, .external_lex_state = 240}, - [5262] = {.lex_state = 0, .external_lex_state = 240}, - [5263] = {.lex_state = 0, .external_lex_state = 243}, - [5264] = {.lex_state = 0, .external_lex_state = 240}, - [5265] = {.lex_state = 0, .external_lex_state = 244}, - [5266] = {.lex_state = 0, .external_lex_state = 240}, - [5267] = {.lex_state = 0, .external_lex_state = 240}, - [5268] = {.lex_state = 0, .external_lex_state = 240}, - [5269] = {.lex_state = 0, .external_lex_state = 246}, - [5270] = {.lex_state = 0, .external_lex_state = 245}, - [5271] = {.lex_state = 0, .external_lex_state = 234}, - [5272] = {.lex_state = 0, .external_lex_state = 240}, - [5273] = {.lex_state = 0, .external_lex_state = 234}, - [5274] = {.lex_state = 0, .external_lex_state = 240}, - [5275] = {.lex_state = 0, .external_lex_state = 245}, - [5276] = {.lex_state = 0, .external_lex_state = 244}, - [5277] = {.lex_state = 0, .external_lex_state = 234}, - [5278] = {.lex_state = 0, .external_lex_state = 245}, - [5279] = {.lex_state = 0, .external_lex_state = 240}, - [5280] = {.lex_state = 0, .external_lex_state = 240}, - [5281] = {.lex_state = 0, .external_lex_state = 240}, - [5282] = {.lex_state = 0, .external_lex_state = 234}, - [5283] = {.lex_state = 0, .external_lex_state = 234}, - [5284] = {.lex_state = 0, .external_lex_state = 240}, - [5285] = {.lex_state = 0, .external_lex_state = 240}, - [5286] = {.lex_state = 0, .external_lex_state = 246}, - [5287] = {.lex_state = 0, .external_lex_state = 234}, - [5288] = {.lex_state = 0, .external_lex_state = 240}, - [5289] = {.lex_state = 0, .external_lex_state = 240}, - [5290] = {.lex_state = 0, .external_lex_state = 241}, - [5291] = {.lex_state = 0, .external_lex_state = 244}, - [5292] = {.lex_state = 0, .external_lex_state = 234}, - [5293] = {.lex_state = 0, .external_lex_state = 234}, - [5294] = {.lex_state = 0, .external_lex_state = 240}, - [5295] = {.lex_state = 0, .external_lex_state = 234}, - [5296] = {.lex_state = 0, .external_lex_state = 240}, - [5297] = {.lex_state = 0, .external_lex_state = 240}, - [5298] = {.lex_state = 0, .external_lex_state = 240}, - [5299] = {.lex_state = 0, .external_lex_state = 240}, - [5300] = {.lex_state = 0, .external_lex_state = 234}, - [5301] = {.lex_state = 0, .external_lex_state = 186}, - [5302] = {.lex_state = 0, .external_lex_state = 240}, - [5303] = {.lex_state = 0, .external_lex_state = 186}, - [5304] = {.lex_state = 0, .external_lex_state = 240}, - [5305] = {.lex_state = 0, .external_lex_state = 225}, - [5306] = {.lex_state = 0, .external_lex_state = 240}, - [5307] = {.lex_state = 0, .external_lex_state = 240}, - [5308] = {.lex_state = 0, .external_lex_state = 240}, - [5309] = {.lex_state = 0, .external_lex_state = 240}, - [5310] = {.lex_state = 0, .external_lex_state = 240}, - [5311] = {.lex_state = 0, .external_lex_state = 240}, - [5312] = {.lex_state = 0, .external_lex_state = 190}, - [5313] = {.lex_state = 0, .external_lex_state = 224}, - [5314] = {.lex_state = 0, .external_lex_state = 247}, - [5315] = {.lex_state = 0, .external_lex_state = 240}, - [5316] = {.lex_state = 0, .external_lex_state = 190}, - [5317] = {.lex_state = 0, .external_lex_state = 240}, - [5318] = {.lex_state = 0, .external_lex_state = 240}, - [5319] = {.lex_state = 0, .external_lex_state = 240}, - [5320] = {.lex_state = 0, .external_lex_state = 225}, - [5321] = {.lex_state = 0, .external_lex_state = 234}, - [5322] = {.lex_state = 0, .external_lex_state = 240}, - [5323] = {.lex_state = 0, .external_lex_state = 190}, - [5324] = {.lex_state = 0, .external_lex_state = 240}, - [5325] = {.lex_state = 0, .external_lex_state = 224}, - [5326] = {.lex_state = 0, .external_lex_state = 243}, - [5327] = {.lex_state = 0, .external_lex_state = 243}, - [5328] = {.lex_state = 0, .external_lex_state = 240}, - [5329] = {.lex_state = 0, .external_lex_state = 190}, - [5330] = {.lex_state = 0, .external_lex_state = 240}, - [5331] = {.lex_state = 0, .external_lex_state = 240}, - [5332] = {.lex_state = 0, .external_lex_state = 240}, - [5333] = {.lex_state = 0, .external_lex_state = 240}, - [5334] = {.lex_state = 0, .external_lex_state = 201}, - [5335] = {.lex_state = 0, .external_lex_state = 201}, - [5336] = {.lex_state = 0, .external_lex_state = 240}, - [5337] = {.lex_state = 0, .external_lex_state = 186}, - [5338] = {.lex_state = 0, .external_lex_state = 234}, - [5339] = {.lex_state = 0, .external_lex_state = 240}, - [5340] = {.lex_state = 0, .external_lex_state = 240}, - [5341] = {.lex_state = 0, .external_lex_state = 234}, - [5342] = {.lex_state = 0, .external_lex_state = 243}, - [5343] = {.lex_state = 0, .external_lex_state = 201}, - [5344] = {.lex_state = 0, .external_lex_state = 240}, - [5345] = {.lex_state = 0, .external_lex_state = 234}, - [5346] = {.lex_state = 0, .external_lex_state = 240}, + [5164] = {.lex_state = 0, .external_lex_state = 175}, + [5165] = {.lex_state = 0, .external_lex_state = 231}, + [5166] = {.lex_state = 0, .external_lex_state = 232}, + [5167] = {.lex_state = 0, .external_lex_state = 187}, + [5168] = {.lex_state = 0, .external_lex_state = 233}, + [5169] = {.lex_state = 0, .external_lex_state = 193}, + [5170] = {.lex_state = 0, .external_lex_state = 234}, + [5171] = {.lex_state = 0, .external_lex_state = 232}, + [5172] = {.lex_state = 0, .external_lex_state = 232}, + [5173] = {.lex_state = 0, .external_lex_state = 229}, + [5174] = {.lex_state = 0, .external_lex_state = 232}, + [5175] = {.lex_state = 0, .external_lex_state = 231}, + [5176] = {.lex_state = 0, .external_lex_state = 175}, + [5177] = {.lex_state = 0, .external_lex_state = 175}, + [5178] = {.lex_state = 0, .external_lex_state = 221}, + [5179] = {.lex_state = 0, .external_lex_state = 234}, + [5180] = {.lex_state = 0, .external_lex_state = 231}, + [5181] = {.lex_state = 0, .external_lex_state = 232}, + [5182] = {.lex_state = 0, .external_lex_state = 235}, + [5183] = {.lex_state = 0, .external_lex_state = 232}, + [5184] = {.lex_state = 0, .external_lex_state = 218}, + [5185] = {.lex_state = 0, .external_lex_state = 221}, + [5186] = {.lex_state = 0, .external_lex_state = 175}, + [5187] = {.lex_state = 0, .external_lex_state = 231}, + [5188] = {.lex_state = 0, .external_lex_state = 232}, + [5189] = {.lex_state = 0, .external_lex_state = 232}, + [5190] = {.lex_state = 0, .external_lex_state = 232}, + [5191] = {.lex_state = 0, .external_lex_state = 187}, + [5192] = {.lex_state = 0, .external_lex_state = 232}, + [5193] = {.lex_state = 0, .external_lex_state = 232}, + [5194] = {.lex_state = 0, .external_lex_state = 175}, + [5195] = {.lex_state = 0, .external_lex_state = 234}, + [5196] = {.lex_state = 0, .external_lex_state = 232}, + [5197] = {.lex_state = 0, .external_lex_state = 232}, + [5198] = {.lex_state = 0, .external_lex_state = 211}, + [5199] = {.lex_state = 0, .external_lex_state = 234}, + [5200] = {.lex_state = 0, .external_lex_state = 231}, + [5201] = {.lex_state = 0, .external_lex_state = 232}, + [5202] = {.lex_state = 0, .external_lex_state = 175}, + [5203] = {.lex_state = 0, .external_lex_state = 231}, + [5204] = {.lex_state = 0, .external_lex_state = 231}, + [5205] = {.lex_state = 0, .external_lex_state = 175}, + [5206] = {.lex_state = 0, .external_lex_state = 232}, + [5207] = {.lex_state = 0, .external_lex_state = 169}, + [5208] = {.lex_state = 0, .external_lex_state = 232}, + [5209] = {.lex_state = 0, .external_lex_state = 236}, + [5210] = {.lex_state = 0, .external_lex_state = 232}, + [5211] = {.lex_state = 0, .external_lex_state = 232}, + [5212] = {.lex_state = 0, .external_lex_state = 175}, + [5213] = {.lex_state = 0, .external_lex_state = 232}, + [5214] = {.lex_state = 0, .external_lex_state = 196}, + [5215] = {.lex_state = 0, .external_lex_state = 175}, + [5216] = {.lex_state = 0, .external_lex_state = 232}, + [5217] = {.lex_state = 0, .external_lex_state = 232}, + [5218] = {.lex_state = 0, .external_lex_state = 232}, + [5219] = {.lex_state = 0, .external_lex_state = 232}, + [5220] = {.lex_state = 0, .external_lex_state = 235}, + [5221] = {.lex_state = 0, .external_lex_state = 175}, + [5222] = {.lex_state = 0, .external_lex_state = 232}, + [5223] = {.lex_state = 0, .external_lex_state = 175}, + [5224] = {.lex_state = 0, .external_lex_state = 232}, + [5225] = {.lex_state = 0, .external_lex_state = 232}, + [5226] = {.lex_state = 0, .external_lex_state = 175}, + [5227] = {.lex_state = 0, .external_lex_state = 187}, + [5228] = {.lex_state = 0, .external_lex_state = 237}, + [5229] = {.lex_state = 0, .external_lex_state = 232}, + [5230] = {.lex_state = 0, .external_lex_state = 232}, + [5231] = {.lex_state = 0, .external_lex_state = 231}, + [5232] = {.lex_state = 0, .external_lex_state = 175}, + [5233] = {.lex_state = 0, .external_lex_state = 232}, + [5234] = {.lex_state = 0, .external_lex_state = 175}, + [5235] = {.lex_state = 0, .external_lex_state = 234}, + [5236] = {.lex_state = 0, .external_lex_state = 175}, + [5237] = {.lex_state = 0, .external_lex_state = 232}, + [5238] = {.lex_state = 0, .external_lex_state = 232}, + [5239] = {.lex_state = 0, .external_lex_state = 196}, + [5240] = {.lex_state = 0, .external_lex_state = 232}, + [5241] = {.lex_state = 0, .external_lex_state = 211}, + [5242] = {.lex_state = 0, .external_lex_state = 232}, + [5243] = {.lex_state = 0, .external_lex_state = 187}, + [5244] = {.lex_state = 0, .external_lex_state = 232}, + [5245] = {.lex_state = 0, .external_lex_state = 232}, + [5246] = {.lex_state = 0, .external_lex_state = 175}, + [5247] = {.lex_state = 0, .external_lex_state = 175}, + [5248] = {.lex_state = 0, .external_lex_state = 232}, + [5249] = {.lex_state = 0, .external_lex_state = 232}, + [5250] = {.lex_state = 0, .external_lex_state = 175}, + [5251] = {.lex_state = 0, .external_lex_state = 175}, + [5252] = {.lex_state = 0, .external_lex_state = 175}, + [5253] = {.lex_state = 0, .external_lex_state = 175}, + [5254] = {.lex_state = 0, .external_lex_state = 232}, + [5255] = {.lex_state = 0, .external_lex_state = 221}, + [5256] = {.lex_state = 0, .external_lex_state = 232}, + [5257] = {.lex_state = 0, .external_lex_state = 175}, + [5258] = {.lex_state = 0, .external_lex_state = 238}, + [5259] = {.lex_state = 0, .external_lex_state = 232}, + [5260] = {.lex_state = 0, .external_lex_state = 175}, + [5261] = {.lex_state = 0, .external_lex_state = 232}, + [5262] = {.lex_state = 0, .external_lex_state = 232}, + [5263] = {.lex_state = 0, .external_lex_state = 175}, + [5264] = {.lex_state = 0, .external_lex_state = 232}, + [5265] = {.lex_state = 0, .external_lex_state = 187}, + [5266] = {.lex_state = 0, .external_lex_state = 232}, + [5267] = {.lex_state = 0, .external_lex_state = 175}, + [5268] = {.lex_state = 0, .external_lex_state = 231}, + [5269] = {.lex_state = 0, .external_lex_state = 234}, + [5270] = {.lex_state = 0, .external_lex_state = 236}, + [5271] = {.lex_state = 0, .external_lex_state = 175}, + [5272] = {.lex_state = 0, .external_lex_state = 175}, + [5273] = {.lex_state = 0, .external_lex_state = 196}, + [5274] = {.lex_state = 0, .external_lex_state = 175}, + [5275] = {.lex_state = 0, .external_lex_state = 234}, + [5276] = {.lex_state = 0, .external_lex_state = 239}, + [5277] = {.lex_state = 0, .external_lex_state = 175}, + [5278] = {.lex_state = 0, .external_lex_state = 175}, + [5279] = {.lex_state = 0, .external_lex_state = 231}, + [5280] = {.lex_state = 0, .external_lex_state = 232}, + [5281] = {.lex_state = 0, .external_lex_state = 196}, + [5282] = {.lex_state = 0, .external_lex_state = 196}, + [5283] = {.lex_state = 0, .external_lex_state = 175}, + [5284] = {.lex_state = 0, .external_lex_state = 231}, + [5285] = {.lex_state = 0, .external_lex_state = 231}, + [5286] = {.lex_state = 0, .external_lex_state = 231}, + [5287] = {.lex_state = 0, .external_lex_state = 235}, + [5288] = {.lex_state = 0, .external_lex_state = 196}, + [5289] = {.lex_state = 0, .external_lex_state = 232}, + [5290] = {.lex_state = 0, .external_lex_state = 231}, + [5291] = {.lex_state = 0, .external_lex_state = 175}, + [5292] = {.lex_state = 0, .external_lex_state = 236}, + [5293] = {.lex_state = 0, .external_lex_state = 221}, + [5294] = {.lex_state = 0, .external_lex_state = 232}, + [5295] = {.lex_state = 0, .external_lex_state = 229}, + [5296] = {.lex_state = 0, .external_lex_state = 236}, + [5297] = {.lex_state = 0, .external_lex_state = 231}, + [5298] = {.lex_state = 0, .external_lex_state = 175}, + [5299] = {.lex_state = 0, .external_lex_state = 223}, + [5300] = {.lex_state = 0, .external_lex_state = 231}, + [5301] = {.lex_state = 0, .external_lex_state = 232}, + [5302] = {.lex_state = 0, .external_lex_state = 175}, + [5303] = {.lex_state = 0, .external_lex_state = 231}, + [5304] = {.lex_state = 0, .external_lex_state = 231}, + [5305] = {.lex_state = 0, .external_lex_state = 231}, + [5306] = {.lex_state = 0, .external_lex_state = 221}, + [5307] = {.lex_state = 0, .external_lex_state = 175}, + [5308] = {.lex_state = 0, .external_lex_state = 234}, + [5309] = {.lex_state = 0, .external_lex_state = 231}, + [5310] = {.lex_state = 0, .external_lex_state = 187}, + [5311] = {.lex_state = 0, .external_lex_state = 221}, + [5312] = {.lex_state = 0, .external_lex_state = 175}, + [5313] = {.lex_state = 0, .external_lex_state = 232}, + [5314] = {.lex_state = 0, .external_lex_state = 218}, + [5315] = {.lex_state = 0, .external_lex_state = 232}, + [5316] = {.lex_state = 0, .external_lex_state = 175}, + [5317] = {.lex_state = 0, .external_lex_state = 233}, + [5318] = {.lex_state = 0, .external_lex_state = 175}, + [5319] = {.lex_state = 0, .external_lex_state = 174}, + [5320] = {.lex_state = 0, .external_lex_state = 175}, + [5321] = {.lex_state = 0, .external_lex_state = 231}, + [5322] = {.lex_state = 0, .external_lex_state = 231}, + [5323] = {.lex_state = 0, .external_lex_state = 231}, + [5324] = {.lex_state = 0, .external_lex_state = 231}, + [5325] = {.lex_state = 0, .external_lex_state = 231}, + [5326] = {.lex_state = 0, .external_lex_state = 231}, + [5327] = {.lex_state = 0, .external_lex_state = 175}, + [5328] = {.lex_state = 0, .external_lex_state = 221}, + [5329] = {.lex_state = 0, .external_lex_state = 231}, + [5330] = {.lex_state = 0, .external_lex_state = 196}, + [5331] = {.lex_state = 0, .external_lex_state = 229}, + [5332] = {.lex_state = 0, .external_lex_state = 187}, + [5333] = {.lex_state = 0, .external_lex_state = 234}, + [5334] = {.lex_state = 0, .external_lex_state = 193}, + [5335] = {.lex_state = 0, .external_lex_state = 175}, + [5336] = {.lex_state = 0, .external_lex_state = 146}, + [5337] = {.lex_state = 0, .external_lex_state = 232}, + [5338] = {.lex_state = 0, .external_lex_state = 231}, + [5339] = {.lex_state = 0, .external_lex_state = 231}, + [5340] = {.lex_state = 0, .external_lex_state = 196}, + [5341] = {.lex_state = 0, .external_lex_state = 187}, + [5342] = {.lex_state = 0, .external_lex_state = 175}, + [5343] = {.lex_state = 0, .external_lex_state = 175}, + [5344] = {.lex_state = 0, .external_lex_state = 187}, + [5345] = {.lex_state = 0, .external_lex_state = 199}, + [5346] = {.lex_state = 0, .external_lex_state = 187}, [5347] = {.lex_state = 0, .external_lex_state = 240}, [5348] = {.lex_state = 0, .external_lex_state = 240}, - [5349] = {.lex_state = 0, .external_lex_state = 201}, + [5349] = {.lex_state = 0, .external_lex_state = 240}, [5350] = {.lex_state = 0, .external_lex_state = 240}, - [5351] = {.lex_state = 0, .external_lex_state = 240}, - [5352] = {.lex_state = 0, .external_lex_state = 222}, - [5353] = {.lex_state = 0, .external_lex_state = 235}, - [5354] = {.lex_state = 0, .external_lex_state = 240}, - [5355] = {.lex_state = 0, .external_lex_state = 240}, - [5356] = {.lex_state = 0, .external_lex_state = 240}, + [5351] = {.lex_state = 0, .external_lex_state = 234}, + [5352] = {.lex_state = 0, .external_lex_state = 240}, + [5353] = {.lex_state = 0, .external_lex_state = 240}, + [5354] = {.lex_state = 0, .external_lex_state = 187}, + [5355] = {.lex_state = 0, .external_lex_state = 187}, + [5356] = {.lex_state = 0, .external_lex_state = 241}, [5357] = {.lex_state = 0, .external_lex_state = 240}, [5358] = {.lex_state = 0, .external_lex_state = 240}, - [5359] = {.lex_state = 0, .external_lex_state = 240}, + [5359] = {.lex_state = 0, .external_lex_state = 187}, [5360] = {.lex_state = 0, .external_lex_state = 240}, - [5361] = {.lex_state = 0, .external_lex_state = 243}, - [5362] = {.lex_state = 0, .external_lex_state = 240}, - [5363] = {.lex_state = 0, .external_lex_state = 244}, - [5364] = {.lex_state = 0, .external_lex_state = 234}, - [5365] = {.lex_state = 0, .external_lex_state = 225}, - [5366] = {.lex_state = 0, .external_lex_state = 248}, - [5367] = {.lex_state = 0, .external_lex_state = 234}, + [5361] = {.lex_state = 0, .external_lex_state = 240}, + [5362] = {.lex_state = 0, .external_lex_state = 242}, + [5363] = {.lex_state = 0, .external_lex_state = 240}, + [5364] = {.lex_state = 0, .external_lex_state = 240}, + [5365] = {.lex_state = 0, .external_lex_state = 243}, + [5366] = {.lex_state = 0, .external_lex_state = 240}, + [5367] = {.lex_state = 0, .external_lex_state = 240}, [5368] = {.lex_state = 0, .external_lex_state = 240}, [5369] = {.lex_state = 0, .external_lex_state = 240}, - [5370] = {.lex_state = 0, .external_lex_state = 245}, - [5371] = {.lex_state = 0, .external_lex_state = 175}, - [5372] = {.lex_state = 0, .external_lex_state = 186}, + [5370] = {.lex_state = 0, .external_lex_state = 244}, + [5371] = {.lex_state = 0, .external_lex_state = 187}, + [5372] = {.lex_state = 0, .external_lex_state = 188}, [5373] = {.lex_state = 0, .external_lex_state = 240}, - [5374] = {.lex_state = 0, .external_lex_state = 186}, - [5375] = {.lex_state = 0, .external_lex_state = 249}, - [5376] = {.lex_state = 0, .external_lex_state = 225}, + [5374] = {.lex_state = 0, .external_lex_state = 240}, + [5375] = {.lex_state = 0, .external_lex_state = 245}, + [5376] = {.lex_state = 0, .external_lex_state = 235}, [5377] = {.lex_state = 0, .external_lex_state = 240}, [5378] = {.lex_state = 0, .external_lex_state = 240}, - [5379] = {.lex_state = 0, .external_lex_state = 234}, - [5380] = {.lex_state = 0, .external_lex_state = 246}, - [5381] = {.lex_state = 0, .external_lex_state = 234}, - [5382] = {.lex_state = 0, .external_lex_state = 248}, - [5383] = {.lex_state = 0, .external_lex_state = 250}, - [5384] = {.lex_state = 0, .external_lex_state = 186}, - [5385] = {.lex_state = 0, .external_lex_state = 251}, - [5386] = {.lex_state = 0, .external_lex_state = 186}, - [5387] = {.lex_state = 0, .external_lex_state = 225}, - [5388] = {.lex_state = 0, .external_lex_state = 186}, - [5389] = {.lex_state = 0, .external_lex_state = 250}, - [5390] = {.lex_state = 0, .external_lex_state = 186}, - [5391] = {.lex_state = 0, .external_lex_state = 251}, - [5392] = {.lex_state = 0, .external_lex_state = 225}, - [5393] = {.lex_state = 0, .external_lex_state = 186}, - [5394] = {.lex_state = 0, .external_lex_state = 228}, - [5395] = {.lex_state = 0, .external_lex_state = 186}, - [5396] = {.lex_state = 0, .external_lex_state = 186}, - [5397] = {.lex_state = 0, .external_lex_state = 225}, - [5398] = {.lex_state = 0, .external_lex_state = 186}, - [5399] = {.lex_state = 0, .external_lex_state = 186}, - [5400] = {.lex_state = 0, .external_lex_state = 225}, - [5401] = {.lex_state = 0, .external_lex_state = 250}, - [5402] = {.lex_state = 0, .external_lex_state = 186}, - [5403] = {.lex_state = 0, .external_lex_state = 186}, - [5404] = {.lex_state = 0, .external_lex_state = 252}, - [5405] = {.lex_state = 0, .external_lex_state = 186}, - [5406] = {.lex_state = 0, .external_lex_state = 253}, - [5407] = {.lex_state = 0, .external_lex_state = 186}, - [5408] = {.lex_state = 0, .external_lex_state = 251}, - [5409] = {.lex_state = 0, .external_lex_state = 186}, - [5410] = {.lex_state = 0, .external_lex_state = 186}, - [5411] = {.lex_state = 0, .external_lex_state = 186}, - [5412] = {.lex_state = 0, .external_lex_state = 186}, - [5413] = {.lex_state = 0, .external_lex_state = 186}, - [5414] = {.lex_state = 0, .external_lex_state = 186}, - [5415] = {.lex_state = 0, .external_lex_state = 228}, - [5416] = {.lex_state = 0, .external_lex_state = 254}, - [5417] = {.lex_state = 0, .external_lex_state = 240}, - [5418] = {.lex_state = 0, .external_lex_state = 186}, - [5419] = {.lex_state = 0, .external_lex_state = 232}, - [5420] = {.lex_state = 0, .external_lex_state = 253}, - [5421] = {.lex_state = 0, .external_lex_state = 209}, - [5422] = {.lex_state = 0, .external_lex_state = 253}, - [5423] = {.lex_state = 0, .external_lex_state = 186}, - [5424] = {.lex_state = 0, .external_lex_state = 250}, - [5425] = {.lex_state = 0, .external_lex_state = 209}, - [5426] = {.lex_state = 0, .external_lex_state = 246}, - [5427] = {.lex_state = 0, .external_lex_state = 186}, - [5428] = {.lex_state = 0, .external_lex_state = 252}, - [5429] = {.lex_state = 0, .external_lex_state = 186}, - [5430] = {.lex_state = 0, .external_lex_state = 186}, - [5431] = {.lex_state = 0, .external_lex_state = 250}, - [5432] = {.lex_state = 0, .external_lex_state = 250}, - [5433] = {.lex_state = 0, .external_lex_state = 241}, - [5434] = {.lex_state = 0, .external_lex_state = 225}, - [5435] = {.lex_state = 0, .external_lex_state = 186}, - [5436] = {.lex_state = 0, .external_lex_state = 250}, - [5437] = {.lex_state = 0, .external_lex_state = 225}, - [5438] = {.lex_state = 0, .external_lex_state = 186}, - [5439] = {.lex_state = 0, .external_lex_state = 250}, - [5440] = {.lex_state = 0, .external_lex_state = 228}, - [5441] = {.lex_state = 0, .external_lex_state = 255}, - [5442] = {.lex_state = 0, .external_lex_state = 186}, - [5443] = {.lex_state = 0, .external_lex_state = 255}, - [5444] = {.lex_state = 0, .external_lex_state = 186}, - [5445] = {.lex_state = 0, .external_lex_state = 186}, - [5446] = {.lex_state = 0, .external_lex_state = 186}, - [5447] = {.lex_state = 0, .external_lex_state = 250}, - [5448] = {.lex_state = 0, .external_lex_state = 186}, - [5449] = {.lex_state = 0, .external_lex_state = 250}, - [5450] = {.lex_state = 0, .external_lex_state = 186}, - [5451] = {.lex_state = 0, .external_lex_state = 252}, - [5452] = {.lex_state = 0, .external_lex_state = 225}, - [5453] = {.lex_state = 0, .external_lex_state = 186}, - [5454] = {.lex_state = 0, .external_lex_state = 231}, - [5455] = {.lex_state = 0, .external_lex_state = 186}, - [5456] = {.lex_state = 0, .external_lex_state = 186}, - [5457] = {.lex_state = 0, .external_lex_state = 186}, - [5458] = {.lex_state = 0, .external_lex_state = 186}, - [5459] = {.lex_state = 0, .external_lex_state = 186}, - [5460] = {.lex_state = 0, .external_lex_state = 186}, - [5461] = {.lex_state = 0, .external_lex_state = 186}, - [5462] = {.lex_state = 0, .external_lex_state = 186}, - [5463] = {.lex_state = 0, .external_lex_state = 225}, - [5464] = {.lex_state = 0, .external_lex_state = 186}, - [5465] = {.lex_state = 0, .external_lex_state = 186}, - [5466] = {.lex_state = 0, .external_lex_state = 250}, - [5467] = {.lex_state = 0, .external_lex_state = 186}, - [5468] = {.lex_state = 0, .external_lex_state = 186}, - [5469] = {.lex_state = 0, .external_lex_state = 209}, - [5470] = {.lex_state = 0, .external_lex_state = 252}, - [5471] = {.lex_state = 0, .external_lex_state = 250}, - [5472] = {.lex_state = 0, .external_lex_state = 225}, - [5473] = {.lex_state = 0, .external_lex_state = 250}, - [5474] = {.lex_state = 0, .external_lex_state = 186}, - [5475] = {.lex_state = 0, .external_lex_state = 186}, - [5476] = {.lex_state = 0, .external_lex_state = 186}, - [5477] = {.lex_state = 0, .external_lex_state = 186}, - [5478] = {.lex_state = 0, .external_lex_state = 186}, - [5479] = {.lex_state = 0, .external_lex_state = 250}, - [5480] = {.lex_state = 0, .external_lex_state = 250}, - [5481] = {.lex_state = 0, .external_lex_state = 186}, - [5482] = {.lex_state = 0, .external_lex_state = 186}, - [5483] = {.lex_state = 0, .external_lex_state = 251}, - [5484] = {.lex_state = 0, .external_lex_state = 252}, - [5485] = {.lex_state = 0, .external_lex_state = 186}, - [5486] = {.lex_state = 0, .external_lex_state = 231}, - [5487] = {.lex_state = 0, .external_lex_state = 186}, - [5488] = {.lex_state = 0, .external_lex_state = 231}, - [5489] = {.lex_state = 0, .external_lex_state = 186}, - [5490] = {.lex_state = 0, .external_lex_state = 250}, - [5491] = {.lex_state = 0, .external_lex_state = 250}, - [5492] = {.lex_state = 0, .external_lex_state = 231}, - [5493] = {.lex_state = 0, .external_lex_state = 186}, - [5494] = {.lex_state = 0, .external_lex_state = 186}, - [5495] = {.lex_state = 0, .external_lex_state = 186}, - [5496] = {.lex_state = 0, .external_lex_state = 186}, - [5497] = {.lex_state = 0, .external_lex_state = 225}, - [5498] = {.lex_state = 0, .external_lex_state = 250}, - [5499] = {.lex_state = 0, .external_lex_state = 250}, - [5500] = {.lex_state = 0, .external_lex_state = 225}, - [5501] = {.lex_state = 0, .external_lex_state = 186}, - [5502] = {.lex_state = 0, .external_lex_state = 186}, - [5503] = {.lex_state = 0, .external_lex_state = 186}, - [5504] = {.lex_state = 0, .external_lex_state = 186}, - [5505] = {.lex_state = 0, .external_lex_state = 209}, - [5506] = {.lex_state = 0, .external_lex_state = 186}, - [5507] = {.lex_state = 0, .external_lex_state = 186}, - [5508] = {.lex_state = 0, .external_lex_state = 253}, - [5509] = {.lex_state = 0, .external_lex_state = 250}, - [5510] = {.lex_state = 0, .external_lex_state = 186}, - [5511] = {.lex_state = 0, .external_lex_state = 186}, - [5512] = {.lex_state = 0, .external_lex_state = 186}, - [5513] = {.lex_state = 0, .external_lex_state = 250}, - [5514] = {.lex_state = 0, .external_lex_state = 186}, - [5515] = {.lex_state = 0, .external_lex_state = 250}, - [5516] = {.lex_state = 0, .external_lex_state = 225}, - [5517] = {.lex_state = 0, .external_lex_state = 250}, - [5518] = {.lex_state = 0, .external_lex_state = 225}, - [5519] = {.lex_state = 0, .external_lex_state = 186}, - [5520] = {.lex_state = 0, .external_lex_state = 225}, - [5521] = {.lex_state = 0, .external_lex_state = 186}, - [5522] = {.lex_state = 0, .external_lex_state = 186}, - [5523] = {.lex_state = 0, .external_lex_state = 186}, - [5524] = {.lex_state = 0, .external_lex_state = 250}, - [5525] = {.lex_state = 0, .external_lex_state = 250}, - [5526] = {.lex_state = 0, .external_lex_state = 250}, - [5527] = {.lex_state = 0, .external_lex_state = 231}, - [5528] = {.lex_state = 0, .external_lex_state = 250}, - [5529] = {.lex_state = 0, .external_lex_state = 225}, - [5530] = {.lex_state = 0, .external_lex_state = 250}, - [5531] = {.lex_state = 0, .external_lex_state = 253}, - [5532] = {.lex_state = 0, .external_lex_state = 225}, - [5533] = {.lex_state = 0, .external_lex_state = 186}, - [5534] = {.lex_state = 0, .external_lex_state = 225}, - [5535] = {.lex_state = 0, .external_lex_state = 186}, - [5536] = {.lex_state = 0, .external_lex_state = 231}, - [5537] = {.lex_state = 0, .external_lex_state = 225}, - [5538] = {.lex_state = 0, .external_lex_state = 231}, - [5539] = {.lex_state = 0, .external_lex_state = 186}, - [5540] = {.lex_state = 0, .external_lex_state = 186}, - [5541] = {.lex_state = 0, .external_lex_state = 186}, - [5542] = {.lex_state = 0, .external_lex_state = 186}, - [5543] = {.lex_state = 0, .external_lex_state = 256}, - [5544] = {.lex_state = 0, .external_lex_state = 186}, - [5545] = {.lex_state = 0, .external_lex_state = 250}, - [5546] = {.lex_state = 0, .external_lex_state = 256}, - [5547] = {.lex_state = 0, .external_lex_state = 253}, - [5548] = {.lex_state = 0, .external_lex_state = 186}, - [5549] = {.lex_state = 0, .external_lex_state = 186}, - [5550] = {.lex_state = 0, .external_lex_state = 250}, - [5551] = {.lex_state = 0, .external_lex_state = 225}, - [5552] = {.lex_state = 0, .external_lex_state = 231}, - [5553] = {.lex_state = 0, .external_lex_state = 250}, - [5554] = {.lex_state = 0, .external_lex_state = 231}, - [5555] = {.lex_state = 0, .external_lex_state = 231}, - [5556] = {.lex_state = 0, .external_lex_state = 194}, - [5557] = {.lex_state = 0, .external_lex_state = 194}, - [5558] = {.lex_state = 0, .external_lex_state = 250}, - [5559] = {.lex_state = 0, .external_lex_state = 250}, - [5560] = {.lex_state = 0, .external_lex_state = 186}, - [5561] = {.lex_state = 0, .external_lex_state = 186}, - [5562] = {.lex_state = 0, .external_lex_state = 186}, - [5563] = {.lex_state = 0, .external_lex_state = 186}, - [5564] = {.lex_state = 0, .external_lex_state = 186}, - [5565] = {.lex_state = 0, .external_lex_state = 186}, - [5566] = {.lex_state = 0, .external_lex_state = 186}, - [5567] = {.lex_state = 0, .external_lex_state = 251}, - [5568] = {.lex_state = 0, .external_lex_state = 186}, - [5569] = {.lex_state = 0, .external_lex_state = 186}, - [5570] = {.lex_state = 0, .external_lex_state = 223}, - [5571] = {.lex_state = 0, .external_lex_state = 186}, - [5572] = {.lex_state = 0, .external_lex_state = 186}, - [5573] = {.lex_state = 0, .external_lex_state = 186}, - [5574] = {.lex_state = 0, .external_lex_state = 186}, - [5575] = {.lex_state = 0, .external_lex_state = 186}, - [5576] = {.lex_state = 0, .external_lex_state = 186}, - [5577] = {.lex_state = 0, .external_lex_state = 186}, - [5578] = {.lex_state = 0, .external_lex_state = 186}, - [5579] = {.lex_state = 0, .external_lex_state = 186}, - [5580] = {.lex_state = 0, .external_lex_state = 251}, - [5581] = {.lex_state = 0, .external_lex_state = 186}, - [5582] = {.lex_state = 0, .external_lex_state = 186}, - [5583] = {.lex_state = 0, .external_lex_state = 186}, - [5584] = {.lex_state = 0, .external_lex_state = 225}, - [5585] = {.lex_state = 0, .external_lex_state = 186}, - [5586] = {.lex_state = 0, .external_lex_state = 231}, - [5587] = {.lex_state = 0, .external_lex_state = 186}, - [5588] = {.lex_state = 0, .external_lex_state = 209}, - [5589] = {.lex_state = 0, .external_lex_state = 186}, - [5590] = {.lex_state = 0, .external_lex_state = 225}, - [5591] = {.lex_state = 0, .external_lex_state = 186}, - [5592] = {.lex_state = 0, .external_lex_state = 186}, - [5593] = {.lex_state = 0, .external_lex_state = 186}, - [5594] = {.lex_state = 0, .external_lex_state = 225}, - [5595] = {.lex_state = 0, .external_lex_state = 186}, - [5596] = {.lex_state = 0, .external_lex_state = 252}, - [5597] = {.lex_state = 0, .external_lex_state = 186}, - [5598] = {.lex_state = 0, .external_lex_state = 228}, - [5599] = {.lex_state = 0, .external_lex_state = 186}, - [5600] = {.lex_state = 0, .external_lex_state = 186}, - [5601] = {.lex_state = 0, .external_lex_state = 255}, - [5602] = {.lex_state = 0, .external_lex_state = 250}, + [5379] = {.lex_state = 0, .external_lex_state = 240}, + [5380] = {.lex_state = 0, .external_lex_state = 240}, + [5381] = {.lex_state = 0, .external_lex_state = 188}, + [5382] = {.lex_state = 0, .external_lex_state = 188}, + [5383] = {.lex_state = 0, .external_lex_state = 243}, + [5384] = {.lex_state = 0, .external_lex_state = 246}, + [5385] = {.lex_state = 0, .external_lex_state = 214}, + [5386] = {.lex_state = 0, .external_lex_state = 240}, + [5387] = {.lex_state = 0, .external_lex_state = 246}, + [5388] = {.lex_state = 0, .external_lex_state = 240}, + [5389] = {.lex_state = 0, .external_lex_state = 240}, + [5390] = {.lex_state = 0, .external_lex_state = 227}, + [5391] = {.lex_state = 0, .external_lex_state = 240}, + [5392] = {.lex_state = 0, .external_lex_state = 240}, + [5393] = {.lex_state = 0, .external_lex_state = 240}, + [5394] = {.lex_state = 0, .external_lex_state = 240}, + [5395] = {.lex_state = 0, .external_lex_state = 240}, + [5396] = {.lex_state = 0, .external_lex_state = 188}, + [5397] = {.lex_state = 0, .external_lex_state = 240}, + [5398] = {.lex_state = 0, .external_lex_state = 240}, + [5399] = {.lex_state = 0, .external_lex_state = 240}, + [5400] = {.lex_state = 0, .external_lex_state = 240}, + [5401] = {.lex_state = 0, .external_lex_state = 240}, + [5402] = {.lex_state = 0, .external_lex_state = 242}, + [5403] = {.lex_state = 0, .external_lex_state = 199}, + [5404] = {.lex_state = 0, .external_lex_state = 235}, + [5405] = {.lex_state = 0, .external_lex_state = 229}, + [5406] = {.lex_state = 0, .external_lex_state = 240}, + [5407] = {.lex_state = 0, .external_lex_state = 187}, + [5408] = {.lex_state = 0, .external_lex_state = 235}, + [5409] = {.lex_state = 0, .external_lex_state = 199}, + [5410] = {.lex_state = 0, .external_lex_state = 187}, + [5411] = {.lex_state = 0, .external_lex_state = 241}, + [5412] = {.lex_state = 0, .external_lex_state = 240}, + [5413] = {.lex_state = 0, .external_lex_state = 240}, + [5414] = {.lex_state = 0, .external_lex_state = 240}, + [5415] = {.lex_state = 0, .external_lex_state = 240}, + [5416] = {.lex_state = 0, .external_lex_state = 240}, + [5417] = {.lex_state = 0, .external_lex_state = 199}, + [5418] = {.lex_state = 0, .external_lex_state = 240}, + [5419] = {.lex_state = 0, .external_lex_state = 241}, + [5420] = {.lex_state = 0, .external_lex_state = 229}, + [5421] = {.lex_state = 0, .external_lex_state = 240}, + [5422] = {.lex_state = 0, .external_lex_state = 240}, + [5423] = {.lex_state = 0, .external_lex_state = 175}, + [5424] = {.lex_state = 0, .external_lex_state = 229}, + [5425] = {.lex_state = 0, .external_lex_state = 240}, + [5426] = {.lex_state = 0, .external_lex_state = 240}, + [5427] = {.lex_state = 0, .external_lex_state = 240}, + [5428] = {.lex_state = 0, .external_lex_state = 240}, + [5429] = {.lex_state = 0, .external_lex_state = 240}, + [5430] = {.lex_state = 0, .external_lex_state = 247}, + [5431] = {.lex_state = 0, .external_lex_state = 187}, + [5432] = {.lex_state = 0, .external_lex_state = 248}, + [5433] = {.lex_state = 0, .external_lex_state = 169}, + [5434] = {.lex_state = 0, .external_lex_state = 188}, + [5435] = {.lex_state = 0, .external_lex_state = 188}, + [5436] = {.lex_state = 0, .external_lex_state = 187}, + [5437] = {.lex_state = 0, .external_lex_state = 235}, + [5438] = {.lex_state = 0, .external_lex_state = 240}, + [5439] = {.lex_state = 0, .external_lex_state = 227}, + [5440] = {.lex_state = 0, .external_lex_state = 240}, + [5441] = {.lex_state = 0, .external_lex_state = 187}, + [5442] = {.lex_state = 0, .external_lex_state = 243}, + [5443] = {.lex_state = 0, .external_lex_state = 227}, + [5444] = {.lex_state = 0, .external_lex_state = 240}, + [5445] = {.lex_state = 0, .external_lex_state = 240}, + [5446] = {.lex_state = 0, .external_lex_state = 240}, + [5447] = {.lex_state = 0, .external_lex_state = 224}, + [5448] = {.lex_state = 0, .external_lex_state = 240}, + [5449] = {.lex_state = 0, .external_lex_state = 187}, + [5450] = {.lex_state = 0, .external_lex_state = 240}, + [5451] = {.lex_state = 0, .external_lex_state = 246}, + [5452] = {.lex_state = 0, .external_lex_state = 240}, + [5453] = {.lex_state = 0, .external_lex_state = 240}, + [5454] = {.lex_state = 0, .external_lex_state = 240}, + [5455] = {.lex_state = 0, .external_lex_state = 240}, + [5456] = {.lex_state = 0, .external_lex_state = 240}, + [5457] = {.lex_state = 0, .external_lex_state = 240}, + [5458] = {.lex_state = 0, .external_lex_state = 224}, + [5459] = {.lex_state = 0, .external_lex_state = 240}, + [5460] = {.lex_state = 0, .external_lex_state = 240}, + [5461] = {.lex_state = 0, .external_lex_state = 187}, + [5462] = {.lex_state = 0, .external_lex_state = 221}, + [5463] = {.lex_state = 0, .external_lex_state = 233}, + [5464] = {.lex_state = 0, .external_lex_state = 187}, + [5465] = {.lex_state = 0, .external_lex_state = 224}, + [5466] = {.lex_state = 0, .external_lex_state = 240}, + [5467] = {.lex_state = 0, .external_lex_state = 240}, + [5468] = {.lex_state = 0, .external_lex_state = 240}, + [5469] = {.lex_state = 0, .external_lex_state = 242}, + [5470] = {.lex_state = 0, .external_lex_state = 240}, + [5471] = {.lex_state = 0, .external_lex_state = 243}, + [5472] = {.lex_state = 0, .external_lex_state = 235}, + [5473] = {.lex_state = 0, .external_lex_state = 240}, + [5474] = {.lex_state = 0, .external_lex_state = 235}, + [5475] = {.lex_state = 0, .external_lex_state = 241}, + [5476] = {.lex_state = 0, .external_lex_state = 175}, + [5477] = {.lex_state = 0, .external_lex_state = 240}, + [5478] = {.lex_state = 0, .external_lex_state = 187}, + [5479] = {.lex_state = 0, .external_lex_state = 246}, + [5480] = {.lex_state = 0, .external_lex_state = 235}, + [5481] = {.lex_state = 0, .external_lex_state = 240}, + [5482] = {.lex_state = 0, .external_lex_state = 240}, + [5483] = {.lex_state = 0, .external_lex_state = 243}, + [5484] = {.lex_state = 0, .external_lex_state = 247}, + [5485] = {.lex_state = 0, .external_lex_state = 240}, + [5486] = {.lex_state = 0, .external_lex_state = 240}, + [5487] = {.lex_state = 0, .external_lex_state = 240}, + [5488] = {.lex_state = 0, .external_lex_state = 240}, + [5489] = {.lex_state = 0, .external_lex_state = 240}, + [5490] = {.lex_state = 0, .external_lex_state = 224}, + [5491] = {.lex_state = 0, .external_lex_state = 241}, + [5492] = {.lex_state = 0, .external_lex_state = 240}, + [5493] = {.lex_state = 0, .external_lex_state = 240}, + [5494] = {.lex_state = 0, .external_lex_state = 249}, + [5495] = {.lex_state = 0, .external_lex_state = 236}, + [5496] = {.lex_state = 0, .external_lex_state = 235}, + [5497] = {.lex_state = 0, .external_lex_state = 247}, + [5498] = {.lex_state = 0, .external_lex_state = 229}, + [5499] = {.lex_state = 0, .external_lex_state = 240}, + [5500] = {.lex_state = 0, .external_lex_state = 240}, + [5501] = {.lex_state = 0, .external_lex_state = 235}, + [5502] = {.lex_state = 0, .external_lex_state = 240}, + [5503] = {.lex_state = 0, .external_lex_state = 235}, + [5504] = {.lex_state = 0, .external_lex_state = 240}, + [5505] = {.lex_state = 0, .external_lex_state = 235}, + [5506] = {.lex_state = 0, .external_lex_state = 240}, + [5507] = {.lex_state = 0, .external_lex_state = 240}, + [5508] = {.lex_state = 0, .external_lex_state = 235}, + [5509] = {.lex_state = 0, .external_lex_state = 235}, + [5510] = {.lex_state = 0, .external_lex_state = 246}, + [5511] = {.lex_state = 0, .external_lex_state = 240}, + [5512] = {.lex_state = 0, .external_lex_state = 224}, + [5513] = {.lex_state = 0, .external_lex_state = 240}, + [5514] = {.lex_state = 0, .external_lex_state = 235}, + [5515] = {.lex_state = 0, .external_lex_state = 241}, + [5516] = {.lex_state = 0, .external_lex_state = 240}, + [5517] = {.lex_state = 0, .external_lex_state = 187}, + [5518] = {.lex_state = 0, .external_lex_state = 243}, + [5519] = {.lex_state = 0, .external_lex_state = 240}, + [5520] = {.lex_state = 0, .external_lex_state = 240}, + [5521] = {.lex_state = 0, .external_lex_state = 246}, + [5522] = {.lex_state = 0, .external_lex_state = 206}, + [5523] = {.lex_state = 0, .external_lex_state = 240}, + [5524] = {.lex_state = 0, .external_lex_state = 240}, + [5525] = {.lex_state = 0, .external_lex_state = 240}, + [5526] = {.lex_state = 0, .external_lex_state = 240}, + [5527] = {.lex_state = 0, .external_lex_state = 240}, + [5528] = {.lex_state = 0, .external_lex_state = 187}, + [5529] = {.lex_state = 0, .external_lex_state = 221}, + [5530] = {.lex_state = 0, .external_lex_state = 187}, + [5531] = {.lex_state = 0, .external_lex_state = 199}, + [5532] = {.lex_state = 0, .external_lex_state = 240}, + [5533] = {.lex_state = 0, .external_lex_state = 240}, + [5534] = {.lex_state = 0, .external_lex_state = 240}, + [5535] = {.lex_state = 0, .external_lex_state = 187}, + [5536] = {.lex_state = 0, .external_lex_state = 240}, + [5537] = {.lex_state = 0, .external_lex_state = 240}, + [5538] = {.lex_state = 0, .external_lex_state = 248}, + [5539] = {.lex_state = 0, .external_lex_state = 199}, + [5540] = {.lex_state = 0, .external_lex_state = 240}, + [5541] = {.lex_state = 0, .external_lex_state = 224}, + [5542] = {.lex_state = 0, .external_lex_state = 240}, + [5543] = {.lex_state = 0, .external_lex_state = 224}, + [5544] = {.lex_state = 0, .external_lex_state = 187}, + [5545] = {.lex_state = 0, .external_lex_state = 227}, + [5546] = {.lex_state = 0, .external_lex_state = 187}, + [5547] = {.lex_state = 0, .external_lex_state = 235}, + [5548] = {.lex_state = 0, .external_lex_state = 187}, + [5549] = {.lex_state = 0, .external_lex_state = 240}, + [5550] = {.lex_state = 0, .external_lex_state = 240}, + [5551] = {.lex_state = 0, .external_lex_state = 240}, + [5552] = {.lex_state = 0, .external_lex_state = 242}, + [5553] = {.lex_state = 0, .external_lex_state = 235}, + [5554] = {.lex_state = 0, .external_lex_state = 240}, + [5555] = {.lex_state = 0, .external_lex_state = 240}, + [5556] = {.lex_state = 0, .external_lex_state = 233}, + [5557] = {.lex_state = 0, .external_lex_state = 224}, + [5558] = {.lex_state = 0, .external_lex_state = 248}, + [5559] = {.lex_state = 0, .external_lex_state = 235}, + [5560] = {.lex_state = 0, .external_lex_state = 187}, + [5561] = {.lex_state = 0, .external_lex_state = 235}, + [5562] = {.lex_state = 0, .external_lex_state = 187}, + [5563] = {.lex_state = 0, .external_lex_state = 221}, + [5564] = {.lex_state = 0, .external_lex_state = 235}, + [5565] = {.lex_state = 0, .external_lex_state = 245}, + [5566] = {.lex_state = 0, .external_lex_state = 242}, + [5567] = {.lex_state = 0, .external_lex_state = 187}, + [5568] = {.lex_state = 0, .external_lex_state = 250}, + [5569] = {.lex_state = 0, .external_lex_state = 231}, + [5570] = {.lex_state = 0, .external_lex_state = 187}, + [5571] = {.lex_state = 0, .external_lex_state = 187}, + [5572] = {.lex_state = 0, .external_lex_state = 187}, + [5573] = {.lex_state = 0, .external_lex_state = 250}, + [5574] = {.lex_state = 0, .external_lex_state = 250}, + [5575] = {.lex_state = 0, .external_lex_state = 187}, + [5576] = {.lex_state = 0, .external_lex_state = 251}, + [5577] = {.lex_state = 0, .external_lex_state = 231}, + [5578] = {.lex_state = 0, .external_lex_state = 231}, + [5579] = {.lex_state = 0, .external_lex_state = 187}, + [5580] = {.lex_state = 0, .external_lex_state = 250}, + [5581] = {.lex_state = 0, .external_lex_state = 187}, + [5582] = {.lex_state = 0, .external_lex_state = 187}, + [5583] = {.lex_state = 0, .external_lex_state = 252}, + [5584] = {.lex_state = 0, .external_lex_state = 187}, + [5585] = {.lex_state = 0, .external_lex_state = 193}, + [5586] = {.lex_state = 0, .external_lex_state = 187}, + [5587] = {.lex_state = 0, .external_lex_state = 218}, + [5588] = {.lex_state = 0, .external_lex_state = 187}, + [5589] = {.lex_state = 0, .external_lex_state = 187}, + [5590] = {.lex_state = 0, .external_lex_state = 218}, + [5591] = {.lex_state = 0, .external_lex_state = 218}, + [5592] = {.lex_state = 0, .external_lex_state = 187}, + [5593] = {.lex_state = 0, .external_lex_state = 223}, + [5594] = {.lex_state = 0, .external_lex_state = 224}, + [5595] = {.lex_state = 0, .external_lex_state = 250}, + [5596] = {.lex_state = 0, .external_lex_state = 187}, + [5597] = {.lex_state = 0, .external_lex_state = 187}, + [5598] = {.lex_state = 0, .external_lex_state = 187}, + [5599] = {.lex_state = 0, .external_lex_state = 224}, + [5600] = {.lex_state = 0, .external_lex_state = 187}, + [5601] = {.lex_state = 0, .external_lex_state = 250}, + [5602] = {.lex_state = 0, .external_lex_state = 187}, [5603] = {.lex_state = 0, .external_lex_state = 250}, - [5604] = {.lex_state = 0, .external_lex_state = 255}, - [5605] = {.lex_state = 0, .external_lex_state = 186}, - [5606] = {.lex_state = 0, .external_lex_state = 186}, - [5607] = {.lex_state = 0, .external_lex_state = 253}, - [5608] = {.lex_state = 0, .external_lex_state = 231}, - [5609] = {.lex_state = 0, .external_lex_state = 225}, - [5610] = {.lex_state = 0, .external_lex_state = 186}, - [5611] = {.lex_state = 0, .external_lex_state = 186}, - [5612] = {.lex_state = 0, .external_lex_state = 186}, - [5613] = {.lex_state = 0, .external_lex_state = 186}, - [5614] = {.lex_state = 0, .external_lex_state = 186}, - [5615] = {.lex_state = 0, .external_lex_state = 186}, - [5616] = {.lex_state = 0, .external_lex_state = 225}, - [5617] = {.lex_state = 0, .external_lex_state = 225}, - [5618] = {.lex_state = 0, .external_lex_state = 225}, - [5619] = {.lex_state = 0, .external_lex_state = 186}, - [5620] = {.lex_state = 0, .external_lex_state = 186}, - [5621] = {.lex_state = 0, .external_lex_state = 186}, - [5622] = {.lex_state = 0, .external_lex_state = 186}, - [5623] = {.lex_state = 0, .external_lex_state = 186}, - [5624] = {.lex_state = 0, .external_lex_state = 228}, - [5625] = {.lex_state = 0, .external_lex_state = 250}, - [5626] = {.lex_state = 0, .external_lex_state = 228}, - [5627] = {.lex_state = 0, .external_lex_state = 250}, - [5628] = {.lex_state = 0, .external_lex_state = 186}, - [5629] = {.lex_state = 0, .external_lex_state = 250}, - [5630] = {.lex_state = 0, .external_lex_state = 186}, - [5631] = {.lex_state = 0, .external_lex_state = 250}, - [5632] = {.lex_state = 0, .external_lex_state = 186}, - [5633] = {.lex_state = 0, .external_lex_state = 186}, - [5634] = {.lex_state = 0, .external_lex_state = 186}, - [5635] = {.lex_state = 0, .external_lex_state = 186}, - [5636] = {.lex_state = 0, .external_lex_state = 186}, - [5637] = {.lex_state = 0, .external_lex_state = 186}, - [5638] = {.lex_state = 0, .external_lex_state = 228}, - [5639] = {.lex_state = 0, .external_lex_state = 186}, - [5640] = {.lex_state = 0, .external_lex_state = 250}, - [5641] = {.lex_state = 0, .external_lex_state = 225}, - [5642] = {.lex_state = 0, .external_lex_state = 253}, - [5643] = {.lex_state = 0, .external_lex_state = 209}, - [5644] = {.lex_state = 0, .external_lex_state = 225}, - [5645] = {.lex_state = 0, .external_lex_state = 186}, - [5646] = {.lex_state = 0, .external_lex_state = 186}, - [5647] = {.lex_state = 0, .external_lex_state = 186}, - [5648] = {.lex_state = 0, .external_lex_state = 186}, - [5649] = {.lex_state = 0, .external_lex_state = 186}, - [5650] = {.lex_state = 0, .external_lex_state = 186}, - [5651] = {.lex_state = 0, .external_lex_state = 209}, - [5652] = {.lex_state = 0, .external_lex_state = 186}, - [5653] = {.lex_state = 0, .external_lex_state = 186}, - [5654] = {.lex_state = 0, .external_lex_state = 252}, - [5655] = {.lex_state = 0, .external_lex_state = 186}, - [5656] = {.lex_state = 0, .external_lex_state = 186}, - [5657] = {.lex_state = 0, .external_lex_state = 186}, - [5658] = {.lex_state = 0, .external_lex_state = 251}, - [5659] = {.lex_state = 0, .external_lex_state = 257}, + [5604] = {.lex_state = 0, .external_lex_state = 250}, + [5605] = {.lex_state = 0, .external_lex_state = 224}, + [5606] = {.lex_state = 0, .external_lex_state = 221}, + [5607] = {.lex_state = 0, .external_lex_state = 223}, + [5608] = {.lex_state = 0, .external_lex_state = 187}, + [5609] = {.lex_state = 0, .external_lex_state = 187}, + [5610] = {.lex_state = 0, .external_lex_state = 252}, + [5611] = {.lex_state = 0, .external_lex_state = 187}, + [5612] = {.lex_state = 0, .external_lex_state = 250}, + [5613] = {.lex_state = 0, .external_lex_state = 221}, + [5614] = {.lex_state = 0, .external_lex_state = 223}, + [5615] = {.lex_state = 0, .external_lex_state = 253}, + [5616] = {.lex_state = 0, .external_lex_state = 221}, + [5617] = {.lex_state = 0, .external_lex_state = 187}, + [5618] = {.lex_state = 0, .external_lex_state = 250}, + [5619] = {.lex_state = 0, .external_lex_state = 187}, + [5620] = {.lex_state = 0, .external_lex_state = 187}, + [5621] = {.lex_state = 0, .external_lex_state = 224}, + [5622] = {.lex_state = 0, .external_lex_state = 187}, + [5623] = {.lex_state = 0, .external_lex_state = 231}, + [5624] = {.lex_state = 0, .external_lex_state = 187}, + [5625] = {.lex_state = 0, .external_lex_state = 187}, + [5626] = {.lex_state = 0, .external_lex_state = 187}, + [5627] = {.lex_state = 0, .external_lex_state = 187}, + [5628] = {.lex_state = 0, .external_lex_state = 250}, + [5629] = {.lex_state = 0, .external_lex_state = 187}, + [5630] = {.lex_state = 0, .external_lex_state = 187}, + [5631] = {.lex_state = 0, .external_lex_state = 187}, + [5632] = {.lex_state = 0, .external_lex_state = 187}, + [5633] = {.lex_state = 0, .external_lex_state = 224}, + [5634] = {.lex_state = 0, .external_lex_state = 187}, + [5635] = {.lex_state = 0, .external_lex_state = 250}, + [5636] = {.lex_state = 0, .external_lex_state = 187}, + [5637] = {.lex_state = 0, .external_lex_state = 187}, + [5638] = {.lex_state = 0, .external_lex_state = 187}, + [5639] = {.lex_state = 0, .external_lex_state = 254}, + [5640] = {.lex_state = 0, .external_lex_state = 187}, + [5641] = {.lex_state = 0, .external_lex_state = 187}, + [5642] = {.lex_state = 0, .external_lex_state = 187}, + [5643] = {.lex_state = 0, .external_lex_state = 187}, + [5644] = {.lex_state = 0, .external_lex_state = 223}, + [5645] = {.lex_state = 0, .external_lex_state = 255}, + [5646] = {.lex_state = 0, .external_lex_state = 187}, + [5647] = {.lex_state = 0, .external_lex_state = 187}, + [5648] = {.lex_state = 0, .external_lex_state = 224}, + [5649] = {.lex_state = 0, .external_lex_state = 187}, + [5650] = {.lex_state = 0, .external_lex_state = 187}, + [5651] = {.lex_state = 0, .external_lex_state = 187}, + [5652] = {.lex_state = 0, .external_lex_state = 224}, + [5653] = {.lex_state = 0, .external_lex_state = 187}, + [5654] = {.lex_state = 0, .external_lex_state = 231}, + [5655] = {.lex_state = 0, .external_lex_state = 187}, + [5656] = {.lex_state = 0, .external_lex_state = 250}, + [5657] = {.lex_state = 0, .external_lex_state = 250}, + [5658] = {.lex_state = 0, .external_lex_state = 187}, + [5659] = {.lex_state = 0, .external_lex_state = 187}, [5660] = {.lex_state = 0, .external_lex_state = 250}, - [5661] = {.lex_state = 0, .external_lex_state = 194}, - [5662] = {.lex_state = 0, .external_lex_state = 186}, - [5663] = {.lex_state = 0, .external_lex_state = 186}, - [5664] = {.lex_state = 0, .external_lex_state = 186}, - [5665] = {.lex_state = 0, .external_lex_state = 186}, - [5666] = {.lex_state = 0, .external_lex_state = 194}, - [5667] = {.lex_state = 0, .external_lex_state = 194}, - [5668] = {.lex_state = 0, .external_lex_state = 228}, - [5669] = {.lex_state = 0, .external_lex_state = 225}, - [5670] = {.lex_state = 0, .external_lex_state = 186}, - [5671] = {.lex_state = 0, .external_lex_state = 186}, - [5672] = {.lex_state = 0, .external_lex_state = 225}, - [5673] = {.lex_state = 0, .external_lex_state = 231}, - [5674] = {.lex_state = 0, .external_lex_state = 186}, - [5675] = {.lex_state = 0, .external_lex_state = 228}, - [5676] = {.lex_state = 0, .external_lex_state = 186}, - [5677] = {.lex_state = 0, .external_lex_state = 186}, - [5678] = {.lex_state = 0, .external_lex_state = 245}, - [5679] = {.lex_state = 0, .external_lex_state = 186}, - [5680] = {.lex_state = 0, .external_lex_state = 251}, - [5681] = {.lex_state = 0, .external_lex_state = 225}, - [5682] = {.lex_state = 0, .external_lex_state = 225}, - [5683] = {.lex_state = 0, .external_lex_state = 186}, - [5684] = {.lex_state = 0, .external_lex_state = 250}, - [5685] = {.lex_state = 0, .external_lex_state = 186}, - [5686] = {.lex_state = 0, .external_lex_state = 186}, - [5687] = {.lex_state = 0, .external_lex_state = 225}, - [5688] = {.lex_state = 0, .external_lex_state = 223}, - [5689] = {.lex_state = 0, .external_lex_state = 225}, - [5690] = {.lex_state = 0, .external_lex_state = 186}, - [5691] = {.lex_state = 0, .external_lex_state = 250}, - [5692] = {.lex_state = 0, .external_lex_state = 186}, - [5693] = {.lex_state = 0, .external_lex_state = 251}, - [5694] = {.lex_state = 0, .external_lex_state = 228}, - [5695] = {.lex_state = 0, .external_lex_state = 186}, - [5696] = {.lex_state = 0, .external_lex_state = 231}, - [5697] = {.lex_state = 0, .external_lex_state = 186}, - [5698] = {.lex_state = 0, .external_lex_state = 194}, - [5699] = {.lex_state = 0, .external_lex_state = 250}, - [5700] = {.lex_state = 0, .external_lex_state = 209}, - [5701] = {.lex_state = 0, .external_lex_state = 186}, - [5702] = {.lex_state = 0, .external_lex_state = 186}, - [5703] = {.lex_state = 0, .external_lex_state = 186}, - [5704] = {.lex_state = 0, .external_lex_state = 186}, - [5705] = {.lex_state = 0, .external_lex_state = 186}, - [5706] = {.lex_state = 0, .external_lex_state = 186}, - [5707] = {.lex_state = 0, .external_lex_state = 223}, - [5708] = {.lex_state = 0, .external_lex_state = 258}, - [5709] = {.lex_state = 0, .external_lex_state = 245}, - [5710] = {.lex_state = 0, .external_lex_state = 209}, - [5711] = {.lex_state = 0, .external_lex_state = 186}, - [5712] = {.lex_state = 0, .external_lex_state = 247}, - [5713] = {.lex_state = 0, .external_lex_state = 247}, - [5714] = {.lex_state = 0, .external_lex_state = 247}, - [5715] = {.lex_state = 0, .external_lex_state = 186}, - [5716] = {.lex_state = 0, .external_lex_state = 225}, - [5717] = {.lex_state = 0, .external_lex_state = 228}, - [5718] = {.lex_state = 0, .external_lex_state = 186}, - [5719] = {.lex_state = 0, .external_lex_state = 186}, - [5720] = {.lex_state = 0, .external_lex_state = 186}, - [5721] = {.lex_state = 0, .external_lex_state = 186}, - [5722] = {.lex_state = 0, .external_lex_state = 251}, - [5723] = {.lex_state = 0, .external_lex_state = 246}, - [5724] = {.lex_state = 0, .external_lex_state = 186}, - [5725] = {.lex_state = 0, .external_lex_state = 186}, - [5726] = {.lex_state = 0, .external_lex_state = 186}, - [5727] = {.lex_state = 0, .external_lex_state = 194}, - [5728] = {.lex_state = 0, .external_lex_state = 186}, - [5729] = {.lex_state = 0, .external_lex_state = 186}, - [5730] = {.lex_state = 0, .external_lex_state = 186}, - [5731] = {.lex_state = 0, .external_lex_state = 186}, - [5732] = {.lex_state = 0, .external_lex_state = 223}, - [5733] = {.lex_state = 0, .external_lex_state = 186}, - [5734] = {.lex_state = 0, .external_lex_state = 245}, - [5735] = {.lex_state = 0, .external_lex_state = 245}, - [5736] = {.lex_state = 0, .external_lex_state = 225}, - [5737] = {.lex_state = 0, .external_lex_state = 255}, - [5738] = {.lex_state = 0, .external_lex_state = 194}, - [5739] = {.lex_state = 0, .external_lex_state = 225}, - [5740] = {.lex_state = 0, .external_lex_state = 245}, - [5741] = {.lex_state = 0, .external_lex_state = 186}, - [5742] = {.lex_state = 0, .external_lex_state = 186}, - [5743] = {.lex_state = 0, .external_lex_state = 186}, - [5744] = {.lex_state = 0, .external_lex_state = 223}, - [5745] = {.lex_state = 0, .external_lex_state = 231}, - [5746] = {.lex_state = 0, .external_lex_state = 186}, - [5747] = {.lex_state = 0, .external_lex_state = 186}, - [5748] = {.lex_state = 0, .external_lex_state = 186}, - [5749] = {.lex_state = 0, .external_lex_state = 186}, - [5750] = {.lex_state = 0, .external_lex_state = 250}, - [5751] = {.lex_state = 0, .external_lex_state = 231}, - [5752] = {.lex_state = 0, .external_lex_state = 186}, - [5753] = {.lex_state = 0, .external_lex_state = 186}, - [5754] = {.lex_state = 0, .external_lex_state = 209}, - [5755] = {.lex_state = 0, .external_lex_state = 186}, - [5756] = {.lex_state = 0, .external_lex_state = 228}, - [5757] = {.lex_state = 0, .external_lex_state = 186}, - [5758] = {.lex_state = 0, .external_lex_state = 186}, - [5759] = {.lex_state = 0, .external_lex_state = 186}, - [5760] = {.lex_state = 0, .external_lex_state = 186}, - [5761] = {.lex_state = 0, .external_lex_state = 186}, - [5762] = {.lex_state = 0, .external_lex_state = 250}, - [5763] = {.lex_state = 0, .external_lex_state = 257}, - [5764] = {.lex_state = 0, .external_lex_state = 186}, - [5765] = {.lex_state = 0, .external_lex_state = 186}, - [5766] = {.lex_state = 0, .external_lex_state = 186}, - [5767] = {.lex_state = 0, .external_lex_state = 186}, - [5768] = {.lex_state = 0, .external_lex_state = 186}, - [5769] = {.lex_state = 0, .external_lex_state = 186}, - [5770] = {.lex_state = 0, .external_lex_state = 225}, - [5771] = {.lex_state = 0, .external_lex_state = 225}, - [5772] = {.lex_state = 0, .external_lex_state = 246}, - [5773] = {.lex_state = 0, .external_lex_state = 228}, - [5774] = {.lex_state = 0, .external_lex_state = 186}, - [5775] = {.lex_state = 0, .external_lex_state = 231}, - [5776] = {.lex_state = 0, .external_lex_state = 186}, - [5777] = {.lex_state = 0, .external_lex_state = 257}, - [5778] = {.lex_state = 0, .external_lex_state = 246}, - [5779] = {.lex_state = 0, .external_lex_state = 225}, - [5780] = {.lex_state = 0, .external_lex_state = 209}, - [5781] = {.lex_state = 0, .external_lex_state = 225}, - [5782] = {.lex_state = 0, .external_lex_state = 186}, - [5783] = {.lex_state = 0, .external_lex_state = 209}, - [5784] = {.lex_state = 0, .external_lex_state = 186}, - [5785] = {.lex_state = 0, .external_lex_state = 241}, - [5786] = {.lex_state = 0, .external_lex_state = 186}, + [5661] = {.lex_state = 0, .external_lex_state = 224}, + [5662] = {.lex_state = 0, .external_lex_state = 187}, + [5663] = {.lex_state = 0, .external_lex_state = 187}, + [5664] = {.lex_state = 0, .external_lex_state = 231}, + [5665] = {.lex_state = 0, .external_lex_state = 187}, + [5666] = {.lex_state = 0, .external_lex_state = 187}, + [5667] = {.lex_state = 0, .external_lex_state = 187}, + [5668] = {.lex_state = 0, .external_lex_state = 231}, + [5669] = {.lex_state = 0, .external_lex_state = 240}, + [5670] = {.lex_state = 0, .external_lex_state = 187}, + [5671] = {.lex_state = 0, .external_lex_state = 187}, + [5672] = {.lex_state = 0, .external_lex_state = 250}, + [5673] = {.lex_state = 0, .external_lex_state = 187}, + [5674] = {.lex_state = 0, .external_lex_state = 187}, + [5675] = {.lex_state = 0, .external_lex_state = 224}, + [5676] = {.lex_state = 0, .external_lex_state = 187}, + [5677] = {.lex_state = 0, .external_lex_state = 187}, + [5678] = {.lex_state = 0, .external_lex_state = 250}, + [5679] = {.lex_state = 0, .external_lex_state = 231}, + [5680] = {.lex_state = 0, .external_lex_state = 250}, + [5681] = {.lex_state = 0, .external_lex_state = 187}, + [5682] = {.lex_state = 0, .external_lex_state = 187}, + [5683] = {.lex_state = 0, .external_lex_state = 187}, + [5684] = {.lex_state = 0, .external_lex_state = 187}, + [5685] = {.lex_state = 0, .external_lex_state = 224}, + [5686] = {.lex_state = 0, .external_lex_state = 253}, + [5687] = {.lex_state = 0, .external_lex_state = 187}, + [5688] = {.lex_state = 0, .external_lex_state = 187}, + [5689] = {.lex_state = 0, .external_lex_state = 187}, + [5690] = {.lex_state = 0, .external_lex_state = 252}, + [5691] = {.lex_state = 0, .external_lex_state = 224}, + [5692] = {.lex_state = 0, .external_lex_state = 231}, + [5693] = {.lex_state = 0, .external_lex_state = 187}, + [5694] = {.lex_state = 0, .external_lex_state = 252}, + [5695] = {.lex_state = 0, .external_lex_state = 187}, + [5696] = {.lex_state = 0, .external_lex_state = 250}, + [5697] = {.lex_state = 0, .external_lex_state = 187}, + [5698] = {.lex_state = 0, .external_lex_state = 187}, + [5699] = {.lex_state = 0, .external_lex_state = 187}, + [5700] = {.lex_state = 0, .external_lex_state = 187}, + [5701] = {.lex_state = 0, .external_lex_state = 187}, + [5702] = {.lex_state = 0, .external_lex_state = 187}, + [5703] = {.lex_state = 0, .external_lex_state = 250}, + [5704] = {.lex_state = 0, .external_lex_state = 224}, + [5705] = {.lex_state = 0, .external_lex_state = 224}, + [5706] = {.lex_state = 0, .external_lex_state = 218}, + [5707] = {.lex_state = 0, .external_lex_state = 187}, + [5708] = {.lex_state = 0, .external_lex_state = 246}, + [5709] = {.lex_state = 0, .external_lex_state = 223}, + [5710] = {.lex_state = 0, .external_lex_state = 256}, + [5711] = {.lex_state = 0, .external_lex_state = 224}, + [5712] = {.lex_state = 0, .external_lex_state = 250}, + [5713] = {.lex_state = 0, .external_lex_state = 187}, + [5714] = {.lex_state = 0, .external_lex_state = 187}, + [5715] = {.lex_state = 0, .external_lex_state = 187}, + [5716] = {.lex_state = 0, .external_lex_state = 224}, + [5717] = {.lex_state = 0, .external_lex_state = 187}, + [5718] = {.lex_state = 0, .external_lex_state = 252}, + [5719] = {.lex_state = 0, .external_lex_state = 187}, + [5720] = {.lex_state = 0, .external_lex_state = 187}, + [5721] = {.lex_state = 0, .external_lex_state = 224}, + [5722] = {.lex_state = 0, .external_lex_state = 187}, + [5723] = {.lex_state = 0, .external_lex_state = 187}, + [5724] = {.lex_state = 0, .external_lex_state = 250}, + [5725] = {.lex_state = 0, .external_lex_state = 187}, + [5726] = {.lex_state = 0, .external_lex_state = 187}, + [5727] = {.lex_state = 0, .external_lex_state = 187}, + [5728] = {.lex_state = 0, .external_lex_state = 241}, + [5729] = {.lex_state = 0, .external_lex_state = 187}, + [5730] = {.lex_state = 0, .external_lex_state = 255}, + [5731] = {.lex_state = 0, .external_lex_state = 187}, + [5732] = {.lex_state = 0, .external_lex_state = 224}, + [5733] = {.lex_state = 0, .external_lex_state = 250}, + [5734] = {.lex_state = 0, .external_lex_state = 187}, + [5735] = {.lex_state = 0, .external_lex_state = 187}, + [5736] = {.lex_state = 0, .external_lex_state = 187}, + [5737] = {.lex_state = 0, .external_lex_state = 254}, + [5738] = {.lex_state = 0, .external_lex_state = 250}, + [5739] = {.lex_state = 0, .external_lex_state = 224}, + [5740] = {.lex_state = 0, .external_lex_state = 187}, + [5741] = {.lex_state = 0, .external_lex_state = 231}, + [5742] = {.lex_state = 0, .external_lex_state = 187}, + [5743] = {.lex_state = 0, .external_lex_state = 187}, + [5744] = {.lex_state = 0, .external_lex_state = 187}, + [5745] = {.lex_state = 0, .external_lex_state = 246}, + [5746] = {.lex_state = 0, .external_lex_state = 187}, + [5747] = {.lex_state = 0, .external_lex_state = 250}, + [5748] = {.lex_state = 0, .external_lex_state = 187}, + [5749] = {.lex_state = 0, .external_lex_state = 254}, + [5750] = {.lex_state = 0, .external_lex_state = 187}, + [5751] = {.lex_state = 0, .external_lex_state = 187}, + [5752] = {.lex_state = 0, .external_lex_state = 187}, + [5753] = {.lex_state = 0, .external_lex_state = 246}, + [5754] = {.lex_state = 0, .external_lex_state = 187}, + [5755] = {.lex_state = 0, .external_lex_state = 218}, + [5756] = {.lex_state = 0, .external_lex_state = 187}, + [5757] = {.lex_state = 0, .external_lex_state = 224}, + [5758] = {.lex_state = 0, .external_lex_state = 187}, + [5759] = {.lex_state = 0, .external_lex_state = 224}, + [5760] = {.lex_state = 0, .external_lex_state = 224}, + [5761] = {.lex_state = 0, .external_lex_state = 187}, + [5762] = {.lex_state = 0, .external_lex_state = 187}, + [5763] = {.lex_state = 0, .external_lex_state = 253}, + [5764] = {.lex_state = 0, .external_lex_state = 187}, + [5765] = {.lex_state = 0, .external_lex_state = 218}, + [5766] = {.lex_state = 0, .external_lex_state = 224}, + [5767] = {.lex_state = 0, .external_lex_state = 187}, + [5768] = {.lex_state = 0, .external_lex_state = 187}, + [5769] = {.lex_state = 0, .external_lex_state = 187}, + [5770] = {.lex_state = 0, .external_lex_state = 218}, + [5771] = {.lex_state = 0, .external_lex_state = 250}, + [5772] = {.lex_state = 0, .external_lex_state = 187}, + [5773] = {.lex_state = 0, .external_lex_state = 250}, + [5774] = {.lex_state = 0, .external_lex_state = 187}, + [5775] = {.lex_state = 0, .external_lex_state = 187}, + [5776] = {.lex_state = 0, .external_lex_state = 187}, + [5777] = {.lex_state = 0, .external_lex_state = 187}, + [5778] = {.lex_state = 0, .external_lex_state = 257}, + [5779] = {.lex_state = 0, .external_lex_state = 187}, + [5780] = {.lex_state = 0, .external_lex_state = 224}, + [5781] = {.lex_state = 0, .external_lex_state = 187}, + [5782] = {.lex_state = 0, .external_lex_state = 250}, + [5783] = {.lex_state = 0, .external_lex_state = 231}, + [5784] = {.lex_state = 0, .external_lex_state = 187}, + [5785] = {.lex_state = 0, .external_lex_state = 250}, + [5786] = {.lex_state = 0, .external_lex_state = 187}, [5787] = {.lex_state = 0, .external_lex_state = 250}, - [5788] = {.lex_state = 0, .external_lex_state = 186}, - [5789] = {.lex_state = 0, .external_lex_state = 186}, + [5788] = {.lex_state = 0, .external_lex_state = 187}, + [5789] = {.lex_state = 0, .external_lex_state = 231}, [5790] = {.lex_state = 0, .external_lex_state = 223}, - [5791] = {.lex_state = 0, .external_lex_state = 186}, - [5792] = {.lex_state = 0, .external_lex_state = 254}, - [5793] = {.lex_state = 0, .external_lex_state = 225}, - [5794] = {.lex_state = 0, .external_lex_state = 186}, - [5795] = {.lex_state = 0, .external_lex_state = 186}, - [5796] = {.lex_state = 0, .external_lex_state = 253}, - [5797] = {.lex_state = 0, .external_lex_state = 186}, - [5798] = {.lex_state = 0, .external_lex_state = 186}, - [5799] = {.lex_state = 0, .external_lex_state = 186}, - [5800] = {.lex_state = 0, .external_lex_state = 257}, - [5801] = {.lex_state = 0, .external_lex_state = 186}, - [5802] = {.lex_state = 0, .external_lex_state = 250}, - [5803] = {.lex_state = 0, .external_lex_state = 186}, - [5804] = {.lex_state = 0, .external_lex_state = 225}, - [5805] = {.lex_state = 0, .external_lex_state = 250}, - [5806] = {.lex_state = 0, .external_lex_state = 245}, - [5807] = {.lex_state = 0, .external_lex_state = 231}, - [5808] = {.lex_state = 0, .external_lex_state = 186}, - [5809] = {.lex_state = 0, .external_lex_state = 186}, - [5810] = {.lex_state = 0, .external_lex_state = 250}, - [5811] = {.lex_state = 0, .external_lex_state = 186}, - [5812] = {.lex_state = 0, .external_lex_state = 257}, - [5813] = {.lex_state = 0, .external_lex_state = 186}, - [5814] = {.lex_state = 0, .external_lex_state = 186}, - [5815] = {.lex_state = 0, .external_lex_state = 186}, - [5816] = {.lex_state = 0, .external_lex_state = 186}, - [5817] = {.lex_state = 0, .external_lex_state = 228}, - [5818] = {.lex_state = 0, .external_lex_state = 186}, - [5819] = {.lex_state = 0, .external_lex_state = 186}, - [5820] = {.lex_state = 0, .external_lex_state = 250}, - [5821] = {.lex_state = 0, .external_lex_state = 186}, - [5822] = {.lex_state = 0, .external_lex_state = 186}, - [5823] = {.lex_state = 0, .external_lex_state = 186}, - [5824] = {.lex_state = 0, .external_lex_state = 186}, - [5825] = {.lex_state = 0, .external_lex_state = 186}, - [5826] = {.lex_state = 0, .external_lex_state = 186}, - [5827] = {.lex_state = 0, .external_lex_state = 186}, - [5828] = {.lex_state = 0, .external_lex_state = 225}, - [5829] = {.lex_state = 0, .external_lex_state = 247}, - [5830] = {.lex_state = 0, .external_lex_state = 225}, - [5831] = {.lex_state = 0, .external_lex_state = 194}, - [5832] = {.lex_state = 0, .external_lex_state = 259}, - [5833] = {.lex_state = 0, .external_lex_state = 231}, - [5834] = {.lex_state = 0, .external_lex_state = 186}, - [5835] = {.lex_state = 0, .external_lex_state = 223}, - [5836] = {.lex_state = 0, .external_lex_state = 186}, - [5837] = {.lex_state = 0, .external_lex_state = 186}, - [5838] = {.lex_state = 0, .external_lex_state = 186}, - [5839] = {.lex_state = 0, .external_lex_state = 186}, - [5840] = {.lex_state = 0, .external_lex_state = 186}, - [5841] = {.lex_state = 0, .external_lex_state = 186}, - [5842] = {.lex_state = 0, .external_lex_state = 186}, - [5843] = {.lex_state = 0, .external_lex_state = 186}, - [5844] = {.lex_state = 0, .external_lex_state = 186}, - [5845] = {.lex_state = 0, .external_lex_state = 251}, - [5846] = {.lex_state = 0, .external_lex_state = 251}, - [5847] = {.lex_state = 0, .external_lex_state = 236}, - [5848] = {.lex_state = 0, .external_lex_state = 186}, - [5849] = {.lex_state = 0, .external_lex_state = 260}, - [5850] = {.lex_state = 0, .external_lex_state = 251}, - [5851] = {.lex_state = 0, .external_lex_state = 261}, - [5852] = {.lex_state = 0, .external_lex_state = 213}, - [5853] = {.lex_state = 0, .external_lex_state = 186}, - [5854] = {.lex_state = 0, .external_lex_state = 186}, - [5855] = {.lex_state = 0, .external_lex_state = 213}, - [5856] = {.lex_state = 0, .external_lex_state = 213}, - [5857] = {.lex_state = 0, .external_lex_state = 236}, - [5858] = {.lex_state = 0, .external_lex_state = 231}, - [5859] = {.lex_state = 0, .external_lex_state = 186}, - [5860] = {.lex_state = 0, .external_lex_state = 186}, - [5861] = {.lex_state = 0, .external_lex_state = 231}, - [5862] = {.lex_state = 0, .external_lex_state = 231}, - [5863] = {.lex_state = 0, .external_lex_state = 231}, - [5864] = {.lex_state = 0, .external_lex_state = 231}, - [5865] = {.lex_state = 0, .external_lex_state = 262}, - [5866] = {.lex_state = 0, .external_lex_state = 235}, - [5867] = {.lex_state = 0, .external_lex_state = 186}, - [5868] = {.lex_state = 0, .external_lex_state = 186}, + [5791] = {.lex_state = 0, .external_lex_state = 253}, + [5792] = {.lex_state = 0, .external_lex_state = 224}, + [5793] = {.lex_state = 0, .external_lex_state = 187}, + [5794] = {.lex_state = 0, .external_lex_state = 234}, + [5795] = {.lex_state = 0, .external_lex_state = 254}, + [5796] = {.lex_state = 0, .external_lex_state = 224}, + [5797] = {.lex_state = 0, .external_lex_state = 257}, + [5798] = {.lex_state = 0, .external_lex_state = 252}, + [5799] = {.lex_state = 0, .external_lex_state = 231}, + [5800] = {.lex_state = 0, .external_lex_state = 187}, + [5801] = {.lex_state = 0, .external_lex_state = 250}, + [5802] = {.lex_state = 0, .external_lex_state = 187}, + [5803] = {.lex_state = 0, .external_lex_state = 247}, + [5804] = {.lex_state = 0, .external_lex_state = 187}, + [5805] = {.lex_state = 0, .external_lex_state = 187}, + [5806] = {.lex_state = 0, .external_lex_state = 187}, + [5807] = {.lex_state = 0, .external_lex_state = 187}, + [5808] = {.lex_state = 0, .external_lex_state = 187}, + [5809] = {.lex_state = 0, .external_lex_state = 231}, + [5810] = {.lex_state = 0, .external_lex_state = 257}, + [5811] = {.lex_state = 0, .external_lex_state = 187}, + [5812] = {.lex_state = 0, .external_lex_state = 255}, + [5813] = {.lex_state = 0, .external_lex_state = 187}, + [5814] = {.lex_state = 0, .external_lex_state = 241}, + [5815] = {.lex_state = 0, .external_lex_state = 224}, + [5816] = {.lex_state = 0, .external_lex_state = 187}, + [5817] = {.lex_state = 0, .external_lex_state = 224}, + [5818] = {.lex_state = 0, .external_lex_state = 187}, + [5819] = {.lex_state = 0, .external_lex_state = 250}, + [5820] = {.lex_state = 0, .external_lex_state = 187}, + [5821] = {.lex_state = 0, .external_lex_state = 253}, + [5822] = {.lex_state = 0, .external_lex_state = 231}, + [5823] = {.lex_state = 0, .external_lex_state = 187}, + [5824] = {.lex_state = 0, .external_lex_state = 252}, + [5825] = {.lex_state = 0, .external_lex_state = 187}, + [5826] = {.lex_state = 0, .external_lex_state = 187}, + [5827] = {.lex_state = 0, .external_lex_state = 187}, + [5828] = {.lex_state = 0, .external_lex_state = 187}, + [5829] = {.lex_state = 0, .external_lex_state = 187}, + [5830] = {.lex_state = 0, .external_lex_state = 254}, + [5831] = {.lex_state = 0, .external_lex_state = 253}, + [5832] = {.lex_state = 0, .external_lex_state = 250}, + [5833] = {.lex_state = 0, .external_lex_state = 187}, + [5834] = {.lex_state = 0, .external_lex_state = 187}, + [5835] = {.lex_state = 0, .external_lex_state = 187}, + [5836] = {.lex_state = 0, .external_lex_state = 187}, + [5837] = {.lex_state = 0, .external_lex_state = 187}, + [5838] = {.lex_state = 0, .external_lex_state = 223}, + [5839] = {.lex_state = 0, .external_lex_state = 223}, + [5840] = {.lex_state = 0, .external_lex_state = 187}, + [5841] = {.lex_state = 0, .external_lex_state = 223}, + [5842] = {.lex_state = 0, .external_lex_state = 187}, + [5843] = {.lex_state = 0, .external_lex_state = 223}, + [5844] = {.lex_state = 0, .external_lex_state = 187}, + [5845] = {.lex_state = 0, .external_lex_state = 187}, + [5846] = {.lex_state = 0, .external_lex_state = 231}, + [5847] = {.lex_state = 0, .external_lex_state = 187}, + [5848] = {.lex_state = 0, .external_lex_state = 254}, + [5849] = {.lex_state = 0, .external_lex_state = 231}, + [5850] = {.lex_state = 0, .external_lex_state = 187}, + [5851] = {.lex_state = 0, .external_lex_state = 187}, + [5852] = {.lex_state = 0, .external_lex_state = 187}, + [5853] = {.lex_state = 0, .external_lex_state = 187}, + [5854] = {.lex_state = 0, .external_lex_state = 187}, + [5855] = {.lex_state = 0, .external_lex_state = 224}, + [5856] = {.lex_state = 0, .external_lex_state = 187}, + [5857] = {.lex_state = 0, .external_lex_state = 250}, + [5858] = {.lex_state = 0, .external_lex_state = 221}, + [5859] = {.lex_state = 0, .external_lex_state = 187}, + [5860] = {.lex_state = 0, .external_lex_state = 187}, + [5861] = {.lex_state = 0, .external_lex_state = 187}, + [5862] = {.lex_state = 0, .external_lex_state = 187}, + [5863] = {.lex_state = 0, .external_lex_state = 187}, + [5864] = {.lex_state = 0, .external_lex_state = 187}, + [5865] = {.lex_state = 0, .external_lex_state = 187}, + [5866] = {.lex_state = 0, .external_lex_state = 187}, + [5867] = {.lex_state = 0, .external_lex_state = 250}, + [5868] = {.lex_state = 0, .external_lex_state = 187}, [5869] = {.lex_state = 0, .external_lex_state = 257}, - [5870] = {.lex_state = 0, .external_lex_state = 260}, - [5871] = {.lex_state = 0, .external_lex_state = 186}, - [5872] = {.lex_state = 0, .external_lex_state = 260}, - [5873] = {.lex_state = 0, .external_lex_state = 225}, - [5874] = {.lex_state = 0, .external_lex_state = 186}, - [5875] = {.lex_state = 0, .external_lex_state = 213}, - [5876] = {.lex_state = 0, .external_lex_state = 186}, - [5877] = {.lex_state = 0, .external_lex_state = 186}, - [5878] = {.lex_state = 0, .external_lex_state = 213}, - [5879] = {.lex_state = 0, .external_lex_state = 228}, - [5880] = {.lex_state = 0, .external_lex_state = 186}, - [5881] = {.lex_state = 0, .external_lex_state = 186}, - [5882] = {.lex_state = 0, .external_lex_state = 263}, - [5883] = {.lex_state = 0, .external_lex_state = 228}, - [5884] = {.lex_state = 0, .external_lex_state = 213}, - [5885] = {.lex_state = 0, .external_lex_state = 236}, - [5886] = {.lex_state = 0, .external_lex_state = 186}, - [5887] = {.lex_state = 0, .external_lex_state = 228}, - [5888] = {.lex_state = 0, .external_lex_state = 263}, - [5889] = {.lex_state = 0, .external_lex_state = 213}, - [5890] = {.lex_state = 0, .external_lex_state = 186}, - [5891] = {.lex_state = 0, .external_lex_state = 228}, - [5892] = {.lex_state = 0, .external_lex_state = 228}, - [5893] = {.lex_state = 0, .external_lex_state = 186}, - [5894] = {.lex_state = 0, .external_lex_state = 263}, - [5895] = {.lex_state = 0, .external_lex_state = 263}, - [5896] = {.lex_state = 0, .external_lex_state = 186}, - [5897] = {.lex_state = 0, .external_lex_state = 228}, - [5898] = {.lex_state = 0, .external_lex_state = 186}, - [5899] = {.lex_state = 0, .external_lex_state = 260}, - [5900] = {.lex_state = 0, .external_lex_state = 186}, - [5901] = {.lex_state = 0, .external_lex_state = 186}, - [5902] = {.lex_state = 0, .external_lex_state = 263}, - [5903] = {.lex_state = 0, .external_lex_state = 186}, - [5904] = {.lex_state = 0, .external_lex_state = 186}, - [5905] = {.lex_state = 0, .external_lex_state = 186}, - [5906] = {.lex_state = 0, .external_lex_state = 236}, - [5907] = {.lex_state = 0, .external_lex_state = 186}, - [5908] = {.lex_state = 0, .external_lex_state = 186}, - [5909] = {.lex_state = 0, .external_lex_state = 263}, - [5910] = {.lex_state = 0, .external_lex_state = 186}, - [5911] = {.lex_state = 0, .external_lex_state = 186}, - [5912] = {.lex_state = 0, .external_lex_state = 186}, - [5913] = {.lex_state = 0, .external_lex_state = 186}, - [5914] = {.lex_state = 0, .external_lex_state = 186}, - [5915] = {.lex_state = 0, .external_lex_state = 228}, - [5916] = {.lex_state = 0, .external_lex_state = 186}, - [5917] = {.lex_state = 0, .external_lex_state = 260}, - [5918] = {.lex_state = 0, .external_lex_state = 262}, - [5919] = {.lex_state = 0, .external_lex_state = 213}, - [5920] = {.lex_state = 0, .external_lex_state = 213}, - [5921] = {.lex_state = 0, .external_lex_state = 236}, - [5922] = {.lex_state = 0, .external_lex_state = 236}, - [5923] = {.lex_state = 0, .external_lex_state = 225}, - [5924] = {.lex_state = 0, .external_lex_state = 186}, - [5925] = {.lex_state = 0, .external_lex_state = 186}, - [5926] = {.lex_state = 0, .external_lex_state = 260}, - [5927] = {.lex_state = 0, .external_lex_state = 186}, - [5928] = {.lex_state = 0, .external_lex_state = 257}, - [5929] = {.lex_state = 0, .external_lex_state = 186}, - [5930] = {.lex_state = 0, .external_lex_state = 241}, - [5931] = {.lex_state = 0, .external_lex_state = 225}, - [5932] = {.lex_state = 0, .external_lex_state = 186}, - [5933] = {.lex_state = 0, .external_lex_state = 228}, - [5934] = {.lex_state = 0, .external_lex_state = 186}, - [5935] = {.lex_state = 0, .external_lex_state = 186}, - [5936] = {.lex_state = 0, .external_lex_state = 186}, - [5937] = {.lex_state = 0, .external_lex_state = 186}, - [5938] = {.lex_state = 0, .external_lex_state = 186}, - [5939] = {.lex_state = 0, .external_lex_state = 186}, - [5940] = {.lex_state = 0, .external_lex_state = 186}, - [5941] = {.lex_state = 0, .external_lex_state = 186}, - [5942] = {.lex_state = 0, .external_lex_state = 186}, - [5943] = {.lex_state = 0, .external_lex_state = 242}, - [5944] = {.lex_state = 0, .external_lex_state = 186}, - [5945] = {.lex_state = 0, .external_lex_state = 254}, - [5946] = {.lex_state = 0, .external_lex_state = 186}, - [5947] = {.lex_state = 0, .external_lex_state = 263}, - [5948] = {.lex_state = 0, .external_lex_state = 225}, - [5949] = {.lex_state = 0, .external_lex_state = 260}, - [5950] = {.lex_state = 0, .external_lex_state = 225}, - [5951] = {.lex_state = 0, .external_lex_state = 186}, - [5952] = {.lex_state = 0, .external_lex_state = 186}, - [5953] = {.lex_state = 0, .external_lex_state = 186}, - [5954] = {.lex_state = 0, .external_lex_state = 186}, - [5955] = {.lex_state = 0, .external_lex_state = 263}, - [5956] = {.lex_state = 0, .external_lex_state = 263}, - [5957] = {.lex_state = 0, .external_lex_state = 186}, - [5958] = {.lex_state = 0, .external_lex_state = 186}, - [5959] = {.lex_state = 0, .external_lex_state = 241}, - [5960] = {.lex_state = 0, .external_lex_state = 186}, - [5961] = {.lex_state = 0, .external_lex_state = 264}, - [5962] = {.lex_state = 0, .external_lex_state = 260}, - [5963] = {.lex_state = 0, .external_lex_state = 186}, - [5964] = {.lex_state = 0, .external_lex_state = 186}, - [5965] = {.lex_state = 0, .external_lex_state = 186}, - [5966] = {.lex_state = 0, .external_lex_state = 264}, - [5967] = {.lex_state = 0, .external_lex_state = 253}, - [5968] = {.lex_state = 0, .external_lex_state = 186}, - [5969] = {.lex_state = 0, .external_lex_state = 186}, - [5970] = {.lex_state = 0, .external_lex_state = 264}, - [5971] = {.lex_state = 0, .external_lex_state = 186}, - [5972] = {.lex_state = 0, .external_lex_state = 260}, - [5973] = {.lex_state = 0, .external_lex_state = 186}, - [5974] = {.lex_state = 0, .external_lex_state = 228}, - [5975] = {.lex_state = 0, .external_lex_state = 264}, - [5976] = {.lex_state = 0, .external_lex_state = 264}, - [5977] = {.lex_state = 0, .external_lex_state = 264}, - [5978] = {.lex_state = 0, .external_lex_state = 186}, - [5979] = {.lex_state = 0, .external_lex_state = 263}, - [5980] = {.lex_state = 0, .external_lex_state = 186}, - [5981] = {.lex_state = 0, .external_lex_state = 186}, - [5982] = {.lex_state = 0, .external_lex_state = 264}, - [5983] = {.lex_state = 0, .external_lex_state = 264}, - [5984] = {.lex_state = 0, .external_lex_state = 186}, - [5985] = {.lex_state = 0, .external_lex_state = 186}, - [5986] = {.lex_state = 0, .external_lex_state = 186}, - [5987] = {.lex_state = 0, .external_lex_state = 263}, - [5988] = {.lex_state = 0, .external_lex_state = 225}, - [5989] = {.lex_state = 0, .external_lex_state = 186}, - [5990] = {.lex_state = 0, .external_lex_state = 262}, - [5991] = {.lex_state = 0, .external_lex_state = 264}, - [5992] = {.lex_state = 0, .external_lex_state = 264}, - [5993] = {.lex_state = 0, .external_lex_state = 264}, - [5994] = {.lex_state = 0, .external_lex_state = 260}, - [5995] = {.lex_state = 0, .external_lex_state = 186}, - [5996] = {.lex_state = 0, .external_lex_state = 186}, - [5997] = {.lex_state = 0, .external_lex_state = 236}, - [5998] = {.lex_state = 0, .external_lex_state = 263}, - [5999] = {.lex_state = 0, .external_lex_state = 264}, - [6000] = {.lex_state = 0, .external_lex_state = 186}, - [6001] = {.lex_state = 0, .external_lex_state = 186}, - [6002] = {.lex_state = 0, .external_lex_state = 186}, - [6003] = {.lex_state = 0, .external_lex_state = 264}, - [6004] = {.lex_state = 0, .external_lex_state = 186}, - [6005] = {.lex_state = 0, .external_lex_state = 260}, - [6006] = {.lex_state = 0, .external_lex_state = 186}, - [6007] = {.lex_state = 0, .external_lex_state = 260}, - [6008] = {.lex_state = 0, .external_lex_state = 228}, - [6009] = {.lex_state = 0, .external_lex_state = 228}, - [6010] = {.lex_state = 0, .external_lex_state = 186}, - [6011] = {.lex_state = 0, .external_lex_state = 228}, - [6012] = {.lex_state = 0, .external_lex_state = 228}, - [6013] = {.lex_state = 0, .external_lex_state = 262}, - [6014] = {.lex_state = 0, .external_lex_state = 186}, - [6015] = {.lex_state = 0, .external_lex_state = 262}, - [6016] = {.lex_state = 0, .external_lex_state = 262}, - [6017] = {.lex_state = 0, .external_lex_state = 228}, - [6018] = {.lex_state = 0, .external_lex_state = 262}, - [6019] = {.lex_state = 0, .external_lex_state = 186}, - [6020] = {.lex_state = 0, .external_lex_state = 186}, - [6021] = {.lex_state = 0, .external_lex_state = 262}, - [6022] = {.lex_state = 0, .external_lex_state = 225}, - [6023] = {.lex_state = 0, .external_lex_state = 186}, - [6024] = {.lex_state = 0, .external_lex_state = 228}, - [6025] = {.lex_state = 0, .external_lex_state = 186}, - [6026] = {.lex_state = 0, .external_lex_state = 228}, - [6027] = {.lex_state = 0, .external_lex_state = 186}, - [6028] = {.lex_state = 0, .external_lex_state = 262}, - [6029] = {.lex_state = 0, .external_lex_state = 186}, - [6030] = {.lex_state = 0, .external_lex_state = 186}, - [6031] = {.lex_state = 0, .external_lex_state = 186}, - [6032] = {.lex_state = 0, .external_lex_state = 262}, - [6033] = {.lex_state = 0, .external_lex_state = 186}, - [6034] = {.lex_state = 0, .external_lex_state = 228}, - [6035] = {.lex_state = 0, .external_lex_state = 262}, - [6036] = {.lex_state = 0, .external_lex_state = 186}, - [6037] = {.lex_state = 0, .external_lex_state = 186}, - [6038] = {.lex_state = 0, .external_lex_state = 186}, - [6039] = {.lex_state = 0, .external_lex_state = 186}, - [6040] = {.lex_state = 0, .external_lex_state = 262}, - [6041] = {.lex_state = 0, .external_lex_state = 260}, - [6042] = {.lex_state = 0, .external_lex_state = 186}, - [6043] = {.lex_state = 0, .external_lex_state = 262}, - [6044] = {.lex_state = 0, .external_lex_state = 186}, - [6045] = {.lex_state = 0, .external_lex_state = 228}, - [6046] = {.lex_state = 0, .external_lex_state = 262}, - [6047] = {.lex_state = 0, .external_lex_state = 186}, - [6048] = {.lex_state = 0, .external_lex_state = 262}, - [6049] = {.lex_state = 0, .external_lex_state = 186}, - [6050] = {.lex_state = 0, .external_lex_state = 228}, - [6051] = {.lex_state = 0, .external_lex_state = 228}, - [6052] = {.lex_state = 0, .external_lex_state = 186}, - [6053] = {.lex_state = 0, .external_lex_state = 263}, - [6054] = {.lex_state = 0, .external_lex_state = 262}, - [6055] = {.lex_state = 0, .external_lex_state = 262}, - [6056] = {.lex_state = 0, .external_lex_state = 186}, - [6057] = {.lex_state = 0, .external_lex_state = 186}, - [6058] = {.lex_state = 0, .external_lex_state = 186}, - [6059] = {.lex_state = 0, .external_lex_state = 262}, - [6060] = {.lex_state = 0, .external_lex_state = 228}, - [6061] = {.lex_state = 0, .external_lex_state = 265}, - [6062] = {.lex_state = 0, .external_lex_state = 228}, - [6063] = {.lex_state = 0, .external_lex_state = 186}, - [6064] = {.lex_state = 0, .external_lex_state = 262}, - [6065] = {.lex_state = 0, .external_lex_state = 262}, - [6066] = {.lex_state = 0, .external_lex_state = 264}, - [6067] = {.lex_state = 0, .external_lex_state = 186}, - [6068] = {.lex_state = 0, .external_lex_state = 186}, - [6069] = {.lex_state = 0, .external_lex_state = 186}, - [6070] = {.lex_state = 0, .external_lex_state = 262}, - [6071] = {.lex_state = 0, .external_lex_state = 265}, - [6072] = {.lex_state = 0, .external_lex_state = 228}, - [6073] = {.lex_state = 0, .external_lex_state = 186}, - [6074] = {.lex_state = 0, .external_lex_state = 186}, - [6075] = {.lex_state = 0, .external_lex_state = 228}, - [6076] = {.lex_state = 0, .external_lex_state = 186}, - [6077] = {.lex_state = 0, .external_lex_state = 186}, - [6078] = {.lex_state = 0, .external_lex_state = 186}, - [6079] = {.lex_state = 0, .external_lex_state = 262}, - [6080] = {.lex_state = 0, .external_lex_state = 186}, - [6081] = {.lex_state = 0, .external_lex_state = 228}, - [6082] = {.lex_state = 0, .external_lex_state = 186}, - [6083] = {.lex_state = 0, .external_lex_state = 186}, - [6084] = {.lex_state = 0, .external_lex_state = 262}, - [6085] = {.lex_state = 0, .external_lex_state = 186}, - [6086] = {.lex_state = 0, .external_lex_state = 262}, - [6087] = {.lex_state = 0, .external_lex_state = 255}, - [6088] = {.lex_state = 0, .external_lex_state = 260}, - [6089] = {.lex_state = 0, .external_lex_state = 186}, - [6090] = {.lex_state = 0, .external_lex_state = 228}, - [6091] = {.lex_state = 0, .external_lex_state = 228}, - [6092] = {.lex_state = 0, .external_lex_state = 186}, - [6093] = {.lex_state = 0, .external_lex_state = 262}, - [6094] = {.lex_state = 0, .external_lex_state = 262}, - [6095] = {.lex_state = 0, .external_lex_state = 186}, - [6096] = {.lex_state = 0, .external_lex_state = 186}, - [6097] = {.lex_state = 0, .external_lex_state = 186}, - [6098] = {.lex_state = 0, .external_lex_state = 262}, - [6099] = {.lex_state = 0, .external_lex_state = 228}, - [6100] = {.lex_state = 0, .external_lex_state = 265}, - [6101] = {.lex_state = 0, .external_lex_state = 186}, - [6102] = {.lex_state = 0, .external_lex_state = 228}, - [6103] = {.lex_state = 0, .external_lex_state = 262}, - [6104] = {.lex_state = 0, .external_lex_state = 262}, - [6105] = {.lex_state = 0, .external_lex_state = 186}, - [6106] = {.lex_state = 0, .external_lex_state = 262}, - [6107] = {.lex_state = 0, .external_lex_state = 265}, - [6108] = {.lex_state = 0, .external_lex_state = 228}, - [6109] = {.lex_state = 0, .external_lex_state = 186}, - [6110] = {.lex_state = 0, .external_lex_state = 262}, - [6111] = {.lex_state = 0, .external_lex_state = 186}, - [6112] = {.lex_state = 0, .external_lex_state = 262}, - [6113] = {.lex_state = 0, .external_lex_state = 228}, - [6114] = {.lex_state = 0, .external_lex_state = 186}, - [6115] = {.lex_state = 0, .external_lex_state = 186}, - [6116] = {.lex_state = 0, .external_lex_state = 228}, - [6117] = {.lex_state = 0, .external_lex_state = 186}, - [6118] = {.lex_state = 0, .external_lex_state = 228}, - [6119] = {.lex_state = 0, .external_lex_state = 186}, - [6120] = {.lex_state = 0, .external_lex_state = 186}, - [6121] = {.lex_state = 0, .external_lex_state = 186}, - [6122] = {.lex_state = 0, .external_lex_state = 262}, - [6123] = {.lex_state = 0, .external_lex_state = 186}, - [6124] = {.lex_state = 0, .external_lex_state = 262}, - [6125] = {.lex_state = 0, .external_lex_state = 186}, - [6126] = {.lex_state = 0, .external_lex_state = 260}, - [6127] = {.lex_state = 0, .external_lex_state = 228}, - [6128] = {.lex_state = 0, .external_lex_state = 228}, - [6129] = {.lex_state = 0, .external_lex_state = 263}, - [6130] = {.lex_state = 0, .external_lex_state = 260}, - [6131] = {.lex_state = 0, .external_lex_state = 186}, - [6132] = {.lex_state = 0, .external_lex_state = 257}, - [6133] = {.lex_state = 0, .external_lex_state = 186}, - [6134] = {.lex_state = 0, .external_lex_state = 186}, - [6135] = {.lex_state = 0, .external_lex_state = 186}, - [6136] = {.lex_state = 0, .external_lex_state = 228}, - [6137] = {.lex_state = 0, .external_lex_state = 263}, - [6138] = {.lex_state = 0, .external_lex_state = 228}, - [6139] = {.lex_state = 0, .external_lex_state = 186}, - [6140] = {.lex_state = 0, .external_lex_state = 228}, - [6141] = {.lex_state = 0, .external_lex_state = 266}, - [6142] = {.lex_state = 0, .external_lex_state = 264}, - [6143] = {.lex_state = 0, .external_lex_state = 186}, - [6144] = {.lex_state = 0, .external_lex_state = 186}, - [6145] = {.lex_state = 0, .external_lex_state = 263}, - [6146] = {.lex_state = 0, .external_lex_state = 262}, - [6147] = {.lex_state = 0, .external_lex_state = 228}, - [6148] = {.lex_state = 0, .external_lex_state = 186}, - [6149] = {.lex_state = 0, .external_lex_state = 186}, - [6150] = {.lex_state = 0, .external_lex_state = 186}, - [6151] = {.lex_state = 0, .external_lex_state = 186}, - [6152] = {.lex_state = 0, .external_lex_state = 186}, - [6153] = {.lex_state = 0, .external_lex_state = 186}, - [6154] = {.lex_state = 0, .external_lex_state = 262}, - [6155] = {.lex_state = 0, .external_lex_state = 255}, - [6156] = {.lex_state = 0, .external_lex_state = 263}, - [6157] = {.lex_state = 0, .external_lex_state = 263}, - [6158] = {.lex_state = 0, .external_lex_state = 186}, - [6159] = {.lex_state = 0, .external_lex_state = 186}, - [6160] = {.lex_state = 0, .external_lex_state = 260}, - [6161] = {.lex_state = 0, .external_lex_state = 186}, - [6162] = {.lex_state = 0, .external_lex_state = 186}, - [6163] = {.lex_state = 0, .external_lex_state = 228}, - [6164] = {.lex_state = 0, .external_lex_state = 186}, - [6165] = {.lex_state = 0, .external_lex_state = 186}, - [6166] = {.lex_state = 0, .external_lex_state = 186}, - [6167] = {.lex_state = 0, .external_lex_state = 263}, - [6168] = {.lex_state = 0, .external_lex_state = 186}, - [6169] = {.lex_state = 0, .external_lex_state = 186}, - [6170] = {.lex_state = 0, .external_lex_state = 261}, - [6171] = {.lex_state = 0, .external_lex_state = 186}, - [6172] = {.lex_state = 0, .external_lex_state = 186}, - [6173] = {.lex_state = 0, .external_lex_state = 228}, - [6174] = {.lex_state = 0, .external_lex_state = 260}, - [6175] = {.lex_state = 0, .external_lex_state = 263}, - [6176] = {.lex_state = 0, .external_lex_state = 186}, - [6177] = {.lex_state = 0, .external_lex_state = 186}, - [6178] = {.lex_state = 0, .external_lex_state = 263}, - [6179] = {.lex_state = 0, .external_lex_state = 262}, - [6180] = {.lex_state = 0, .external_lex_state = 186}, - [6181] = {.lex_state = 0, .external_lex_state = 228}, - [6182] = {.lex_state = 0, .external_lex_state = 228}, - [6183] = {.lex_state = 0, .external_lex_state = 265}, - [6184] = {.lex_state = 0, .external_lex_state = 264}, - [6185] = {.lex_state = 0, .external_lex_state = 267}, - [6186] = {.lex_state = 0, .external_lex_state = 241}, - [6187] = {.lex_state = 0, .external_lex_state = 186}, - [6188] = {.lex_state = 0, .external_lex_state = 186}, - [6189] = {.lex_state = 0, .external_lex_state = 186}, - [6190] = {.lex_state = 0, .external_lex_state = 186}, - [6191] = {.lex_state = 0, .external_lex_state = 186}, - [6192] = {.lex_state = 0, .external_lex_state = 186}, - [6193] = {.lex_state = 0, .external_lex_state = 186}, - [6194] = {.lex_state = 0, .external_lex_state = 186}, - [6195] = {.lex_state = 0, .external_lex_state = 186}, - [6196] = {.lex_state = 0, .external_lex_state = 186}, - [6197] = {.lex_state = 0, .external_lex_state = 186}, + [5870] = {.lex_state = 0, .external_lex_state = 187}, + [5871] = {.lex_state = 0, .external_lex_state = 250}, + [5872] = {.lex_state = 0, .external_lex_state = 223}, + [5873] = {.lex_state = 0, .external_lex_state = 187}, + [5874] = {.lex_state = 0, .external_lex_state = 250}, + [5875] = {.lex_state = 0, .external_lex_state = 187}, + [5876] = {.lex_state = 0, .external_lex_state = 187}, + [5877] = {.lex_state = 0, .external_lex_state = 187}, + [5878] = {.lex_state = 0, .external_lex_state = 187}, + [5879] = {.lex_state = 0, .external_lex_state = 231}, + [5880] = {.lex_state = 0, .external_lex_state = 223}, + [5881] = {.lex_state = 0, .external_lex_state = 224}, + [5882] = {.lex_state = 0, .external_lex_state = 250}, + [5883] = {.lex_state = 0, .external_lex_state = 187}, + [5884] = {.lex_state = 0, .external_lex_state = 231}, + [5885] = {.lex_state = 0, .external_lex_state = 187}, + [5886] = {.lex_state = 0, .external_lex_state = 250}, + [5887] = {.lex_state = 0, .external_lex_state = 187}, + [5888] = {.lex_state = 0, .external_lex_state = 187}, + [5889] = {.lex_state = 0, .external_lex_state = 187}, + [5890] = {.lex_state = 0, .external_lex_state = 187}, + [5891] = {.lex_state = 0, .external_lex_state = 250}, + [5892] = {.lex_state = 0, .external_lex_state = 250}, + [5893] = {.lex_state = 0, .external_lex_state = 187}, + [5894] = {.lex_state = 0, .external_lex_state = 187}, + [5895] = {.lex_state = 0, .external_lex_state = 223}, + [5896] = {.lex_state = 0, .external_lex_state = 250}, + [5897] = {.lex_state = 0, .external_lex_state = 254}, + [5898] = {.lex_state = 0, .external_lex_state = 218}, + [5899] = {.lex_state = 0, .external_lex_state = 187}, + [5900] = {.lex_state = 0, .external_lex_state = 187}, + [5901] = {.lex_state = 0, .external_lex_state = 250}, + [5902] = {.lex_state = 0, .external_lex_state = 187}, + [5903] = {.lex_state = 0, .external_lex_state = 223}, + [5904] = {.lex_state = 0, .external_lex_state = 187}, + [5905] = {.lex_state = 0, .external_lex_state = 187}, + [5906] = {.lex_state = 0, .external_lex_state = 257}, + [5907] = {.lex_state = 0, .external_lex_state = 224}, + [5908] = {.lex_state = 0, .external_lex_state = 224}, + [5909] = {.lex_state = 0, .external_lex_state = 221}, + [5910] = {.lex_state = 0, .external_lex_state = 258}, + [5911] = {.lex_state = 0, .external_lex_state = 187}, + [5912] = {.lex_state = 0, .external_lex_state = 224}, + [5913] = {.lex_state = 0, .external_lex_state = 187}, + [5914] = {.lex_state = 0, .external_lex_state = 187}, + [5915] = {.lex_state = 0, .external_lex_state = 187}, + [5916] = {.lex_state = 0, .external_lex_state = 187}, + [5917] = {.lex_state = 0, .external_lex_state = 250}, + [5918] = {.lex_state = 0, .external_lex_state = 249}, + [5919] = {.lex_state = 0, .external_lex_state = 224}, + [5920] = {.lex_state = 0, .external_lex_state = 224}, + [5921] = {.lex_state = 0, .external_lex_state = 193}, + [5922] = {.lex_state = 0, .external_lex_state = 187}, + [5923] = {.lex_state = 0, .external_lex_state = 224}, + [5924] = {.lex_state = 0, .external_lex_state = 224}, + [5925] = {.lex_state = 0, .external_lex_state = 193}, + [5926] = {.lex_state = 0, .external_lex_state = 231}, + [5927] = {.lex_state = 0, .external_lex_state = 187}, + [5928] = {.lex_state = 0, .external_lex_state = 250}, + [5929] = {.lex_state = 0, .external_lex_state = 187}, + [5930] = {.lex_state = 0, .external_lex_state = 187}, + [5931] = {.lex_state = 0, .external_lex_state = 250}, + [5932] = {.lex_state = 0, .external_lex_state = 231}, + [5933] = {.lex_state = 0, .external_lex_state = 223}, + [5934] = {.lex_state = 0, .external_lex_state = 250}, + [5935] = {.lex_state = 0, .external_lex_state = 224}, + [5936] = {.lex_state = 0, .external_lex_state = 224}, + [5937] = {.lex_state = 0, .external_lex_state = 193}, + [5938] = {.lex_state = 0, .external_lex_state = 187}, + [5939] = {.lex_state = 0, .external_lex_state = 193}, + [5940] = {.lex_state = 0, .external_lex_state = 187}, + [5941] = {.lex_state = 0, .external_lex_state = 187}, + [5942] = {.lex_state = 0, .external_lex_state = 187}, + [5943] = {.lex_state = 0, .external_lex_state = 187}, + [5944] = {.lex_state = 0, .external_lex_state = 252}, + [5945] = {.lex_state = 0, .external_lex_state = 218}, + [5946] = {.lex_state = 0, .external_lex_state = 193}, + [5947] = {.lex_state = 0, .external_lex_state = 187}, + [5948] = {.lex_state = 0, .external_lex_state = 187}, + [5949] = {.lex_state = 0, .external_lex_state = 231}, + [5950] = {.lex_state = 0, .external_lex_state = 224}, + [5951] = {.lex_state = 0, .external_lex_state = 187}, + [5952] = {.lex_state = 0, .external_lex_state = 253}, + [5953] = {.lex_state = 0, .external_lex_state = 224}, + [5954] = {.lex_state = 0, .external_lex_state = 187}, + [5955] = {.lex_state = 0, .external_lex_state = 255}, + [5956] = {.lex_state = 0, .external_lex_state = 241}, + [5957] = {.lex_state = 0, .external_lex_state = 224}, + [5958] = {.lex_state = 0, .external_lex_state = 187}, + [5959] = {.lex_state = 0, .external_lex_state = 187}, + [5960] = {.lex_state = 0, .external_lex_state = 187}, + [5961] = {.lex_state = 0, .external_lex_state = 259}, + [5962] = {.lex_state = 0, .external_lex_state = 187}, + [5963] = {.lex_state = 0, .external_lex_state = 187}, + [5964] = {.lex_state = 0, .external_lex_state = 187}, + [5965] = {.lex_state = 0, .external_lex_state = 231}, + [5966] = {.lex_state = 0, .external_lex_state = 224}, + [5967] = {.lex_state = 0, .external_lex_state = 252}, + [5968] = {.lex_state = 0, .external_lex_state = 187}, + [5969] = {.lex_state = 0, .external_lex_state = 256}, + [5970] = {.lex_state = 0, .external_lex_state = 187}, + [5971] = {.lex_state = 0, .external_lex_state = 187}, + [5972] = {.lex_state = 0, .external_lex_state = 221}, + [5973] = {.lex_state = 0, .external_lex_state = 246}, + [5974] = {.lex_state = 0, .external_lex_state = 255}, + [5975] = {.lex_state = 0, .external_lex_state = 187}, + [5976] = {.lex_state = 0, .external_lex_state = 247}, + [5977] = {.lex_state = 0, .external_lex_state = 250}, + [5978] = {.lex_state = 0, .external_lex_state = 187}, + [5979] = {.lex_state = 0, .external_lex_state = 231}, + [5980] = {.lex_state = 0, .external_lex_state = 187}, + [5981] = {.lex_state = 0, .external_lex_state = 246}, + [5982] = {.lex_state = 0, .external_lex_state = 193}, + [5983] = {.lex_state = 0, .external_lex_state = 252}, + [5984] = {.lex_state = 0, .external_lex_state = 250}, + [5985] = {.lex_state = 0, .external_lex_state = 249}, + [5986] = {.lex_state = 0, .external_lex_state = 249}, + [5987] = {.lex_state = 0, .external_lex_state = 187}, + [5988] = {.lex_state = 0, .external_lex_state = 241}, + [5989] = {.lex_state = 0, .external_lex_state = 187}, + [5990] = {.lex_state = 0, .external_lex_state = 187}, + [5991] = {.lex_state = 0, .external_lex_state = 187}, + [5992] = {.lex_state = 0, .external_lex_state = 224}, + [5993] = {.lex_state = 0, .external_lex_state = 187}, + [5994] = {.lex_state = 0, .external_lex_state = 187}, + [5995] = {.lex_state = 0, .external_lex_state = 187}, + [5996] = {.lex_state = 0, .external_lex_state = 224}, + [5997] = {.lex_state = 0, .external_lex_state = 187}, + [5998] = {.lex_state = 0, .external_lex_state = 259}, + [5999] = {.lex_state = 0, .external_lex_state = 187}, + [6000] = {.lex_state = 0, .external_lex_state = 231}, + [6001] = {.lex_state = 0, .external_lex_state = 187}, + [6002] = {.lex_state = 0, .external_lex_state = 187}, + [6003] = {.lex_state = 0, .external_lex_state = 250}, + [6004] = {.lex_state = 0, .external_lex_state = 250}, + [6005] = {.lex_state = 0, .external_lex_state = 221}, + [6006] = {.lex_state = 0, .external_lex_state = 249}, + [6007] = {.lex_state = 0, .external_lex_state = 187}, + [6008] = {.lex_state = 0, .external_lex_state = 218}, + [6009] = {.lex_state = 0, .external_lex_state = 187}, + [6010] = {.lex_state = 0, .external_lex_state = 187}, + [6011] = {.lex_state = 0, .external_lex_state = 253}, + [6012] = {.lex_state = 0, .external_lex_state = 231}, + [6013] = {.lex_state = 0, .external_lex_state = 187}, + [6014] = {.lex_state = 0, .external_lex_state = 187}, + [6015] = {.lex_state = 0, .external_lex_state = 193}, + [6016] = {.lex_state = 0, .external_lex_state = 187}, + [6017] = {.lex_state = 0, .external_lex_state = 187}, + [6018] = {.lex_state = 0, .external_lex_state = 224}, + [6019] = {.lex_state = 0, .external_lex_state = 187}, + [6020] = {.lex_state = 0, .external_lex_state = 193}, + [6021] = {.lex_state = 0, .external_lex_state = 218}, + [6022] = {.lex_state = 0, .external_lex_state = 187}, + [6023] = {.lex_state = 0, .external_lex_state = 187}, + [6024] = {.lex_state = 0, .external_lex_state = 187}, + [6025] = {.lex_state = 0, .external_lex_state = 246}, + [6026] = {.lex_state = 0, .external_lex_state = 253}, + [6027] = {.lex_state = 0, .external_lex_state = 218}, + [6028] = {.lex_state = 0, .external_lex_state = 260}, + [6029] = {.lex_state = 0, .external_lex_state = 187}, + [6030] = {.lex_state = 0, .external_lex_state = 187}, + [6031] = {.lex_state = 0, .external_lex_state = 187}, + [6032] = {.lex_state = 0, .external_lex_state = 187}, + [6033] = {.lex_state = 0, .external_lex_state = 187}, + [6034] = {.lex_state = 0, .external_lex_state = 187}, + [6035] = {.lex_state = 0, .external_lex_state = 187}, + [6036] = {.lex_state = 0, .external_lex_state = 187}, + [6037] = {.lex_state = 0, .external_lex_state = 261}, + [6038] = {.lex_state = 0, .external_lex_state = 233}, + [6039] = {.lex_state = 0, .external_lex_state = 252}, + [6040] = {.lex_state = 0, .external_lex_state = 252}, + [6041] = {.lex_state = 0, .external_lex_state = 187}, + [6042] = {.lex_state = 0, .external_lex_state = 187}, + [6043] = {.lex_state = 0, .external_lex_state = 252}, + [6044] = {.lex_state = 0, .external_lex_state = 233}, + [6045] = {.lex_state = 0, .external_lex_state = 187}, + [6046] = {.lex_state = 0, .external_lex_state = 220}, + [6047] = {.lex_state = 0, .external_lex_state = 220}, + [6048] = {.lex_state = 0, .external_lex_state = 220}, + [6049] = {.lex_state = 0, .external_lex_state = 187}, + [6050] = {.lex_state = 0, .external_lex_state = 187}, + [6051] = {.lex_state = 0, .external_lex_state = 236}, + [6052] = {.lex_state = 0, .external_lex_state = 187}, + [6053] = {.lex_state = 0, .external_lex_state = 262}, + [6054] = {.lex_state = 0, .external_lex_state = 187}, + [6055] = {.lex_state = 0, .external_lex_state = 187}, + [6056] = {.lex_state = 0, .external_lex_state = 224}, + [6057] = {.lex_state = 0, .external_lex_state = 255}, + [6058] = {.lex_state = 0, .external_lex_state = 261}, + [6059] = {.lex_state = 0, .external_lex_state = 220}, + [6060] = {.lex_state = 0, .external_lex_state = 187}, + [6061] = {.lex_state = 0, .external_lex_state = 187}, + [6062] = {.lex_state = 0, .external_lex_state = 261}, + [6063] = {.lex_state = 0, .external_lex_state = 260}, + [6064] = {.lex_state = 0, .external_lex_state = 187}, + [6065] = {.lex_state = 0, .external_lex_state = 220}, + [6066] = {.lex_state = 0, .external_lex_state = 187}, + [6067] = {.lex_state = 0, .external_lex_state = 187}, + [6068] = {.lex_state = 0, .external_lex_state = 223}, + [6069] = {.lex_state = 0, .external_lex_state = 187}, + [6070] = {.lex_state = 0, .external_lex_state = 260}, + [6071] = {.lex_state = 0, .external_lex_state = 223}, + [6072] = {.lex_state = 0, .external_lex_state = 187}, + [6073] = {.lex_state = 0, .external_lex_state = 187}, + [6074] = {.lex_state = 0, .external_lex_state = 223}, + [6075] = {.lex_state = 0, .external_lex_state = 260}, + [6076] = {.lex_state = 0, .external_lex_state = 220}, + [6077] = {.lex_state = 0, .external_lex_state = 223}, + [6078] = {.lex_state = 0, .external_lex_state = 223}, + [6079] = {.lex_state = 0, .external_lex_state = 187}, + [6080] = {.lex_state = 0, .external_lex_state = 260}, + [6081] = {.lex_state = 0, .external_lex_state = 233}, + [6082] = {.lex_state = 0, .external_lex_state = 187}, + [6083] = {.lex_state = 0, .external_lex_state = 187}, + [6084] = {.lex_state = 0, .external_lex_state = 223}, + [6085] = {.lex_state = 0, .external_lex_state = 261}, + [6086] = {.lex_state = 0, .external_lex_state = 187}, + [6087] = {.lex_state = 0, .external_lex_state = 187}, + [6088] = {.lex_state = 0, .external_lex_state = 187}, + [6089] = {.lex_state = 0, .external_lex_state = 187}, + [6090] = {.lex_state = 0, .external_lex_state = 187}, + [6091] = {.lex_state = 0, .external_lex_state = 187}, + [6092] = {.lex_state = 0, .external_lex_state = 187}, + [6093] = {.lex_state = 0, .external_lex_state = 187}, + [6094] = {.lex_state = 0, .external_lex_state = 187}, + [6095] = {.lex_state = 0, .external_lex_state = 233}, + [6096] = {.lex_state = 0, .external_lex_state = 260}, + [6097] = {.lex_state = 0, .external_lex_state = 187}, + [6098] = {.lex_state = 0, .external_lex_state = 220}, + [6099] = {.lex_state = 0, .external_lex_state = 187}, + [6100] = {.lex_state = 0, .external_lex_state = 187}, + [6101] = {.lex_state = 0, .external_lex_state = 187}, + [6102] = {.lex_state = 0, .external_lex_state = 223}, + [6103] = {.lex_state = 0, .external_lex_state = 261}, + [6104] = {.lex_state = 0, .external_lex_state = 223}, + [6105] = {.lex_state = 0, .external_lex_state = 187}, + [6106] = {.lex_state = 0, .external_lex_state = 187}, + [6107] = {.lex_state = 0, .external_lex_state = 223}, + [6108] = {.lex_state = 0, .external_lex_state = 231}, + [6109] = {.lex_state = 0, .external_lex_state = 220}, + [6110] = {.lex_state = 0, .external_lex_state = 220}, + [6111] = {.lex_state = 0, .external_lex_state = 231}, + [6112] = {.lex_state = 0, .external_lex_state = 261}, + [6113] = {.lex_state = 0, .external_lex_state = 231}, + [6114] = {.lex_state = 0, .external_lex_state = 231}, + [6115] = {.lex_state = 0, .external_lex_state = 231}, + [6116] = {.lex_state = 0, .external_lex_state = 231}, + [6117] = {.lex_state = 0, .external_lex_state = 233}, + [6118] = {.lex_state = 0, .external_lex_state = 263}, + [6119] = {.lex_state = 0, .external_lex_state = 233}, + [6120] = {.lex_state = 0, .external_lex_state = 187}, + [6121] = {.lex_state = 0, .external_lex_state = 187}, + [6122] = {.lex_state = 0, .external_lex_state = 224}, + [6123] = {.lex_state = 0, .external_lex_state = 187}, + [6124] = {.lex_state = 0, .external_lex_state = 187}, + [6125] = {.lex_state = 0, .external_lex_state = 187}, + [6126] = {.lex_state = 0, .external_lex_state = 187}, + [6127] = {.lex_state = 0, .external_lex_state = 187}, + [6128] = {.lex_state = 0, .external_lex_state = 187}, + [6129] = {.lex_state = 0, .external_lex_state = 255}, + [6130] = {.lex_state = 0, .external_lex_state = 187}, + [6131] = {.lex_state = 0, .external_lex_state = 247}, + [6132] = {.lex_state = 0, .external_lex_state = 187}, + [6133] = {.lex_state = 0, .external_lex_state = 224}, + [6134] = {.lex_state = 0, .external_lex_state = 187}, + [6135] = {.lex_state = 0, .external_lex_state = 223}, + [6136] = {.lex_state = 0, .external_lex_state = 187}, + [6137] = {.lex_state = 0, .external_lex_state = 223}, + [6138] = {.lex_state = 0, .external_lex_state = 187}, + [6139] = {.lex_state = 0, .external_lex_state = 261}, + [6140] = {.lex_state = 0, .external_lex_state = 187}, + [6141] = {.lex_state = 0, .external_lex_state = 261}, + [6142] = {.lex_state = 0, .external_lex_state = 187}, + [6143] = {.lex_state = 0, .external_lex_state = 187}, + [6144] = {.lex_state = 0, .external_lex_state = 187}, + [6145] = {.lex_state = 0, .external_lex_state = 248}, + [6146] = {.lex_state = 0, .external_lex_state = 256}, + [6147] = {.lex_state = 0, .external_lex_state = 187}, + [6148] = {.lex_state = 0, .external_lex_state = 187}, + [6149] = {.lex_state = 0, .external_lex_state = 260}, + [6150] = {.lex_state = 0, .external_lex_state = 247}, + [6151] = {.lex_state = 0, .external_lex_state = 224}, + [6152] = {.lex_state = 0, .external_lex_state = 224}, + [6153] = {.lex_state = 0, .external_lex_state = 187}, + [6154] = {.lex_state = 0, .external_lex_state = 187}, + [6155] = {.lex_state = 0, .external_lex_state = 187}, + [6156] = {.lex_state = 0, .external_lex_state = 260}, + [6157] = {.lex_state = 0, .external_lex_state = 187}, + [6158] = {.lex_state = 0, .external_lex_state = 260}, + [6159] = {.lex_state = 0, .external_lex_state = 264}, + [6160] = {.lex_state = 0, .external_lex_state = 224}, + [6161] = {.lex_state = 0, .external_lex_state = 264}, + [6162] = {.lex_state = 0, .external_lex_state = 261}, + [6163] = {.lex_state = 0, .external_lex_state = 264}, + [6164] = {.lex_state = 0, .external_lex_state = 223}, + [6165] = {.lex_state = 0, .external_lex_state = 187}, + [6166] = {.lex_state = 0, .external_lex_state = 187}, + [6167] = {.lex_state = 0, .external_lex_state = 264}, + [6168] = {.lex_state = 0, .external_lex_state = 264}, + [6169] = {.lex_state = 0, .external_lex_state = 187}, + [6170] = {.lex_state = 0, .external_lex_state = 187}, + [6171] = {.lex_state = 0, .external_lex_state = 187}, + [6172] = {.lex_state = 0, .external_lex_state = 264}, + [6173] = {.lex_state = 0, .external_lex_state = 187}, + [6174] = {.lex_state = 0, .external_lex_state = 187}, + [6175] = {.lex_state = 0, .external_lex_state = 187}, + [6176] = {.lex_state = 0, .external_lex_state = 187}, + [6177] = {.lex_state = 0, .external_lex_state = 187}, + [6178] = {.lex_state = 0, .external_lex_state = 187}, + [6179] = {.lex_state = 0, .external_lex_state = 187}, + [6180] = {.lex_state = 0, .external_lex_state = 264}, + [6181] = {.lex_state = 0, .external_lex_state = 223}, + [6182] = {.lex_state = 0, .external_lex_state = 264}, + [6183] = {.lex_state = 0, .external_lex_state = 187}, + [6184] = {.lex_state = 0, .external_lex_state = 260}, + [6185] = {.lex_state = 0, .external_lex_state = 261}, + [6186] = {.lex_state = 0, .external_lex_state = 264}, + [6187] = {.lex_state = 0, .external_lex_state = 264}, + [6188] = {.lex_state = 0, .external_lex_state = 264}, + [6189] = {.lex_state = 0, .external_lex_state = 187}, + [6190] = {.lex_state = 0, .external_lex_state = 261}, + [6191] = {.lex_state = 0, .external_lex_state = 260}, + [6192] = {.lex_state = 0, .external_lex_state = 187}, + [6193] = {.lex_state = 0, .external_lex_state = 187}, + [6194] = {.lex_state = 0, .external_lex_state = 187}, + [6195] = {.lex_state = 0, .external_lex_state = 264}, + [6196] = {.lex_state = 0, .external_lex_state = 223}, + [6197] = {.lex_state = 0, .external_lex_state = 264}, [6198] = {.lex_state = 0, .external_lex_state = 263}, - [6199] = {.lex_state = 0, .external_lex_state = 225}, - [6200] = {.lex_state = 0, .external_lex_state = 263}, - [6201] = {.lex_state = 0, .external_lex_state = 262}, - [6202] = {.lex_state = 0, .external_lex_state = 186}, - [6203] = {.lex_state = 0, .external_lex_state = 264}, - [6204] = {.lex_state = 0, .external_lex_state = 186}, - [6205] = {.lex_state = 0, .external_lex_state = 186}, - [6206] = {.lex_state = 0, .external_lex_state = 186}, - [6207] = {.lex_state = 0, .external_lex_state = 186}, - [6208] = {.lex_state = 0, .external_lex_state = 186}, - [6209] = {.lex_state = 0, .external_lex_state = 186}, - [6210] = {.lex_state = 0, .external_lex_state = 186}, - [6211] = {.lex_state = 0, .external_lex_state = 228}, + [6199] = {.lex_state = 0, .external_lex_state = 187}, + [6200] = {.lex_state = 0, .external_lex_state = 233}, + [6201] = {.lex_state = 0, .external_lex_state = 260}, + [6202] = {.lex_state = 0, .external_lex_state = 223}, + [6203] = {.lex_state = 0, .external_lex_state = 223}, + [6204] = {.lex_state = 0, .external_lex_state = 223}, + [6205] = {.lex_state = 0, .external_lex_state = 263}, + [6206] = {.lex_state = 0, .external_lex_state = 187}, + [6207] = {.lex_state = 0, .external_lex_state = 261}, + [6208] = {.lex_state = 0, .external_lex_state = 187}, + [6209] = {.lex_state = 0, .external_lex_state = 263}, + [6210] = {.lex_state = 0, .external_lex_state = 224}, + [6211] = {.lex_state = 0, .external_lex_state = 187}, [6212] = {.lex_state = 0, .external_lex_state = 263}, - [6213] = {.lex_state = 0, .external_lex_state = 186}, - [6214] = {.lex_state = 0, .external_lex_state = 251}, - [6215] = {.lex_state = 0, .external_lex_state = 186}, - [6216] = {.lex_state = 0, .external_lex_state = 263}, - [6217] = {.lex_state = 0, .external_lex_state = 186}, - [6218] = {.lex_state = 0, .external_lex_state = 262}, - [6219] = {.lex_state = 0, .external_lex_state = 260}, - [6220] = {.lex_state = 0, .external_lex_state = 186}, - [6221] = {.lex_state = 0, .external_lex_state = 186}, - [6222] = {.lex_state = 0, .external_lex_state = 228}, - [6223] = {.lex_state = 0, .external_lex_state = 260}, - [6224] = {.lex_state = 0, .external_lex_state = 263}, - [6225] = {.lex_state = 0, .external_lex_state = 263}, - [6226] = {.lex_state = 0, .external_lex_state = 263}, - [6227] = {.lex_state = 0, .external_lex_state = 263}, - [6228] = {.lex_state = 0, .external_lex_state = 186}, - [6229] = {.lex_state = 0, .external_lex_state = 186}, - [6230] = {.lex_state = 0, .external_lex_state = 228}, - [6231] = {.lex_state = 0, .external_lex_state = 186}, - [6232] = {.lex_state = 0, .external_lex_state = 263}, - [6233] = {.lex_state = 0, .external_lex_state = 263}, - [6234] = {.lex_state = 0, .external_lex_state = 186}, + [6213] = {.lex_state = 0, .external_lex_state = 187}, + [6214] = {.lex_state = 0, .external_lex_state = 187}, + [6215] = {.lex_state = 0, .external_lex_state = 187}, + [6216] = {.lex_state = 0, .external_lex_state = 187}, + [6217] = {.lex_state = 0, .external_lex_state = 223}, + [6218] = {.lex_state = 0, .external_lex_state = 263}, + [6219] = {.lex_state = 0, .external_lex_state = 187}, + [6220] = {.lex_state = 0, .external_lex_state = 263}, + [6221] = {.lex_state = 0, .external_lex_state = 223}, + [6222] = {.lex_state = 0, .external_lex_state = 223}, + [6223] = {.lex_state = 0, .external_lex_state = 263}, + [6224] = {.lex_state = 0, .external_lex_state = 260}, + [6225] = {.lex_state = 0, .external_lex_state = 187}, + [6226] = {.lex_state = 0, .external_lex_state = 187}, + [6227] = {.lex_state = 0, .external_lex_state = 187}, + [6228] = {.lex_state = 0, .external_lex_state = 263}, + [6229] = {.lex_state = 0, .external_lex_state = 223}, + [6230] = {.lex_state = 0, .external_lex_state = 263}, + [6231] = {.lex_state = 0, .external_lex_state = 187}, + [6232] = {.lex_state = 0, .external_lex_state = 187}, + [6233] = {.lex_state = 0, .external_lex_state = 187}, + [6234] = {.lex_state = 0, .external_lex_state = 187}, [6235] = {.lex_state = 0, .external_lex_state = 263}, - [6236] = {.lex_state = 0, .external_lex_state = 263}, - [6237] = {.lex_state = 0, .external_lex_state = 263}, - [6238] = {.lex_state = 0, .external_lex_state = 186}, - [6239] = {.lex_state = 0, .external_lex_state = 260}, - [6240] = {.lex_state = 0, .external_lex_state = 263}, - [6241] = {.lex_state = 0, .external_lex_state = 228}, - [6242] = {.lex_state = 0, .external_lex_state = 186}, - [6243] = {.lex_state = 0, .external_lex_state = 263}, - [6244] = {.lex_state = 0, .external_lex_state = 186}, - [6245] = {.lex_state = 0, .external_lex_state = 186}, - [6246] = {.lex_state = 0, .external_lex_state = 186}, - [6247] = {.lex_state = 0, .external_lex_state = 186}, - [6248] = {.lex_state = 0, .external_lex_state = 186}, - [6249] = {.lex_state = 0, .external_lex_state = 186}, + [6236] = {.lex_state = 0, .external_lex_state = 187}, + [6237] = {.lex_state = 0, .external_lex_state = 261}, + [6238] = {.lex_state = 0, .external_lex_state = 187}, + [6239] = {.lex_state = 0, .external_lex_state = 263}, + [6240] = {.lex_state = 0, .external_lex_state = 262}, + [6241] = {.lex_state = 0, .external_lex_state = 223}, + [6242] = {.lex_state = 0, .external_lex_state = 263}, + [6243] = {.lex_state = 0, .external_lex_state = 187}, + [6244] = {.lex_state = 0, .external_lex_state = 263}, + [6245] = {.lex_state = 0, .external_lex_state = 187}, + [6246] = {.lex_state = 0, .external_lex_state = 223}, + [6247] = {.lex_state = 0, .external_lex_state = 223}, + [6248] = {.lex_state = 0, .external_lex_state = 187}, + [6249] = {.lex_state = 0, .external_lex_state = 187}, [6250] = {.lex_state = 0, .external_lex_state = 263}, - [6251] = {.lex_state = 0, .external_lex_state = 263}, - [6252] = {.lex_state = 0, .external_lex_state = 263}, - [6253] = {.lex_state = 0, .external_lex_state = 186}, - [6254] = {.lex_state = 0, .external_lex_state = 263}, - [6255] = {.lex_state = 0, .external_lex_state = 263}, - [6256] = {.lex_state = 0, .external_lex_state = 263}, - [6257] = {.lex_state = 0, .external_lex_state = 263}, - [6258] = {.lex_state = 0, .external_lex_state = 186}, - [6259] = {.lex_state = 0, .external_lex_state = 186}, - [6260] = {.lex_state = 0, .external_lex_state = 186}, - [6261] = {.lex_state = 0, .external_lex_state = 260}, - [6262] = {.lex_state = 0, .external_lex_state = 228}, - [6263] = {.lex_state = 0, .external_lex_state = 186}, + [6251] = {.lex_state = 0, .external_lex_state = 187}, + [6252] = {.lex_state = 0, .external_lex_state = 187}, + [6253] = {.lex_state = 0, .external_lex_state = 263}, + [6254] = {.lex_state = 0, .external_lex_state = 187}, + [6255] = {.lex_state = 0, .external_lex_state = 260}, + [6256] = {.lex_state = 0, .external_lex_state = 187}, + [6257] = {.lex_state = 0, .external_lex_state = 187}, + [6258] = {.lex_state = 0, .external_lex_state = 260}, + [6259] = {.lex_state = 0, .external_lex_state = 263}, + [6260] = {.lex_state = 0, .external_lex_state = 223}, + [6261] = {.lex_state = 0, .external_lex_state = 265}, + [6262] = {.lex_state = 0, .external_lex_state = 223}, + [6263] = {.lex_state = 0, .external_lex_state = 187}, [6264] = {.lex_state = 0, .external_lex_state = 263}, - [6265] = {.lex_state = 0, .external_lex_state = 263}, - [6266] = {.lex_state = 0, .external_lex_state = 186}, - [6267] = {.lex_state = 0, .external_lex_state = 186}, + [6265] = {.lex_state = 0, .external_lex_state = 187}, + [6266] = {.lex_state = 0, .external_lex_state = 223}, + [6267] = {.lex_state = 0, .external_lex_state = 263}, [6268] = {.lex_state = 0, .external_lex_state = 263}, - [6269] = {.lex_state = 0, .external_lex_state = 251}, - [6270] = {.lex_state = 0, .external_lex_state = 263}, - [6271] = {.lex_state = 0, .external_lex_state = 263}, - [6272] = {.lex_state = 0, .external_lex_state = 186}, + [6269] = {.lex_state = 0, .external_lex_state = 187}, + [6270] = {.lex_state = 0, .external_lex_state = 187}, + [6271] = {.lex_state = 0, .external_lex_state = 187}, + [6272] = {.lex_state = 0, .external_lex_state = 260}, [6273] = {.lex_state = 0, .external_lex_state = 263}, - [6274] = {.lex_state = 0, .external_lex_state = 263}, - [6275] = {.lex_state = 0, .external_lex_state = 263}, - [6276] = {.lex_state = 0, .external_lex_state = 263}, - [6277] = {.lex_state = 0, .external_lex_state = 228}, - [6278] = {.lex_state = 0, .external_lex_state = 186}, + [6274] = {.lex_state = 0, .external_lex_state = 265}, + [6275] = {.lex_state = 0, .external_lex_state = 261}, + [6276] = {.lex_state = 0, .external_lex_state = 187}, + [6277] = {.lex_state = 0, .external_lex_state = 223}, + [6278] = {.lex_state = 0, .external_lex_state = 187}, [6279] = {.lex_state = 0, .external_lex_state = 263}, - [6280] = {.lex_state = 0, .external_lex_state = 260}, - [6281] = {.lex_state = 0, .external_lex_state = 186}, - [6282] = {.lex_state = 0, .external_lex_state = 263}, - [6283] = {.lex_state = 0, .external_lex_state = 186}, - [6284] = {.lex_state = 0, .external_lex_state = 186}, - [6285] = {.lex_state = 0, .external_lex_state = 186}, - [6286] = {.lex_state = 0, .external_lex_state = 186}, - [6287] = {.lex_state = 0, .external_lex_state = 228}, - [6288] = {.lex_state = 0, .external_lex_state = 186}, - [6289] = {.lex_state = 0, .external_lex_state = 263}, - [6290] = {.lex_state = 0, .external_lex_state = 263}, - [6291] = {.lex_state = 0, .external_lex_state = 186}, - [6292] = {.lex_state = 0, .external_lex_state = 263}, - [6293] = {.lex_state = 0, .external_lex_state = 263}, - [6294] = {.lex_state = 0, .external_lex_state = 186}, - [6295] = {.lex_state = 0, .external_lex_state = 263}, - [6296] = {.lex_state = 0, .external_lex_state = 186}, - [6297] = {.lex_state = 0, .external_lex_state = 186}, - [6298] = {.lex_state = 0, .external_lex_state = 263}, + [6280] = {.lex_state = 0, .external_lex_state = 187}, + [6281] = {.lex_state = 0, .external_lex_state = 264}, + [6282] = {.lex_state = 0, .external_lex_state = 223}, + [6283] = {.lex_state = 0, .external_lex_state = 187}, + [6284] = {.lex_state = 0, .external_lex_state = 263}, + [6285] = {.lex_state = 0, .external_lex_state = 187}, + [6286] = {.lex_state = 0, .external_lex_state = 263}, + [6287] = {.lex_state = 0, .external_lex_state = 187}, + [6288] = {.lex_state = 0, .external_lex_state = 223}, + [6289] = {.lex_state = 0, .external_lex_state = 187}, + [6290] = {.lex_state = 0, .external_lex_state = 187}, + [6291] = {.lex_state = 0, .external_lex_state = 223}, + [6292] = {.lex_state = 0, .external_lex_state = 187}, + [6293] = {.lex_state = 0, .external_lex_state = 187}, + [6294] = {.lex_state = 0, .external_lex_state = 233}, + [6295] = {.lex_state = 0, .external_lex_state = 187}, + [6296] = {.lex_state = 0, .external_lex_state = 263}, + [6297] = {.lex_state = 0, .external_lex_state = 263}, + [6298] = {.lex_state = 0, .external_lex_state = 187}, [6299] = {.lex_state = 0, .external_lex_state = 260}, [6300] = {.lex_state = 0, .external_lex_state = 263}, - [6301] = {.lex_state = 0, .external_lex_state = 263}, - [6302] = {.lex_state = 0, .external_lex_state = 263}, - [6303] = {.lex_state = 0, .external_lex_state = 263}, - [6304] = {.lex_state = 0, .external_lex_state = 186}, - [6305] = {.lex_state = 0, .external_lex_state = 186}, - [6306] = {.lex_state = 0, .external_lex_state = 263}, + [6301] = {.lex_state = 0, .external_lex_state = 187}, + [6302] = {.lex_state = 0, .external_lex_state = 223}, + [6303] = {.lex_state = 0, .external_lex_state = 187}, + [6304] = {.lex_state = 0, .external_lex_state = 265}, + [6305] = {.lex_state = 0, .external_lex_state = 223}, + [6306] = {.lex_state = 0, .external_lex_state = 187}, [6307] = {.lex_state = 0, .external_lex_state = 263}, - [6308] = {.lex_state = 0, .external_lex_state = 263}, - [6309] = {.lex_state = 0, .external_lex_state = 263}, - [6310] = {.lex_state = 0, .external_lex_state = 186}, - [6311] = {.lex_state = 0, .external_lex_state = 263}, - [6312] = {.lex_state = 0, .external_lex_state = 262}, - [6313] = {.lex_state = 0, .external_lex_state = 228}, - [6314] = {.lex_state = 0, .external_lex_state = 263}, - [6315] = {.lex_state = 0, .external_lex_state = 262}, - [6316] = {.lex_state = 0, .external_lex_state = 186}, - [6317] = {.lex_state = 0, .external_lex_state = 186}, - [6318] = {.lex_state = 0, .external_lex_state = 263}, - [6319] = {.lex_state = 0, .external_lex_state = 263}, - [6320] = {.lex_state = 0, .external_lex_state = 186}, - [6321] = {.lex_state = 0, .external_lex_state = 186}, + [6308] = {.lex_state = 0, .external_lex_state = 187}, + [6309] = {.lex_state = 0, .external_lex_state = 187}, + [6310] = {.lex_state = 0, .external_lex_state = 263}, + [6311] = {.lex_state = 0, .external_lex_state = 260}, + [6312] = {.lex_state = 0, .external_lex_state = 187}, + [6313] = {.lex_state = 0, .external_lex_state = 257}, + [6314] = {.lex_state = 0, .external_lex_state = 187}, + [6315] = {.lex_state = 0, .external_lex_state = 187}, + [6316] = {.lex_state = 0, .external_lex_state = 263}, + [6317] = {.lex_state = 0, .external_lex_state = 266}, + [6318] = {.lex_state = 0, .external_lex_state = 261}, + [6319] = {.lex_state = 0, .external_lex_state = 265}, + [6320] = {.lex_state = 0, .external_lex_state = 223}, + [6321] = {.lex_state = 0, .external_lex_state = 187}, [6322] = {.lex_state = 0, .external_lex_state = 263}, - [6323] = {.lex_state = 0, .external_lex_state = 186}, - [6324] = {.lex_state = 0, .external_lex_state = 186}, - [6325] = {.lex_state = 0, .external_lex_state = 263}, - [6326] = {.lex_state = 0, .external_lex_state = 225}, - [6327] = {.lex_state = 0, .external_lex_state = 263}, - [6328] = {.lex_state = 0, .external_lex_state = 263}, - [6329] = {.lex_state = 0, .external_lex_state = 186}, - [6330] = {.lex_state = 0, .external_lex_state = 263}, - [6331] = {.lex_state = 0, .external_lex_state = 251}, - [6332] = {.lex_state = 0, .external_lex_state = 263}, - [6333] = {.lex_state = 0, .external_lex_state = 263}, - [6334] = {.lex_state = 0, .external_lex_state = 263}, - [6335] = {.lex_state = 0, .external_lex_state = 260}, - [6336] = {.lex_state = 0, .external_lex_state = 263}, - [6337] = {.lex_state = 0, .external_lex_state = 263}, - [6338] = {.lex_state = 0, .external_lex_state = 263}, - [6339] = {.lex_state = 0, .external_lex_state = 262}, - [6340] = {.lex_state = 0, .external_lex_state = 263}, - [6341] = {.lex_state = 0, .external_lex_state = 260}, - [6342] = {.lex_state = 0, .external_lex_state = 186}, - [6343] = {.lex_state = 0, .external_lex_state = 186}, - [6344] = {.lex_state = 0, .external_lex_state = 263}, - [6345] = {.lex_state = 0, .external_lex_state = 263}, - [6346] = {.lex_state = 0, .external_lex_state = 186}, - [6347] = {.lex_state = 0, .external_lex_state = 263}, - [6348] = {.lex_state = 0, .external_lex_state = 186}, - [6349] = {.lex_state = 0, .external_lex_state = 186}, - [6350] = {.lex_state = 0, .external_lex_state = 263}, - [6351] = {.lex_state = 0, .external_lex_state = 186}, - [6352] = {.lex_state = 0, .external_lex_state = 186}, - [6353] = {.lex_state = 0, .external_lex_state = 263}, - [6354] = {.lex_state = 0, .external_lex_state = 228}, - [6355] = {.lex_state = 0, .external_lex_state = 263}, - [6356] = {.lex_state = 0, .external_lex_state = 263}, - [6357] = {.lex_state = 0, .external_lex_state = 265}, - [6358] = {.lex_state = 0, .external_lex_state = 186}, - [6359] = {.lex_state = 0, .external_lex_state = 186}, + [6323] = {.lex_state = 0, .external_lex_state = 223}, + [6324] = {.lex_state = 0, .external_lex_state = 263}, + [6325] = {.lex_state = 0, .external_lex_state = 187}, + [6326] = {.lex_state = 0, .external_lex_state = 263}, + [6327] = {.lex_state = 0, .external_lex_state = 187}, + [6328] = {.lex_state = 0, .external_lex_state = 187}, + [6329] = {.lex_state = 0, .external_lex_state = 223}, + [6330] = {.lex_state = 0, .external_lex_state = 187}, + [6331] = {.lex_state = 0, .external_lex_state = 223}, + [6332] = {.lex_state = 0, .external_lex_state = 223}, + [6333] = {.lex_state = 0, .external_lex_state = 187}, + [6334] = {.lex_state = 0, .external_lex_state = 187}, + [6335] = {.lex_state = 0, .external_lex_state = 223}, + [6336] = {.lex_state = 0, .external_lex_state = 223}, + [6337] = {.lex_state = 0, .external_lex_state = 187}, + [6338] = {.lex_state = 0, .external_lex_state = 223}, + [6339] = {.lex_state = 0, .external_lex_state = 261}, + [6340] = {.lex_state = 0, .external_lex_state = 255}, + [6341] = {.lex_state = 0, .external_lex_state = 223}, + [6342] = {.lex_state = 0, .external_lex_state = 187}, + [6343] = {.lex_state = 0, .external_lex_state = 187}, + [6344] = {.lex_state = 0, .external_lex_state = 253}, + [6345] = {.lex_state = 0, .external_lex_state = 223}, + [6346] = {.lex_state = 0, .external_lex_state = 187}, + [6347] = {.lex_state = 0, .external_lex_state = 187}, + [6348] = {.lex_state = 0, .external_lex_state = 187}, + [6349] = {.lex_state = 0, .external_lex_state = 263}, + [6350] = {.lex_state = 0, .external_lex_state = 187}, + [6351] = {.lex_state = 0, .external_lex_state = 223}, + [6352] = {.lex_state = 0, .external_lex_state = 187}, + [6353] = {.lex_state = 0, .external_lex_state = 260}, + [6354] = {.lex_state = 0, .external_lex_state = 260}, + [6355] = {.lex_state = 0, .external_lex_state = 187}, + [6356] = {.lex_state = 0, .external_lex_state = 261}, + [6357] = {.lex_state = 0, .external_lex_state = 187}, + [6358] = {.lex_state = 0, .external_lex_state = 263}, + [6359] = {.lex_state = 0, .external_lex_state = 260}, [6360] = {.lex_state = 0, .external_lex_state = 264}, - [6361] = {.lex_state = 0, .external_lex_state = 186}, - [6362] = {.lex_state = 0, .external_lex_state = 186}, - [6363] = {.lex_state = 0, .external_lex_state = 263}, - [6364] = {.lex_state = 0, .external_lex_state = 263}, - [6365] = {.lex_state = 0, .external_lex_state = 263}, - [6366] = {.lex_state = 0, .external_lex_state = 263}, - [6367] = {.lex_state = 0, .external_lex_state = 186}, - [6368] = {.lex_state = 0, .external_lex_state = 260}, - [6369] = {.lex_state = 0, .external_lex_state = 263}, - [6370] = {.lex_state = 0, .external_lex_state = 263}, - [6371] = {.lex_state = 0, .external_lex_state = 263}, - [6372] = {.lex_state = 0, .external_lex_state = 186}, - [6373] = {.lex_state = 0, .external_lex_state = 186}, - [6374] = {.lex_state = 0, .external_lex_state = 263}, - [6375] = {.lex_state = 0, .external_lex_state = 260}, - [6376] = {.lex_state = 0, .external_lex_state = 263}, - [6377] = {.lex_state = 0, .external_lex_state = 263}, + [6361] = {.lex_state = 0, .external_lex_state = 187}, + [6362] = {.lex_state = 0, .external_lex_state = 187}, + [6363] = {.lex_state = 0, .external_lex_state = 187}, + [6364] = {.lex_state = 0, .external_lex_state = 224}, + [6365] = {.lex_state = 0, .external_lex_state = 187}, + [6366] = {.lex_state = 0, .external_lex_state = 187}, + [6367] = {.lex_state = 0, .external_lex_state = 187}, + [6368] = {.lex_state = 0, .external_lex_state = 187}, + [6369] = {.lex_state = 0, .external_lex_state = 187}, + [6370] = {.lex_state = 0, .external_lex_state = 261}, + [6371] = {.lex_state = 0, .external_lex_state = 187}, + [6372] = {.lex_state = 0, .external_lex_state = 187}, + [6373] = {.lex_state = 0, .external_lex_state = 223}, + [6374] = {.lex_state = 0, .external_lex_state = 260}, + [6375] = {.lex_state = 0, .external_lex_state = 187}, + [6376] = {.lex_state = 0, .external_lex_state = 187}, + [6377] = {.lex_state = 0, .external_lex_state = 187}, [6378] = {.lex_state = 0, .external_lex_state = 263}, - [6379] = {.lex_state = 0, .external_lex_state = 186}, - [6380] = {.lex_state = 0, .external_lex_state = 186}, - [6381] = {.lex_state = 0, .external_lex_state = 186}, - [6382] = {.lex_state = 0, .external_lex_state = 261}, - [6383] = {.lex_state = 0, .external_lex_state = 228}, - [6384] = {.lex_state = 0, .external_lex_state = 186}, - [6385] = {.lex_state = 0, .external_lex_state = 186}, - [6386] = {.lex_state = 0, .external_lex_state = 186}, - [6387] = {.lex_state = 0, .external_lex_state = 263}, - [6388] = {.lex_state = 0, .external_lex_state = 263}, - [6389] = {.lex_state = 0, .external_lex_state = 263}, - [6390] = {.lex_state = 0, .external_lex_state = 263}, - [6391] = {.lex_state = 0, .external_lex_state = 186}, + [6379] = {.lex_state = 0, .external_lex_state = 187}, + [6380] = {.lex_state = 0, .external_lex_state = 223}, + [6381] = {.lex_state = 0, .external_lex_state = 187}, + [6382] = {.lex_state = 0, .external_lex_state = 187}, + [6383] = {.lex_state = 0, .external_lex_state = 260}, + [6384] = {.lex_state = 0, .external_lex_state = 187}, + [6385] = {.lex_state = 0, .external_lex_state = 187}, + [6386] = {.lex_state = 0, .external_lex_state = 187}, + [6387] = {.lex_state = 0, .external_lex_state = 187}, + [6388] = {.lex_state = 0, .external_lex_state = 223}, + [6389] = {.lex_state = 0, .external_lex_state = 260}, + [6390] = {.lex_state = 0, .external_lex_state = 187}, + [6391] = {.lex_state = 0, .external_lex_state = 187}, [6392] = {.lex_state = 0, .external_lex_state = 263}, - [6393] = {.lex_state = 0, .external_lex_state = 263}, - [6394] = {.lex_state = 0, .external_lex_state = 186}, - [6395] = {.lex_state = 0, .external_lex_state = 260}, - [6396] = {.lex_state = 0, .external_lex_state = 186}, - [6397] = {.lex_state = 0, .external_lex_state = 236}, - [6398] = {.lex_state = 0, .external_lex_state = 262}, - [6399] = {.lex_state = 0, .external_lex_state = 263}, - [6400] = {.lex_state = 0, .external_lex_state = 186}, - [6401] = {.lex_state = 0, .external_lex_state = 251}, - [6402] = {.lex_state = 0, .external_lex_state = 186}, - [6403] = {.lex_state = 0, .external_lex_state = 263}, - [6404] = {.lex_state = 0, .external_lex_state = 263}, - [6405] = {.lex_state = 0, .external_lex_state = 263}, - [6406] = {.lex_state = 0, .external_lex_state = 186}, - [6407] = {.lex_state = 0, .external_lex_state = 186}, - [6408] = {.lex_state = 0, .external_lex_state = 186}, - [6409] = {.lex_state = 0, .external_lex_state = 186}, - [6410] = {.lex_state = 0, .external_lex_state = 186}, - [6411] = {.lex_state = 0, .external_lex_state = 263}, - [6412] = {.lex_state = 0, .external_lex_state = 260}, - [6413] = {.lex_state = 0, .external_lex_state = 263}, - [6414] = {.lex_state = 0, .external_lex_state = 263}, - [6415] = {.lex_state = 0, .external_lex_state = 186}, - [6416] = {.lex_state = 0, .external_lex_state = 263}, - [6417] = {.lex_state = 0, .external_lex_state = 186}, - [6418] = {.lex_state = 0, .external_lex_state = 263}, - [6419] = {.lex_state = 0, .external_lex_state = 186}, - [6420] = {.lex_state = 0, .external_lex_state = 260}, - [6421] = {.lex_state = 0, .external_lex_state = 225}, - [6422] = {.lex_state = 0, .external_lex_state = 186}, - [6423] = {.lex_state = 0, .external_lex_state = 186}, - [6424] = {.lex_state = 0, .external_lex_state = 263}, - [6425] = {.lex_state = 0, .external_lex_state = 186}, - [6426] = {.lex_state = 0, .external_lex_state = 263}, - [6427] = {.lex_state = 0, .external_lex_state = 186}, - [6428] = {.lex_state = 0, .external_lex_state = 186}, - [6429] = {.lex_state = 0, .external_lex_state = 186}, - [6430] = {.lex_state = 0, .external_lex_state = 186}, - [6431] = {.lex_state = 0, .external_lex_state = 186}, - [6432] = {.lex_state = 0, .external_lex_state = 186}, - [6433] = {.lex_state = 0, .external_lex_state = 186}, - [6434] = {.lex_state = 0, .external_lex_state = 186}, - [6435] = {.lex_state = 0, .external_lex_state = 186}, - [6436] = {.lex_state = 0, .external_lex_state = 186}, - [6437] = {.lex_state = 0, .external_lex_state = 186}, - [6438] = {.lex_state = 0, .external_lex_state = 186}, - [6439] = {.lex_state = 0, .external_lex_state = 186}, - [6440] = {.lex_state = 0, .external_lex_state = 186}, - [6441] = {.lex_state = 0, .external_lex_state = 186}, - [6442] = {.lex_state = 0, .external_lex_state = 186}, - [6443] = {.lex_state = 0, .external_lex_state = 186}, - [6444] = {.lex_state = 0, .external_lex_state = 186}, - [6445] = {.lex_state = 0, .external_lex_state = 186}, - [6446] = {.lex_state = 0, .external_lex_state = 186}, - [6447] = {.lex_state = 0, .external_lex_state = 186}, - [6448] = {.lex_state = 0, .external_lex_state = 186}, - [6449] = {.lex_state = 0, .external_lex_state = 186}, - [6450] = {.lex_state = 0, .external_lex_state = 186}, - [6451] = {.lex_state = 0, .external_lex_state = 186}, - [6452] = {.lex_state = 0, .external_lex_state = 186}, - [6453] = {.lex_state = 0, .external_lex_state = 186}, - [6454] = {.lex_state = 0, .external_lex_state = 186}, - [6455] = {.lex_state = 0, .external_lex_state = 186}, - [6456] = {.lex_state = 0, .external_lex_state = 186}, - [6457] = {.lex_state = 0, .external_lex_state = 186}, - [6458] = {.lex_state = 0, .external_lex_state = 186}, - [6459] = {.lex_state = 0, .external_lex_state = 186}, - [6460] = {.lex_state = 0, .external_lex_state = 186}, - [6461] = {.lex_state = 0, .external_lex_state = 186}, - [6462] = {.lex_state = 0, .external_lex_state = 268}, - [6463] = {.lex_state = 0, .external_lex_state = 186}, - [6464] = {.lex_state = 0, .external_lex_state = 186}, - [6465] = {.lex_state = 0, .external_lex_state = 269}, - [6466] = {.lex_state = 0, .external_lex_state = 269}, - [6467] = {.lex_state = 0, .external_lex_state = 186}, - [6468] = {.lex_state = 0, .external_lex_state = 186}, - [6469] = {.lex_state = 0, .external_lex_state = 270}, - [6470] = {.lex_state = 0, .external_lex_state = 186}, - [6471] = {.lex_state = 0, .external_lex_state = 270}, - [6472] = {.lex_state = 0, .external_lex_state = 186}, - [6473] = {.lex_state = 0, .external_lex_state = 186}, - [6474] = {.lex_state = 0, .external_lex_state = 186}, - [6475] = {.lex_state = 0, .external_lex_state = 186}, - [6476] = {.lex_state = 0, .external_lex_state = 186}, - [6477] = {.lex_state = 0, .external_lex_state = 186}, - [6478] = {.lex_state = 0, .external_lex_state = 186}, - [6479] = {.lex_state = 0, .external_lex_state = 186}, - [6480] = {.lex_state = 0, .external_lex_state = 186}, - [6481] = {.lex_state = 0, .external_lex_state = 186}, - [6482] = {.lex_state = 0, .external_lex_state = 186}, - [6483] = {.lex_state = 0, .external_lex_state = 186}, - [6484] = {.lex_state = 0, .external_lex_state = 186}, - [6485] = {.lex_state = 0, .external_lex_state = 186}, - [6486] = {.lex_state = 0, .external_lex_state = 186}, - [6487] = {.lex_state = 0, .external_lex_state = 186}, - [6488] = {.lex_state = 0, .external_lex_state = 186}, - [6489] = {.lex_state = 0, .external_lex_state = 186}, - [6490] = {.lex_state = 0, .external_lex_state = 186}, - [6491] = {.lex_state = 0, .external_lex_state = 269}, - [6492] = {.lex_state = 0, .external_lex_state = 270}, - [6493] = {.lex_state = 0, .external_lex_state = 186}, - [6494] = {.lex_state = 0, .external_lex_state = 186}, - [6495] = {.lex_state = 0, .external_lex_state = 186}, - [6496] = {.lex_state = 0, .external_lex_state = 271}, - [6497] = {.lex_state = 0, .external_lex_state = 186}, - [6498] = {.lex_state = 0, .external_lex_state = 270}, - [6499] = {.lex_state = 0, .external_lex_state = 186}, - [6500] = {.lex_state = 0, .external_lex_state = 186}, - [6501] = {.lex_state = 0, .external_lex_state = 186}, - [6502] = {.lex_state = 0, .external_lex_state = 186}, - [6503] = {.lex_state = 0, .external_lex_state = 270}, - [6504] = {.lex_state = 0, .external_lex_state = 186}, - [6505] = {.lex_state = 0, .external_lex_state = 186}, - [6506] = {.lex_state = 0, .external_lex_state = 186}, - [6507] = {.lex_state = 0, .external_lex_state = 186}, - [6508] = {.lex_state = 0, .external_lex_state = 186}, - [6509] = {.lex_state = 0, .external_lex_state = 186}, - [6510] = {.lex_state = 0, .external_lex_state = 272}, - [6511] = {.lex_state = 0, .external_lex_state = 186}, - [6512] = {.lex_state = 0, .external_lex_state = 186}, - [6513] = {.lex_state = 0, .external_lex_state = 186}, - [6514] = {.lex_state = 0, .external_lex_state = 186}, - [6515] = {.lex_state = 0, .external_lex_state = 186}, - [6516] = {.lex_state = 0, .external_lex_state = 186}, - [6517] = {.lex_state = 0, .external_lex_state = 186}, - [6518] = {.lex_state = 0, .external_lex_state = 186}, - [6519] = {.lex_state = 0, .external_lex_state = 186}, - [6520] = {.lex_state = 0, .external_lex_state = 186}, - [6521] = {.lex_state = 0, .external_lex_state = 186}, - [6522] = {.lex_state = 0, .external_lex_state = 186}, - [6523] = {.lex_state = 0, .external_lex_state = 186}, - [6524] = {.lex_state = 0, .external_lex_state = 186}, - [6525] = {.lex_state = 0, .external_lex_state = 186}, - [6526] = {.lex_state = 0, .external_lex_state = 186}, - [6527] = {.lex_state = 0, .external_lex_state = 186}, - [6528] = {.lex_state = 0, .external_lex_state = 186}, - [6529] = {.lex_state = 0, .external_lex_state = 186}, - [6530] = {.lex_state = 0, .external_lex_state = 186}, - [6531] = {.lex_state = 0, .external_lex_state = 186}, - [6532] = {.lex_state = 0, .external_lex_state = 186}, - [6533] = {.lex_state = 0, .external_lex_state = 186}, - [6534] = {.lex_state = 0, .external_lex_state = 263}, - [6535] = {.lex_state = 0, .external_lex_state = 186}, - [6536] = {.lex_state = 0, .external_lex_state = 186}, - [6537] = {.lex_state = 0, .external_lex_state = 186}, - [6538] = {.lex_state = 0, .external_lex_state = 186}, - [6539] = {.lex_state = 0, .external_lex_state = 186}, - [6540] = {.lex_state = 0, .external_lex_state = 186}, - [6541] = {.lex_state = 0, .external_lex_state = 270}, - [6542] = {.lex_state = 0, .external_lex_state = 257}, - [6543] = {.lex_state = 0, .external_lex_state = 186}, - [6544] = {.lex_state = 0, .external_lex_state = 186}, - [6545] = {.lex_state = 0, .external_lex_state = 186}, - [6546] = {.lex_state = 0, .external_lex_state = 270}, - [6547] = {.lex_state = 0, .external_lex_state = 186}, - [6548] = {.lex_state = 0, .external_lex_state = 270}, - [6549] = {.lex_state = 0, .external_lex_state = 186}, - [6550] = {.lex_state = 0, .external_lex_state = 186}, - [6551] = {.lex_state = 0, .external_lex_state = 186}, - [6552] = {.lex_state = 0, .external_lex_state = 270}, - [6553] = {.lex_state = 0, .external_lex_state = 273}, - [6554] = {.lex_state = 0, .external_lex_state = 257}, - [6555] = {.lex_state = 0, .external_lex_state = 186}, - [6556] = {.lex_state = 0, .external_lex_state = 228}, - [6557] = {.lex_state = 0, .external_lex_state = 186}, - [6558] = {.lex_state = 0, .external_lex_state = 186}, - [6559] = {.lex_state = 0, .external_lex_state = 186}, - [6560] = {.lex_state = 0, .external_lex_state = 186}, - [6561] = {.lex_state = 0, .external_lex_state = 186}, - [6562] = {.lex_state = 0, .external_lex_state = 186}, - [6563] = {.lex_state = 0, .external_lex_state = 186}, - [6564] = {.lex_state = 0, .external_lex_state = 186}, - [6565] = {.lex_state = 0, .external_lex_state = 186}, - [6566] = {.lex_state = 0, .external_lex_state = 186}, - [6567] = {.lex_state = 0, .external_lex_state = 186}, - [6568] = {.lex_state = 0, .external_lex_state = 186}, - [6569] = {.lex_state = 0, .external_lex_state = 186}, - [6570] = {.lex_state = 0, .external_lex_state = 186}, - [6571] = {.lex_state = 0, .external_lex_state = 186}, - [6572] = {.lex_state = 0, .external_lex_state = 186}, - [6573] = {.lex_state = 0, .external_lex_state = 186}, - [6574] = {.lex_state = 0, .external_lex_state = 186}, - [6575] = {.lex_state = 0, .external_lex_state = 186}, - [6576] = {.lex_state = 0, .external_lex_state = 186}, - [6577] = {.lex_state = 0, .external_lex_state = 256}, - [6578] = {.lex_state = 0, .external_lex_state = 186}, - [6579] = {.lex_state = 0, .external_lex_state = 186}, - [6580] = {.lex_state = 0, .external_lex_state = 186}, - [6581] = {.lex_state = 0, .external_lex_state = 186}, - [6582] = {.lex_state = 0, .external_lex_state = 257}, - [6583] = {.lex_state = 0, .external_lex_state = 265}, - [6584] = {.lex_state = 0, .external_lex_state = 186}, - [6585] = {.lex_state = 0, .external_lex_state = 186}, - [6586] = {.lex_state = 0, .external_lex_state = 186}, - [6587] = {.lex_state = 0, .external_lex_state = 186}, - [6588] = {.lex_state = 0, .external_lex_state = 186}, - [6589] = {.lex_state = 0, .external_lex_state = 186}, - [6590] = {.lex_state = 0, .external_lex_state = 186}, - [6591] = {.lex_state = 0, .external_lex_state = 186}, - [6592] = {.lex_state = 0, .external_lex_state = 268}, - [6593] = {.lex_state = 0, .external_lex_state = 186}, - [6594] = {.lex_state = 0, .external_lex_state = 186}, - [6595] = {.lex_state = 0, .external_lex_state = 186}, - [6596] = {.lex_state = 0, .external_lex_state = 269}, - [6597] = {.lex_state = 0, .external_lex_state = 269}, - [6598] = {.lex_state = 0, .external_lex_state = 186}, - [6599] = {.lex_state = 0, .external_lex_state = 274}, - [6600] = {.lex_state = 0, .external_lex_state = 270}, - [6601] = {.lex_state = 0, .external_lex_state = 186}, - [6602] = {.lex_state = 0, .external_lex_state = 270}, - [6603] = {.lex_state = 0, .external_lex_state = 186}, - [6604] = {.lex_state = 0, .external_lex_state = 186}, - [6605] = {.lex_state = 0, .external_lex_state = 186}, - [6606] = {.lex_state = 0, .external_lex_state = 186}, - [6607] = {.lex_state = 0, .external_lex_state = 186}, - [6608] = {.lex_state = 0, .external_lex_state = 270}, - [6609] = {.lex_state = 0, .external_lex_state = 186}, - [6610] = {.lex_state = 0, .external_lex_state = 186}, - [6611] = {.lex_state = 0, .external_lex_state = 186}, - [6612] = {.lex_state = 0, .external_lex_state = 240}, - [6613] = {.lex_state = 0, .external_lex_state = 186}, - [6614] = {.lex_state = 0, .external_lex_state = 186}, - [6615] = {.lex_state = 0, .external_lex_state = 186}, - [6616] = {.lex_state = 0, .external_lex_state = 186}, - [6617] = {.lex_state = 0, .external_lex_state = 186}, - [6618] = {.lex_state = 0, .external_lex_state = 186}, - [6619] = {.lex_state = 0, .external_lex_state = 186}, - [6620] = {.lex_state = 0, .external_lex_state = 269}, - [6621] = {.lex_state = 0, .external_lex_state = 186}, - [6622] = {.lex_state = 0, .external_lex_state = 186}, - [6623] = {.lex_state = 0, .external_lex_state = 186}, - [6624] = {.lex_state = 0, .external_lex_state = 186}, - [6625] = {.lex_state = 0, .external_lex_state = 270}, - [6626] = {.lex_state = 0, .external_lex_state = 186}, - [6627] = {.lex_state = 0, .external_lex_state = 186}, - [6628] = {.lex_state = 0, .external_lex_state = 186}, - [6629] = {.lex_state = 0, .external_lex_state = 186}, - [6630] = {.lex_state = 0, .external_lex_state = 186}, - [6631] = {.lex_state = 0, .external_lex_state = 186}, - [6632] = {.lex_state = 0, .external_lex_state = 186}, - [6633] = {.lex_state = 0, .external_lex_state = 186}, - [6634] = {.lex_state = 0, .external_lex_state = 270}, - [6635] = {.lex_state = 0, .external_lex_state = 186}, - [6636] = {.lex_state = 0, .external_lex_state = 186}, - [6637] = {.lex_state = 0, .external_lex_state = 186}, - [6638] = {.lex_state = 0, .external_lex_state = 186}, - [6639] = {.lex_state = 0, .external_lex_state = 186}, - [6640] = {.lex_state = 0, .external_lex_state = 186}, - [6641] = {.lex_state = 0, .external_lex_state = 186}, - [6642] = {.lex_state = 0, .external_lex_state = 186}, - [6643] = {.lex_state = 0, .external_lex_state = 186}, - [6644] = {.lex_state = 0, .external_lex_state = 186}, - [6645] = {.lex_state = 0, .external_lex_state = 186}, - [6646] = {.lex_state = 0, .external_lex_state = 186}, - [6647] = {.lex_state = 0, .external_lex_state = 186}, - [6648] = {.lex_state = 0, .external_lex_state = 186}, - [6649] = {.lex_state = 0, .external_lex_state = 186}, - [6650] = {.lex_state = 0, .external_lex_state = 186}, - [6651] = {.lex_state = 0, .external_lex_state = 186}, - [6652] = {.lex_state = 0, .external_lex_state = 186}, - [6653] = {.lex_state = 0, .external_lex_state = 186}, - [6654] = {.lex_state = 0, .external_lex_state = 186}, - [6655] = {.lex_state = 0, .external_lex_state = 186}, - [6656] = {.lex_state = 0, .external_lex_state = 186}, - [6657] = {.lex_state = 0, .external_lex_state = 186}, - [6658] = {.lex_state = 0, .external_lex_state = 186}, - [6659] = {.lex_state = 0, .external_lex_state = 186}, - [6660] = {.lex_state = 0, .external_lex_state = 186}, - [6661] = {.lex_state = 0, .external_lex_state = 186}, - [6662] = {.lex_state = 0, .external_lex_state = 186}, - [6663] = {.lex_state = 0, .external_lex_state = 186}, - [6664] = {.lex_state = 0, .external_lex_state = 186}, - [6665] = {.lex_state = 0, .external_lex_state = 186}, - [6666] = {.lex_state = 0, .external_lex_state = 186}, - [6667] = {.lex_state = 0, .external_lex_state = 186}, - [6668] = {.lex_state = 0, .external_lex_state = 186}, - [6669] = {.lex_state = 0, .external_lex_state = 186}, - [6670] = {.lex_state = 0, .external_lex_state = 186}, - [6671] = {.lex_state = 0, .external_lex_state = 186}, - [6672] = {.lex_state = 0, .external_lex_state = 186}, - [6673] = {.lex_state = 0, .external_lex_state = 186}, - [6674] = {.lex_state = 0, .external_lex_state = 186}, - [6675] = {.lex_state = 0, .external_lex_state = 186}, - [6676] = {.lex_state = 0, .external_lex_state = 186}, + [6393] = {.lex_state = 0, .external_lex_state = 187}, + [6394] = {.lex_state = 0, .external_lex_state = 187}, + [6395] = {.lex_state = 0, .external_lex_state = 187}, + [6396] = {.lex_state = 0, .external_lex_state = 261}, + [6397] = {.lex_state = 0, .external_lex_state = 187}, + [6398] = {.lex_state = 0, .external_lex_state = 261}, + [6399] = {.lex_state = 0, .external_lex_state = 187}, + [6400] = {.lex_state = 0, .external_lex_state = 187}, + [6401] = {.lex_state = 0, .external_lex_state = 223}, + [6402] = {.lex_state = 0, .external_lex_state = 187}, + [6403] = {.lex_state = 0, .external_lex_state = 187}, + [6404] = {.lex_state = 0, .external_lex_state = 187}, + [6405] = {.lex_state = 0, .external_lex_state = 187}, + [6406] = {.lex_state = 0, .external_lex_state = 187}, + [6407] = {.lex_state = 0, .external_lex_state = 187}, + [6408] = {.lex_state = 0, .external_lex_state = 223}, + [6409] = {.lex_state = 0, .external_lex_state = 187}, + [6410] = {.lex_state = 0, .external_lex_state = 257}, + [6411] = {.lex_state = 0, .external_lex_state = 262}, + [6412] = {.lex_state = 0, .external_lex_state = 187}, + [6413] = {.lex_state = 0, .external_lex_state = 260}, + [6414] = {.lex_state = 0, .external_lex_state = 187}, + [6415] = {.lex_state = 0, .external_lex_state = 261}, + [6416] = {.lex_state = 0, .external_lex_state = 187}, + [6417] = {.lex_state = 0, .external_lex_state = 187}, + [6418] = {.lex_state = 0, .external_lex_state = 223}, + [6419] = {.lex_state = 0, .external_lex_state = 187}, + [6420] = {.lex_state = 0, .external_lex_state = 187}, + [6421] = {.lex_state = 0, .external_lex_state = 187}, + [6422] = {.lex_state = 0, .external_lex_state = 187}, + [6423] = {.lex_state = 0, .external_lex_state = 187}, + [6424] = {.lex_state = 0, .external_lex_state = 187}, + [6425] = {.lex_state = 0, .external_lex_state = 187}, + [6426] = {.lex_state = 0, .external_lex_state = 260}, + [6427] = {.lex_state = 0, .external_lex_state = 260}, + [6428] = {.lex_state = 0, .external_lex_state = 187}, + [6429] = {.lex_state = 0, .external_lex_state = 260}, + [6430] = {.lex_state = 0, .external_lex_state = 260}, + [6431] = {.lex_state = 0, .external_lex_state = 187}, + [6432] = {.lex_state = 0, .external_lex_state = 261}, + [6433] = {.lex_state = 0, .external_lex_state = 260}, + [6434] = {.lex_state = 0, .external_lex_state = 260}, + [6435] = {.lex_state = 0, .external_lex_state = 260}, + [6436] = {.lex_state = 0, .external_lex_state = 261}, + [6437] = {.lex_state = 0, .external_lex_state = 260}, + [6438] = {.lex_state = 0, .external_lex_state = 260}, + [6439] = {.lex_state = 0, .external_lex_state = 260}, + [6440] = {.lex_state = 0, .external_lex_state = 260}, + [6441] = {.lex_state = 0, .external_lex_state = 187}, + [6442] = {.lex_state = 0, .external_lex_state = 187}, + [6443] = {.lex_state = 0, .external_lex_state = 260}, + [6444] = {.lex_state = 0, .external_lex_state = 260}, + [6445] = {.lex_state = 0, .external_lex_state = 260}, + [6446] = {.lex_state = 0, .external_lex_state = 260}, + [6447] = {.lex_state = 0, .external_lex_state = 187}, + [6448] = {.lex_state = 0, .external_lex_state = 260}, + [6449] = {.lex_state = 0, .external_lex_state = 260}, + [6450] = {.lex_state = 0, .external_lex_state = 260}, + [6451] = {.lex_state = 0, .external_lex_state = 260}, + [6452] = {.lex_state = 0, .external_lex_state = 252}, + [6453] = {.lex_state = 0, .external_lex_state = 187}, + [6454] = {.lex_state = 0, .external_lex_state = 260}, + [6455] = {.lex_state = 0, .external_lex_state = 260}, + [6456] = {.lex_state = 0, .external_lex_state = 260}, + [6457] = {.lex_state = 0, .external_lex_state = 187}, + [6458] = {.lex_state = 0, .external_lex_state = 187}, + [6459] = {.lex_state = 0, .external_lex_state = 261}, + [6460] = {.lex_state = 0, .external_lex_state = 187}, + [6461] = {.lex_state = 0, .external_lex_state = 187}, + [6462] = {.lex_state = 0, .external_lex_state = 260}, + [6463] = {.lex_state = 0, .external_lex_state = 260}, + [6464] = {.lex_state = 0, .external_lex_state = 223}, + [6465] = {.lex_state = 0, .external_lex_state = 187}, + [6466] = {.lex_state = 0, .external_lex_state = 187}, + [6467] = {.lex_state = 0, .external_lex_state = 187}, + [6468] = {.lex_state = 0, .external_lex_state = 223}, + [6469] = {.lex_state = 0, .external_lex_state = 260}, + [6470] = {.lex_state = 0, .external_lex_state = 260}, + [6471] = {.lex_state = 0, .external_lex_state = 260}, + [6472] = {.lex_state = 0, .external_lex_state = 263}, + [6473] = {.lex_state = 0, .external_lex_state = 187}, + [6474] = {.lex_state = 0, .external_lex_state = 261}, + [6475] = {.lex_state = 0, .external_lex_state = 223}, + [6476] = {.lex_state = 0, .external_lex_state = 260}, + [6477] = {.lex_state = 0, .external_lex_state = 260}, + [6478] = {.lex_state = 0, .external_lex_state = 264}, + [6479] = {.lex_state = 0, .external_lex_state = 187}, + [6480] = {.lex_state = 0, .external_lex_state = 187}, + [6481] = {.lex_state = 0, .external_lex_state = 260}, + [6482] = {.lex_state = 0, .external_lex_state = 260}, + [6483] = {.lex_state = 0, .external_lex_state = 223}, + [6484] = {.lex_state = 0, .external_lex_state = 187}, + [6485] = {.lex_state = 0, .external_lex_state = 187}, + [6486] = {.lex_state = 0, .external_lex_state = 265}, + [6487] = {.lex_state = 0, .external_lex_state = 260}, + [6488] = {.lex_state = 0, .external_lex_state = 264}, + [6489] = {.lex_state = 0, .external_lex_state = 260}, + [6490] = {.lex_state = 0, .external_lex_state = 260}, + [6491] = {.lex_state = 0, .external_lex_state = 260}, + [6492] = {.lex_state = 0, .external_lex_state = 260}, + [6493] = {.lex_state = 0, .external_lex_state = 267}, + [6494] = {.lex_state = 0, .external_lex_state = 260}, + [6495] = {.lex_state = 0, .external_lex_state = 187}, + [6496] = {.lex_state = 0, .external_lex_state = 260}, + [6497] = {.lex_state = 0, .external_lex_state = 260}, + [6498] = {.lex_state = 0, .external_lex_state = 187}, + [6499] = {.lex_state = 0, .external_lex_state = 187}, + [6500] = {.lex_state = 0, .external_lex_state = 260}, + [6501] = {.lex_state = 0, .external_lex_state = 260}, + [6502] = {.lex_state = 0, .external_lex_state = 260}, + [6503] = {.lex_state = 0, .external_lex_state = 187}, + [6504] = {.lex_state = 0, .external_lex_state = 187}, + [6505] = {.lex_state = 0, .external_lex_state = 247}, + [6506] = {.lex_state = 0, .external_lex_state = 260}, + [6507] = {.lex_state = 0, .external_lex_state = 260}, + [6508] = {.lex_state = 0, .external_lex_state = 187}, + [6509] = {.lex_state = 0, .external_lex_state = 260}, + [6510] = {.lex_state = 0, .external_lex_state = 260}, + [6511] = {.lex_state = 0, .external_lex_state = 187}, + [6512] = {.lex_state = 0, .external_lex_state = 260}, + [6513] = {.lex_state = 0, .external_lex_state = 260}, + [6514] = {.lex_state = 0, .external_lex_state = 263}, + [6515] = {.lex_state = 0, .external_lex_state = 265}, + [6516] = {.lex_state = 0, .external_lex_state = 260}, + [6517] = {.lex_state = 0, .external_lex_state = 187}, + [6518] = {.lex_state = 0, .external_lex_state = 187}, + [6519] = {.lex_state = 0, .external_lex_state = 252}, + [6520] = {.lex_state = 0, .external_lex_state = 261}, + [6521] = {.lex_state = 0, .external_lex_state = 223}, + [6522] = {.lex_state = 0, .external_lex_state = 260}, + [6523] = {.lex_state = 0, .external_lex_state = 187}, + [6524] = {.lex_state = 0, .external_lex_state = 260}, + [6525] = {.lex_state = 0, .external_lex_state = 260}, + [6526] = {.lex_state = 0, .external_lex_state = 261}, + [6527] = {.lex_state = 0, .external_lex_state = 223}, + [6528] = {.lex_state = 0, .external_lex_state = 223}, + [6529] = {.lex_state = 0, .external_lex_state = 260}, + [6530] = {.lex_state = 0, .external_lex_state = 260}, + [6531] = {.lex_state = 0, .external_lex_state = 260}, + [6532] = {.lex_state = 0, .external_lex_state = 187}, + [6533] = {.lex_state = 0, .external_lex_state = 187}, + [6534] = {.lex_state = 0, .external_lex_state = 260}, + [6535] = {.lex_state = 0, .external_lex_state = 260}, + [6536] = {.lex_state = 0, .external_lex_state = 187}, + [6537] = {.lex_state = 0, .external_lex_state = 187}, + [6538] = {.lex_state = 0, .external_lex_state = 187}, + [6539] = {.lex_state = 0, .external_lex_state = 187}, + [6540] = {.lex_state = 0, .external_lex_state = 187}, + [6541] = {.lex_state = 0, .external_lex_state = 187}, + [6542] = {.lex_state = 0, .external_lex_state = 187}, + [6543] = {.lex_state = 0, .external_lex_state = 187}, + [6544] = {.lex_state = 0, .external_lex_state = 187}, + [6545] = {.lex_state = 0, .external_lex_state = 260}, + [6546] = {.lex_state = 0, .external_lex_state = 187}, + [6547] = {.lex_state = 0, .external_lex_state = 260}, + [6548] = {.lex_state = 0, .external_lex_state = 187}, + [6549] = {.lex_state = 0, .external_lex_state = 260}, + [6550] = {.lex_state = 0, .external_lex_state = 187}, + [6551] = {.lex_state = 0, .external_lex_state = 260}, + [6552] = {.lex_state = 0, .external_lex_state = 260}, + [6553] = {.lex_state = 0, .external_lex_state = 260}, + [6554] = {.lex_state = 0, .external_lex_state = 261}, + [6555] = {.lex_state = 0, .external_lex_state = 187}, + [6556] = {.lex_state = 0, .external_lex_state = 187}, + [6557] = {.lex_state = 0, .external_lex_state = 260}, + [6558] = {.lex_state = 0, .external_lex_state = 260}, + [6559] = {.lex_state = 0, .external_lex_state = 260}, + [6560] = {.lex_state = 0, .external_lex_state = 224}, + [6561] = {.lex_state = 0, .external_lex_state = 187}, + [6562] = {.lex_state = 0, .external_lex_state = 260}, + [6563] = {.lex_state = 0, .external_lex_state = 260}, + [6564] = {.lex_state = 0, .external_lex_state = 260}, + [6565] = {.lex_state = 0, .external_lex_state = 263}, + [6566] = {.lex_state = 0, .external_lex_state = 260}, + [6567] = {.lex_state = 0, .external_lex_state = 187}, + [6568] = {.lex_state = 0, .external_lex_state = 260}, + [6569] = {.lex_state = 0, .external_lex_state = 187}, + [6570] = {.lex_state = 0, .external_lex_state = 260}, + [6571] = {.lex_state = 0, .external_lex_state = 263}, + [6572] = {.lex_state = 0, .external_lex_state = 260}, + [6573] = {.lex_state = 0, .external_lex_state = 260}, + [6574] = {.lex_state = 0, .external_lex_state = 187}, + [6575] = {.lex_state = 0, .external_lex_state = 187}, + [6576] = {.lex_state = 0, .external_lex_state = 187}, + [6577] = {.lex_state = 0, .external_lex_state = 260}, + [6578] = {.lex_state = 0, .external_lex_state = 260}, + [6579] = {.lex_state = 0, .external_lex_state = 260}, + [6580] = {.lex_state = 0, .external_lex_state = 187}, + [6581] = {.lex_state = 0, .external_lex_state = 260}, + [6582] = {.lex_state = 0, .external_lex_state = 264}, + [6583] = {.lex_state = 0, .external_lex_state = 260}, + [6584] = {.lex_state = 0, .external_lex_state = 187}, + [6585] = {.lex_state = 0, .external_lex_state = 260}, + [6586] = {.lex_state = 0, .external_lex_state = 187}, + [6587] = {.lex_state = 0, .external_lex_state = 187}, + [6588] = {.lex_state = 0, .external_lex_state = 263}, + [6589] = {.lex_state = 0, .external_lex_state = 263}, + [6590] = {.lex_state = 0, .external_lex_state = 187}, + [6591] = {.lex_state = 0, .external_lex_state = 187}, + [6592] = {.lex_state = 0, .external_lex_state = 260}, + [6593] = {.lex_state = 0, .external_lex_state = 187}, + [6594] = {.lex_state = 0, .external_lex_state = 187}, + [6595] = {.lex_state = 0, .external_lex_state = 252}, + [6596] = {.lex_state = 0, .external_lex_state = 260}, + [6597] = {.lex_state = 0, .external_lex_state = 260}, + [6598] = {.lex_state = 0, .external_lex_state = 260}, + [6599] = {.lex_state = 0, .external_lex_state = 187}, + [6600] = {.lex_state = 0, .external_lex_state = 260}, + [6601] = {.lex_state = 0, .external_lex_state = 260}, + [6602] = {.lex_state = 0, .external_lex_state = 260}, + [6603] = {.lex_state = 0, .external_lex_state = 261}, + [6604] = {.lex_state = 0, .external_lex_state = 260}, + [6605] = {.lex_state = 0, .external_lex_state = 260}, + [6606] = {.lex_state = 0, .external_lex_state = 260}, + [6607] = {.lex_state = 0, .external_lex_state = 260}, + [6608] = {.lex_state = 0, .external_lex_state = 260}, + [6609] = {.lex_state = 0, .external_lex_state = 187}, + [6610] = {.lex_state = 0, .external_lex_state = 261}, + [6611] = {.lex_state = 0, .external_lex_state = 187}, + [6612] = {.lex_state = 0, .external_lex_state = 224}, + [6613] = {.lex_state = 0, .external_lex_state = 187}, + [6614] = {.lex_state = 0, .external_lex_state = 187}, + [6615] = {.lex_state = 0, .external_lex_state = 187}, + [6616] = {.lex_state = 0, .external_lex_state = 260}, + [6617] = {.lex_state = 0, .external_lex_state = 252}, + [6618] = {.lex_state = 0, .external_lex_state = 187}, + [6619] = {.lex_state = 0, .external_lex_state = 187}, + [6620] = {.lex_state = 0, .external_lex_state = 187}, + [6621] = {.lex_state = 0, .external_lex_state = 260}, + [6622] = {.lex_state = 0, .external_lex_state = 187}, + [6623] = {.lex_state = 0, .external_lex_state = 261}, + [6624] = {.lex_state = 0, .external_lex_state = 187}, + [6625] = {.lex_state = 0, .external_lex_state = 187}, + [6626] = {.lex_state = 0, .external_lex_state = 187}, + [6627] = {.lex_state = 0, .external_lex_state = 187}, + [6628] = {.lex_state = 0, .external_lex_state = 187}, + [6629] = {.lex_state = 0, .external_lex_state = 187}, + [6630] = {.lex_state = 0, .external_lex_state = 187}, + [6631] = {.lex_state = 0, .external_lex_state = 187}, + [6632] = {.lex_state = 0, .external_lex_state = 187}, + [6633] = {.lex_state = 0, .external_lex_state = 187}, + [6634] = {.lex_state = 0, .external_lex_state = 187}, + [6635] = {.lex_state = 0, .external_lex_state = 187}, + [6636] = {.lex_state = 0, .external_lex_state = 187}, + [6637] = {.lex_state = 0, .external_lex_state = 187}, + [6638] = {.lex_state = 0, .external_lex_state = 187}, + [6639] = {.lex_state = 0, .external_lex_state = 187}, + [6640] = {.lex_state = 0, .external_lex_state = 268}, + [6641] = {.lex_state = 0, .external_lex_state = 187}, + [6642] = {.lex_state = 0, .external_lex_state = 187}, + [6643] = {.lex_state = 0, .external_lex_state = 187}, + [6644] = {.lex_state = 0, .external_lex_state = 187}, + [6645] = {.lex_state = 0, .external_lex_state = 187}, + [6646] = {.lex_state = 0, .external_lex_state = 187}, + [6647] = {.lex_state = 0, .external_lex_state = 187}, + [6648] = {.lex_state = 0, .external_lex_state = 187}, + [6649] = {.lex_state = 0, .external_lex_state = 187}, + [6650] = {.lex_state = 0, .external_lex_state = 187}, + [6651] = {.lex_state = 0, .external_lex_state = 187}, + [6652] = {.lex_state = 0, .external_lex_state = 187}, + [6653] = {.lex_state = 0, .external_lex_state = 187}, + [6654] = {.lex_state = 0, .external_lex_state = 187}, + [6655] = {.lex_state = 0, .external_lex_state = 187}, + [6656] = {.lex_state = 0, .external_lex_state = 187}, + [6657] = {.lex_state = 0, .external_lex_state = 187}, + [6658] = {.lex_state = 0, .external_lex_state = 187}, + [6659] = {.lex_state = 0, .external_lex_state = 187}, + [6660] = {.lex_state = 0, .external_lex_state = 187}, + [6661] = {.lex_state = 0, .external_lex_state = 187}, + [6662] = {.lex_state = 0, .external_lex_state = 187}, + [6663] = {.lex_state = 0, .external_lex_state = 187}, + [6664] = {.lex_state = 0, .external_lex_state = 187}, + [6665] = {.lex_state = 0, .external_lex_state = 187}, + [6666] = {.lex_state = 0, .external_lex_state = 268}, + [6667] = {.lex_state = 0, .external_lex_state = 187}, + [6668] = {.lex_state = 0, .external_lex_state = 187}, + [6669] = {.lex_state = 0, .external_lex_state = 187}, + [6670] = {.lex_state = 0, .external_lex_state = 187}, + [6671] = {.lex_state = 0, .external_lex_state = 269}, + [6672] = {.lex_state = 0, .external_lex_state = 187}, + [6673] = {.lex_state = 0, .external_lex_state = 187}, + [6674] = {.lex_state = 0, .external_lex_state = 187}, + [6675] = {.lex_state = 0, .external_lex_state = 187}, + [6676] = {.lex_state = 0, .external_lex_state = 187}, [6677] = {.lex_state = 0, .external_lex_state = 270}, - [6678] = {.lex_state = 0, .external_lex_state = 186}, - [6679] = {.lex_state = 0, .external_lex_state = 270}, - [6680] = {.lex_state = 0, .external_lex_state = 186}, - [6681] = {.lex_state = 0, .external_lex_state = 186}, - [6682] = {.lex_state = 0, .external_lex_state = 240}, - [6683] = {.lex_state = 0, .external_lex_state = 186}, - [6684] = {.lex_state = 0, .external_lex_state = 186}, - [6685] = {.lex_state = 0, .external_lex_state = 186}, - [6686] = {.lex_state = 0, .external_lex_state = 186}, - [6687] = {.lex_state = 0, .external_lex_state = 270}, - [6688] = {.lex_state = 0, .external_lex_state = 186}, - [6689] = {.lex_state = 0, .external_lex_state = 186}, - [6690] = {.lex_state = 0, .external_lex_state = 186}, - [6691] = {.lex_state = 0, .external_lex_state = 186}, - [6692] = {.lex_state = 0, .external_lex_state = 186}, - [6693] = {.lex_state = 0, .external_lex_state = 270}, - [6694] = {.lex_state = 0, .external_lex_state = 186}, - [6695] = {.lex_state = 0, .external_lex_state = 186}, - [6696] = {.lex_state = 0, .external_lex_state = 186}, - [6697] = {.lex_state = 0, .external_lex_state = 186}, - [6698] = {.lex_state = 0, .external_lex_state = 186}, - [6699] = {.lex_state = 0, .external_lex_state = 275}, - [6700] = {.lex_state = 0, .external_lex_state = 186}, - [6701] = {.lex_state = 0, .external_lex_state = 186}, - [6702] = {.lex_state = 0, .external_lex_state = 186}, - [6703] = {.lex_state = 0, .external_lex_state = 186}, - [6704] = {.lex_state = 0, .external_lex_state = 186}, - [6705] = {.lex_state = 0, .external_lex_state = 186}, - [6706] = {.lex_state = 0, .external_lex_state = 186}, - [6707] = {.lex_state = 0, .external_lex_state = 268}, - [6708] = {.lex_state = 0, .external_lex_state = 186}, - [6709] = {.lex_state = 0, .external_lex_state = 186}, - [6710] = {.lex_state = 0, .external_lex_state = 269}, - [6711] = {.lex_state = 0, .external_lex_state = 269}, - [6712] = {.lex_state = 0, .external_lex_state = 186}, - [6713] = {.lex_state = 0, .external_lex_state = 186}, - [6714] = {.lex_state = 0, .external_lex_state = 186}, - [6715] = {.lex_state = 0, .external_lex_state = 186}, - [6716] = {.lex_state = 0, .external_lex_state = 186}, - [6717] = {.lex_state = 0, .external_lex_state = 186}, - [6718] = {.lex_state = 0, .external_lex_state = 186}, - [6719] = {.lex_state = 0, .external_lex_state = 186}, - [6720] = {.lex_state = 0, .external_lex_state = 186}, - [6721] = {.lex_state = 0, .external_lex_state = 186}, - [6722] = {.lex_state = 0, .external_lex_state = 276}, - [6723] = {.lex_state = 0, .external_lex_state = 186}, - [6724] = {.lex_state = 0, .external_lex_state = 186}, - [6725] = {.lex_state = 0, .external_lex_state = 186}, - [6726] = {.lex_state = 0, .external_lex_state = 186}, - [6727] = {.lex_state = 0, .external_lex_state = 253}, - [6728] = {.lex_state = 0, .external_lex_state = 186}, - [6729] = {.lex_state = 0, .external_lex_state = 269}, - [6730] = {.lex_state = 0, .external_lex_state = 186}, - [6731] = {.lex_state = 0, .external_lex_state = 186}, - [6732] = {.lex_state = 0, .external_lex_state = 186}, - [6733] = {.lex_state = 0, .external_lex_state = 186}, - [6734] = {.lex_state = 0, .external_lex_state = 186}, - [6735] = {.lex_state = 0, .external_lex_state = 186}, - [6736] = {.lex_state = 0, .external_lex_state = 186}, - [6737] = {.lex_state = 0, .external_lex_state = 186}, - [6738] = {.lex_state = 0, .external_lex_state = 186}, - [6739] = {.lex_state = 0, .external_lex_state = 186}, - [6740] = {.lex_state = 0, .external_lex_state = 186}, - [6741] = {.lex_state = 0, .external_lex_state = 186}, - [6742] = {.lex_state = 0, .external_lex_state = 186}, - [6743] = {.lex_state = 0, .external_lex_state = 186}, - [6744] = {.lex_state = 0, .external_lex_state = 186}, - [6745] = {.lex_state = 0, .external_lex_state = 186}, - [6746] = {.lex_state = 0, .external_lex_state = 186}, - [6747] = {.lex_state = 0, .external_lex_state = 186}, - [6748] = {.lex_state = 0, .external_lex_state = 270}, - [6749] = {.lex_state = 0, .external_lex_state = 186}, - [6750] = {.lex_state = 0, .external_lex_state = 186}, - [6751] = {.lex_state = 0, .external_lex_state = 186}, - [6752] = {.lex_state = 0, .external_lex_state = 186}, - [6753] = {.lex_state = 0, .external_lex_state = 240}, - [6754] = {.lex_state = 0, .external_lex_state = 186}, - [6755] = {.lex_state = 0, .external_lex_state = 186}, - [6756] = {.lex_state = 0, .external_lex_state = 186}, - [6757] = {.lex_state = 0, .external_lex_state = 186}, - [6758] = {.lex_state = 0, .external_lex_state = 277}, - [6759] = {.lex_state = 0, .external_lex_state = 186}, - [6760] = {.lex_state = 0, .external_lex_state = 186}, - [6761] = {.lex_state = 0, .external_lex_state = 186}, - [6762] = {.lex_state = 0, .external_lex_state = 186}, - [6763] = {.lex_state = 0, .external_lex_state = 186}, - [6764] = {.lex_state = 0, .external_lex_state = 186}, - [6765] = {.lex_state = 0, .external_lex_state = 270}, - [6766] = {.lex_state = 0, .external_lex_state = 186}, - [6767] = {.lex_state = 0, .external_lex_state = 186}, - [6768] = {.lex_state = 0, .external_lex_state = 186}, - [6769] = {.lex_state = 0, .external_lex_state = 186}, - [6770] = {.lex_state = 0, .external_lex_state = 186}, - [6771] = {.lex_state = 0, .external_lex_state = 186}, - [6772] = {.lex_state = 0, .external_lex_state = 186}, - [6773] = {.lex_state = 0, .external_lex_state = 186}, - [6774] = {.lex_state = 0, .external_lex_state = 186}, - [6775] = {.lex_state = 0, .external_lex_state = 186}, - [6776] = {.lex_state = 0, .external_lex_state = 186}, - [6777] = {.lex_state = 0, .external_lex_state = 270}, - [6778] = {.lex_state = 0, .external_lex_state = 268}, - [6779] = {.lex_state = 0, .external_lex_state = 186}, - [6780] = {.lex_state = 0, .external_lex_state = 186}, - [6781] = {.lex_state = 0, .external_lex_state = 269}, - [6782] = {.lex_state = 0, .external_lex_state = 269}, - [6783] = {.lex_state = 0, .external_lex_state = 186}, - [6784] = {.lex_state = 0, .external_lex_state = 270}, - [6785] = {.lex_state = 0, .external_lex_state = 186}, - [6786] = {.lex_state = 0, .external_lex_state = 186}, - [6787] = {.lex_state = 0, .external_lex_state = 186}, - [6788] = {.lex_state = 0, .external_lex_state = 186}, - [6789] = {.lex_state = 0, .external_lex_state = 186}, - [6790] = {.lex_state = 0, .external_lex_state = 257}, - [6791] = {.lex_state = 0, .external_lex_state = 186}, - [6792] = {.lex_state = 0, .external_lex_state = 186}, - [6793] = {.lex_state = 0, .external_lex_state = 269}, - [6794] = {.lex_state = 0, .external_lex_state = 186}, - [6795] = {.lex_state = 0, .external_lex_state = 186}, - [6796] = {.lex_state = 0, .external_lex_state = 186}, - [6797] = {.lex_state = 0, .external_lex_state = 186}, - [6798] = {.lex_state = 0, .external_lex_state = 186}, - [6799] = {.lex_state = 0, .external_lex_state = 186}, - [6800] = {.lex_state = 0, .external_lex_state = 186}, - [6801] = {.lex_state = 0, .external_lex_state = 186}, - [6802] = {.lex_state = 0, .external_lex_state = 186}, - [6803] = {.lex_state = 0, .external_lex_state = 186}, - [6804] = {.lex_state = 0, .external_lex_state = 186}, - [6805] = {.lex_state = 0, .external_lex_state = 186}, - [6806] = {.lex_state = 0, .external_lex_state = 186}, - [6807] = {.lex_state = 0, .external_lex_state = 186}, - [6808] = {.lex_state = 0, .external_lex_state = 186}, - [6809] = {.lex_state = 0, .external_lex_state = 186}, - [6810] = {.lex_state = 0, .external_lex_state = 186}, - [6811] = {.lex_state = 0, .external_lex_state = 186}, - [6812] = {.lex_state = 0, .external_lex_state = 186}, - [6813] = {.lex_state = 0, .external_lex_state = 186}, - [6814] = {.lex_state = 0, .external_lex_state = 186}, - [6815] = {.lex_state = 0, .external_lex_state = 268}, - [6816] = {.lex_state = 0, .external_lex_state = 263}, - [6817] = {.lex_state = 0, .external_lex_state = 269}, - [6818] = {.lex_state = 0, .external_lex_state = 269}, - [6819] = {.lex_state = 0, .external_lex_state = 186}, - [6820] = {.lex_state = 0, .external_lex_state = 186}, - [6821] = {.lex_state = 0, .external_lex_state = 186}, - [6822] = {.lex_state = 0, .external_lex_state = 186}, - [6823] = {.lex_state = 0, .external_lex_state = 186}, - [6824] = {.lex_state = 0, .external_lex_state = 186}, - [6825] = {.lex_state = 0, .external_lex_state = 186}, - [6826] = {.lex_state = 0, .external_lex_state = 186}, - [6827] = {.lex_state = 0, .external_lex_state = 186}, - [6828] = {.lex_state = 0, .external_lex_state = 269}, - [6829] = {.lex_state = 0, .external_lex_state = 186}, - [6830] = {.lex_state = 0, .external_lex_state = 186}, - [6831] = {.lex_state = 0, .external_lex_state = 186}, - [6832] = {.lex_state = 0, .external_lex_state = 186}, - [6833] = {.lex_state = 0, .external_lex_state = 186}, - [6834] = {.lex_state = 0, .external_lex_state = 186}, - [6835] = {.lex_state = 0, .external_lex_state = 186}, - [6836] = {.lex_state = 0, .external_lex_state = 186}, - [6837] = {.lex_state = 0, .external_lex_state = 186}, - [6838] = {.lex_state = 0, .external_lex_state = 186}, - [6839] = {.lex_state = 0, .external_lex_state = 186}, - [6840] = {.lex_state = 0, .external_lex_state = 186}, - [6841] = {.lex_state = 0, .external_lex_state = 186}, - [6842] = {.lex_state = 0, .external_lex_state = 186}, - [6843] = {.lex_state = 0, .external_lex_state = 268}, - [6844] = {.lex_state = 0, .external_lex_state = 228}, - [6845] = {.lex_state = 0, .external_lex_state = 269}, - [6846] = {.lex_state = 0, .external_lex_state = 269}, - [6847] = {.lex_state = 0, .external_lex_state = 186}, - [6848] = {.lex_state = 0, .external_lex_state = 186}, - [6849] = {.lex_state = 0, .external_lex_state = 186}, - [6850] = {.lex_state = 0, .external_lex_state = 269}, - [6851] = {.lex_state = 0, .external_lex_state = 186}, - [6852] = {.lex_state = 0, .external_lex_state = 186}, - [6853] = {.lex_state = 0, .external_lex_state = 186}, - [6854] = {.lex_state = 0, .external_lex_state = 186}, - [6855] = {.lex_state = 0, .external_lex_state = 186}, - [6856] = {.lex_state = 0, .external_lex_state = 186}, - [6857] = {.lex_state = 0, .external_lex_state = 186}, - [6858] = {.lex_state = 0, .external_lex_state = 186}, - [6859] = {.lex_state = 0, .external_lex_state = 186}, - [6860] = {.lex_state = 0, .external_lex_state = 186}, - [6861] = {.lex_state = 0, .external_lex_state = 186}, - [6862] = {.lex_state = 0, .external_lex_state = 186}, - [6863] = {.lex_state = 0, .external_lex_state = 268}, - [6864] = {.lex_state = 0, .external_lex_state = 186}, - [6865] = {.lex_state = 0, .external_lex_state = 269}, - [6866] = {.lex_state = 0, .external_lex_state = 269}, - [6867] = {.lex_state = 0, .external_lex_state = 186}, - [6868] = {.lex_state = 0, .external_lex_state = 269}, - [6869] = {.lex_state = 0, .external_lex_state = 186}, - [6870] = {.lex_state = 0, .external_lex_state = 186}, - [6871] = {.lex_state = 0, .external_lex_state = 228}, - [6872] = {.lex_state = 0, .external_lex_state = 186}, - [6873] = {.lex_state = 0, .external_lex_state = 186}, - [6874] = {.lex_state = 0, .external_lex_state = 186}, - [6875] = {.lex_state = 0, .external_lex_state = 186}, - [6876] = {.lex_state = 0, .external_lex_state = 186}, - [6877] = {.lex_state = 0, .external_lex_state = 268}, - [6878] = {.lex_state = 0, .external_lex_state = 278}, - [6879] = {.lex_state = 0, .external_lex_state = 269}, - [6880] = {.lex_state = 0, .external_lex_state = 269}, - [6881] = {.lex_state = 0, .external_lex_state = 186}, - [6882] = {.lex_state = 0, .external_lex_state = 269}, - [6883] = {.lex_state = 0, .external_lex_state = 279}, - [6884] = {.lex_state = 0, .external_lex_state = 279}, - [6885] = {.lex_state = 0, .external_lex_state = 186}, - [6886] = {.lex_state = 0, .external_lex_state = 280}, - [6887] = {.lex_state = 0, .external_lex_state = 186}, - [6888] = {.lex_state = 0, .external_lex_state = 186}, - [6889] = {.lex_state = 0, .external_lex_state = 186}, - [6890] = {.lex_state = 0, .external_lex_state = 268}, - [6891] = {.lex_state = 0, .external_lex_state = 278}, - [6892] = {.lex_state = 0, .external_lex_state = 269}, - [6893] = {.lex_state = 0, .external_lex_state = 269}, - [6894] = {.lex_state = 0, .external_lex_state = 186}, - [6895] = {.lex_state = 0, .external_lex_state = 269}, - [6896] = {.lex_state = 0, .external_lex_state = 186}, - [6897] = {.lex_state = 0, .external_lex_state = 186}, - [6898] = {.lex_state = 0, .external_lex_state = 186}, - [6899] = {.lex_state = 0, .external_lex_state = 263}, - [6900] = {.lex_state = 0, .external_lex_state = 186}, - [6901] = {.lex_state = 0, .external_lex_state = 186}, - [6902] = {.lex_state = 0, .external_lex_state = 268}, - [6903] = {.lex_state = 0, .external_lex_state = 186}, - [6904] = {.lex_state = 0, .external_lex_state = 269}, - [6905] = {.lex_state = 0, .external_lex_state = 269}, - [6906] = {.lex_state = 0, .external_lex_state = 186}, - [6907] = {.lex_state = 0, .external_lex_state = 269}, - [6908] = {.lex_state = 0, .external_lex_state = 186}, - [6909] = {.lex_state = 0, .external_lex_state = 186}, - [6910] = {.lex_state = 0, .external_lex_state = 270}, - [6911] = {.lex_state = 0, .external_lex_state = 186}, - [6912] = {.lex_state = 0, .external_lex_state = 186}, - [6913] = {.lex_state = 0, .external_lex_state = 186}, - [6914] = {.lex_state = 0, .external_lex_state = 268}, - [6915] = {.lex_state = 0, .external_lex_state = 186}, - [6916] = {.lex_state = 0, .external_lex_state = 269}, - [6917] = {.lex_state = 0, .external_lex_state = 269}, - [6918] = {.lex_state = 0, .external_lex_state = 270}, - [6919] = {.lex_state = 0, .external_lex_state = 269}, - [6920] = {.lex_state = 0, .external_lex_state = 186}, - [6921] = {.lex_state = 0, .external_lex_state = 244}, - [6922] = {.lex_state = 0, .external_lex_state = 186}, - [6923] = {.lex_state = 0, .external_lex_state = 186}, - [6924] = {.lex_state = 0, .external_lex_state = 186}, + [6678] = {.lex_state = 0, .external_lex_state = 270}, + [6679] = {.lex_state = 0, .external_lex_state = 187}, + [6680] = {.lex_state = 0, .external_lex_state = 187}, + [6681] = {.lex_state = 0, .external_lex_state = 187}, + [6682] = {.lex_state = 0, .external_lex_state = 187}, + [6683] = {.lex_state = 0, .external_lex_state = 187}, + [6684] = {.lex_state = 0, .external_lex_state = 187}, + [6685] = {.lex_state = 0, .external_lex_state = 187}, + [6686] = {.lex_state = 0, .external_lex_state = 187}, + [6687] = {.lex_state = 0, .external_lex_state = 187}, + [6688] = {.lex_state = 0, .external_lex_state = 187}, + [6689] = {.lex_state = 0, .external_lex_state = 187}, + [6690] = {.lex_state = 0, .external_lex_state = 268}, + [6691] = {.lex_state = 0, .external_lex_state = 187}, + [6692] = {.lex_state = 0, .external_lex_state = 268}, + [6693] = {.lex_state = 0, .external_lex_state = 187}, + [6694] = {.lex_state = 0, .external_lex_state = 268}, + [6695] = {.lex_state = 0, .external_lex_state = 187}, + [6696] = {.lex_state = 0, .external_lex_state = 268}, + [6697] = {.lex_state = 0, .external_lex_state = 242}, + [6698] = {.lex_state = 0, .external_lex_state = 187}, + [6699] = {.lex_state = 0, .external_lex_state = 271}, + [6700] = {.lex_state = 0, .external_lex_state = 187}, + [6701] = {.lex_state = 0, .external_lex_state = 187}, + [6702] = {.lex_state = 0, .external_lex_state = 187}, + [6703] = {.lex_state = 0, .external_lex_state = 187}, + [6704] = {.lex_state = 0, .external_lex_state = 270}, + [6705] = {.lex_state = 0, .external_lex_state = 187}, + [6706] = {.lex_state = 0, .external_lex_state = 187}, + [6707] = {.lex_state = 0, .external_lex_state = 187}, + [6708] = {.lex_state = 0, .external_lex_state = 187}, + [6709] = {.lex_state = 0, .external_lex_state = 272}, + [6710] = {.lex_state = 0, .external_lex_state = 187}, + [6711] = {.lex_state = 0, .external_lex_state = 187}, + [6712] = {.lex_state = 0, .external_lex_state = 187}, + [6713] = {.lex_state = 0, .external_lex_state = 187}, + [6714] = {.lex_state = 0, .external_lex_state = 187}, + [6715] = {.lex_state = 0, .external_lex_state = 187}, + [6716] = {.lex_state = 0, .external_lex_state = 187}, + [6717] = {.lex_state = 0, .external_lex_state = 187}, + [6718] = {.lex_state = 0, .external_lex_state = 187}, + [6719] = {.lex_state = 0, .external_lex_state = 187}, + [6720] = {.lex_state = 0, .external_lex_state = 187}, + [6721] = {.lex_state = 0, .external_lex_state = 187}, + [6722] = {.lex_state = 0, .external_lex_state = 187}, + [6723] = {.lex_state = 0, .external_lex_state = 187}, + [6724] = {.lex_state = 0, .external_lex_state = 187}, + [6725] = {.lex_state = 0, .external_lex_state = 242}, + [6726] = {.lex_state = 0, .external_lex_state = 187}, + [6727] = {.lex_state = 0, .external_lex_state = 187}, + [6728] = {.lex_state = 0, .external_lex_state = 187}, + [6729] = {.lex_state = 0, .external_lex_state = 187}, + [6730] = {.lex_state = 0, .external_lex_state = 187}, + [6731] = {.lex_state = 0, .external_lex_state = 187}, + [6732] = {.lex_state = 0, .external_lex_state = 272}, + [6733] = {.lex_state = 0, .external_lex_state = 187}, + [6734] = {.lex_state = 0, .external_lex_state = 187}, + [6735] = {.lex_state = 0, .external_lex_state = 187}, + [6736] = {.lex_state = 0, .external_lex_state = 187}, + [6737] = {.lex_state = 0, .external_lex_state = 187}, + [6738] = {.lex_state = 0, .external_lex_state = 187}, + [6739] = {.lex_state = 0, .external_lex_state = 187}, + [6740] = {.lex_state = 0, .external_lex_state = 187}, + [6741] = {.lex_state = 0, .external_lex_state = 187}, + [6742] = {.lex_state = 0, .external_lex_state = 187}, + [6743] = {.lex_state = 0, .external_lex_state = 187}, + [6744] = {.lex_state = 0, .external_lex_state = 187}, + [6745] = {.lex_state = 0, .external_lex_state = 187}, + [6746] = {.lex_state = 0, .external_lex_state = 187}, + [6747] = {.lex_state = 0, .external_lex_state = 260}, + [6748] = {.lex_state = 0, .external_lex_state = 187}, + [6749] = {.lex_state = 0, .external_lex_state = 187}, + [6750] = {.lex_state = 0, .external_lex_state = 187}, + [6751] = {.lex_state = 0, .external_lex_state = 187}, + [6752] = {.lex_state = 0, .external_lex_state = 187}, + [6753] = {.lex_state = 0, .external_lex_state = 187}, + [6754] = {.lex_state = 0, .external_lex_state = 187}, + [6755] = {.lex_state = 0, .external_lex_state = 187}, + [6756] = {.lex_state = 0, .external_lex_state = 187}, + [6757] = {.lex_state = 0, .external_lex_state = 187}, + [6758] = {.lex_state = 0, .external_lex_state = 187}, + [6759] = {.lex_state = 0, .external_lex_state = 187}, + [6760] = {.lex_state = 0, .external_lex_state = 187}, + [6761] = {.lex_state = 0, .external_lex_state = 268}, + [6762] = {.lex_state = 0, .external_lex_state = 265}, + [6763] = {.lex_state = 0, .external_lex_state = 187}, + [6764] = {.lex_state = 0, .external_lex_state = 268}, + [6765] = {.lex_state = 0, .external_lex_state = 268}, + [6766] = {.lex_state = 0, .external_lex_state = 187}, + [6767] = {.lex_state = 0, .external_lex_state = 187}, + [6768] = {.lex_state = 0, .external_lex_state = 255}, + [6769] = {.lex_state = 0, .external_lex_state = 187}, + [6770] = {.lex_state = 0, .external_lex_state = 223}, + [6771] = {.lex_state = 0, .external_lex_state = 187}, + [6772] = {.lex_state = 0, .external_lex_state = 268}, + [6773] = {.lex_state = 0, .external_lex_state = 270}, + [6774] = {.lex_state = 0, .external_lex_state = 187}, + [6775] = {.lex_state = 0, .external_lex_state = 187}, + [6776] = {.lex_state = 0, .external_lex_state = 187}, + [6777] = {.lex_state = 0, .external_lex_state = 187}, + [6778] = {.lex_state = 0, .external_lex_state = 187}, + [6779] = {.lex_state = 0, .external_lex_state = 187}, + [6780] = {.lex_state = 0, .external_lex_state = 187}, + [6781] = {.lex_state = 0, .external_lex_state = 187}, + [6782] = {.lex_state = 0, .external_lex_state = 187}, + [6783] = {.lex_state = 0, .external_lex_state = 187}, + [6784] = {.lex_state = 0, .external_lex_state = 187}, + [6785] = {.lex_state = 0, .external_lex_state = 187}, + [6786] = {.lex_state = 0, .external_lex_state = 187}, + [6787] = {.lex_state = 0, .external_lex_state = 187}, + [6788] = {.lex_state = 0, .external_lex_state = 187}, + [6789] = {.lex_state = 0, .external_lex_state = 187}, + [6790] = {.lex_state = 0, .external_lex_state = 187}, + [6791] = {.lex_state = 0, .external_lex_state = 259}, + [6792] = {.lex_state = 0, .external_lex_state = 187}, + [6793] = {.lex_state = 0, .external_lex_state = 187}, + [6794] = {.lex_state = 0, .external_lex_state = 187}, + [6795] = {.lex_state = 0, .external_lex_state = 187}, + [6796] = {.lex_state = 0, .external_lex_state = 255}, + [6797] = {.lex_state = 0, .external_lex_state = 187}, + [6798] = {.lex_state = 0, .external_lex_state = 187}, + [6799] = {.lex_state = 0, .external_lex_state = 187}, + [6800] = {.lex_state = 0, .external_lex_state = 187}, + [6801] = {.lex_state = 0, .external_lex_state = 187}, + [6802] = {.lex_state = 0, .external_lex_state = 187}, + [6803] = {.lex_state = 0, .external_lex_state = 187}, + [6804] = {.lex_state = 0, .external_lex_state = 187}, + [6805] = {.lex_state = 0, .external_lex_state = 187}, + [6806] = {.lex_state = 0, .external_lex_state = 269}, + [6807] = {.lex_state = 0, .external_lex_state = 187}, + [6808] = {.lex_state = 0, .external_lex_state = 187}, + [6809] = {.lex_state = 0, .external_lex_state = 187}, + [6810] = {.lex_state = 0, .external_lex_state = 270}, + [6811] = {.lex_state = 0, .external_lex_state = 270}, + [6812] = {.lex_state = 0, .external_lex_state = 187}, + [6813] = {.lex_state = 0, .external_lex_state = 187}, + [6814] = {.lex_state = 0, .external_lex_state = 187}, + [6815] = {.lex_state = 0, .external_lex_state = 187}, + [6816] = {.lex_state = 0, .external_lex_state = 187}, + [6817] = {.lex_state = 0, .external_lex_state = 187}, + [6818] = {.lex_state = 0, .external_lex_state = 187}, + [6819] = {.lex_state = 0, .external_lex_state = 187}, + [6820] = {.lex_state = 0, .external_lex_state = 187}, + [6821] = {.lex_state = 0, .external_lex_state = 187}, + [6822] = {.lex_state = 0, .external_lex_state = 187}, + [6823] = {.lex_state = 0, .external_lex_state = 187}, + [6824] = {.lex_state = 0, .external_lex_state = 187}, + [6825] = {.lex_state = 0, .external_lex_state = 187}, + [6826] = {.lex_state = 0, .external_lex_state = 187}, + [6827] = {.lex_state = 0, .external_lex_state = 187}, + [6828] = {.lex_state = 0, .external_lex_state = 268}, + [6829] = {.lex_state = 0, .external_lex_state = 187}, + [6830] = {.lex_state = 0, .external_lex_state = 187}, + [6831] = {.lex_state = 0, .external_lex_state = 268}, + [6832] = {.lex_state = 0, .external_lex_state = 187}, + [6833] = {.lex_state = 0, .external_lex_state = 187}, + [6834] = {.lex_state = 0, .external_lex_state = 270}, + [6835] = {.lex_state = 0, .external_lex_state = 187}, + [6836] = {.lex_state = 0, .external_lex_state = 187}, + [6837] = {.lex_state = 0, .external_lex_state = 187}, + [6838] = {.lex_state = 0, .external_lex_state = 187}, + [6839] = {.lex_state = 0, .external_lex_state = 187}, + [6840] = {.lex_state = 0, .external_lex_state = 187}, + [6841] = {.lex_state = 0, .external_lex_state = 187}, + [6842] = {.lex_state = 0, .external_lex_state = 187}, + [6843] = {.lex_state = 0, .external_lex_state = 187}, + [6844] = {.lex_state = 0, .external_lex_state = 187}, + [6845] = {.lex_state = 0, .external_lex_state = 187}, + [6846] = {.lex_state = 0, .external_lex_state = 268}, + [6847] = {.lex_state = 0, .external_lex_state = 187}, + [6848] = {.lex_state = 0, .external_lex_state = 187}, + [6849] = {.lex_state = 0, .external_lex_state = 187}, + [6850] = {.lex_state = 0, .external_lex_state = 187}, + [6851] = {.lex_state = 0, .external_lex_state = 268}, + [6852] = {.lex_state = 0, .external_lex_state = 187}, + [6853] = {.lex_state = 0, .external_lex_state = 187}, + [6854] = {.lex_state = 0, .external_lex_state = 187}, + [6855] = {.lex_state = 0, .external_lex_state = 187}, + [6856] = {.lex_state = 0, .external_lex_state = 187}, + [6857] = {.lex_state = 0, .external_lex_state = 187}, + [6858] = {.lex_state = 0, .external_lex_state = 187}, + [6859] = {.lex_state = 0, .external_lex_state = 187}, + [6860] = {.lex_state = 0, .external_lex_state = 187}, + [6861] = {.lex_state = 0, .external_lex_state = 187}, + [6862] = {.lex_state = 0, .external_lex_state = 187}, + [6863] = {.lex_state = 0, .external_lex_state = 187}, + [6864] = {.lex_state = 0, .external_lex_state = 187}, + [6865] = {.lex_state = 0, .external_lex_state = 187}, + [6866] = {.lex_state = 0, .external_lex_state = 187}, + [6867] = {.lex_state = 0, .external_lex_state = 187}, + [6868] = {.lex_state = 0, .external_lex_state = 187}, + [6869] = {.lex_state = 0, .external_lex_state = 187}, + [6870] = {.lex_state = 0, .external_lex_state = 187}, + [6871] = {.lex_state = 0, .external_lex_state = 187}, + [6872] = {.lex_state = 0, .external_lex_state = 187}, + [6873] = {.lex_state = 0, .external_lex_state = 187}, + [6874] = {.lex_state = 0, .external_lex_state = 187}, + [6875] = {.lex_state = 0, .external_lex_state = 187}, + [6876] = {.lex_state = 0, .external_lex_state = 187}, + [6877] = {.lex_state = 0, .external_lex_state = 187}, + [6878] = {.lex_state = 0, .external_lex_state = 187}, + [6879] = {.lex_state = 0, .external_lex_state = 187}, + [6880] = {.lex_state = 0, .external_lex_state = 187}, + [6881] = {.lex_state = 0, .external_lex_state = 187}, + [6882] = {.lex_state = 0, .external_lex_state = 187}, + [6883] = {.lex_state = 0, .external_lex_state = 187}, + [6884] = {.lex_state = 0, .external_lex_state = 273}, + [6885] = {.lex_state = 0, .external_lex_state = 187}, + [6886] = {.lex_state = 0, .external_lex_state = 187}, + [6887] = {.lex_state = 0, .external_lex_state = 187}, + [6888] = {.lex_state = 0, .external_lex_state = 187}, + [6889] = {.lex_state = 0, .external_lex_state = 187}, + [6890] = {.lex_state = 0, .external_lex_state = 187}, + [6891] = {.lex_state = 0, .external_lex_state = 187}, + [6892] = {.lex_state = 0, .external_lex_state = 265}, + [6893] = {.lex_state = 0, .external_lex_state = 187}, + [6894] = {.lex_state = 0, .external_lex_state = 187}, + [6895] = {.lex_state = 0, .external_lex_state = 187}, + [6896] = {.lex_state = 0, .external_lex_state = 187}, + [6897] = {.lex_state = 0, .external_lex_state = 187}, + [6898] = {.lex_state = 0, .external_lex_state = 187}, + [6899] = {.lex_state = 0, .external_lex_state = 187}, + [6900] = {.lex_state = 0, .external_lex_state = 187}, + [6901] = {.lex_state = 0, .external_lex_state = 187}, + [6902] = {.lex_state = 0, .external_lex_state = 187}, + [6903] = {.lex_state = 0, .external_lex_state = 187}, + [6904] = {.lex_state = 0, .external_lex_state = 187}, + [6905] = {.lex_state = 0, .external_lex_state = 187}, + [6906] = {.lex_state = 0, .external_lex_state = 187}, + [6907] = {.lex_state = 0, .external_lex_state = 187}, + [6908] = {.lex_state = 0, .external_lex_state = 187}, + [6909] = {.lex_state = 0, .external_lex_state = 187}, + [6910] = {.lex_state = 0, .external_lex_state = 187}, + [6911] = {.lex_state = 0, .external_lex_state = 187}, + [6912] = {.lex_state = 0, .external_lex_state = 187}, + [6913] = {.lex_state = 0, .external_lex_state = 187}, + [6914] = {.lex_state = 0, .external_lex_state = 187}, + [6915] = {.lex_state = 0, .external_lex_state = 187}, + [6916] = {.lex_state = 0, .external_lex_state = 187}, + [6917] = {.lex_state = 0, .external_lex_state = 187}, + [6918] = {.lex_state = 0, .external_lex_state = 187}, + [6919] = {.lex_state = 0, .external_lex_state = 187}, + [6920] = {.lex_state = 0, .external_lex_state = 187}, + [6921] = {.lex_state = 0, .external_lex_state = 268}, + [6922] = {.lex_state = 0, .external_lex_state = 269}, + [6923] = {.lex_state = 0, .external_lex_state = 187}, + [6924] = {.lex_state = 0, .external_lex_state = 187}, [6925] = {.lex_state = 0, .external_lex_state = 270}, - [6926] = {.lex_state = 0, .external_lex_state = 268}, - [6927] = {.lex_state = 0, .external_lex_state = 186}, - [6928] = {.lex_state = 0, .external_lex_state = 269}, - [6929] = {.lex_state = 0, .external_lex_state = 269}, - [6930] = {.lex_state = 0, .external_lex_state = 186}, - [6931] = {.lex_state = 0, .external_lex_state = 269}, - [6932] = {.lex_state = 0, .external_lex_state = 186}, - [6933] = {.lex_state = 0, .external_lex_state = 270}, - [6934] = {.lex_state = 0, .external_lex_state = 186}, - [6935] = {.lex_state = 0, .external_lex_state = 186}, - [6936] = {.lex_state = 0, .external_lex_state = 186}, - [6937] = {.lex_state = 0, .external_lex_state = 186}, - [6938] = {.lex_state = 0, .external_lex_state = 268}, - [6939] = {.lex_state = 0, .external_lex_state = 244}, - [6940] = {.lex_state = 0, .external_lex_state = 269}, - [6941] = {.lex_state = 0, .external_lex_state = 269}, - [6942] = {.lex_state = 0, .external_lex_state = 186}, - [6943] = {.lex_state = 0, .external_lex_state = 269}, - [6944] = {.lex_state = 0, .external_lex_state = 271}, - [6945] = {.lex_state = 0, .external_lex_state = 186}, - [6946] = {.lex_state = 0, .external_lex_state = 186}, - [6947] = {.lex_state = 0, .external_lex_state = 186}, - [6948] = {.lex_state = 0, .external_lex_state = 186}, - [6949] = {.lex_state = 0, .external_lex_state = 186}, - [6950] = {.lex_state = 0, .external_lex_state = 268}, - [6951] = {.lex_state = 0, .external_lex_state = 186}, - [6952] = {.lex_state = 0, .external_lex_state = 269}, - [6953] = {.lex_state = 0, .external_lex_state = 269}, - [6954] = {.lex_state = 0, .external_lex_state = 186}, - [6955] = {.lex_state = 0, .external_lex_state = 269}, - [6956] = {.lex_state = 0, .external_lex_state = 186}, - [6957] = {.lex_state = 0, .external_lex_state = 186}, - [6958] = {.lex_state = 0, .external_lex_state = 186}, - [6959] = {.lex_state = 0, .external_lex_state = 186}, - [6960] = {.lex_state = 0, .external_lex_state = 186}, - [6961] = {.lex_state = 0, .external_lex_state = 186}, - [6962] = {.lex_state = 0, .external_lex_state = 268}, - [6963] = {.lex_state = 0, .external_lex_state = 186}, - [6964] = {.lex_state = 0, .external_lex_state = 269}, - [6965] = {.lex_state = 0, .external_lex_state = 269}, - [6966] = {.lex_state = 0, .external_lex_state = 186}, - [6967] = {.lex_state = 0, .external_lex_state = 269}, - [6968] = {.lex_state = 0, .external_lex_state = 186}, - [6969] = {.lex_state = 0, .external_lex_state = 186}, - [6970] = {.lex_state = 0, .external_lex_state = 186}, - [6971] = {.lex_state = 0, .external_lex_state = 186}, - [6972] = {.lex_state = 0, .external_lex_state = 186}, - [6973] = {.lex_state = 0, .external_lex_state = 186}, - [6974] = {.lex_state = 0, .external_lex_state = 268}, - [6975] = {.lex_state = 0, .external_lex_state = 269}, - [6976] = {.lex_state = 0, .external_lex_state = 269}, - [6977] = {.lex_state = 0, .external_lex_state = 269}, - [6978] = {.lex_state = 0, .external_lex_state = 186}, - [6979] = {.lex_state = 0, .external_lex_state = 269}, - [6980] = {.lex_state = 0, .external_lex_state = 186}, - [6981] = {.lex_state = 0, .external_lex_state = 186}, - [6982] = {.lex_state = 0, .external_lex_state = 186}, - [6983] = {.lex_state = 0, .external_lex_state = 186}, - [6984] = {.lex_state = 0, .external_lex_state = 186}, - [6985] = {.lex_state = 0, .external_lex_state = 186}, - [6986] = {.lex_state = 0, .external_lex_state = 268}, - [6987] = {.lex_state = 0, .external_lex_state = 186}, - [6988] = {.lex_state = 0, .external_lex_state = 269}, - [6989] = {.lex_state = 0, .external_lex_state = 269}, - [6990] = {.lex_state = 0, .external_lex_state = 186}, - [6991] = {.lex_state = 0, .external_lex_state = 269}, - [6992] = {.lex_state = 0, .external_lex_state = 186}, - [6993] = {.lex_state = 0, .external_lex_state = 186}, - [6994] = {.lex_state = 0, .external_lex_state = 186}, - [6995] = {.lex_state = 0, .external_lex_state = 186}, - [6996] = {.lex_state = 0, .external_lex_state = 186}, - [6997] = {.lex_state = 0, .external_lex_state = 186}, - [6998] = {.lex_state = 0, .external_lex_state = 268}, - [6999] = {.lex_state = 0, .external_lex_state = 186}, - [7000] = {.lex_state = 0, .external_lex_state = 269}, - [7001] = {.lex_state = 0, .external_lex_state = 269}, - [7002] = {.lex_state = 0, .external_lex_state = 186}, - [7003] = {.lex_state = 0, .external_lex_state = 269}, - [7004] = {.lex_state = 0, .external_lex_state = 186}, - [7005] = {.lex_state = 0, .external_lex_state = 186}, - [7006] = {.lex_state = 0, .external_lex_state = 186}, - [7007] = {.lex_state = 0, .external_lex_state = 186}, - [7008] = {.lex_state = 0, .external_lex_state = 186}, - [7009] = {.lex_state = 0, .external_lex_state = 186}, - [7010] = {.lex_state = 0, .external_lex_state = 268}, - [7011] = {.lex_state = 0, .external_lex_state = 186}, - [7012] = {.lex_state = 0, .external_lex_state = 269}, - [7013] = {.lex_state = 0, .external_lex_state = 269}, - [7014] = {.lex_state = 0, .external_lex_state = 186}, - [7015] = {.lex_state = 0, .external_lex_state = 269}, - [7016] = {.lex_state = 0, .external_lex_state = 186}, - [7017] = {.lex_state = 0, .external_lex_state = 186}, - [7018] = {.lex_state = 0, .external_lex_state = 186}, - [7019] = {.lex_state = 0, .external_lex_state = 186}, - [7020] = {.lex_state = 0, .external_lex_state = 186}, - [7021] = {.lex_state = 0, .external_lex_state = 186}, - [7022] = {.lex_state = 0, .external_lex_state = 268}, - [7023] = {.lex_state = 0, .external_lex_state = 186}, - [7024] = {.lex_state = 0, .external_lex_state = 269}, - [7025] = {.lex_state = 0, .external_lex_state = 269}, - [7026] = {.lex_state = 0, .external_lex_state = 186}, - [7027] = {.lex_state = 0, .external_lex_state = 269}, - [7028] = {.lex_state = 0, .external_lex_state = 186}, - [7029] = {.lex_state = 0, .external_lex_state = 186}, - [7030] = {.lex_state = 0, .external_lex_state = 186}, - [7031] = {.lex_state = 0, .external_lex_state = 186}, - [7032] = {.lex_state = 0, .external_lex_state = 186}, - [7033] = {.lex_state = 0, .external_lex_state = 186}, - [7034] = {.lex_state = 0, .external_lex_state = 268}, - [7035] = {.lex_state = 0, .external_lex_state = 186}, - [7036] = {.lex_state = 0, .external_lex_state = 269}, - [7037] = {.lex_state = 0, .external_lex_state = 269}, - [7038] = {.lex_state = 0, .external_lex_state = 186}, - [7039] = {.lex_state = 0, .external_lex_state = 269}, - [7040] = {.lex_state = 0, .external_lex_state = 186}, - [7041] = {.lex_state = 0, .external_lex_state = 186}, - [7042] = {.lex_state = 0, .external_lex_state = 186}, - [7043] = {.lex_state = 0, .external_lex_state = 186}, - [7044] = {.lex_state = 0, .external_lex_state = 186}, - [7045] = {.lex_state = 0, .external_lex_state = 186}, - [7046] = {.lex_state = 0, .external_lex_state = 268}, - [7047] = {.lex_state = 0, .external_lex_state = 186}, - [7048] = {.lex_state = 0, .external_lex_state = 269}, - [7049] = {.lex_state = 0, .external_lex_state = 269}, - [7050] = {.lex_state = 0, .external_lex_state = 186}, - [7051] = {.lex_state = 0, .external_lex_state = 269}, - [7052] = {.lex_state = 0, .external_lex_state = 186}, - [7053] = {.lex_state = 0, .external_lex_state = 186}, - [7054] = {.lex_state = 0, .external_lex_state = 186}, - [7055] = {.lex_state = 0, .external_lex_state = 186}, - [7056] = {.lex_state = 0, .external_lex_state = 186}, - [7057] = {.lex_state = 0, .external_lex_state = 186}, - [7058] = {.lex_state = 0, .external_lex_state = 268}, - [7059] = {.lex_state = 0, .external_lex_state = 186}, - [7060] = {.lex_state = 0, .external_lex_state = 269}, + [6926] = {.lex_state = 0, .external_lex_state = 270}, + [6927] = {.lex_state = 0, .external_lex_state = 187}, + [6928] = {.lex_state = 0, .external_lex_state = 187}, + [6929] = {.lex_state = 0, .external_lex_state = 187}, + [6930] = {.lex_state = 0, .external_lex_state = 187}, + [6931] = {.lex_state = 0, .external_lex_state = 187}, + [6932] = {.lex_state = 0, .external_lex_state = 268}, + [6933] = {.lex_state = 0, .external_lex_state = 268}, + [6934] = {.lex_state = 0, .external_lex_state = 187}, + [6935] = {.lex_state = 0, .external_lex_state = 187}, + [6936] = {.lex_state = 0, .external_lex_state = 187}, + [6937] = {.lex_state = 0, .external_lex_state = 268}, + [6938] = {.lex_state = 0, .external_lex_state = 187}, + [6939] = {.lex_state = 0, .external_lex_state = 187}, + [6940] = {.lex_state = 0, .external_lex_state = 187}, + [6941] = {.lex_state = 0, .external_lex_state = 274}, + [6942] = {.lex_state = 0, .external_lex_state = 187}, + [6943] = {.lex_state = 0, .external_lex_state = 187}, + [6944] = {.lex_state = 0, .external_lex_state = 270}, + [6945] = {.lex_state = 0, .external_lex_state = 187}, + [6946] = {.lex_state = 0, .external_lex_state = 187}, + [6947] = {.lex_state = 0, .external_lex_state = 187}, + [6948] = {.lex_state = 0, .external_lex_state = 187}, + [6949] = {.lex_state = 0, .external_lex_state = 187}, + [6950] = {.lex_state = 0, .external_lex_state = 187}, + [6951] = {.lex_state = 0, .external_lex_state = 187}, + [6952] = {.lex_state = 0, .external_lex_state = 187}, + [6953] = {.lex_state = 0, .external_lex_state = 187}, + [6954] = {.lex_state = 0, .external_lex_state = 187}, + [6955] = {.lex_state = 0, .external_lex_state = 187}, + [6956] = {.lex_state = 0, .external_lex_state = 187}, + [6957] = {.lex_state = 0, .external_lex_state = 240}, + [6958] = {.lex_state = 0, .external_lex_state = 187}, + [6959] = {.lex_state = 0, .external_lex_state = 187}, + [6960] = {.lex_state = 0, .external_lex_state = 187}, + [6961] = {.lex_state = 0, .external_lex_state = 187}, + [6962] = {.lex_state = 0, .external_lex_state = 187}, + [6963] = {.lex_state = 0, .external_lex_state = 187}, + [6964] = {.lex_state = 0, .external_lex_state = 187}, + [6965] = {.lex_state = 0, .external_lex_state = 187}, + [6966] = {.lex_state = 0, .external_lex_state = 275}, + [6967] = {.lex_state = 0, .external_lex_state = 187}, + [6968] = {.lex_state = 0, .external_lex_state = 187}, + [6969] = {.lex_state = 0, .external_lex_state = 187}, + [6970] = {.lex_state = 0, .external_lex_state = 187}, + [6971] = {.lex_state = 0, .external_lex_state = 187}, + [6972] = {.lex_state = 0, .external_lex_state = 187}, + [6973] = {.lex_state = 0, .external_lex_state = 187}, + [6974] = {.lex_state = 0, .external_lex_state = 187}, + [6975] = {.lex_state = 0, .external_lex_state = 187}, + [6976] = {.lex_state = 0, .external_lex_state = 187}, + [6977] = {.lex_state = 0, .external_lex_state = 187}, + [6978] = {.lex_state = 0, .external_lex_state = 187}, + [6979] = {.lex_state = 0, .external_lex_state = 187}, + [6980] = {.lex_state = 0, .external_lex_state = 270}, + [6981] = {.lex_state = 0, .external_lex_state = 187}, + [6982] = {.lex_state = 0, .external_lex_state = 187}, + [6983] = {.lex_state = 0, .external_lex_state = 187}, + [6984] = {.lex_state = 0, .external_lex_state = 187}, + [6985] = {.lex_state = 0, .external_lex_state = 187}, + [6986] = {.lex_state = 0, .external_lex_state = 187}, + [6987] = {.lex_state = 0, .external_lex_state = 187}, + [6988] = {.lex_state = 0, .external_lex_state = 187}, + [6989] = {.lex_state = 0, .external_lex_state = 187}, + [6990] = {.lex_state = 0, .external_lex_state = 187}, + [6991] = {.lex_state = 0, .external_lex_state = 187}, + [6992] = {.lex_state = 0, .external_lex_state = 187}, + [6993] = {.lex_state = 0, .external_lex_state = 187}, + [6994] = {.lex_state = 0, .external_lex_state = 269}, + [6995] = {.lex_state = 0, .external_lex_state = 187}, + [6996] = {.lex_state = 0, .external_lex_state = 187}, + [6997] = {.lex_state = 0, .external_lex_state = 270}, + [6998] = {.lex_state = 0, .external_lex_state = 270}, + [6999] = {.lex_state = 0, .external_lex_state = 187}, + [7000] = {.lex_state = 0, .external_lex_state = 187}, + [7001] = {.lex_state = 0, .external_lex_state = 187}, + [7002] = {.lex_state = 0, .external_lex_state = 187}, + [7003] = {.lex_state = 0, .external_lex_state = 187}, + [7004] = {.lex_state = 0, .external_lex_state = 187}, + [7005] = {.lex_state = 0, .external_lex_state = 187}, + [7006] = {.lex_state = 0, .external_lex_state = 187}, + [7007] = {.lex_state = 0, .external_lex_state = 187}, + [7008] = {.lex_state = 0, .external_lex_state = 187}, + [7009] = {.lex_state = 0, .external_lex_state = 270}, + [7010] = {.lex_state = 0, .external_lex_state = 276}, + [7011] = {.lex_state = 0, .external_lex_state = 187}, + [7012] = {.lex_state = 0, .external_lex_state = 187}, + [7013] = {.lex_state = 0, .external_lex_state = 187}, + [7014] = {.lex_state = 0, .external_lex_state = 268}, + [7015] = {.lex_state = 0, .external_lex_state = 187}, + [7016] = {.lex_state = 0, .external_lex_state = 187}, + [7017] = {.lex_state = 0, .external_lex_state = 187}, + [7018] = {.lex_state = 0, .external_lex_state = 187}, + [7019] = {.lex_state = 0, .external_lex_state = 187}, + [7020] = {.lex_state = 0, .external_lex_state = 187}, + [7021] = {.lex_state = 0, .external_lex_state = 187}, + [7022] = {.lex_state = 0, .external_lex_state = 187}, + [7023] = {.lex_state = 0, .external_lex_state = 187}, + [7024] = {.lex_state = 0, .external_lex_state = 187}, + [7025] = {.lex_state = 0, .external_lex_state = 187}, + [7026] = {.lex_state = 0, .external_lex_state = 187}, + [7027] = {.lex_state = 0, .external_lex_state = 187}, + [7028] = {.lex_state = 0, .external_lex_state = 187}, + [7029] = {.lex_state = 0, .external_lex_state = 187}, + [7030] = {.lex_state = 0, .external_lex_state = 187}, + [7031] = {.lex_state = 0, .external_lex_state = 187}, + [7032] = {.lex_state = 0, .external_lex_state = 269}, + [7033] = {.lex_state = 0, .external_lex_state = 187}, + [7034] = {.lex_state = 0, .external_lex_state = 270}, + [7035] = {.lex_state = 0, .external_lex_state = 270}, + [7036] = {.lex_state = 0, .external_lex_state = 187}, + [7037] = {.lex_state = 0, .external_lex_state = 187}, + [7038] = {.lex_state = 0, .external_lex_state = 187}, + [7039] = {.lex_state = 0, .external_lex_state = 187}, + [7040] = {.lex_state = 0, .external_lex_state = 187}, + [7041] = {.lex_state = 0, .external_lex_state = 187}, + [7042] = {.lex_state = 0, .external_lex_state = 187}, + [7043] = {.lex_state = 0, .external_lex_state = 187}, + [7044] = {.lex_state = 0, .external_lex_state = 187}, + [7045] = {.lex_state = 0, .external_lex_state = 270}, + [7046] = {.lex_state = 0, .external_lex_state = 187}, + [7047] = {.lex_state = 0, .external_lex_state = 187}, + [7048] = {.lex_state = 0, .external_lex_state = 187}, + [7049] = {.lex_state = 0, .external_lex_state = 255}, + [7050] = {.lex_state = 0, .external_lex_state = 187}, + [7051] = {.lex_state = 0, .external_lex_state = 187}, + [7052] = {.lex_state = 0, .external_lex_state = 268}, + [7053] = {.lex_state = 0, .external_lex_state = 187}, + [7054] = {.lex_state = 0, .external_lex_state = 187}, + [7055] = {.lex_state = 0, .external_lex_state = 187}, + [7056] = {.lex_state = 0, .external_lex_state = 268}, + [7057] = {.lex_state = 0, .external_lex_state = 187}, + [7058] = {.lex_state = 0, .external_lex_state = 187}, + [7059] = {.lex_state = 0, .external_lex_state = 187}, + [7060] = {.lex_state = 0, .external_lex_state = 187}, [7061] = {.lex_state = 0, .external_lex_state = 269}, - [7062] = {.lex_state = 0, .external_lex_state = 186}, - [7063] = {.lex_state = 0, .external_lex_state = 269}, - [7064] = {.lex_state = 0, .external_lex_state = 186}, - [7065] = {.lex_state = 0, .external_lex_state = 186}, - [7066] = {.lex_state = 0, .external_lex_state = 186}, - [7067] = {.lex_state = 0, .external_lex_state = 186}, - [7068] = {.lex_state = 0, .external_lex_state = 186}, - [7069] = {.lex_state = 0, .external_lex_state = 186}, - [7070] = {.lex_state = 0, .external_lex_state = 268}, - [7071] = {.lex_state = 0, .external_lex_state = 186}, - [7072] = {.lex_state = 0, .external_lex_state = 269}, - [7073] = {.lex_state = 0, .external_lex_state = 269}, - [7074] = {.lex_state = 0, .external_lex_state = 186}, - [7075] = {.lex_state = 0, .external_lex_state = 269}, - [7076] = {.lex_state = 0, .external_lex_state = 186}, - [7077] = {.lex_state = 0, .external_lex_state = 186}, - [7078] = {.lex_state = 0, .external_lex_state = 186}, - [7079] = {.lex_state = 0, .external_lex_state = 186}, - [7080] = {.lex_state = 0, .external_lex_state = 186}, - [7081] = {.lex_state = 0, .external_lex_state = 186}, - [7082] = {.lex_state = 0, .external_lex_state = 268}, - [7083] = {.lex_state = 0, .external_lex_state = 186}, - [7084] = {.lex_state = 0, .external_lex_state = 269}, - [7085] = {.lex_state = 0, .external_lex_state = 269}, - [7086] = {.lex_state = 0, .external_lex_state = 186}, - [7087] = {.lex_state = 0, .external_lex_state = 269}, - [7088] = {.lex_state = 0, .external_lex_state = 186}, - [7089] = {.lex_state = 0, .external_lex_state = 265}, - [7090] = {.lex_state = 0, .external_lex_state = 186}, - [7091] = {.lex_state = 0, .external_lex_state = 186}, - [7092] = {.lex_state = 0, .external_lex_state = 186}, - [7093] = {.lex_state = 0, .external_lex_state = 186}, - [7094] = {.lex_state = 0, .external_lex_state = 268}, - [7095] = {.lex_state = 0, .external_lex_state = 186}, + [7062] = {.lex_state = 0, .external_lex_state = 187}, + [7063] = {.lex_state = 0, .external_lex_state = 270}, + [7064] = {.lex_state = 0, .external_lex_state = 270}, + [7065] = {.lex_state = 0, .external_lex_state = 187}, + [7066] = {.lex_state = 0, .external_lex_state = 187}, + [7067] = {.lex_state = 0, .external_lex_state = 187}, + [7068] = {.lex_state = 0, .external_lex_state = 270}, + [7069] = {.lex_state = 0, .external_lex_state = 187}, + [7070] = {.lex_state = 0, .external_lex_state = 187}, + [7071] = {.lex_state = 0, .external_lex_state = 187}, + [7072] = {.lex_state = 0, .external_lex_state = 187}, + [7073] = {.lex_state = 0, .external_lex_state = 187}, + [7074] = {.lex_state = 0, .external_lex_state = 187}, + [7075] = {.lex_state = 0, .external_lex_state = 187}, + [7076] = {.lex_state = 0, .external_lex_state = 187}, + [7077] = {.lex_state = 0, .external_lex_state = 187}, + [7078] = {.lex_state = 0, .external_lex_state = 187}, + [7079] = {.lex_state = 0, .external_lex_state = 187}, + [7080] = {.lex_state = 0, .external_lex_state = 187}, + [7081] = {.lex_state = 0, .external_lex_state = 187}, + [7082] = {.lex_state = 0, .external_lex_state = 269}, + [7083] = {.lex_state = 0, .external_lex_state = 187}, + [7084] = {.lex_state = 0, .external_lex_state = 270}, + [7085] = {.lex_state = 0, .external_lex_state = 270}, + [7086] = {.lex_state = 0, .external_lex_state = 187}, + [7087] = {.lex_state = 0, .external_lex_state = 270}, + [7088] = {.lex_state = 0, .external_lex_state = 187}, + [7089] = {.lex_state = 0, .external_lex_state = 187}, + [7090] = {.lex_state = 0, .external_lex_state = 187}, + [7091] = {.lex_state = 0, .external_lex_state = 187}, + [7092] = {.lex_state = 0, .external_lex_state = 187}, + [7093] = {.lex_state = 0, .external_lex_state = 187}, + [7094] = {.lex_state = 0, .external_lex_state = 187}, + [7095] = {.lex_state = 0, .external_lex_state = 187}, [7096] = {.lex_state = 0, .external_lex_state = 269}, - [7097] = {.lex_state = 0, .external_lex_state = 269}, - [7098] = {.lex_state = 0, .external_lex_state = 186}, - [7099] = {.lex_state = 0, .external_lex_state = 269}, - [7100] = {.lex_state = 0, .external_lex_state = 186}, - [7101] = {.lex_state = 0, .external_lex_state = 186}, - [7102] = {.lex_state = 0, .external_lex_state = 186}, - [7103] = {.lex_state = 0, .external_lex_state = 186}, - [7104] = {.lex_state = 0, .external_lex_state = 186}, - [7105] = {.lex_state = 0, .external_lex_state = 186}, - [7106] = {.lex_state = 0, .external_lex_state = 268}, - [7107] = {.lex_state = 0, .external_lex_state = 186}, - [7108] = {.lex_state = 0, .external_lex_state = 269}, + [7097] = {.lex_state = 0, .external_lex_state = 187}, + [7098] = {.lex_state = 0, .external_lex_state = 270}, + [7099] = {.lex_state = 0, .external_lex_state = 270}, + [7100] = {.lex_state = 0, .external_lex_state = 187}, + [7101] = {.lex_state = 0, .external_lex_state = 270}, + [7102] = {.lex_state = 0, .external_lex_state = 187}, + [7103] = {.lex_state = 0, .external_lex_state = 187}, + [7104] = {.lex_state = 0, .external_lex_state = 187}, + [7105] = {.lex_state = 0, .external_lex_state = 187}, + [7106] = {.lex_state = 0, .external_lex_state = 187}, + [7107] = {.lex_state = 0, .external_lex_state = 187}, + [7108] = {.lex_state = 0, .external_lex_state = 187}, [7109] = {.lex_state = 0, .external_lex_state = 269}, - [7110] = {.lex_state = 0, .external_lex_state = 186}, - [7111] = {.lex_state = 0, .external_lex_state = 269}, - [7112] = {.lex_state = 0, .external_lex_state = 186}, - [7113] = {.lex_state = 0, .external_lex_state = 186}, - [7114] = {.lex_state = 0, .external_lex_state = 186}, - [7115] = {.lex_state = 0, .external_lex_state = 186}, - [7116] = {.lex_state = 0, .external_lex_state = 186}, - [7117] = {.lex_state = 0, .external_lex_state = 186}, - [7118] = {.lex_state = 0, .external_lex_state = 268}, - [7119] = {.lex_state = 0, .external_lex_state = 186}, - [7120] = {.lex_state = 0, .external_lex_state = 269}, + [7110] = {.lex_state = 0, .external_lex_state = 260}, + [7111] = {.lex_state = 0, .external_lex_state = 270}, + [7112] = {.lex_state = 0, .external_lex_state = 270}, + [7113] = {.lex_state = 0, .external_lex_state = 187}, + [7114] = {.lex_state = 0, .external_lex_state = 270}, + [7115] = {.lex_state = 0, .external_lex_state = 187}, + [7116] = {.lex_state = 0, .external_lex_state = 187}, + [7117] = {.lex_state = 0, .external_lex_state = 187}, + [7118] = {.lex_state = 0, .external_lex_state = 187}, + [7119] = {.lex_state = 0, .external_lex_state = 187}, + [7120] = {.lex_state = 0, .external_lex_state = 187}, [7121] = {.lex_state = 0, .external_lex_state = 269}, - [7122] = {.lex_state = 0, .external_lex_state = 186}, - [7123] = {.lex_state = 0, .external_lex_state = 269}, - [7124] = {.lex_state = 0, .external_lex_state = 186}, - [7125] = {.lex_state = 0, .external_lex_state = 186}, - [7126] = {.lex_state = 0, .external_lex_state = 186}, - [7127] = {.lex_state = 0, .external_lex_state = 186}, - [7128] = {.lex_state = 0, .external_lex_state = 186}, - [7129] = {.lex_state = 0, .external_lex_state = 186}, - [7130] = {.lex_state = 0, .external_lex_state = 268}, - [7131] = {.lex_state = 0, .external_lex_state = 186}, - [7132] = {.lex_state = 0, .external_lex_state = 269}, + [7122] = {.lex_state = 0, .external_lex_state = 187}, + [7123] = {.lex_state = 0, .external_lex_state = 270}, + [7124] = {.lex_state = 0, .external_lex_state = 270}, + [7125] = {.lex_state = 0, .external_lex_state = 187}, + [7126] = {.lex_state = 0, .external_lex_state = 270}, + [7127] = {.lex_state = 0, .external_lex_state = 187}, + [7128] = {.lex_state = 0, .external_lex_state = 187}, + [7129] = {.lex_state = 0, .external_lex_state = 187}, + [7130] = {.lex_state = 0, .external_lex_state = 187}, + [7131] = {.lex_state = 0, .external_lex_state = 187}, + [7132] = {.lex_state = 0, .external_lex_state = 187}, [7133] = {.lex_state = 0, .external_lex_state = 269}, - [7134] = {.lex_state = 0, .external_lex_state = 186}, - [7135] = {.lex_state = 0, .external_lex_state = 269}, - [7136] = {.lex_state = 0, .external_lex_state = 186}, - [7137] = {.lex_state = 0, .external_lex_state = 281}, - [7138] = {.lex_state = 0, .external_lex_state = 186}, - [7139] = {.lex_state = 0, .external_lex_state = 186}, - [7140] = {.lex_state = 0, .external_lex_state = 186}, - [7141] = {.lex_state = 0, .external_lex_state = 186}, - [7142] = {.lex_state = 0, .external_lex_state = 186}, - [7143] = {.lex_state = 0, .external_lex_state = 269}, - [7144] = {.lex_state = 0, .external_lex_state = 269}, - [7145] = {.lex_state = 0, .external_lex_state = 186}, - [7146] = {.lex_state = 0, .external_lex_state = 269}, - [7147] = {.lex_state = 0, .external_lex_state = 186}, - [7148] = {.lex_state = 0, .external_lex_state = 240}, - [7149] = {.lex_state = 0, .external_lex_state = 186}, - [7150] = {.lex_state = 0, .external_lex_state = 186}, - [7151] = {.lex_state = 0, .external_lex_state = 186}, - [7152] = {.lex_state = 0, .external_lex_state = 186}, - [7153] = {.lex_state = 0, .external_lex_state = 186}, - [7154] = {.lex_state = 0, .external_lex_state = 269}, - [7155] = {.lex_state = 0, .external_lex_state = 269}, - [7156] = {.lex_state = 0, .external_lex_state = 186}, + [7134] = {.lex_state = 0, .external_lex_state = 187}, + [7135] = {.lex_state = 0, .external_lex_state = 270}, + [7136] = {.lex_state = 0, .external_lex_state = 270}, + [7137] = {.lex_state = 0, .external_lex_state = 187}, + [7138] = {.lex_state = 0, .external_lex_state = 270}, + [7139] = {.lex_state = 0, .external_lex_state = 187}, + [7140] = {.lex_state = 0, .external_lex_state = 187}, + [7141] = {.lex_state = 0, .external_lex_state = 187}, + [7142] = {.lex_state = 0, .external_lex_state = 187}, + [7143] = {.lex_state = 0, .external_lex_state = 187}, + [7144] = {.lex_state = 0, .external_lex_state = 187}, + [7145] = {.lex_state = 0, .external_lex_state = 269}, + [7146] = {.lex_state = 0, .external_lex_state = 187}, + [7147] = {.lex_state = 0, .external_lex_state = 270}, + [7148] = {.lex_state = 0, .external_lex_state = 270}, + [7149] = {.lex_state = 0, .external_lex_state = 187}, + [7150] = {.lex_state = 0, .external_lex_state = 270}, + [7151] = {.lex_state = 0, .external_lex_state = 187}, + [7152] = {.lex_state = 0, .external_lex_state = 187}, + [7153] = {.lex_state = 0, .external_lex_state = 187}, + [7154] = {.lex_state = 0, .external_lex_state = 187}, + [7155] = {.lex_state = 0, .external_lex_state = 187}, + [7156] = {.lex_state = 0, .external_lex_state = 187}, [7157] = {.lex_state = 0, .external_lex_state = 269}, - [7158] = {.lex_state = 0, .external_lex_state = 282}, - [7159] = {.lex_state = 0, .external_lex_state = 186}, - [7160] = {.lex_state = 0, .external_lex_state = 186}, - [7161] = {.lex_state = 0, .external_lex_state = 186}, - [7162] = {.lex_state = 0, .external_lex_state = 186}, - [7163] = {.lex_state = 0, .external_lex_state = 186}, - [7164] = {.lex_state = 0, .external_lex_state = 186}, - [7165] = {.lex_state = 0, .external_lex_state = 269}, - [7166] = {.lex_state = 0, .external_lex_state = 269}, - [7167] = {.lex_state = 0, .external_lex_state = 186}, - [7168] = {.lex_state = 0, .external_lex_state = 269}, - [7169] = {.lex_state = 0, .external_lex_state = 186}, - [7170] = {.lex_state = 0, .external_lex_state = 269}, - [7171] = {.lex_state = 0, .external_lex_state = 186}, - [7172] = {.lex_state = 0, .external_lex_state = 186}, - [7173] = {.lex_state = 0, .external_lex_state = 186}, - [7174] = {.lex_state = 0, .external_lex_state = 186}, - [7175] = {.lex_state = 0, .external_lex_state = 186}, - [7176] = {.lex_state = 0, .external_lex_state = 269}, - [7177] = {.lex_state = 0, .external_lex_state = 269}, - [7178] = {.lex_state = 0, .external_lex_state = 186}, - [7179] = {.lex_state = 0, .external_lex_state = 269}, - [7180] = {.lex_state = 0, .external_lex_state = 186}, - [7181] = {.lex_state = 0, .external_lex_state = 186}, - [7182] = {.lex_state = 0, .external_lex_state = 186}, - [7183] = {.lex_state = 0, .external_lex_state = 186}, - [7184] = {.lex_state = 0, .external_lex_state = 186}, - [7185] = {.lex_state = 0, .external_lex_state = 270}, + [7158] = {.lex_state = 0, .external_lex_state = 187}, + [7159] = {.lex_state = 0, .external_lex_state = 270}, + [7160] = {.lex_state = 0, .external_lex_state = 270}, + [7161] = {.lex_state = 0, .external_lex_state = 187}, + [7162] = {.lex_state = 0, .external_lex_state = 270}, + [7163] = {.lex_state = 0, .external_lex_state = 187}, + [7164] = {.lex_state = 0, .external_lex_state = 187}, + [7165] = {.lex_state = 0, .external_lex_state = 187}, + [7166] = {.lex_state = 0, .external_lex_state = 187}, + [7167] = {.lex_state = 0, .external_lex_state = 187}, + [7168] = {.lex_state = 0, .external_lex_state = 187}, + [7169] = {.lex_state = 0, .external_lex_state = 269}, + [7170] = {.lex_state = 0, .external_lex_state = 187}, + [7171] = {.lex_state = 0, .external_lex_state = 270}, + [7172] = {.lex_state = 0, .external_lex_state = 270}, + [7173] = {.lex_state = 0, .external_lex_state = 187}, + [7174] = {.lex_state = 0, .external_lex_state = 270}, + [7175] = {.lex_state = 0, .external_lex_state = 187}, + [7176] = {.lex_state = 0, .external_lex_state = 187}, + [7177] = {.lex_state = 0, .external_lex_state = 187}, + [7178] = {.lex_state = 0, .external_lex_state = 268}, + [7179] = {.lex_state = 0, .external_lex_state = 187}, + [7180] = {.lex_state = 0, .external_lex_state = 187}, + [7181] = {.lex_state = 0, .external_lex_state = 269}, + [7182] = {.lex_state = 0, .external_lex_state = 187}, + [7183] = {.lex_state = 0, .external_lex_state = 270}, + [7184] = {.lex_state = 0, .external_lex_state = 270}, + [7185] = {.lex_state = 0, .external_lex_state = 187}, [7186] = {.lex_state = 0, .external_lex_state = 270}, - [7187] = {.lex_state = 0, .external_lex_state = 269}, - [7188] = {.lex_state = 0, .external_lex_state = 269}, - [7189] = {.lex_state = 0, .external_lex_state = 283}, - [7190] = {.lex_state = 0, .external_lex_state = 269}, - [7191] = {.lex_state = 0, .external_lex_state = 186}, - [7192] = {.lex_state = 0, .external_lex_state = 186}, - [7193] = {.lex_state = 0, .external_lex_state = 186}, - [7194] = {.lex_state = 0, .external_lex_state = 186}, - [7195] = {.lex_state = 0, .external_lex_state = 186}, - [7196] = {.lex_state = 0, .external_lex_state = 186}, - [7197] = {.lex_state = 0, .external_lex_state = 186}, - [7198] = {.lex_state = 0, .external_lex_state = 269}, - [7199] = {.lex_state = 0, .external_lex_state = 269}, - [7200] = {.lex_state = 0, .external_lex_state = 186}, - [7201] = {.lex_state = 0, .external_lex_state = 269}, - [7202] = {.lex_state = 0, .external_lex_state = 270}, - [7203] = {.lex_state = 0, .external_lex_state = 186}, - [7204] = {.lex_state = 0, .external_lex_state = 186}, - [7205] = {.lex_state = 0, .external_lex_state = 186}, - [7206] = {.lex_state = 0, .external_lex_state = 270}, - [7207] = {.lex_state = 0, .external_lex_state = 186}, - [7208] = {.lex_state = 0, .external_lex_state = 186}, - [7209] = {.lex_state = 0, .external_lex_state = 269}, - [7210] = {.lex_state = 0, .external_lex_state = 269}, - [7211] = {.lex_state = 0, .external_lex_state = 186}, - [7212] = {.lex_state = 0, .external_lex_state = 269}, - [7213] = {.lex_state = 0, .external_lex_state = 186}, - [7214] = {.lex_state = 0, .external_lex_state = 186}, - [7215] = {.lex_state = 0, .external_lex_state = 263}, - [7216] = {.lex_state = 0, .external_lex_state = 186}, - [7217] = {.lex_state = 0, .external_lex_state = 186}, - [7218] = {.lex_state = 0, .external_lex_state = 186}, - [7219] = {.lex_state = 0, .external_lex_state = 186}, - [7220] = {.lex_state = 0, .external_lex_state = 269}, - [7221] = {.lex_state = 0, .external_lex_state = 269}, - [7222] = {.lex_state = 0, .external_lex_state = 186}, - [7223] = {.lex_state = 0, .external_lex_state = 269}, - [7224] = {.lex_state = 0, .external_lex_state = 228}, - [7225] = {.lex_state = 0, .external_lex_state = 256}, - [7226] = {.lex_state = 0, .external_lex_state = 186}, - [7227] = {.lex_state = 0, .external_lex_state = 186}, - [7228] = {.lex_state = 0, .external_lex_state = 186}, - [7229] = {.lex_state = 0, .external_lex_state = 186}, - [7230] = {.lex_state = 0, .external_lex_state = 186}, - [7231] = {.lex_state = 0, .external_lex_state = 269}, - [7232] = {.lex_state = 0, .external_lex_state = 269}, - [7233] = {.lex_state = 0, .external_lex_state = 186}, - [7234] = {.lex_state = 0, .external_lex_state = 269}, - [7235] = {.lex_state = 0, .external_lex_state = 186}, - [7236] = {.lex_state = 0, .external_lex_state = 186}, - [7237] = {.lex_state = 0, .external_lex_state = 186}, - [7238] = {.lex_state = 0, .external_lex_state = 270}, - [7239] = {.lex_state = 0, .external_lex_state = 186}, - [7240] = {.lex_state = 0, .external_lex_state = 186}, - [7241] = {.lex_state = 0, .external_lex_state = 186}, - [7242] = {.lex_state = 0, .external_lex_state = 269}, - [7243] = {.lex_state = 0, .external_lex_state = 269}, - [7244] = {.lex_state = 0, .external_lex_state = 186}, - [7245] = {.lex_state = 0, .external_lex_state = 269}, - [7246] = {.lex_state = 0, .external_lex_state = 186}, - [7247] = {.lex_state = 0, .external_lex_state = 186}, - [7248] = {.lex_state = 0, .external_lex_state = 186}, - [7249] = {.lex_state = 0, .external_lex_state = 186}, - [7250] = {.lex_state = 0, .external_lex_state = 186}, - [7251] = {.lex_state = 0, .external_lex_state = 186}, - [7252] = {.lex_state = 0, .external_lex_state = 186}, + [7187] = {.lex_state = 0, .external_lex_state = 187}, + [7188] = {.lex_state = 0, .external_lex_state = 187}, + [7189] = {.lex_state = 0, .external_lex_state = 187}, + [7190] = {.lex_state = 0, .external_lex_state = 187}, + [7191] = {.lex_state = 0, .external_lex_state = 187}, + [7192] = {.lex_state = 0, .external_lex_state = 187}, + [7193] = {.lex_state = 0, .external_lex_state = 269}, + [7194] = {.lex_state = 0, .external_lex_state = 187}, + [7195] = {.lex_state = 0, .external_lex_state = 270}, + [7196] = {.lex_state = 0, .external_lex_state = 270}, + [7197] = {.lex_state = 0, .external_lex_state = 187}, + [7198] = {.lex_state = 0, .external_lex_state = 270}, + [7199] = {.lex_state = 0, .external_lex_state = 187}, + [7200] = {.lex_state = 0, .external_lex_state = 187}, + [7201] = {.lex_state = 0, .external_lex_state = 187}, + [7202] = {.lex_state = 0, .external_lex_state = 187}, + [7203] = {.lex_state = 0, .external_lex_state = 187}, + [7204] = {.lex_state = 0, .external_lex_state = 187}, + [7205] = {.lex_state = 0, .external_lex_state = 269}, + [7206] = {.lex_state = 0, .external_lex_state = 187}, + [7207] = {.lex_state = 0, .external_lex_state = 270}, + [7208] = {.lex_state = 0, .external_lex_state = 270}, + [7209] = {.lex_state = 0, .external_lex_state = 187}, + [7210] = {.lex_state = 0, .external_lex_state = 270}, + [7211] = {.lex_state = 0, .external_lex_state = 187}, + [7212] = {.lex_state = 0, .external_lex_state = 187}, + [7213] = {.lex_state = 0, .external_lex_state = 187}, + [7214] = {.lex_state = 0, .external_lex_state = 187}, + [7215] = {.lex_state = 0, .external_lex_state = 187}, + [7216] = {.lex_state = 0, .external_lex_state = 187}, + [7217] = {.lex_state = 0, .external_lex_state = 269}, + [7218] = {.lex_state = 0, .external_lex_state = 273}, + [7219] = {.lex_state = 0, .external_lex_state = 270}, + [7220] = {.lex_state = 0, .external_lex_state = 270}, + [7221] = {.lex_state = 0, .external_lex_state = 187}, + [7222] = {.lex_state = 0, .external_lex_state = 270}, + [7223] = {.lex_state = 0, .external_lex_state = 187}, + [7224] = {.lex_state = 0, .external_lex_state = 187}, + [7225] = {.lex_state = 0, .external_lex_state = 187}, + [7226] = {.lex_state = 0, .external_lex_state = 187}, + [7227] = {.lex_state = 0, .external_lex_state = 187}, + [7228] = {.lex_state = 0, .external_lex_state = 187}, + [7229] = {.lex_state = 0, .external_lex_state = 269}, + [7230] = {.lex_state = 0, .external_lex_state = 187}, + [7231] = {.lex_state = 0, .external_lex_state = 270}, + [7232] = {.lex_state = 0, .external_lex_state = 270}, + [7233] = {.lex_state = 0, .external_lex_state = 187}, + [7234] = {.lex_state = 0, .external_lex_state = 270}, + [7235] = {.lex_state = 0, .external_lex_state = 187}, + [7236] = {.lex_state = 0, .external_lex_state = 187}, + [7237] = {.lex_state = 0, .external_lex_state = 187}, + [7238] = {.lex_state = 0, .external_lex_state = 273}, + [7239] = {.lex_state = 0, .external_lex_state = 187}, + [7240] = {.lex_state = 0, .external_lex_state = 187}, + [7241] = {.lex_state = 0, .external_lex_state = 269}, + [7242] = {.lex_state = 0, .external_lex_state = 277}, + [7243] = {.lex_state = 0, .external_lex_state = 270}, + [7244] = {.lex_state = 0, .external_lex_state = 270}, + [7245] = {.lex_state = 0, .external_lex_state = 187}, + [7246] = {.lex_state = 0, .external_lex_state = 270}, + [7247] = {.lex_state = 0, .external_lex_state = 187}, + [7248] = {.lex_state = 0, .external_lex_state = 187}, + [7249] = {.lex_state = 0, .external_lex_state = 187}, + [7250] = {.lex_state = 0, .external_lex_state = 273}, + [7251] = {.lex_state = 0, .external_lex_state = 187}, + [7252] = {.lex_state = 0, .external_lex_state = 187}, [7253] = {.lex_state = 0, .external_lex_state = 269}, - [7254] = {.lex_state = 0, .external_lex_state = 269}, - [7255] = {.lex_state = 0, .external_lex_state = 186}, - [7256] = {.lex_state = 0, .external_lex_state = 269}, - [7257] = {.lex_state = 0, .external_lex_state = 278}, - [7258] = {.lex_state = 0, .external_lex_state = 186}, - [7259] = {.lex_state = 0, .external_lex_state = 186}, - [7260] = {.lex_state = 0, .external_lex_state = 278}, - [7261] = {.lex_state = 0, .external_lex_state = 186}, - [7262] = {.lex_state = 0, .external_lex_state = 186}, - [7263] = {.lex_state = 0, .external_lex_state = 284}, - [7264] = {.lex_state = 0, .external_lex_state = 269}, + [7254] = {.lex_state = 0, .external_lex_state = 187}, + [7255] = {.lex_state = 0, .external_lex_state = 270}, + [7256] = {.lex_state = 0, .external_lex_state = 270}, + [7257] = {.lex_state = 0, .external_lex_state = 187}, + [7258] = {.lex_state = 0, .external_lex_state = 270}, + [7259] = {.lex_state = 0, .external_lex_state = 187}, + [7260] = {.lex_state = 0, .external_lex_state = 187}, + [7261] = {.lex_state = 0, .external_lex_state = 187}, + [7262] = {.lex_state = 0, .external_lex_state = 187}, + [7263] = {.lex_state = 0, .external_lex_state = 187}, + [7264] = {.lex_state = 0, .external_lex_state = 187}, [7265] = {.lex_state = 0, .external_lex_state = 269}, - [7266] = {.lex_state = 0, .external_lex_state = 186}, - [7267] = {.lex_state = 0, .external_lex_state = 269}, - [7268] = {.lex_state = 0, .external_lex_state = 278}, - [7269] = {.lex_state = 0, .external_lex_state = 186}, - [7270] = {.lex_state = 0, .external_lex_state = 256}, - [7271] = {.lex_state = 0, .external_lex_state = 284}, - [7272] = {.lex_state = 0, .external_lex_state = 256}, - [7273] = {.lex_state = 0, .external_lex_state = 257}, - [7274] = {.lex_state = 0, .external_lex_state = 186}, - [7275] = {.lex_state = 0, .external_lex_state = 269}, - [7276] = {.lex_state = 0, .external_lex_state = 269}, - [7277] = {.lex_state = 0, .external_lex_state = 186}, - [7278] = {.lex_state = 0, .external_lex_state = 269}, - [7279] = {.lex_state = 0, .external_lex_state = 186}, - [7280] = {.lex_state = 0, .external_lex_state = 186}, - [7281] = {.lex_state = 0, .external_lex_state = 186}, - [7282] = {.lex_state = 0, .external_lex_state = 186}, - [7283] = {.lex_state = 0, .external_lex_state = 186}, - [7284] = {.lex_state = 0, .external_lex_state = 186}, - [7285] = {.lex_state = 0, .external_lex_state = 186}, - [7286] = {.lex_state = 0, .external_lex_state = 269}, - [7287] = {.lex_state = 0, .external_lex_state = 269}, - [7288] = {.lex_state = 0, .external_lex_state = 186}, + [7266] = {.lex_state = 0, .external_lex_state = 277}, + [7267] = {.lex_state = 0, .external_lex_state = 270}, + [7268] = {.lex_state = 0, .external_lex_state = 270}, + [7269] = {.lex_state = 0, .external_lex_state = 187}, + [7270] = {.lex_state = 0, .external_lex_state = 270}, + [7271] = {.lex_state = 0, .external_lex_state = 187}, + [7272] = {.lex_state = 0, .external_lex_state = 187}, + [7273] = {.lex_state = 0, .external_lex_state = 187}, + [7274] = {.lex_state = 0, .external_lex_state = 187}, + [7275] = {.lex_state = 0, .external_lex_state = 268}, + [7276] = {.lex_state = 0, .external_lex_state = 187}, + [7277] = {.lex_state = 0, .external_lex_state = 269}, + [7278] = {.lex_state = 0, .external_lex_state = 187}, + [7279] = {.lex_state = 0, .external_lex_state = 270}, + [7280] = {.lex_state = 0, .external_lex_state = 270}, + [7281] = {.lex_state = 0, .external_lex_state = 187}, + [7282] = {.lex_state = 0, .external_lex_state = 270}, + [7283] = {.lex_state = 0, .external_lex_state = 187}, + [7284] = {.lex_state = 0, .external_lex_state = 268}, + [7285] = {.lex_state = 0, .external_lex_state = 273}, + [7286] = {.lex_state = 0, .external_lex_state = 187}, + [7287] = {.lex_state = 0, .external_lex_state = 187}, + [7288] = {.lex_state = 0, .external_lex_state = 240}, [7289] = {.lex_state = 0, .external_lex_state = 269}, - [7290] = {.lex_state = 0, .external_lex_state = 186}, - [7291] = {.lex_state = 0, .external_lex_state = 186}, - [7292] = {.lex_state = 0, .external_lex_state = 186}, - [7293] = {.lex_state = 0, .external_lex_state = 186}, - [7294] = {.lex_state = 0, .external_lex_state = 186}, - [7295] = {.lex_state = 0, .external_lex_state = 186}, - [7296] = {.lex_state = 0, .external_lex_state = 186}, - [7297] = {.lex_state = 0, .external_lex_state = 269}, - [7298] = {.lex_state = 0, .external_lex_state = 269}, - [7299] = {.lex_state = 0, .external_lex_state = 186}, - [7300] = {.lex_state = 0, .external_lex_state = 269}, - [7301] = {.lex_state = 0, .external_lex_state = 186}, - [7302] = {.lex_state = 0, .external_lex_state = 186}, - [7303] = {.lex_state = 0, .external_lex_state = 186}, - [7304] = {.lex_state = 0, .external_lex_state = 186}, - [7305] = {.lex_state = 0, .external_lex_state = 186}, - [7306] = {.lex_state = 0, .external_lex_state = 186}, - [7307] = {.lex_state = 0, .external_lex_state = 186}, - [7308] = {.lex_state = 0, .external_lex_state = 269}, - [7309] = {.lex_state = 0, .external_lex_state = 269}, - [7310] = {.lex_state = 0, .external_lex_state = 186}, - [7311] = {.lex_state = 0, .external_lex_state = 269}, - [7312] = {.lex_state = 0, .external_lex_state = 186}, - [7313] = {.lex_state = 0, .external_lex_state = 186}, - [7314] = {.lex_state = 0, .external_lex_state = 269}, - [7315] = {.lex_state = 0, .external_lex_state = 269}, - [7316] = {.lex_state = 0, .external_lex_state = 186}, - [7317] = {.lex_state = 0, .external_lex_state = 186}, - [7318] = {.lex_state = 0, .external_lex_state = 186}, - [7319] = {.lex_state = 0, .external_lex_state = 269}, - [7320] = {.lex_state = 0, .external_lex_state = 269}, - [7321] = {.lex_state = 0, .external_lex_state = 186}, - [7322] = {.lex_state = 0, .external_lex_state = 269}, - [7323] = {.lex_state = 0, .external_lex_state = 186}, - [7324] = {.lex_state = 0, .external_lex_state = 186}, - [7325] = {.lex_state = 0, .external_lex_state = 186}, - [7326] = {.lex_state = 0, .external_lex_state = 186}, - [7327] = {.lex_state = 0, .external_lex_state = 186}, - [7328] = {.lex_state = 0, .external_lex_state = 186}, - [7329] = {.lex_state = 0, .external_lex_state = 186}, - [7330] = {.lex_state = 0, .external_lex_state = 269}, - [7331] = {.lex_state = 0, .external_lex_state = 269}, - [7332] = {.lex_state = 0, .external_lex_state = 186}, - [7333] = {.lex_state = 0, .external_lex_state = 269}, - [7334] = {.lex_state = 0, .external_lex_state = 186}, - [7335] = {.lex_state = 0, .external_lex_state = 186}, - [7336] = {.lex_state = 0, .external_lex_state = 186}, - [7337] = {.lex_state = 0, .external_lex_state = 186}, - [7338] = {.lex_state = 0, .external_lex_state = 186}, - [7339] = {.lex_state = 0, .external_lex_state = 186}, - [7340] = {.lex_state = 0, .external_lex_state = 257}, - [7341] = {.lex_state = 0, .external_lex_state = 269}, - [7342] = {.lex_state = 0, .external_lex_state = 269}, - [7343] = {.lex_state = 0, .external_lex_state = 186}, - [7344] = {.lex_state = 0, .external_lex_state = 269}, - [7345] = {.lex_state = 0, .external_lex_state = 186}, - [7346] = {.lex_state = 0, .external_lex_state = 186}, - [7347] = {.lex_state = 0, .external_lex_state = 186}, - [7348] = {.lex_state = 0, .external_lex_state = 186}, - [7349] = {.lex_state = 0, .external_lex_state = 186}, - [7350] = {.lex_state = 0, .external_lex_state = 186}, - [7351] = {.lex_state = 0, .external_lex_state = 186}, - [7352] = {.lex_state = 0, .external_lex_state = 269}, - [7353] = {.lex_state = 0, .external_lex_state = 269}, - [7354] = {.lex_state = 0, .external_lex_state = 186}, - [7355] = {.lex_state = 0, .external_lex_state = 269}, - [7356] = {.lex_state = 0, .external_lex_state = 186}, - [7357] = {.lex_state = 0, .external_lex_state = 186}, - [7358] = {.lex_state = 0, .external_lex_state = 186}, - [7359] = {.lex_state = 0, .external_lex_state = 186}, - [7360] = {.lex_state = 0, .external_lex_state = 186}, - [7361] = {.lex_state = 0, .external_lex_state = 186}, - [7362] = {.lex_state = 0, .external_lex_state = 186}, - [7363] = {.lex_state = 0, .external_lex_state = 269}, - [7364] = {.lex_state = 0, .external_lex_state = 269}, - [7365] = {.lex_state = 0, .external_lex_state = 186}, - [7366] = {.lex_state = 0, .external_lex_state = 269}, - [7367] = {.lex_state = 0, .external_lex_state = 186}, - [7368] = {.lex_state = 0, .external_lex_state = 186}, - [7369] = {.lex_state = 0, .external_lex_state = 186}, - [7370] = {.lex_state = 0, .external_lex_state = 186}, - [7371] = {.lex_state = 0, .external_lex_state = 186}, - [7372] = {.lex_state = 0, .external_lex_state = 186}, - [7373] = {.lex_state = 0, .external_lex_state = 186}, - [7374] = {.lex_state = 0, .external_lex_state = 269}, - [7375] = {.lex_state = 0, .external_lex_state = 186}, - [7376] = {.lex_state = 0, .external_lex_state = 186}, - [7377] = {.lex_state = 0, .external_lex_state = 186}, - [7378] = {.lex_state = 0, .external_lex_state = 186}, - [7379] = {.lex_state = 0, .external_lex_state = 186}, - [7380] = {.lex_state = 0, .external_lex_state = 269}, - [7381] = {.lex_state = 0, .external_lex_state = 240}, - [7382] = {.lex_state = 0, .external_lex_state = 186}, - [7383] = {.lex_state = 0, .external_lex_state = 186}, - [7384] = {.lex_state = 0, .external_lex_state = 186}, - [7385] = {.lex_state = 0, .external_lex_state = 186}, - [7386] = {.lex_state = 0, .external_lex_state = 269}, - [7387] = {.lex_state = 0, .external_lex_state = 186}, - [7388] = {.lex_state = 0, .external_lex_state = 186}, - [7389] = {.lex_state = 0, .external_lex_state = 269}, - [7390] = {.lex_state = 0, .external_lex_state = 186}, - [7391] = {.lex_state = 0, .external_lex_state = 186}, - [7392] = {.lex_state = 0, .external_lex_state = 269}, - [7393] = {.lex_state = 0, .external_lex_state = 186}, - [7394] = {.lex_state = 0, .external_lex_state = 186}, - [7395] = {.lex_state = 0, .external_lex_state = 186}, - [7396] = {.lex_state = 0, .external_lex_state = 186}, - [7397] = {.lex_state = 0, .external_lex_state = 186}, - [7398] = {.lex_state = 0, .external_lex_state = 186}, - [7399] = {.lex_state = 0, .external_lex_state = 186}, - [7400] = {.lex_state = 0, .external_lex_state = 186}, - [7401] = {.lex_state = 0, .external_lex_state = 186}, - [7402] = {.lex_state = 0, .external_lex_state = 277}, - [7403] = {.lex_state = 0, .external_lex_state = 186}, - [7404] = {.lex_state = 0, .external_lex_state = 186}, - [7405] = {.lex_state = 0, .external_lex_state = 186}, - [7406] = {.lex_state = 0, .external_lex_state = 186}, - [7407] = {.lex_state = 0, .external_lex_state = 186}, - [7408] = {.lex_state = 0, .external_lex_state = 186}, - [7409] = {.lex_state = 0, .external_lex_state = 186}, - [7410] = {.lex_state = 0, .external_lex_state = 186}, - [7411] = {.lex_state = 0, .external_lex_state = 186}, - [7412] = {.lex_state = 0, .external_lex_state = 257}, - [7413] = {.lex_state = 0, .external_lex_state = 186}, - [7414] = {.lex_state = 0, .external_lex_state = 257}, - [7415] = {.lex_state = 0, .external_lex_state = 186}, - [7416] = {.lex_state = 0, .external_lex_state = 257}, - [7417] = {.lex_state = 0, .external_lex_state = 186}, + [7290] = {.lex_state = 0, .external_lex_state = 187}, + [7291] = {.lex_state = 0, .external_lex_state = 270}, + [7292] = {.lex_state = 0, .external_lex_state = 270}, + [7293] = {.lex_state = 0, .external_lex_state = 187}, + [7294] = {.lex_state = 0, .external_lex_state = 270}, + [7295] = {.lex_state = 0, .external_lex_state = 187}, + [7296] = {.lex_state = 0, .external_lex_state = 187}, + [7297] = {.lex_state = 0, .external_lex_state = 187}, + [7298] = {.lex_state = 0, .external_lex_state = 187}, + [7299] = {.lex_state = 0, .external_lex_state = 259}, + [7300] = {.lex_state = 0, .external_lex_state = 187}, + [7301] = {.lex_state = 0, .external_lex_state = 269}, + [7302] = {.lex_state = 0, .external_lex_state = 187}, + [7303] = {.lex_state = 0, .external_lex_state = 270}, + [7304] = {.lex_state = 0, .external_lex_state = 270}, + [7305] = {.lex_state = 0, .external_lex_state = 187}, + [7306] = {.lex_state = 0, .external_lex_state = 270}, + [7307] = {.lex_state = 0, .external_lex_state = 187}, + [7308] = {.lex_state = 0, .external_lex_state = 187}, + [7309] = {.lex_state = 0, .external_lex_state = 187}, + [7310] = {.lex_state = 0, .external_lex_state = 187}, + [7311] = {.lex_state = 0, .external_lex_state = 187}, + [7312] = {.lex_state = 0, .external_lex_state = 187}, + [7313] = {.lex_state = 0, .external_lex_state = 269}, + [7314] = {.lex_state = 0, .external_lex_state = 268}, + [7315] = {.lex_state = 0, .external_lex_state = 270}, + [7316] = {.lex_state = 0, .external_lex_state = 270}, + [7317] = {.lex_state = 0, .external_lex_state = 187}, + [7318] = {.lex_state = 0, .external_lex_state = 270}, + [7319] = {.lex_state = 0, .external_lex_state = 187}, + [7320] = {.lex_state = 0, .external_lex_state = 187}, + [7321] = {.lex_state = 0, .external_lex_state = 187}, + [7322] = {.lex_state = 0, .external_lex_state = 187}, + [7323] = {.lex_state = 0, .external_lex_state = 187}, + [7324] = {.lex_state = 0, .external_lex_state = 187}, + [7325] = {.lex_state = 0, .external_lex_state = 269}, + [7326] = {.lex_state = 0, .external_lex_state = 187}, + [7327] = {.lex_state = 0, .external_lex_state = 270}, + [7328] = {.lex_state = 0, .external_lex_state = 270}, + [7329] = {.lex_state = 0, .external_lex_state = 259}, + [7330] = {.lex_state = 0, .external_lex_state = 270}, + [7331] = {.lex_state = 0, .external_lex_state = 187}, + [7332] = {.lex_state = 0, .external_lex_state = 187}, + [7333] = {.lex_state = 0, .external_lex_state = 187}, + [7334] = {.lex_state = 0, .external_lex_state = 187}, + [7335] = {.lex_state = 0, .external_lex_state = 259}, + [7336] = {.lex_state = 0, .external_lex_state = 187}, + [7337] = {.lex_state = 0, .external_lex_state = 269}, + [7338] = {.lex_state = 0, .external_lex_state = 255}, + [7339] = {.lex_state = 0, .external_lex_state = 270}, + [7340] = {.lex_state = 0, .external_lex_state = 270}, + [7341] = {.lex_state = 0, .external_lex_state = 187}, + [7342] = {.lex_state = 0, .external_lex_state = 270}, + [7343] = {.lex_state = 0, .external_lex_state = 187}, + [7344] = {.lex_state = 0, .external_lex_state = 187}, + [7345] = {.lex_state = 0, .external_lex_state = 187}, + [7346] = {.lex_state = 0, .external_lex_state = 187}, + [7347] = {.lex_state = 0, .external_lex_state = 187}, + [7348] = {.lex_state = 0, .external_lex_state = 187}, + [7349] = {.lex_state = 0, .external_lex_state = 269}, + [7350] = {.lex_state = 0, .external_lex_state = 187}, + [7351] = {.lex_state = 0, .external_lex_state = 270}, + [7352] = {.lex_state = 0, .external_lex_state = 270}, + [7353] = {.lex_state = 0, .external_lex_state = 187}, + [7354] = {.lex_state = 0, .external_lex_state = 270}, + [7355] = {.lex_state = 0, .external_lex_state = 187}, + [7356] = {.lex_state = 0, .external_lex_state = 187}, + [7357] = {.lex_state = 0, .external_lex_state = 187}, + [7358] = {.lex_state = 0, .external_lex_state = 187}, + [7359] = {.lex_state = 0, .external_lex_state = 187}, + [7360] = {.lex_state = 0, .external_lex_state = 187}, + [7361] = {.lex_state = 0, .external_lex_state = 187}, + [7362] = {.lex_state = 0, .external_lex_state = 270}, + [7363] = {.lex_state = 0, .external_lex_state = 270}, + [7364] = {.lex_state = 0, .external_lex_state = 187}, + [7365] = {.lex_state = 0, .external_lex_state = 270}, + [7366] = {.lex_state = 0, .external_lex_state = 187}, + [7367] = {.lex_state = 0, .external_lex_state = 187}, + [7368] = {.lex_state = 0, .external_lex_state = 187}, + [7369] = {.lex_state = 0, .external_lex_state = 187}, + [7370] = {.lex_state = 0, .external_lex_state = 187}, + [7371] = {.lex_state = 0, .external_lex_state = 187}, + [7372] = {.lex_state = 0, .external_lex_state = 187}, + [7373] = {.lex_state = 0, .external_lex_state = 270}, + [7374] = {.lex_state = 0, .external_lex_state = 270}, + [7375] = {.lex_state = 0, .external_lex_state = 187}, + [7376] = {.lex_state = 0, .external_lex_state = 270}, + [7377] = {.lex_state = 0, .external_lex_state = 187}, + [7378] = {.lex_state = 0, .external_lex_state = 187}, + [7379] = {.lex_state = 0, .external_lex_state = 187}, + [7380] = {.lex_state = 0, .external_lex_state = 187}, + [7381] = {.lex_state = 0, .external_lex_state = 187}, + [7382] = {.lex_state = 0, .external_lex_state = 187}, + [7383] = {.lex_state = 0, .external_lex_state = 187}, + [7384] = {.lex_state = 0, .external_lex_state = 270}, + [7385] = {.lex_state = 0, .external_lex_state = 270}, + [7386] = {.lex_state = 0, .external_lex_state = 187}, + [7387] = {.lex_state = 0, .external_lex_state = 270}, + [7388] = {.lex_state = 0, .external_lex_state = 187}, + [7389] = {.lex_state = 0, .external_lex_state = 187}, + [7390] = {.lex_state = 0, .external_lex_state = 187}, + [7391] = {.lex_state = 0, .external_lex_state = 187}, + [7392] = {.lex_state = 0, .external_lex_state = 187}, + [7393] = {.lex_state = 0, .external_lex_state = 187}, + [7394] = {.lex_state = 0, .external_lex_state = 187}, + [7395] = {.lex_state = 0, .external_lex_state = 270}, + [7396] = {.lex_state = 0, .external_lex_state = 270}, + [7397] = {.lex_state = 0, .external_lex_state = 187}, + [7398] = {.lex_state = 0, .external_lex_state = 270}, + [7399] = {.lex_state = 0, .external_lex_state = 187}, + [7400] = {.lex_state = 0, .external_lex_state = 187}, + [7401] = {.lex_state = 0, .external_lex_state = 187}, + [7402] = {.lex_state = 0, .external_lex_state = 270}, + [7403] = {.lex_state = 0, .external_lex_state = 187}, + [7404] = {.lex_state = 0, .external_lex_state = 187}, + [7405] = {.lex_state = 0, .external_lex_state = 270}, + [7406] = {.lex_state = 0, .external_lex_state = 270}, + [7407] = {.lex_state = 0, .external_lex_state = 270}, + [7408] = {.lex_state = 0, .external_lex_state = 187}, + [7409] = {.lex_state = 0, .external_lex_state = 270}, + [7410] = {.lex_state = 0, .external_lex_state = 187}, + [7411] = {.lex_state = 0, .external_lex_state = 187}, + [7412] = {.lex_state = 0, .external_lex_state = 187}, + [7413] = {.lex_state = 0, .external_lex_state = 187}, + [7414] = {.lex_state = 0, .external_lex_state = 187}, + [7415] = {.lex_state = 0, .external_lex_state = 187}, + [7416] = {.lex_state = 0, .external_lex_state = 187}, + [7417] = {.lex_state = 0, .external_lex_state = 270}, [7418] = {.lex_state = 0, .external_lex_state = 270}, - [7419] = {.lex_state = 0, .external_lex_state = 186}, - [7420] = {.lex_state = 0, .external_lex_state = 275}, - [7421] = {.lex_state = 0, .external_lex_state = 268}, - [7422] = {.lex_state = 0, .external_lex_state = 186}, - [7423] = {.lex_state = 0, .external_lex_state = 186}, - [7424] = {.lex_state = 0, .external_lex_state = 186}, - [7425] = {.lex_state = 0, .external_lex_state = 186}, - [7426] = {.lex_state = 0, .external_lex_state = 277}, - [7427] = {.lex_state = 0, .external_lex_state = 186}, + [7419] = {.lex_state = 0, .external_lex_state = 187}, + [7420] = {.lex_state = 0, .external_lex_state = 270}, + [7421] = {.lex_state = 0, .external_lex_state = 187}, + [7422] = {.lex_state = 0, .external_lex_state = 187}, + [7423] = {.lex_state = 0, .external_lex_state = 187}, + [7424] = {.lex_state = 0, .external_lex_state = 187}, + [7425] = {.lex_state = 0, .external_lex_state = 187}, + [7426] = {.lex_state = 0, .external_lex_state = 187}, + [7427] = {.lex_state = 0, .external_lex_state = 240}, [7428] = {.lex_state = 0, .external_lex_state = 270}, - [7429] = {.lex_state = 0, .external_lex_state = 186}, - [7430] = {.lex_state = 0, .external_lex_state = 270}, - [7431] = {.lex_state = 0, .external_lex_state = 186}, - [7432] = {.lex_state = 0, .external_lex_state = 186}, - [7433] = {.lex_state = 0, .external_lex_state = 186}, - [7434] = {.lex_state = 0, .external_lex_state = 228}, - [7435] = {.lex_state = 0, .external_lex_state = 186}, - [7436] = {.lex_state = 0, .external_lex_state = 186}, - [7437] = {.lex_state = 0, .external_lex_state = 186}, - [7438] = {.lex_state = 0, .external_lex_state = 257}, - [7439] = {.lex_state = 0, .external_lex_state = 186}, - [7440] = {.lex_state = 0, .external_lex_state = 186}, - [7441] = {.lex_state = 0, .external_lex_state = 186}, - [7442] = {.lex_state = 0, .external_lex_state = 282}, - [7443] = {.lex_state = 0, .external_lex_state = 186}, - [7444] = {.lex_state = 0, .external_lex_state = 186}, - [7445] = {.lex_state = 0, .external_lex_state = 186}, - [7446] = {.lex_state = 0, .external_lex_state = 186}, - [7447] = {.lex_state = 0, .external_lex_state = 186}, - [7448] = {.lex_state = 0, .external_lex_state = 186}, - [7449] = {.lex_state = 0, .external_lex_state = 285}, - [7450] = {.lex_state = 0, .external_lex_state = 186}, - [7451] = {.lex_state = 0, .external_lex_state = 186}, - [7452] = {.lex_state = 0, .external_lex_state = 186}, - [7453] = {.lex_state = 0, .external_lex_state = 186}, - [7454] = {.lex_state = 0, .external_lex_state = 186}, - [7455] = {.lex_state = 0, .external_lex_state = 186}, - [7456] = {.lex_state = 0, .external_lex_state = 186}, - [7457] = {.lex_state = 0, .external_lex_state = 186}, - [7458] = {.lex_state = 0, .external_lex_state = 186}, - [7459] = {.lex_state = 0, .external_lex_state = 278}, - [7460] = {.lex_state = 0, .external_lex_state = 278}, - [7461] = {.lex_state = 0, .external_lex_state = 186}, - [7462] = {.lex_state = 0, .external_lex_state = 228}, - [7463] = {.lex_state = 0, .external_lex_state = 228}, - [7464] = {.lex_state = 0, .external_lex_state = 186}, - [7465] = {.lex_state = 0, .external_lex_state = 279}, - [7466] = {.lex_state = 0, .external_lex_state = 186}, - [7467] = {.lex_state = 0, .external_lex_state = 186}, - [7468] = {.lex_state = 0, .external_lex_state = 186}, - [7469] = {.lex_state = 0, .external_lex_state = 186}, - [7470] = {.lex_state = 0, .external_lex_state = 186}, - [7471] = {.lex_state = 0, .external_lex_state = 279}, - [7472] = {.lex_state = 0, .external_lex_state = 186}, - [7473] = {.lex_state = 0, .external_lex_state = 186}, - [7474] = {.lex_state = 0, .external_lex_state = 186}, - [7475] = {.lex_state = 0, .external_lex_state = 186}, - [7476] = {.lex_state = 0, .external_lex_state = 186}, - [7477] = {.lex_state = 0, .external_lex_state = 186}, - [7478] = {.lex_state = 0, .external_lex_state = 186}, - [7479] = {.lex_state = 0, .external_lex_state = 186}, - [7480] = {.lex_state = 0, .external_lex_state = 186}, - [7481] = {.lex_state = 0, .external_lex_state = 186}, - [7482] = {.lex_state = 0, .external_lex_state = 186}, - [7483] = {.lex_state = 0, .external_lex_state = 186}, - [7484] = {.lex_state = 0, .external_lex_state = 186}, - [7485] = {.lex_state = 0, .external_lex_state = 186}, - [7486] = {.lex_state = 0, .external_lex_state = 186}, - [7487] = {.lex_state = 0, .external_lex_state = 186}, - [7488] = {.lex_state = 0, .external_lex_state = 186}, - [7489] = {.lex_state = 0, .external_lex_state = 186}, - [7490] = {.lex_state = 0, .external_lex_state = 186}, - [7491] = {.lex_state = 0, .external_lex_state = 277}, - [7492] = {.lex_state = 0, .external_lex_state = 186}, - [7493] = {.lex_state = 0, .external_lex_state = 186}, - [7494] = {.lex_state = 0, .external_lex_state = 278}, - [7495] = {.lex_state = 0, .external_lex_state = 186}, - [7496] = {.lex_state = 0, .external_lex_state = 186}, - [7497] = {.lex_state = 0, .external_lex_state = 186}, - [7498] = {.lex_state = 0, .external_lex_state = 186}, - [7499] = {.lex_state = 0, .external_lex_state = 228}, - [7500] = {.lex_state = 0, .external_lex_state = 186}, - [7501] = {.lex_state = 0, .external_lex_state = 228}, - [7502] = {.lex_state = 0, .external_lex_state = 186}, - [7503] = {.lex_state = 0, .external_lex_state = 186}, - [7504] = {.lex_state = 0, .external_lex_state = 186}, - [7505] = {.lex_state = 0, .external_lex_state = 186}, - [7506] = {.lex_state = 0, .external_lex_state = 282}, - [7507] = {.lex_state = 0, .external_lex_state = 186}, - [7508] = {.lex_state = 0, .external_lex_state = 186}, - [7509] = {.lex_state = 0, .external_lex_state = 270}, - [7510] = {.lex_state = 0, .external_lex_state = 186}, - [7511] = {.lex_state = 0, .external_lex_state = 186}, - [7512] = {.lex_state = 0, .external_lex_state = 186}, - [7513] = {.lex_state = 0, .external_lex_state = 186}, - [7514] = {.lex_state = 0, .external_lex_state = 186}, - [7515] = {.lex_state = 0, .external_lex_state = 186}, - [7516] = {.lex_state = 0, .external_lex_state = 186}, - [7517] = {.lex_state = 0, .external_lex_state = 186}, - [7518] = {.lex_state = 0, .external_lex_state = 186}, - [7519] = {.lex_state = 0, .external_lex_state = 186}, - [7520] = {.lex_state = 0, .external_lex_state = 186}, - [7521] = {.lex_state = 0, .external_lex_state = 186}, - [7522] = {.lex_state = 0, .external_lex_state = 186}, - [7523] = {.lex_state = 0, .external_lex_state = 186}, - [7524] = {.lex_state = 0, .external_lex_state = 186}, - [7525] = {.lex_state = 0, .external_lex_state = 186}, - [7526] = {.lex_state = 0, .external_lex_state = 228}, - [7527] = {.lex_state = 0, .external_lex_state = 228}, - [7528] = {.lex_state = 0, .external_lex_state = 186}, - [7529] = {.lex_state = 0, .external_lex_state = 186}, - [7530] = {.lex_state = 0, .external_lex_state = 186}, - [7531] = {.lex_state = 0, .external_lex_state = 186}, - [7532] = {.lex_state = 0, .external_lex_state = 186}, - [7533] = {.lex_state = 0, .external_lex_state = 240}, - [7534] = {.lex_state = 0, .external_lex_state = 186}, - [7535] = {.lex_state = 0, .external_lex_state = 186}, - [7536] = {.lex_state = 0, .external_lex_state = 186}, - [7537] = {.lex_state = 0, .external_lex_state = 186}, - [7538] = {.lex_state = 0, .external_lex_state = 186}, - [7539] = {.lex_state = 0, .external_lex_state = 186}, - [7540] = {.lex_state = 0, .external_lex_state = 186}, - [7541] = {.lex_state = 0, .external_lex_state = 186}, - [7542] = {.lex_state = 0, .external_lex_state = 186}, - [7543] = {.lex_state = 0, .external_lex_state = 186}, - [7544] = {.lex_state = 0, .external_lex_state = 186}, - [7545] = {.lex_state = 0, .external_lex_state = 186}, - [7546] = {.lex_state = 0, .external_lex_state = 186}, - [7547] = {.lex_state = 0, .external_lex_state = 186}, - [7548] = {.lex_state = 0, .external_lex_state = 186}, - [7549] = {.lex_state = 0, .external_lex_state = 186}, - [7550] = {.lex_state = 0, .external_lex_state = 186}, - [7551] = {.lex_state = 0, .external_lex_state = 277}, - [7552] = {.lex_state = 0, .external_lex_state = 186}, - [7553] = {.lex_state = 0, .external_lex_state = 186}, - [7554] = {.lex_state = 0, .external_lex_state = 186}, - [7555] = {.lex_state = 0, .external_lex_state = 186}, - [7556] = {.lex_state = 0, .external_lex_state = 186}, - [7557] = {.lex_state = 0, .external_lex_state = 186}, - [7558] = {.lex_state = 0, .external_lex_state = 186}, - [7559] = {.lex_state = 0, .external_lex_state = 228}, - [7560] = {.lex_state = 0, .external_lex_state = 186}, - [7561] = {.lex_state = 0, .external_lex_state = 186}, - [7562] = {.lex_state = 0, .external_lex_state = 186}, - [7563] = {.lex_state = 0, .external_lex_state = 279}, - [7564] = {.lex_state = 0, .external_lex_state = 186}, - [7565] = {.lex_state = 0, .external_lex_state = 282}, - [7566] = {.lex_state = 0, .external_lex_state = 186}, - [7567] = {.lex_state = 0, .external_lex_state = 186}, - [7568] = {.lex_state = 0, .external_lex_state = 186}, - [7569] = {.lex_state = 0, .external_lex_state = 186}, - [7570] = {.lex_state = 0, .external_lex_state = 186}, - [7571] = {.lex_state = 0, .external_lex_state = 186}, - [7572] = {.lex_state = 0, .external_lex_state = 186}, - [7573] = {.lex_state = 0, .external_lex_state = 186}, - [7574] = {.lex_state = 0, .external_lex_state = 186}, - [7575] = {.lex_state = 0, .external_lex_state = 286}, - [7576] = {.lex_state = 0, .external_lex_state = 186}, - [7577] = {.lex_state = 0, .external_lex_state = 186}, - [7578] = {.lex_state = 0, .external_lex_state = 186}, - [7579] = {.lex_state = 0, .external_lex_state = 186}, - [7580] = {.lex_state = 0, .external_lex_state = 228}, - [7581] = {.lex_state = 0, .external_lex_state = 228}, - [7582] = {.lex_state = 0, .external_lex_state = 186}, - [7583] = {.lex_state = 0, .external_lex_state = 186}, - [7584] = {.lex_state = 0, .external_lex_state = 270}, + [7429] = {.lex_state = 0, .external_lex_state = 270}, + [7430] = {.lex_state = 0, .external_lex_state = 187}, + [7431] = {.lex_state = 0, .external_lex_state = 270}, + [7432] = {.lex_state = 0, .external_lex_state = 187}, + [7433] = {.lex_state = 0, .external_lex_state = 187}, + [7434] = {.lex_state = 0, .external_lex_state = 187}, + [7435] = {.lex_state = 0, .external_lex_state = 187}, + [7436] = {.lex_state = 0, .external_lex_state = 187}, + [7437] = {.lex_state = 0, .external_lex_state = 187}, + [7438] = {.lex_state = 0, .external_lex_state = 187}, + [7439] = {.lex_state = 0, .external_lex_state = 270}, + [7440] = {.lex_state = 0, .external_lex_state = 270}, + [7441] = {.lex_state = 0, .external_lex_state = 187}, + [7442] = {.lex_state = 0, .external_lex_state = 270}, + [7443] = {.lex_state = 0, .external_lex_state = 187}, + [7444] = {.lex_state = 0, .external_lex_state = 187}, + [7445] = {.lex_state = 0, .external_lex_state = 187}, + [7446] = {.lex_state = 0, .external_lex_state = 268}, + [7447] = {.lex_state = 0, .external_lex_state = 187}, + [7448] = {.lex_state = 0, .external_lex_state = 187}, + [7449] = {.lex_state = 0, .external_lex_state = 187}, + [7450] = {.lex_state = 0, .external_lex_state = 270}, + [7451] = {.lex_state = 0, .external_lex_state = 270}, + [7452] = {.lex_state = 0, .external_lex_state = 187}, + [7453] = {.lex_state = 0, .external_lex_state = 270}, + [7454] = {.lex_state = 0, .external_lex_state = 187}, + [7455] = {.lex_state = 0, .external_lex_state = 187}, + [7456] = {.lex_state = 0, .external_lex_state = 187}, + [7457] = {.lex_state = 0, .external_lex_state = 268}, + [7458] = {.lex_state = 0, .external_lex_state = 187}, + [7459] = {.lex_state = 0, .external_lex_state = 187}, + [7460] = {.lex_state = 0, .external_lex_state = 187}, + [7461] = {.lex_state = 0, .external_lex_state = 270}, + [7462] = {.lex_state = 0, .external_lex_state = 270}, + [7463] = {.lex_state = 0, .external_lex_state = 187}, + [7464] = {.lex_state = 0, .external_lex_state = 270}, + [7465] = {.lex_state = 0, .external_lex_state = 187}, + [7466] = {.lex_state = 0, .external_lex_state = 187}, + [7467] = {.lex_state = 0, .external_lex_state = 187}, + [7468] = {.lex_state = 0, .external_lex_state = 255}, + [7469] = {.lex_state = 0, .external_lex_state = 187}, + [7470] = {.lex_state = 0, .external_lex_state = 187}, + [7471] = {.lex_state = 0, .external_lex_state = 187}, + [7472] = {.lex_state = 0, .external_lex_state = 270}, + [7473] = {.lex_state = 0, .external_lex_state = 270}, + [7474] = {.lex_state = 0, .external_lex_state = 187}, + [7475] = {.lex_state = 0, .external_lex_state = 270}, + [7476] = {.lex_state = 0, .external_lex_state = 187}, + [7477] = {.lex_state = 0, .external_lex_state = 187}, + [7478] = {.lex_state = 0, .external_lex_state = 187}, + [7479] = {.lex_state = 0, .external_lex_state = 240}, + [7480] = {.lex_state = 0, .external_lex_state = 240}, + [7481] = {.lex_state = 0, .external_lex_state = 187}, + [7482] = {.lex_state = 0, .external_lex_state = 187}, + [7483] = {.lex_state = 0, .external_lex_state = 270}, + [7484] = {.lex_state = 0, .external_lex_state = 270}, + [7485] = {.lex_state = 0, .external_lex_state = 187}, + [7486] = {.lex_state = 0, .external_lex_state = 270}, + [7487] = {.lex_state = 0, .external_lex_state = 187}, + [7488] = {.lex_state = 0, .external_lex_state = 187}, + [7489] = {.lex_state = 0, .external_lex_state = 187}, + [7490] = {.lex_state = 0, .external_lex_state = 223}, + [7491] = {.lex_state = 0, .external_lex_state = 187}, + [7492] = {.lex_state = 0, .external_lex_state = 187}, + [7493] = {.lex_state = 0, .external_lex_state = 276}, + [7494] = {.lex_state = 0, .external_lex_state = 270}, + [7495] = {.lex_state = 0, .external_lex_state = 270}, + [7496] = {.lex_state = 0, .external_lex_state = 187}, + [7497] = {.lex_state = 0, .external_lex_state = 270}, + [7498] = {.lex_state = 0, .external_lex_state = 187}, + [7499] = {.lex_state = 0, .external_lex_state = 187}, + [7500] = {.lex_state = 0, .external_lex_state = 187}, + [7501] = {.lex_state = 0, .external_lex_state = 187}, + [7502] = {.lex_state = 0, .external_lex_state = 187}, + [7503] = {.lex_state = 0, .external_lex_state = 187}, + [7504] = {.lex_state = 0, .external_lex_state = 187}, + [7505] = {.lex_state = 0, .external_lex_state = 270}, + [7506] = {.lex_state = 0, .external_lex_state = 270}, + [7507] = {.lex_state = 0, .external_lex_state = 187}, + [7508] = {.lex_state = 0, .external_lex_state = 270}, + [7509] = {.lex_state = 0, .external_lex_state = 187}, + [7510] = {.lex_state = 0, .external_lex_state = 187}, + [7511] = {.lex_state = 0, .external_lex_state = 187}, + [7512] = {.lex_state = 0, .external_lex_state = 187}, + [7513] = {.lex_state = 0, .external_lex_state = 187}, + [7514] = {.lex_state = 0, .external_lex_state = 187}, + [7515] = {.lex_state = 0, .external_lex_state = 240}, + [7516] = {.lex_state = 0, .external_lex_state = 270}, + [7517] = {.lex_state = 0, .external_lex_state = 270}, + [7518] = {.lex_state = 0, .external_lex_state = 187}, + [7519] = {.lex_state = 0, .external_lex_state = 270}, + [7520] = {.lex_state = 0, .external_lex_state = 187}, + [7521] = {.lex_state = 0, .external_lex_state = 187}, + [7522] = {.lex_state = 0, .external_lex_state = 268}, + [7523] = {.lex_state = 0, .external_lex_state = 187}, + [7524] = {.lex_state = 0, .external_lex_state = 187}, + [7525] = {.lex_state = 0, .external_lex_state = 187}, + [7526] = {.lex_state = 0, .external_lex_state = 187}, + [7527] = {.lex_state = 0, .external_lex_state = 270}, + [7528] = {.lex_state = 0, .external_lex_state = 270}, + [7529] = {.lex_state = 0, .external_lex_state = 187}, + [7530] = {.lex_state = 0, .external_lex_state = 270}, + [7531] = {.lex_state = 0, .external_lex_state = 268}, + [7532] = {.lex_state = 0, .external_lex_state = 187}, + [7533] = {.lex_state = 0, .external_lex_state = 187}, + [7534] = {.lex_state = 0, .external_lex_state = 187}, + [7535] = {.lex_state = 0, .external_lex_state = 187}, + [7536] = {.lex_state = 0, .external_lex_state = 187}, + [7537] = {.lex_state = 0, .external_lex_state = 187}, + [7538] = {.lex_state = 0, .external_lex_state = 270}, + [7539] = {.lex_state = 0, .external_lex_state = 270}, + [7540] = {.lex_state = 0, .external_lex_state = 187}, + [7541] = {.lex_state = 0, .external_lex_state = 270}, + [7542] = {.lex_state = 0, .external_lex_state = 187}, + [7543] = {.lex_state = 0, .external_lex_state = 187}, + [7544] = {.lex_state = 0, .external_lex_state = 187}, + [7545] = {.lex_state = 0, .external_lex_state = 187}, + [7546] = {.lex_state = 0, .external_lex_state = 268}, + [7547] = {.lex_state = 0, .external_lex_state = 187}, + [7548] = {.lex_state = 0, .external_lex_state = 187}, + [7549] = {.lex_state = 0, .external_lex_state = 270}, + [7550] = {.lex_state = 0, .external_lex_state = 270}, + [7551] = {.lex_state = 0, .external_lex_state = 187}, + [7552] = {.lex_state = 0, .external_lex_state = 270}, + [7553] = {.lex_state = 0, .external_lex_state = 278}, + [7554] = {.lex_state = 0, .external_lex_state = 187}, + [7555] = {.lex_state = 0, .external_lex_state = 187}, + [7556] = {.lex_state = 0, .external_lex_state = 187}, + [7557] = {.lex_state = 0, .external_lex_state = 187}, + [7558] = {.lex_state = 0, .external_lex_state = 187}, + [7559] = {.lex_state = 0, .external_lex_state = 240}, + [7560] = {.lex_state = 0, .external_lex_state = 270}, + [7561] = {.lex_state = 0, .external_lex_state = 270}, + [7562] = {.lex_state = 0, .external_lex_state = 187}, + [7563] = {.lex_state = 0, .external_lex_state = 270}, + [7564] = {.lex_state = 0, .external_lex_state = 187}, + [7565] = {.lex_state = 0, .external_lex_state = 260}, + [7566] = {.lex_state = 0, .external_lex_state = 187}, + [7567] = {.lex_state = 0, .external_lex_state = 187}, + [7568] = {.lex_state = 0, .external_lex_state = 187}, + [7569] = {.lex_state = 0, .external_lex_state = 187}, + [7570] = {.lex_state = 0, .external_lex_state = 187}, + [7571] = {.lex_state = 0, .external_lex_state = 270}, + [7572] = {.lex_state = 0, .external_lex_state = 270}, + [7573] = {.lex_state = 0, .external_lex_state = 187}, + [7574] = {.lex_state = 0, .external_lex_state = 270}, + [7575] = {.lex_state = 0, .external_lex_state = 187}, + [7576] = {.lex_state = 0, .external_lex_state = 187}, + [7577] = {.lex_state = 0, .external_lex_state = 268}, + [7578] = {.lex_state = 0, .external_lex_state = 187}, + [7579] = {.lex_state = 0, .external_lex_state = 187}, + [7580] = {.lex_state = 0, .external_lex_state = 223}, + [7581] = {.lex_state = 0, .external_lex_state = 187}, + [7582] = {.lex_state = 0, .external_lex_state = 270}, + [7583] = {.lex_state = 0, .external_lex_state = 270}, + [7584] = {.lex_state = 0, .external_lex_state = 187}, [7585] = {.lex_state = 0, .external_lex_state = 270}, - [7586] = {.lex_state = 0, .external_lex_state = 186}, - [7587] = {.lex_state = 0, .external_lex_state = 275}, - [7588] = {.lex_state = 0, .external_lex_state = 186}, - [7589] = {.lex_state = 0, .external_lex_state = 186}, - [7590] = {.lex_state = 0, .external_lex_state = 186}, - [7591] = {.lex_state = 0, .external_lex_state = 186}, - [7592] = {.lex_state = 0, .external_lex_state = 186}, - [7593] = {.lex_state = 0, .external_lex_state = 186}, - [7594] = {.lex_state = 0, .external_lex_state = 186}, - [7595] = {.lex_state = 0, .external_lex_state = 186}, - [7596] = {.lex_state = 0, .external_lex_state = 186}, - [7597] = {.lex_state = 0, .external_lex_state = 186}, - [7598] = {.lex_state = 0, .external_lex_state = 186}, + [7586] = {.lex_state = 0, .external_lex_state = 187}, + [7587] = {.lex_state = 0, .external_lex_state = 187}, + [7588] = {.lex_state = 0, .external_lex_state = 187}, + [7589] = {.lex_state = 0, .external_lex_state = 187}, + [7590] = {.lex_state = 0, .external_lex_state = 260}, + [7591] = {.lex_state = 0, .external_lex_state = 187}, + [7592] = {.lex_state = 0, .external_lex_state = 187}, + [7593] = {.lex_state = 0, .external_lex_state = 270}, + [7594] = {.lex_state = 0, .external_lex_state = 187}, + [7595] = {.lex_state = 0, .external_lex_state = 187}, + [7596] = {.lex_state = 0, .external_lex_state = 187}, + [7597] = {.lex_state = 0, .external_lex_state = 187}, + [7598] = {.lex_state = 0, .external_lex_state = 187}, [7599] = {.lex_state = 0, .external_lex_state = 270}, - [7600] = {.lex_state = 0, .external_lex_state = 228}, - [7601] = {.lex_state = 0, .external_lex_state = 186}, - [7602] = {.lex_state = 0, .external_lex_state = 186}, - [7603] = {.lex_state = 0, .external_lex_state = 282}, - [7604] = {.lex_state = 0, .external_lex_state = 186}, - [7605] = {.lex_state = 0, .external_lex_state = 186}, - [7606] = {.lex_state = 0, .external_lex_state = 186}, - [7607] = {.lex_state = 0, .external_lex_state = 186}, - [7608] = {.lex_state = 0, .external_lex_state = 186}, - [7609] = {.lex_state = 0, .external_lex_state = 186}, - [7610] = {.lex_state = 0, .external_lex_state = 186}, - [7611] = {.lex_state = 0, .external_lex_state = 186}, - [7612] = {.lex_state = 0, .external_lex_state = 228}, - [7613] = {.lex_state = 0, .external_lex_state = 228}, - [7614] = {.lex_state = 0, .external_lex_state = 228}, - [7615] = {.lex_state = 0, .external_lex_state = 186}, - [7616] = {.lex_state = 0, .external_lex_state = 240}, - [7617] = {.lex_state = 0, .external_lex_state = 186}, - [7618] = {.lex_state = 0, .external_lex_state = 186}, - [7619] = {.lex_state = 0, .external_lex_state = 186}, - [7620] = {.lex_state = 0, .external_lex_state = 186}, - [7621] = {.lex_state = 0, .external_lex_state = 186}, - [7622] = {.lex_state = 0, .external_lex_state = 186}, - [7623] = {.lex_state = 0, .external_lex_state = 186}, - [7624] = {.lex_state = 0, .external_lex_state = 186}, - [7625] = {.lex_state = 0, .external_lex_state = 186}, - [7626] = {.lex_state = 0, .external_lex_state = 228}, - [7627] = {.lex_state = 0, .external_lex_state = 186}, - [7628] = {.lex_state = 0, .external_lex_state = 282}, - [7629] = {.lex_state = 0, .external_lex_state = 186}, - [7630] = {.lex_state = 0, .external_lex_state = 186}, - [7631] = {.lex_state = 0, .external_lex_state = 186}, - [7632] = {.lex_state = 0, .external_lex_state = 186}, - [7633] = {.lex_state = 0, .external_lex_state = 186}, - [7634] = {.lex_state = 0, .external_lex_state = 228}, - [7635] = {.lex_state = 0, .external_lex_state = 228}, - [7636] = {.lex_state = 0, .external_lex_state = 270}, - [7637] = {.lex_state = 0, .external_lex_state = 186}, - [7638] = {.lex_state = 0, .external_lex_state = 186}, - [7639] = {.lex_state = 0, .external_lex_state = 186}, - [7640] = {.lex_state = 0, .external_lex_state = 282}, - [7641] = {.lex_state = 0, .external_lex_state = 186}, - [7642] = {.lex_state = 0, .external_lex_state = 186}, - [7643] = {.lex_state = 0, .external_lex_state = 186}, - [7644] = {.lex_state = 0, .external_lex_state = 186}, - [7645] = {.lex_state = 0, .external_lex_state = 228}, - [7646] = {.lex_state = 0, .external_lex_state = 228}, - [7647] = {.lex_state = 0, .external_lex_state = 186}, - [7648] = {.lex_state = 0, .external_lex_state = 186}, - [7649] = {.lex_state = 0, .external_lex_state = 186}, - [7650] = {.lex_state = 0, .external_lex_state = 186}, - [7651] = {.lex_state = 0, .external_lex_state = 228}, - [7652] = {.lex_state = 0, .external_lex_state = 186}, - [7653] = {.lex_state = 0, .external_lex_state = 186}, - [7654] = {.lex_state = 0, .external_lex_state = 186}, - [7655] = {.lex_state = 0, .external_lex_state = 186}, - [7656] = {.lex_state = 0, .external_lex_state = 186}, - [7657] = {.lex_state = 0, .external_lex_state = 186}, - [7658] = {.lex_state = 0, .external_lex_state = 186}, - [7659] = {.lex_state = 0, .external_lex_state = 186}, - [7660] = {.lex_state = 0, .external_lex_state = 186}, - [7661] = {.lex_state = 0, .external_lex_state = 186}, - [7662] = {.lex_state = 0, .external_lex_state = 186}, - [7663] = {.lex_state = 0, .external_lex_state = 186}, - [7664] = {.lex_state = 0, .external_lex_state = 186}, - [7665] = {.lex_state = 0, .external_lex_state = 186}, - [7666] = {.lex_state = 0, .external_lex_state = 186}, - [7667] = {.lex_state = 0, .external_lex_state = 186}, - [7668] = {.lex_state = 0, .external_lex_state = 186}, - [7669] = {.lex_state = 0, .external_lex_state = 186}, - [7670] = {.lex_state = 0, .external_lex_state = 186}, - [7671] = {.lex_state = 0, .external_lex_state = 186}, - [7672] = {.lex_state = 0, .external_lex_state = 186}, - [7673] = {.lex_state = 0, .external_lex_state = 186}, - [7674] = {.lex_state = 0, .external_lex_state = 186}, - [7675] = {.lex_state = 0, .external_lex_state = 186}, - [7676] = {.lex_state = 0, .external_lex_state = 186}, - [7677] = {.lex_state = 0, .external_lex_state = 186}, - [7678] = {.lex_state = 0, .external_lex_state = 186}, - [7679] = {.lex_state = 0, .external_lex_state = 186}, - [7680] = {.lex_state = 0, .external_lex_state = 186}, - [7681] = {.lex_state = 0, .external_lex_state = 186}, - [7682] = {.lex_state = 0, .external_lex_state = 186}, - [7683] = {.lex_state = 0, .external_lex_state = 186}, - [7684] = {.lex_state = 0, .external_lex_state = 186}, - [7685] = {.lex_state = 0, .external_lex_state = 186}, - [7686] = {.lex_state = 0, .external_lex_state = 186}, - [7687] = {.lex_state = 0, .external_lex_state = 186}, - [7688] = {.lex_state = 0, .external_lex_state = 186}, - [7689] = {.lex_state = 0, .external_lex_state = 186}, - [7690] = {.lex_state = 0, .external_lex_state = 186}, - [7691] = {.lex_state = 0, .external_lex_state = 186}, - [7692] = {.lex_state = 0, .external_lex_state = 186}, - [7693] = {.lex_state = 0, .external_lex_state = 186}, - [7694] = {.lex_state = 0, .external_lex_state = 186}, - [7695] = {.lex_state = 0, .external_lex_state = 186}, - [7696] = {.lex_state = 0, .external_lex_state = 186}, - [7697] = {.lex_state = 0, .external_lex_state = 186}, - [7698] = {.lex_state = 0, .external_lex_state = 186}, - [7699] = {.lex_state = 0, .external_lex_state = 186}, - [7700] = {.lex_state = 0, .external_lex_state = 186}, - [7701] = {.lex_state = 0, .external_lex_state = 186}, - [7702] = {.lex_state = 0, .external_lex_state = 186}, - [7703] = {.lex_state = 0, .external_lex_state = 186}, - [7704] = {.lex_state = 0, .external_lex_state = 186}, - [7705] = {.lex_state = 0, .external_lex_state = 186}, - [7706] = {.lex_state = 0, .external_lex_state = 186}, - [7707] = {.lex_state = 0, .external_lex_state = 186}, - [7708] = {.lex_state = 0, .external_lex_state = 186}, - [7709] = {.lex_state = 0, .external_lex_state = 186}, - [7710] = {.lex_state = 0, .external_lex_state = 186}, - [7711] = {.lex_state = 0, .external_lex_state = 186}, - [7712] = {.lex_state = 0, .external_lex_state = 186}, - [7713] = {.lex_state = 0, .external_lex_state = 186}, - [7714] = {.lex_state = 0, .external_lex_state = 186}, - [7715] = {.lex_state = 0, .external_lex_state = 186}, - [7716] = {.lex_state = 0, .external_lex_state = 186}, - [7717] = {.lex_state = 0, .external_lex_state = 186}, - [7718] = {.lex_state = 0, .external_lex_state = 186}, - [7719] = {.lex_state = 0, .external_lex_state = 186}, - [7720] = {.lex_state = 0, .external_lex_state = 186}, - [7721] = {.lex_state = 0, .external_lex_state = 186}, - [7722] = {.lex_state = 0, .external_lex_state = 186}, - [7723] = {.lex_state = 0, .external_lex_state = 186}, - [7724] = {.lex_state = 0, .external_lex_state = 186}, - [7725] = {.lex_state = 0, .external_lex_state = 186}, - [7726] = {.lex_state = 0, .external_lex_state = 186}, - [7727] = {.lex_state = 0, .external_lex_state = 186}, - [7728] = {.lex_state = 0, .external_lex_state = 186}, - [7729] = {.lex_state = 0, .external_lex_state = 186}, - [7730] = {.lex_state = 0, .external_lex_state = 186}, - [7731] = {.lex_state = 0, .external_lex_state = 186}, - [7732] = {.lex_state = 0, .external_lex_state = 186}, - [7733] = {.lex_state = 0, .external_lex_state = 186}, - [7734] = {.lex_state = 0, .external_lex_state = 186}, - [7735] = {.lex_state = 0, .external_lex_state = 186}, - [7736] = {.lex_state = 0, .external_lex_state = 186}, - [7737] = {.lex_state = 0, .external_lex_state = 186}, - [7738] = {.lex_state = 0, .external_lex_state = 186}, - [7739] = {.lex_state = 0, .external_lex_state = 186}, - [7740] = {.lex_state = 0, .external_lex_state = 186}, - [7741] = {.lex_state = 0, .external_lex_state = 186}, - [7742] = {.lex_state = 0, .external_lex_state = 186}, - [7743] = {.lex_state = 0, .external_lex_state = 186}, - [7744] = {.lex_state = 0, .external_lex_state = 186}, - [7745] = {.lex_state = 0, .external_lex_state = 186}, - [7746] = {.lex_state = 0, .external_lex_state = 186}, - [7747] = {.lex_state = 0, .external_lex_state = 186}, - [7748] = {.lex_state = 0, .external_lex_state = 186}, - [7749] = {.lex_state = 0, .external_lex_state = 186}, - [7750] = {.lex_state = 0, .external_lex_state = 186}, - [7751] = {.lex_state = 0, .external_lex_state = 186}, - [7752] = {.lex_state = 0, .external_lex_state = 186}, - [7753] = {.lex_state = 0, .external_lex_state = 186}, - [7754] = {.lex_state = 0, .external_lex_state = 186}, - [7755] = {.lex_state = 0, .external_lex_state = 186}, - [7756] = {.lex_state = 0, .external_lex_state = 186}, - [7757] = {.lex_state = 0, .external_lex_state = 186}, - [7758] = {.lex_state = 0, .external_lex_state = 186}, - [7759] = {.lex_state = 0, .external_lex_state = 186}, - [7760] = {.lex_state = 0, .external_lex_state = 186}, - [7761] = {.lex_state = 0, .external_lex_state = 186}, - [7762] = {.lex_state = 0, .external_lex_state = 186}, - [7763] = {.lex_state = 0, .external_lex_state = 186}, - [7764] = {.lex_state = 0, .external_lex_state = 186}, - [7765] = {.lex_state = 0, .external_lex_state = 186}, - [7766] = {.lex_state = 0, .external_lex_state = 186}, - [7767] = {.lex_state = 0, .external_lex_state = 186}, - [7768] = {.lex_state = 0, .external_lex_state = 186}, - [7769] = {.lex_state = 0, .external_lex_state = 186}, - [7770] = {.lex_state = 0, .external_lex_state = 186}, - [7771] = {.lex_state = 0, .external_lex_state = 186}, - [7772] = {.lex_state = 0, .external_lex_state = 186}, - [7773] = {.lex_state = 0, .external_lex_state = 186}, - [7774] = {.lex_state = 0, .external_lex_state = 186}, - [7775] = {.lex_state = 0, .external_lex_state = 186}, - [7776] = {.lex_state = 0, .external_lex_state = 186}, - [7777] = {.lex_state = 0, .external_lex_state = 186}, - [7778] = {.lex_state = 0, .external_lex_state = 186}, - [7779] = {.lex_state = 0, .external_lex_state = 186}, - [7780] = {.lex_state = 0, .external_lex_state = 186}, - [7781] = {.lex_state = 0, .external_lex_state = 228}, - [7782] = {.lex_state = 0, .external_lex_state = 186}, - [7783] = {.lex_state = 0, .external_lex_state = 186}, - [7784] = {.lex_state = 0, .external_lex_state = 186}, - [7785] = {.lex_state = 0, .external_lex_state = 270}, - [7786] = {.lex_state = 0, .external_lex_state = 186}, - [7787] = {.lex_state = 0, .external_lex_state = 186}, - [7788] = {.lex_state = 0, .external_lex_state = 186}, - [7789] = {.lex_state = 0, .external_lex_state = 186}, - [7790] = {.lex_state = 0, .external_lex_state = 186}, - [7791] = {.lex_state = 0, .external_lex_state = 270}, - [7792] = {.lex_state = 0, .external_lex_state = 186}, - [7793] = {.lex_state = 0, .external_lex_state = 186}, - [7794] = {.lex_state = 0, .external_lex_state = 186}, - [7795] = {.lex_state = 0, .external_lex_state = 186}, - [7796] = {.lex_state = 0, .external_lex_state = 186}, - [7797] = {.lex_state = 0, .external_lex_state = 186}, - [7798] = {.lex_state = 0, .external_lex_state = 287}, - [7799] = {.lex_state = 0, .external_lex_state = 186}, - [7800] = {.lex_state = 0, .external_lex_state = 270}, - [7801] = {.lex_state = 0, .external_lex_state = 186}, - [7802] = {.lex_state = 0, .external_lex_state = 186}, - [7803] = {.lex_state = 0, .external_lex_state = 186}, - [7804] = {.lex_state = 0, .external_lex_state = 186}, - [7805] = {.lex_state = 0, .external_lex_state = 186}, - [7806] = {.lex_state = 0, .external_lex_state = 186}, - [7807] = {.lex_state = 0, .external_lex_state = 186}, - [7808] = {.lex_state = 0, .external_lex_state = 186}, - [7809] = {.lex_state = 0, .external_lex_state = 186}, - [7810] = {.lex_state = 0, .external_lex_state = 244}, - [7811] = {.lex_state = 0, .external_lex_state = 186}, - [7812] = {.lex_state = 0, .external_lex_state = 263}, - [7813] = {.lex_state = 0, .external_lex_state = 186}, - [7814] = {.lex_state = 0, .external_lex_state = 186}, - [7815] = {.lex_state = 0, .external_lex_state = 186}, - [7816] = {.lex_state = 0, .external_lex_state = 186}, - [7817] = {.lex_state = 0, .external_lex_state = 186}, - [7818] = {.lex_state = 0, .external_lex_state = 186}, - [7819] = {.lex_state = 0, .external_lex_state = 186}, - [7820] = {.lex_state = 0, .external_lex_state = 228}, - [7821] = {.lex_state = 0, .external_lex_state = 186}, - [7822] = {.lex_state = 0, .external_lex_state = 186}, - [7823] = {.lex_state = 0, .external_lex_state = 186}, - [7824] = {.lex_state = 0, .external_lex_state = 186}, - [7825] = {.lex_state = 0, .external_lex_state = 186}, - [7826] = {.lex_state = 0, .external_lex_state = 186}, - [7827] = {.lex_state = 0, .external_lex_state = 263}, - [7828] = {.lex_state = 0, .external_lex_state = 186}, - [7829] = {.lex_state = 0, .external_lex_state = 186}, - [7830] = {.lex_state = 0, .external_lex_state = 186}, - [7831] = {.lex_state = 0, .external_lex_state = 186}, - [7832] = {.lex_state = 0, .external_lex_state = 186}, - [7833] = {.lex_state = 0, .external_lex_state = 186}, - [7834] = {.lex_state = 0, .external_lex_state = 186}, - [7835] = {.lex_state = 0, .external_lex_state = 186}, - [7836] = {.lex_state = 0, .external_lex_state = 186}, - [7837] = {.lex_state = 0, .external_lex_state = 270}, - [7838] = {.lex_state = 0, .external_lex_state = 186}, - [7839] = {.lex_state = 0, .external_lex_state = 186}, - [7840] = {.lex_state = 0, .external_lex_state = 186}, - [7841] = {.lex_state = 0, .external_lex_state = 186}, - [7842] = {.lex_state = 0, .external_lex_state = 186}, - [7843] = {.lex_state = 0, .external_lex_state = 186}, - [7844] = {.lex_state = 0, .external_lex_state = 186}, - [7845] = {.lex_state = 0, .external_lex_state = 240}, - [7846] = {.lex_state = 0, .external_lex_state = 186}, - [7847] = {.lex_state = 0, .external_lex_state = 240}, - [7848] = {.lex_state = 0, .external_lex_state = 282}, - [7849] = {.lex_state = 0, .external_lex_state = 186}, - [7850] = {.lex_state = 0, .external_lex_state = 270}, - [7851] = {.lex_state = 0, .external_lex_state = 186}, - [7852] = {.lex_state = 0, .external_lex_state = 186}, - [7853] = {.lex_state = 0, .external_lex_state = 186}, - [7854] = {.lex_state = 0, .external_lex_state = 186}, - [7855] = {.lex_state = 0, .external_lex_state = 186}, - [7856] = {.lex_state = 0, .external_lex_state = 186}, - [7857] = {.lex_state = 0, .external_lex_state = 186}, - [7858] = {.lex_state = 0, .external_lex_state = 186}, - [7859] = {.lex_state = 0, .external_lex_state = 287}, - [7860] = {.lex_state = 0, .external_lex_state = 288}, - [7861] = {.lex_state = 0, .external_lex_state = 186}, - [7862] = {.lex_state = 0, .external_lex_state = 186}, - [7863] = {.lex_state = 0, .external_lex_state = 186}, - [7864] = {.lex_state = 0, .external_lex_state = 186}, - [7865] = {.lex_state = 0, .external_lex_state = 186}, - [7866] = {.lex_state = 0, .external_lex_state = 186}, - [7867] = {.lex_state = 0, .external_lex_state = 186}, - [7868] = {.lex_state = 0, .external_lex_state = 186}, - [7869] = {.lex_state = 0, .external_lex_state = 186}, - [7870] = {.lex_state = 0, .external_lex_state = 186}, - [7871] = {.lex_state = 0, .external_lex_state = 186}, - [7872] = {.lex_state = 0, .external_lex_state = 186}, - [7873] = {.lex_state = 0, .external_lex_state = 186}, - [7874] = {.lex_state = 0, .external_lex_state = 186}, - [7875] = {.lex_state = 0, .external_lex_state = 186}, - [7876] = {.lex_state = 0, .external_lex_state = 186}, - [7877] = {.lex_state = 0, .external_lex_state = 186}, - [7878] = {.lex_state = 0, .external_lex_state = 186}, - [7879] = {.lex_state = 0, .external_lex_state = 186}, - [7880] = {.lex_state = 0, .external_lex_state = 186}, - [7881] = {.lex_state = 0, .external_lex_state = 186}, - [7882] = {.lex_state = 0, .external_lex_state = 186}, - [7883] = {.lex_state = 0, .external_lex_state = 186}, - [7884] = {.lex_state = 0, .external_lex_state = 186}, - [7885] = {.lex_state = 0, .external_lex_state = 186}, - [7886] = {.lex_state = 0, .external_lex_state = 186}, - [7887] = {.lex_state = 0, .external_lex_state = 186}, - [7888] = {.lex_state = 0, .external_lex_state = 186}, - [7889] = {.lex_state = 0, .external_lex_state = 186}, - [7890] = {.lex_state = 0, .external_lex_state = 186}, - [7891] = {.lex_state = 0, .external_lex_state = 186}, - [7892] = {.lex_state = 0, .external_lex_state = 186}, - [7893] = {.lex_state = 0, .external_lex_state = 186}, - [7894] = {.lex_state = 0, .external_lex_state = 186}, - [7895] = {.lex_state = 0, .external_lex_state = 270}, - [7896] = {.lex_state = 0, .external_lex_state = 186}, - [7897] = {.lex_state = 0, .external_lex_state = 186}, - [7898] = {.lex_state = 0, .external_lex_state = 186}, - [7899] = {.lex_state = 0, .external_lex_state = 186}, - [7900] = {.lex_state = 0, .external_lex_state = 186}, - [7901] = {.lex_state = 0, .external_lex_state = 186}, - [7902] = {.lex_state = 0, .external_lex_state = 280}, - [7903] = {.lex_state = 0, .external_lex_state = 186}, - [7904] = {.lex_state = 0, .external_lex_state = 186}, - [7905] = {.lex_state = 0, .external_lex_state = 186}, - [7906] = {.lex_state = 0, .external_lex_state = 186}, - [7907] = {.lex_state = 0, .external_lex_state = 186}, - [7908] = {.lex_state = 0, .external_lex_state = 186}, - [7909] = {.lex_state = 0, .external_lex_state = 186}, - [7910] = {.lex_state = 0, .external_lex_state = 186}, - [7911] = {.lex_state = 0, .external_lex_state = 289}, - [7912] = {.lex_state = 0, .external_lex_state = 186}, - [7913] = {.lex_state = 0, .external_lex_state = 186}, - [7914] = {.lex_state = 0, .external_lex_state = 186}, - [7915] = {.lex_state = 0, .external_lex_state = 270}, - [7916] = {.lex_state = 0, .external_lex_state = 186}, - [7917] = {.lex_state = 0, .external_lex_state = 186}, - [7918] = {.lex_state = 0, .external_lex_state = 186}, - [7919] = {.lex_state = 0, .external_lex_state = 270}, - [7920] = {.lex_state = 0, .external_lex_state = 186}, - [7921] = {.lex_state = 0, .external_lex_state = 186}, - [7922] = {.lex_state = 0, .external_lex_state = 186}, - [7923] = {.lex_state = 0, .external_lex_state = 186}, - [7924] = {.lex_state = 0, .external_lex_state = 186}, - [7925] = {.lex_state = 0, .external_lex_state = 263}, - [7926] = {.lex_state = 0, .external_lex_state = 186}, - [7927] = {.lex_state = 0, .external_lex_state = 186}, - [7928] = {.lex_state = 0, .external_lex_state = 186}, - [7929] = {.lex_state = 0, .external_lex_state = 186}, - [7930] = {.lex_state = 0, .external_lex_state = 263}, - [7931] = {.lex_state = 0, .external_lex_state = 186}, - [7932] = {.lex_state = 0, .external_lex_state = 186}, - [7933] = {.lex_state = 0, .external_lex_state = 186}, - [7934] = {.lex_state = 0, .external_lex_state = 186}, - [7935] = {.lex_state = 0, .external_lex_state = 186}, - [7936] = {.lex_state = 0, .external_lex_state = 186}, - [7937] = {.lex_state = 0, .external_lex_state = 186}, - [7938] = {.lex_state = 0, .external_lex_state = 186}, - [7939] = {.lex_state = 0, .external_lex_state = 186}, - [7940] = {.lex_state = 0, .external_lex_state = 240}, - [7941] = {.lex_state = 0, .external_lex_state = 186}, - [7942] = {.lex_state = 0, .external_lex_state = 257}, - [7943] = {.lex_state = 0, .external_lex_state = 256}, - [7944] = {.lex_state = 0, .external_lex_state = 256}, - [7945] = {.lex_state = 0, .external_lex_state = 256}, - [7946] = {.lex_state = 0, .external_lex_state = 186}, - [7947] = {.lex_state = 0, .external_lex_state = 186}, - [7948] = {.lex_state = 0, .external_lex_state = 186}, - [7949] = {.lex_state = 0, .external_lex_state = 186}, - [7950] = {.lex_state = 0, .external_lex_state = 186}, - [7951] = {.lex_state = 0, .external_lex_state = 186}, - [7952] = {.lex_state = 0, .external_lex_state = 186}, - [7953] = {.lex_state = 0, .external_lex_state = 270}, - [7954] = {.lex_state = 0, .external_lex_state = 186}, - [7955] = {.lex_state = 0, .external_lex_state = 186}, - [7956] = {.lex_state = 0, .external_lex_state = 186}, - [7957] = {.lex_state = 0, .external_lex_state = 186}, - [7958] = {.lex_state = 0, .external_lex_state = 186}, - [7959] = {.lex_state = 0, .external_lex_state = 186}, - [7960] = {.lex_state = 0, .external_lex_state = 186}, - [7961] = {.lex_state = 0, .external_lex_state = 186}, - [7962] = {.lex_state = 0, .external_lex_state = 186}, - [7963] = {.lex_state = 0, .external_lex_state = 186}, - [7964] = {.lex_state = 0, .external_lex_state = 186}, - [7965] = {.lex_state = 0, .external_lex_state = 186}, - [7966] = {.lex_state = 0, .external_lex_state = 186}, - [7967] = {.lex_state = 0, .external_lex_state = 257}, - [7968] = {.lex_state = 0, .external_lex_state = 256}, - [7969] = {.lex_state = 0, .external_lex_state = 186}, - [7970] = {.lex_state = 0, .external_lex_state = 288}, - [7971] = {.lex_state = 0, .external_lex_state = 186}, - [7972] = {.lex_state = 0, .external_lex_state = 186}, - [7973] = {.lex_state = 0, .external_lex_state = 186}, - [7974] = {.lex_state = 0, .external_lex_state = 186}, - [7975] = {.lex_state = 0, .external_lex_state = 186}, - [7976] = {.lex_state = 0, .external_lex_state = 186}, - [7977] = {.lex_state = 0, .external_lex_state = 186}, - [7978] = {.lex_state = 0, .external_lex_state = 261}, - [7979] = {.lex_state = 0, .external_lex_state = 270}, - [7980] = {.lex_state = 0, .external_lex_state = 186}, - [7981] = {.lex_state = 0, .external_lex_state = 186}, - [7982] = {.lex_state = 0, .external_lex_state = 186}, - [7983] = {.lex_state = 0, .external_lex_state = 263}, - [7984] = {.lex_state = 0, .external_lex_state = 186}, - [7985] = {.lex_state = 0, .external_lex_state = 263}, - [7986] = {.lex_state = 0, .external_lex_state = 186}, - [7987] = {.lex_state = 0, .external_lex_state = 186}, - [7988] = {.lex_state = 0, .external_lex_state = 186}, - [7989] = {.lex_state = 0, .external_lex_state = 263}, - [7990] = {.lex_state = 0, .external_lex_state = 186}, - [7991] = {.lex_state = 0, .external_lex_state = 186}, - [7992] = {.lex_state = 0, .external_lex_state = 186}, - [7993] = {.lex_state = 0, .external_lex_state = 186}, - [7994] = {.lex_state = 0, .external_lex_state = 186}, - [7995] = {.lex_state = 0, .external_lex_state = 186}, - [7996] = {.lex_state = 0, .external_lex_state = 186}, - [7997] = {.lex_state = 0, .external_lex_state = 186}, - [7998] = {.lex_state = 0, .external_lex_state = 186}, - [7999] = {.lex_state = 0, .external_lex_state = 186}, - [8000] = {.lex_state = 0, .external_lex_state = 186}, - [8001] = {.lex_state = 0, .external_lex_state = 186}, - [8002] = {.lex_state = 0, .external_lex_state = 186}, - [8003] = {.lex_state = 0, .external_lex_state = 256}, - [8004] = {.lex_state = 0, .external_lex_state = 186}, - [8005] = {.lex_state = 0, .external_lex_state = 186}, - [8006] = {.lex_state = 0, .external_lex_state = 186}, - [8007] = {.lex_state = 0, .external_lex_state = 186}, - [8008] = {.lex_state = 0, .external_lex_state = 186}, - [8009] = {.lex_state = 0, .external_lex_state = 186}, - [8010] = {.lex_state = 0, .external_lex_state = 186}, - [8011] = {.lex_state = 0, .external_lex_state = 186}, - [8012] = {.lex_state = 0, .external_lex_state = 186}, - [8013] = {.lex_state = 0, .external_lex_state = 186}, - [8014] = {.lex_state = 0, .external_lex_state = 270}, - [8015] = {.lex_state = 0, .external_lex_state = 186}, - [8016] = {.lex_state = 0, .external_lex_state = 186}, - [8017] = {.lex_state = 0, .external_lex_state = 186}, - [8018] = {.lex_state = 0, .external_lex_state = 186}, - [8019] = {.lex_state = 0, .external_lex_state = 186}, - [8020] = {.lex_state = 0, .external_lex_state = 263}, - [8021] = {.lex_state = 0, .external_lex_state = 186}, - [8022] = {.lex_state = 0, .external_lex_state = 186}, - [8023] = {.lex_state = 0, .external_lex_state = 269}, - [8024] = {.lex_state = 0, .external_lex_state = 186}, - [8025] = {.lex_state = 0, .external_lex_state = 270}, - [8026] = {.lex_state = 0, .external_lex_state = 186}, - [8027] = {.lex_state = 0, .external_lex_state = 270}, - [8028] = {.lex_state = 0, .external_lex_state = 186}, - [8029] = {.lex_state = 0, .external_lex_state = 270}, - [8030] = {.lex_state = 0, .external_lex_state = 186}, - [8031] = {.lex_state = 0, .external_lex_state = 186}, - [8032] = {.lex_state = 0, .external_lex_state = 186}, - [8033] = {.lex_state = 0, .external_lex_state = 186}, - [8034] = {.lex_state = 0, .external_lex_state = 186}, - [8035] = {.lex_state = 0, .external_lex_state = 186}, - [8036] = {.lex_state = 0, .external_lex_state = 186}, - [8037] = {.lex_state = 0, .external_lex_state = 186}, - [8038] = {.lex_state = 0, .external_lex_state = 186}, - [8039] = {.lex_state = 0, .external_lex_state = 263}, - [8040] = {.lex_state = 0, .external_lex_state = 186}, - [8041] = {.lex_state = 0, .external_lex_state = 186}, - [8042] = {.lex_state = 0, .external_lex_state = 286}, - [8043] = {.lex_state = 0, .external_lex_state = 186}, - [8044] = {.lex_state = 0, .external_lex_state = 257}, - [8045] = {.lex_state = 0, .external_lex_state = 186}, - [8046] = {.lex_state = 0, .external_lex_state = 257}, - [8047] = {.lex_state = 0, .external_lex_state = 186}, - [8048] = {.lex_state = 0, .external_lex_state = 186}, - [8049] = {.lex_state = 0, .external_lex_state = 286}, - [8050] = {.lex_state = 0, .external_lex_state = 186}, - [8051] = {.lex_state = 0, .external_lex_state = 257}, - [8052] = {.lex_state = 0, .external_lex_state = 186}, - [8053] = {.lex_state = 0, .external_lex_state = 257}, - [8054] = {.lex_state = 0, .external_lex_state = 186}, - [8055] = {.lex_state = 0, .external_lex_state = 186}, - [8056] = {.lex_state = 0, .external_lex_state = 286}, - [8057] = {.lex_state = 0, .external_lex_state = 263}, - [8058] = {.lex_state = 0, .external_lex_state = 257}, - [8059] = {.lex_state = 0, .external_lex_state = 186}, - [8060] = {.lex_state = 0, .external_lex_state = 257}, - [8061] = {.lex_state = 0, .external_lex_state = 186}, - [8062] = {.lex_state = 0, .external_lex_state = 186}, - [8063] = {.lex_state = 0, .external_lex_state = 286}, - [8064] = {.lex_state = 0, .external_lex_state = 186}, - [8065] = {.lex_state = 0, .external_lex_state = 257}, - [8066] = {.lex_state = 0, .external_lex_state = 186}, - [8067] = {.lex_state = 0, .external_lex_state = 186}, - [8068] = {.lex_state = 0, .external_lex_state = 286}, - [8069] = {.lex_state = 0, .external_lex_state = 186}, - [8070] = {.lex_state = 0, .external_lex_state = 257}, - [8071] = {.lex_state = 0, .external_lex_state = 186}, - [8072] = {.lex_state = 0, .external_lex_state = 186}, - [8073] = {.lex_state = 0, .external_lex_state = 286}, - [8074] = {.lex_state = 0, .external_lex_state = 186}, - [8075] = {.lex_state = 0, .external_lex_state = 257}, - [8076] = {.lex_state = 0, .external_lex_state = 186}, - [8077] = {.lex_state = 0, .external_lex_state = 186}, - [8078] = {.lex_state = 0, .external_lex_state = 257}, - [8079] = {.lex_state = 0, .external_lex_state = 270}, - [8080] = {.lex_state = 0, .external_lex_state = 186}, - [8081] = {.lex_state = 0, .external_lex_state = 186}, - [8082] = {.lex_state = 0, .external_lex_state = 186}, - [8083] = {.lex_state = 0, .external_lex_state = 186}, - [8084] = {.lex_state = 0, .external_lex_state = 270}, - [8085] = {.lex_state = 0, .external_lex_state = 186}, - [8086] = {.lex_state = 0, .external_lex_state = 265}, - [8087] = {.lex_state = 0, .external_lex_state = 270}, - [8088] = {.lex_state = 0, .external_lex_state = 186}, - [8089] = {.lex_state = 0, .external_lex_state = 186}, - [8090] = {.lex_state = 0, .external_lex_state = 186}, - [8091] = {.lex_state = 0, .external_lex_state = 228}, - [8092] = {.lex_state = 0, .external_lex_state = 228}, - [8093] = {.lex_state = 0, .external_lex_state = 265}, - [8094] = {.lex_state = 0, .external_lex_state = 186}, - [8095] = {.lex_state = 0, .external_lex_state = 186}, - [8096] = {.lex_state = 0, .external_lex_state = 186}, - [8097] = {.lex_state = 0, .external_lex_state = 186}, - [8098] = {.lex_state = 0, .external_lex_state = 186}, - [8099] = {.lex_state = 0, .external_lex_state = 186}, - [8100] = {.lex_state = 0, .external_lex_state = 186}, - [8101] = {.lex_state = 0, .external_lex_state = 186}, - [8102] = {.lex_state = 0, .external_lex_state = 270}, - [8103] = {.lex_state = 0, .external_lex_state = 186}, - [8104] = {.lex_state = 0, .external_lex_state = 186}, - [8105] = {.lex_state = 0, .external_lex_state = 186}, - [8106] = {.lex_state = 0, .external_lex_state = 186}, - [8107] = {.lex_state = 0, .external_lex_state = 186}, - [8108] = {.lex_state = 0, .external_lex_state = 186}, - [8109] = {.lex_state = 0, .external_lex_state = 270}, - [8110] = {.lex_state = 0, .external_lex_state = 186}, - [8111] = {.lex_state = 0, .external_lex_state = 257}, - [8112] = {.lex_state = 0, .external_lex_state = 186}, - [8113] = {.lex_state = 0, .external_lex_state = 270}, - [8114] = {.lex_state = 0, .external_lex_state = 186}, - [8115] = {.lex_state = 0, .external_lex_state = 186}, - [8116] = {.lex_state = 0, .external_lex_state = 270}, - [8117] = {.lex_state = 0, .external_lex_state = 228}, - [8118] = {.lex_state = 0, .external_lex_state = 228}, - [8119] = {.lex_state = 0, .external_lex_state = 244}, - [8120] = {.lex_state = 0, .external_lex_state = 244}, - [8121] = {.lex_state = 0, .external_lex_state = 186}, - [8122] = {.lex_state = 0, .external_lex_state = 265}, - [8123] = {.lex_state = 0, .external_lex_state = 186}, - [8124] = {.lex_state = 0, .external_lex_state = 271}, - [8125] = {.lex_state = 0, .external_lex_state = 257}, - [8126] = {.lex_state = 0, .external_lex_state = 186}, - [8127] = {.lex_state = 0, .external_lex_state = 186}, - [8128] = {(TSStateId)(-1)}, - [8129] = {(TSStateId)(-1)}, - [8130] = {(TSStateId)(-1)}, + [7600] = {.lex_state = 0, .external_lex_state = 187}, + [7601] = {.lex_state = 0, .external_lex_state = 187}, + [7602] = {.lex_state = 0, .external_lex_state = 187}, + [7603] = {.lex_state = 0, .external_lex_state = 187}, + [7604] = {.lex_state = 0, .external_lex_state = 279}, + [7605] = {.lex_state = 0, .external_lex_state = 270}, + [7606] = {.lex_state = 0, .external_lex_state = 187}, + [7607] = {.lex_state = 0, .external_lex_state = 187}, + [7608] = {.lex_state = 0, .external_lex_state = 270}, + [7609] = {.lex_state = 0, .external_lex_state = 187}, + [7610] = {.lex_state = 0, .external_lex_state = 187}, + [7611] = {.lex_state = 0, .external_lex_state = 270}, + [7612] = {.lex_state = 0, .external_lex_state = 187}, + [7613] = {.lex_state = 0, .external_lex_state = 280}, + [7614] = {.lex_state = 0, .external_lex_state = 187}, + [7615] = {.lex_state = 0, .external_lex_state = 187}, + [7616] = {.lex_state = 0, .external_lex_state = 187}, + [7617] = {.lex_state = 0, .external_lex_state = 187}, + [7618] = {.lex_state = 0, .external_lex_state = 187}, + [7619] = {.lex_state = 0, .external_lex_state = 223}, + [7620] = {.lex_state = 0, .external_lex_state = 187}, + [7621] = {.lex_state = 0, .external_lex_state = 187}, + [7622] = {.lex_state = 0, .external_lex_state = 187}, + [7623] = {.lex_state = 0, .external_lex_state = 255}, + [7624] = {.lex_state = 0, .external_lex_state = 240}, + [7625] = {.lex_state = 0, .external_lex_state = 255}, + [7626] = {.lex_state = 0, .external_lex_state = 187}, + [7627] = {.lex_state = 0, .external_lex_state = 255}, + [7628] = {.lex_state = 0, .external_lex_state = 187}, + [7629] = {.lex_state = 0, .external_lex_state = 268}, + [7630] = {.lex_state = 0, .external_lex_state = 269}, + [7631] = {.lex_state = 0, .external_lex_state = 187}, + [7632] = {.lex_state = 0, .external_lex_state = 187}, + [7633] = {.lex_state = 0, .external_lex_state = 255}, + [7634] = {.lex_state = 0, .external_lex_state = 187}, + [7635] = {.lex_state = 0, .external_lex_state = 187}, + [7636] = {.lex_state = 0, .external_lex_state = 281}, + [7637] = {.lex_state = 0, .external_lex_state = 187}, + [7638] = {.lex_state = 0, .external_lex_state = 187}, + [7639] = {.lex_state = 0, .external_lex_state = 282}, + [7640] = {.lex_state = 0, .external_lex_state = 273}, + [7641] = {.lex_state = 0, .external_lex_state = 187}, + [7642] = {.lex_state = 0, .external_lex_state = 187}, + [7643] = {.lex_state = 0, .external_lex_state = 187}, + [7644] = {.lex_state = 0, .external_lex_state = 187}, + [7645] = {.lex_state = 0, .external_lex_state = 280}, + [7646] = {.lex_state = 0, .external_lex_state = 187}, + [7647] = {.lex_state = 0, .external_lex_state = 187}, + [7648] = {.lex_state = 0, .external_lex_state = 273}, + [7649] = {.lex_state = 0, .external_lex_state = 187}, + [7650] = {.lex_state = 0, .external_lex_state = 187}, + [7651] = {.lex_state = 0, .external_lex_state = 187}, + [7652] = {.lex_state = 0, .external_lex_state = 187}, + [7653] = {.lex_state = 0, .external_lex_state = 223}, + [7654] = {.lex_state = 0, .external_lex_state = 187}, + [7655] = {.lex_state = 0, .external_lex_state = 187}, + [7656] = {.lex_state = 0, .external_lex_state = 187}, + [7657] = {.lex_state = 0, .external_lex_state = 276}, + [7658] = {.lex_state = 0, .external_lex_state = 240}, + [7659] = {.lex_state = 0, .external_lex_state = 187}, + [7660] = {.lex_state = 0, .external_lex_state = 187}, + [7661] = {.lex_state = 0, .external_lex_state = 275}, + [7662] = {.lex_state = 0, .external_lex_state = 187}, + [7663] = {.lex_state = 0, .external_lex_state = 187}, + [7664] = {.lex_state = 0, .external_lex_state = 187}, + [7665] = {.lex_state = 0, .external_lex_state = 276}, + [7666] = {.lex_state = 0, .external_lex_state = 223}, + [7667] = {.lex_state = 0, .external_lex_state = 187}, + [7668] = {.lex_state = 0, .external_lex_state = 187}, + [7669] = {.lex_state = 0, .external_lex_state = 187}, + [7670] = {.lex_state = 0, .external_lex_state = 187}, + [7671] = {.lex_state = 0, .external_lex_state = 187}, + [7672] = {.lex_state = 0, .external_lex_state = 187}, + [7673] = {.lex_state = 0, .external_lex_state = 187}, + [7674] = {.lex_state = 0, .external_lex_state = 187}, + [7675] = {.lex_state = 0, .external_lex_state = 187}, + [7676] = {.lex_state = 0, .external_lex_state = 187}, + [7677] = {.lex_state = 0, .external_lex_state = 187}, + [7678] = {.lex_state = 0, .external_lex_state = 187}, + [7679] = {.lex_state = 0, .external_lex_state = 273}, + [7680] = {.lex_state = 0, .external_lex_state = 187}, + [7681] = {.lex_state = 0, .external_lex_state = 223}, + [7682] = {.lex_state = 0, .external_lex_state = 223}, + [7683] = {.lex_state = 0, .external_lex_state = 187}, + [7684] = {.lex_state = 0, .external_lex_state = 268}, + [7685] = {.lex_state = 0, .external_lex_state = 187}, + [7686] = {.lex_state = 0, .external_lex_state = 187}, + [7687] = {.lex_state = 0, .external_lex_state = 187}, + [7688] = {.lex_state = 0, .external_lex_state = 187}, + [7689] = {.lex_state = 0, .external_lex_state = 187}, + [7690] = {.lex_state = 0, .external_lex_state = 187}, + [7691] = {.lex_state = 0, .external_lex_state = 268}, + [7692] = {.lex_state = 0, .external_lex_state = 187}, + [7693] = {.lex_state = 0, .external_lex_state = 187}, + [7694] = {.lex_state = 0, .external_lex_state = 187}, + [7695] = {.lex_state = 0, .external_lex_state = 276}, + [7696] = {.lex_state = 0, .external_lex_state = 187}, + [7697] = {.lex_state = 0, .external_lex_state = 187}, + [7698] = {.lex_state = 0, .external_lex_state = 187}, + [7699] = {.lex_state = 0, .external_lex_state = 187}, + [7700] = {.lex_state = 0, .external_lex_state = 187}, + [7701] = {.lex_state = 0, .external_lex_state = 187}, + [7702] = {.lex_state = 0, .external_lex_state = 187}, + [7703] = {.lex_state = 0, .external_lex_state = 187}, + [7704] = {.lex_state = 0, .external_lex_state = 187}, + [7705] = {.lex_state = 0, .external_lex_state = 187}, + [7706] = {.lex_state = 0, .external_lex_state = 187}, + [7707] = {.lex_state = 0, .external_lex_state = 187}, + [7708] = {.lex_state = 0, .external_lex_state = 187}, + [7709] = {.lex_state = 0, .external_lex_state = 187}, + [7710] = {.lex_state = 0, .external_lex_state = 280}, + [7711] = {.lex_state = 0, .external_lex_state = 187}, + [7712] = {.lex_state = 0, .external_lex_state = 187}, + [7713] = {.lex_state = 0, .external_lex_state = 187}, + [7714] = {.lex_state = 0, .external_lex_state = 187}, + [7715] = {.lex_state = 0, .external_lex_state = 255}, + [7716] = {.lex_state = 0, .external_lex_state = 187}, + [7717] = {.lex_state = 0, .external_lex_state = 187}, + [7718] = {.lex_state = 0, .external_lex_state = 223}, + [7719] = {.lex_state = 0, .external_lex_state = 187}, + [7720] = {.lex_state = 0, .external_lex_state = 187}, + [7721] = {.lex_state = 0, .external_lex_state = 187}, + [7722] = {.lex_state = 0, .external_lex_state = 187}, + [7723] = {.lex_state = 0, .external_lex_state = 187}, + [7724] = {.lex_state = 0, .external_lex_state = 187}, + [7725] = {.lex_state = 0, .external_lex_state = 275}, + [7726] = {.lex_state = 0, .external_lex_state = 187}, + [7727] = {.lex_state = 0, .external_lex_state = 187}, + [7728] = {.lex_state = 0, .external_lex_state = 187}, + [7729] = {.lex_state = 0, .external_lex_state = 187}, + [7730] = {.lex_state = 0, .external_lex_state = 187}, + [7731] = {.lex_state = 0, .external_lex_state = 187}, + [7732] = {.lex_state = 0, .external_lex_state = 187}, + [7733] = {.lex_state = 0, .external_lex_state = 187}, + [7734] = {.lex_state = 0, .external_lex_state = 187}, + [7735] = {.lex_state = 0, .external_lex_state = 260}, + [7736] = {.lex_state = 0, .external_lex_state = 187}, + [7737] = {.lex_state = 0, .external_lex_state = 187}, + [7738] = {.lex_state = 0, .external_lex_state = 187}, + [7739] = {.lex_state = 0, .external_lex_state = 187}, + [7740] = {.lex_state = 0, .external_lex_state = 187}, + [7741] = {.lex_state = 0, .external_lex_state = 187}, + [7742] = {.lex_state = 0, .external_lex_state = 187}, + [7743] = {.lex_state = 0, .external_lex_state = 268}, + [7744] = {.lex_state = 0, .external_lex_state = 187}, + [7745] = {.lex_state = 0, .external_lex_state = 223}, + [7746] = {.lex_state = 0, .external_lex_state = 223}, + [7747] = {.lex_state = 0, .external_lex_state = 187}, + [7748] = {.lex_state = 0, .external_lex_state = 187}, + [7749] = {.lex_state = 0, .external_lex_state = 187}, + [7750] = {.lex_state = 0, .external_lex_state = 187}, + [7751] = {.lex_state = 0, .external_lex_state = 268}, + [7752] = {.lex_state = 0, .external_lex_state = 187}, + [7753] = {.lex_state = 0, .external_lex_state = 187}, + [7754] = {.lex_state = 0, .external_lex_state = 187}, + [7755] = {.lex_state = 0, .external_lex_state = 187}, + [7756] = {.lex_state = 0, .external_lex_state = 187}, + [7757] = {.lex_state = 0, .external_lex_state = 187}, + [7758] = {.lex_state = 0, .external_lex_state = 187}, + [7759] = {.lex_state = 0, .external_lex_state = 187}, + [7760] = {.lex_state = 0, .external_lex_state = 187}, + [7761] = {.lex_state = 0, .external_lex_state = 187}, + [7762] = {.lex_state = 0, .external_lex_state = 187}, + [7763] = {.lex_state = 0, .external_lex_state = 187}, + [7764] = {.lex_state = 0, .external_lex_state = 187}, + [7765] = {.lex_state = 0, .external_lex_state = 187}, + [7766] = {.lex_state = 0, .external_lex_state = 187}, + [7767] = {.lex_state = 0, .external_lex_state = 187}, + [7768] = {.lex_state = 0, .external_lex_state = 187}, + [7769] = {.lex_state = 0, .external_lex_state = 187}, + [7770] = {.lex_state = 0, .external_lex_state = 280}, + [7771] = {.lex_state = 0, .external_lex_state = 187}, + [7772] = {.lex_state = 0, .external_lex_state = 187}, + [7773] = {.lex_state = 0, .external_lex_state = 283}, + [7774] = {.lex_state = 0, .external_lex_state = 187}, + [7775] = {.lex_state = 0, .external_lex_state = 187}, + [7776] = {.lex_state = 0, .external_lex_state = 187}, + [7777] = {.lex_state = 0, .external_lex_state = 187}, + [7778] = {.lex_state = 0, .external_lex_state = 223}, + [7779] = {.lex_state = 0, .external_lex_state = 187}, + [7780] = {.lex_state = 0, .external_lex_state = 187}, + [7781] = {.lex_state = 0, .external_lex_state = 187}, + [7782] = {.lex_state = 0, .external_lex_state = 187}, + [7783] = {.lex_state = 0, .external_lex_state = 284}, + [7784] = {.lex_state = 0, .external_lex_state = 275}, + [7785] = {.lex_state = 0, .external_lex_state = 282}, + [7786] = {.lex_state = 0, .external_lex_state = 187}, + [7787] = {.lex_state = 0, .external_lex_state = 187}, + [7788] = {.lex_state = 0, .external_lex_state = 187}, + [7789] = {.lex_state = 0, .external_lex_state = 187}, + [7790] = {.lex_state = 0, .external_lex_state = 187}, + [7791] = {.lex_state = 0, .external_lex_state = 187}, + [7792] = {.lex_state = 0, .external_lex_state = 187}, + [7793] = {.lex_state = 0, .external_lex_state = 187}, + [7794] = {.lex_state = 0, .external_lex_state = 285}, + [7795] = {.lex_state = 0, .external_lex_state = 187}, + [7796] = {.lex_state = 0, .external_lex_state = 282}, + [7797] = {.lex_state = 0, .external_lex_state = 187}, + [7798] = {.lex_state = 0, .external_lex_state = 268}, + [7799] = {.lex_state = 0, .external_lex_state = 223}, + [7800] = {.lex_state = 0, .external_lex_state = 223}, + [7801] = {.lex_state = 0, .external_lex_state = 187}, + [7802] = {.lex_state = 0, .external_lex_state = 187}, + [7803] = {.lex_state = 0, .external_lex_state = 187}, + [7804] = {.lex_state = 0, .external_lex_state = 268}, + [7805] = {.lex_state = 0, .external_lex_state = 187}, + [7806] = {.lex_state = 0, .external_lex_state = 187}, + [7807] = {.lex_state = 0, .external_lex_state = 187}, + [7808] = {.lex_state = 0, .external_lex_state = 187}, + [7809] = {.lex_state = 0, .external_lex_state = 187}, + [7810] = {.lex_state = 0, .external_lex_state = 223}, + [7811] = {.lex_state = 0, .external_lex_state = 187}, + [7812] = {.lex_state = 0, .external_lex_state = 187}, + [7813] = {.lex_state = 0, .external_lex_state = 187}, + [7814] = {.lex_state = 0, .external_lex_state = 187}, + [7815] = {.lex_state = 0, .external_lex_state = 187}, + [7816] = {.lex_state = 0, .external_lex_state = 187}, + [7817] = {.lex_state = 0, .external_lex_state = 187}, + [7818] = {.lex_state = 0, .external_lex_state = 187}, + [7819] = {.lex_state = 0, .external_lex_state = 223}, + [7820] = {.lex_state = 0, .external_lex_state = 187}, + [7821] = {.lex_state = 0, .external_lex_state = 187}, + [7822] = {.lex_state = 0, .external_lex_state = 275}, + [7823] = {.lex_state = 0, .external_lex_state = 187}, + [7824] = {.lex_state = 0, .external_lex_state = 187}, + [7825] = {.lex_state = 0, .external_lex_state = 187}, + [7826] = {.lex_state = 0, .external_lex_state = 187}, + [7827] = {.lex_state = 0, .external_lex_state = 275}, + [7828] = {.lex_state = 0, .external_lex_state = 187}, + [7829] = {.lex_state = 0, .external_lex_state = 187}, + [7830] = {.lex_state = 0, .external_lex_state = 187}, + [7831] = {.lex_state = 0, .external_lex_state = 187}, + [7832] = {.lex_state = 0, .external_lex_state = 187}, + [7833] = {.lex_state = 0, .external_lex_state = 223}, + [7834] = {.lex_state = 0, .external_lex_state = 223}, + [7835] = {.lex_state = 0, .external_lex_state = 187}, + [7836] = {.lex_state = 0, .external_lex_state = 187}, + [7837] = {.lex_state = 0, .external_lex_state = 187}, + [7838] = {.lex_state = 0, .external_lex_state = 187}, + [7839] = {.lex_state = 0, .external_lex_state = 187}, + [7840] = {.lex_state = 0, .external_lex_state = 187}, + [7841] = {.lex_state = 0, .external_lex_state = 187}, + [7842] = {.lex_state = 0, .external_lex_state = 187}, + [7843] = {.lex_state = 0, .external_lex_state = 187}, + [7844] = {.lex_state = 0, .external_lex_state = 187}, + [7845] = {.lex_state = 0, .external_lex_state = 187}, + [7846] = {.lex_state = 0, .external_lex_state = 223}, + [7847] = {.lex_state = 0, .external_lex_state = 187}, + [7848] = {.lex_state = 0, .external_lex_state = 275}, + [7849] = {.lex_state = 0, .external_lex_state = 187}, + [7850] = {.lex_state = 0, .external_lex_state = 187}, + [7851] = {.lex_state = 0, .external_lex_state = 187}, + [7852] = {.lex_state = 0, .external_lex_state = 187}, + [7853] = {.lex_state = 0, .external_lex_state = 187}, + [7854] = {.lex_state = 0, .external_lex_state = 223}, + [7855] = {.lex_state = 0, .external_lex_state = 223}, + [7856] = {.lex_state = 0, .external_lex_state = 187}, + [7857] = {.lex_state = 0, .external_lex_state = 187}, + [7858] = {.lex_state = 0, .external_lex_state = 187}, + [7859] = {.lex_state = 0, .external_lex_state = 187}, + [7860] = {.lex_state = 0, .external_lex_state = 275}, + [7861] = {.lex_state = 0, .external_lex_state = 275}, + [7862] = {.lex_state = 0, .external_lex_state = 187}, + [7863] = {.lex_state = 0, .external_lex_state = 187}, + [7864] = {.lex_state = 0, .external_lex_state = 187}, + [7865] = {.lex_state = 0, .external_lex_state = 187}, + [7866] = {.lex_state = 0, .external_lex_state = 223}, + [7867] = {.lex_state = 0, .external_lex_state = 223}, + [7868] = {.lex_state = 0, .external_lex_state = 187}, + [7869] = {.lex_state = 0, .external_lex_state = 187}, + [7870] = {.lex_state = 0, .external_lex_state = 187}, + [7871] = {.lex_state = 0, .external_lex_state = 187}, + [7872] = {.lex_state = 0, .external_lex_state = 223}, + [7873] = {.lex_state = 0, .external_lex_state = 187}, + [7874] = {.lex_state = 0, .external_lex_state = 187}, + [7875] = {.lex_state = 0, .external_lex_state = 187}, + [7876] = {.lex_state = 0, .external_lex_state = 187}, + [7877] = {.lex_state = 0, .external_lex_state = 187}, + [7878] = {.lex_state = 0, .external_lex_state = 187}, + [7879] = {.lex_state = 0, .external_lex_state = 187}, + [7880] = {.lex_state = 0, .external_lex_state = 187}, + [7881] = {.lex_state = 0, .external_lex_state = 187}, + [7882] = {.lex_state = 0, .external_lex_state = 187}, + [7883] = {.lex_state = 0, .external_lex_state = 187}, + [7884] = {.lex_state = 0, .external_lex_state = 187}, + [7885] = {.lex_state = 0, .external_lex_state = 187}, + [7886] = {.lex_state = 0, .external_lex_state = 187}, + [7887] = {.lex_state = 0, .external_lex_state = 187}, + [7888] = {.lex_state = 0, .external_lex_state = 187}, + [7889] = {.lex_state = 0, .external_lex_state = 187}, + [7890] = {.lex_state = 0, .external_lex_state = 187}, + [7891] = {.lex_state = 0, .external_lex_state = 187}, + [7892] = {.lex_state = 0, .external_lex_state = 187}, + [7893] = {.lex_state = 0, .external_lex_state = 187}, + [7894] = {.lex_state = 0, .external_lex_state = 187}, + [7895] = {.lex_state = 0, .external_lex_state = 187}, + [7896] = {.lex_state = 0, .external_lex_state = 187}, + [7897] = {.lex_state = 0, .external_lex_state = 187}, + [7898] = {.lex_state = 0, .external_lex_state = 187}, + [7899] = {.lex_state = 0, .external_lex_state = 187}, + [7900] = {.lex_state = 0, .external_lex_state = 187}, + [7901] = {.lex_state = 0, .external_lex_state = 187}, + [7902] = {.lex_state = 0, .external_lex_state = 187}, + [7903] = {.lex_state = 0, .external_lex_state = 187}, + [7904] = {.lex_state = 0, .external_lex_state = 187}, + [7905] = {.lex_state = 0, .external_lex_state = 187}, + [7906] = {.lex_state = 0, .external_lex_state = 187}, + [7907] = {.lex_state = 0, .external_lex_state = 187}, + [7908] = {.lex_state = 0, .external_lex_state = 187}, + [7909] = {.lex_state = 0, .external_lex_state = 187}, + [7910] = {.lex_state = 0, .external_lex_state = 187}, + [7911] = {.lex_state = 0, .external_lex_state = 187}, + [7912] = {.lex_state = 0, .external_lex_state = 187}, + [7913] = {.lex_state = 0, .external_lex_state = 187}, + [7914] = {.lex_state = 0, .external_lex_state = 187}, + [7915] = {.lex_state = 0, .external_lex_state = 187}, + [7916] = {.lex_state = 0, .external_lex_state = 187}, + [7917] = {.lex_state = 0, .external_lex_state = 187}, + [7918] = {.lex_state = 0, .external_lex_state = 187}, + [7919] = {.lex_state = 0, .external_lex_state = 187}, + [7920] = {.lex_state = 0, .external_lex_state = 187}, + [7921] = {.lex_state = 0, .external_lex_state = 187}, + [7922] = {.lex_state = 0, .external_lex_state = 187}, + [7923] = {.lex_state = 0, .external_lex_state = 187}, + [7924] = {.lex_state = 0, .external_lex_state = 187}, + [7925] = {.lex_state = 0, .external_lex_state = 187}, + [7926] = {.lex_state = 0, .external_lex_state = 187}, + [7927] = {.lex_state = 0, .external_lex_state = 187}, + [7928] = {.lex_state = 0, .external_lex_state = 187}, + [7929] = {.lex_state = 0, .external_lex_state = 187}, + [7930] = {.lex_state = 0, .external_lex_state = 187}, + [7931] = {.lex_state = 0, .external_lex_state = 187}, + [7932] = {.lex_state = 0, .external_lex_state = 187}, + [7933] = {.lex_state = 0, .external_lex_state = 187}, + [7934] = {.lex_state = 0, .external_lex_state = 187}, + [7935] = {.lex_state = 0, .external_lex_state = 187}, + [7936] = {.lex_state = 0, .external_lex_state = 187}, + [7937] = {.lex_state = 0, .external_lex_state = 187}, + [7938] = {.lex_state = 0, .external_lex_state = 187}, + [7939] = {.lex_state = 0, .external_lex_state = 187}, + [7940] = {.lex_state = 0, .external_lex_state = 187}, + [7941] = {.lex_state = 0, .external_lex_state = 187}, + [7942] = {.lex_state = 0, .external_lex_state = 187}, + [7943] = {.lex_state = 0, .external_lex_state = 187}, + [7944] = {.lex_state = 0, .external_lex_state = 187}, + [7945] = {.lex_state = 0, .external_lex_state = 187}, + [7946] = {.lex_state = 0, .external_lex_state = 187}, + [7947] = {.lex_state = 0, .external_lex_state = 187}, + [7948] = {.lex_state = 0, .external_lex_state = 187}, + [7949] = {.lex_state = 0, .external_lex_state = 187}, + [7950] = {.lex_state = 0, .external_lex_state = 187}, + [7951] = {.lex_state = 0, .external_lex_state = 187}, + [7952] = {.lex_state = 0, .external_lex_state = 187}, + [7953] = {.lex_state = 0, .external_lex_state = 187}, + [7954] = {.lex_state = 0, .external_lex_state = 187}, + [7955] = {.lex_state = 0, .external_lex_state = 187}, + [7956] = {.lex_state = 0, .external_lex_state = 187}, + [7957] = {.lex_state = 0, .external_lex_state = 187}, + [7958] = {.lex_state = 0, .external_lex_state = 187}, + [7959] = {.lex_state = 0, .external_lex_state = 187}, + [7960] = {.lex_state = 0, .external_lex_state = 187}, + [7961] = {.lex_state = 0, .external_lex_state = 187}, + [7962] = {.lex_state = 0, .external_lex_state = 187}, + [7963] = {.lex_state = 0, .external_lex_state = 187}, + [7964] = {.lex_state = 0, .external_lex_state = 187}, + [7965] = {.lex_state = 0, .external_lex_state = 187}, + [7966] = {.lex_state = 0, .external_lex_state = 187}, + [7967] = {.lex_state = 0, .external_lex_state = 187}, + [7968] = {.lex_state = 0, .external_lex_state = 187}, + [7969] = {.lex_state = 0, .external_lex_state = 187}, + [7970] = {.lex_state = 0, .external_lex_state = 187}, + [7971] = {.lex_state = 0, .external_lex_state = 187}, + [7972] = {.lex_state = 0, .external_lex_state = 187}, + [7973] = {.lex_state = 0, .external_lex_state = 187}, + [7974] = {.lex_state = 0, .external_lex_state = 187}, + [7975] = {.lex_state = 0, .external_lex_state = 187}, + [7976] = {.lex_state = 0, .external_lex_state = 187}, + [7977] = {.lex_state = 0, .external_lex_state = 187}, + [7978] = {.lex_state = 0, .external_lex_state = 187}, + [7979] = {.lex_state = 0, .external_lex_state = 187}, + [7980] = {.lex_state = 0, .external_lex_state = 187}, + [7981] = {.lex_state = 0, .external_lex_state = 187}, + [7982] = {.lex_state = 0, .external_lex_state = 187}, + [7983] = {.lex_state = 0, .external_lex_state = 187}, + [7984] = {.lex_state = 0, .external_lex_state = 187}, + [7985] = {.lex_state = 0, .external_lex_state = 187}, + [7986] = {.lex_state = 0, .external_lex_state = 187}, + [7987] = {.lex_state = 0, .external_lex_state = 187}, + [7988] = {.lex_state = 0, .external_lex_state = 187}, + [7989] = {.lex_state = 0, .external_lex_state = 187}, + [7990] = {.lex_state = 0, .external_lex_state = 187}, + [7991] = {.lex_state = 0, .external_lex_state = 187}, + [7992] = {.lex_state = 0, .external_lex_state = 187}, + [7993] = {.lex_state = 0, .external_lex_state = 187}, + [7994] = {.lex_state = 0, .external_lex_state = 187}, + [7995] = {.lex_state = 0, .external_lex_state = 187}, + [7996] = {.lex_state = 0, .external_lex_state = 187}, + [7997] = {.lex_state = 0, .external_lex_state = 187}, + [7998] = {.lex_state = 0, .external_lex_state = 187}, + [7999] = {.lex_state = 0, .external_lex_state = 187}, + [8000] = {.lex_state = 0, .external_lex_state = 187}, + [8001] = {.lex_state = 0, .external_lex_state = 187}, + [8002] = {.lex_state = 0, .external_lex_state = 260}, + [8003] = {.lex_state = 0, .external_lex_state = 187}, + [8004] = {.lex_state = 0, .external_lex_state = 187}, + [8005] = {.lex_state = 0, .external_lex_state = 187}, + [8006] = {.lex_state = 0, .external_lex_state = 187}, + [8007] = {.lex_state = 0, .external_lex_state = 187}, + [8008] = {.lex_state = 0, .external_lex_state = 187}, + [8009] = {.lex_state = 0, .external_lex_state = 260}, + [8010] = {.lex_state = 0, .external_lex_state = 187}, + [8011] = {.lex_state = 0, .external_lex_state = 187}, + [8012] = {.lex_state = 0, .external_lex_state = 187}, + [8013] = {.lex_state = 0, .external_lex_state = 187}, + [8014] = {.lex_state = 0, .external_lex_state = 187}, + [8015] = {.lex_state = 0, .external_lex_state = 187}, + [8016] = {.lex_state = 0, .external_lex_state = 187}, + [8017] = {.lex_state = 0, .external_lex_state = 223}, + [8018] = {.lex_state = 0, .external_lex_state = 187}, + [8019] = {.lex_state = 0, .external_lex_state = 187}, + [8020] = {.lex_state = 0, .external_lex_state = 223}, + [8021] = {.lex_state = 0, .external_lex_state = 268}, + [8022] = {.lex_state = 0, .external_lex_state = 187}, + [8023] = {.lex_state = 0, .external_lex_state = 187}, + [8024] = {.lex_state = 0, .external_lex_state = 187}, + [8025] = {.lex_state = 0, .external_lex_state = 268}, + [8026] = {.lex_state = 0, .external_lex_state = 187}, + [8027] = {.lex_state = 0, .external_lex_state = 187}, + [8028] = {.lex_state = 0, .external_lex_state = 187}, + [8029] = {.lex_state = 0, .external_lex_state = 187}, + [8030] = {.lex_state = 0, .external_lex_state = 187}, + [8031] = {.lex_state = 0, .external_lex_state = 187}, + [8032] = {.lex_state = 0, .external_lex_state = 268}, + [8033] = {.lex_state = 0, .external_lex_state = 268}, + [8034] = {.lex_state = 0, .external_lex_state = 187}, + [8035] = {.lex_state = 0, .external_lex_state = 187}, + [8036] = {.lex_state = 0, .external_lex_state = 187}, + [8037] = {.lex_state = 0, .external_lex_state = 187}, + [8038] = {.lex_state = 0, .external_lex_state = 242}, + [8039] = {.lex_state = 0, .external_lex_state = 187}, + [8040] = {.lex_state = 0, .external_lex_state = 187}, + [8041] = {.lex_state = 0, .external_lex_state = 187}, + [8042] = {.lex_state = 0, .external_lex_state = 187}, + [8043] = {.lex_state = 0, .external_lex_state = 240}, + [8044] = {.lex_state = 0, .external_lex_state = 187}, + [8045] = {.lex_state = 0, .external_lex_state = 187}, + [8046] = {.lex_state = 0, .external_lex_state = 240}, + [8047] = {.lex_state = 0, .external_lex_state = 187}, + [8048] = {.lex_state = 0, .external_lex_state = 275}, + [8049] = {.lex_state = 0, .external_lex_state = 187}, + [8050] = {.lex_state = 0, .external_lex_state = 187}, + [8051] = {.lex_state = 0, .external_lex_state = 187}, + [8052] = {.lex_state = 0, .external_lex_state = 286}, + [8053] = {.lex_state = 0, .external_lex_state = 187}, + [8054] = {.lex_state = 0, .external_lex_state = 187}, + [8055] = {.lex_state = 0, .external_lex_state = 187}, + [8056] = {.lex_state = 0, .external_lex_state = 187}, + [8057] = {.lex_state = 0, .external_lex_state = 187}, + [8058] = {.lex_state = 0, .external_lex_state = 187}, + [8059] = {.lex_state = 0, .external_lex_state = 187}, + [8060] = {.lex_state = 0, .external_lex_state = 187}, + [8061] = {.lex_state = 0, .external_lex_state = 187}, + [8062] = {.lex_state = 0, .external_lex_state = 268}, + [8063] = {.lex_state = 0, .external_lex_state = 187}, + [8064] = {.lex_state = 0, .external_lex_state = 187}, + [8065] = {.lex_state = 0, .external_lex_state = 187}, + [8066] = {.lex_state = 0, .external_lex_state = 187}, + [8067] = {.lex_state = 0, .external_lex_state = 287}, + [8068] = {.lex_state = 0, .external_lex_state = 187}, + [8069] = {.lex_state = 0, .external_lex_state = 187}, + [8070] = {.lex_state = 0, .external_lex_state = 187}, + [8071] = {.lex_state = 0, .external_lex_state = 187}, + [8072] = {.lex_state = 0, .external_lex_state = 187}, + [8073] = {.lex_state = 0, .external_lex_state = 187}, + [8074] = {.lex_state = 0, .external_lex_state = 187}, + [8075] = {.lex_state = 0, .external_lex_state = 268}, + [8076] = {.lex_state = 0, .external_lex_state = 187}, + [8077] = {.lex_state = 0, .external_lex_state = 187}, + [8078] = {.lex_state = 0, .external_lex_state = 187}, + [8079] = {.lex_state = 0, .external_lex_state = 187}, + [8080] = {.lex_state = 0, .external_lex_state = 286}, + [8081] = {.lex_state = 0, .external_lex_state = 187}, + [8082] = {.lex_state = 0, .external_lex_state = 187}, + [8083] = {.lex_state = 0, .external_lex_state = 187}, + [8084] = {.lex_state = 0, .external_lex_state = 187}, + [8085] = {.lex_state = 0, .external_lex_state = 187}, + [8086] = {.lex_state = 0, .external_lex_state = 187}, + [8087] = {.lex_state = 0, .external_lex_state = 187}, + [8088] = {.lex_state = 0, .external_lex_state = 187}, + [8089] = {.lex_state = 0, .external_lex_state = 187}, + [8090] = {.lex_state = 0, .external_lex_state = 187}, + [8091] = {.lex_state = 0, .external_lex_state = 187}, + [8092] = {.lex_state = 0, .external_lex_state = 187}, + [8093] = {.lex_state = 0, .external_lex_state = 187}, + [8094] = {.lex_state = 0, .external_lex_state = 187}, + [8095] = {.lex_state = 0, .external_lex_state = 187}, + [8096] = {.lex_state = 0, .external_lex_state = 187}, + [8097] = {.lex_state = 0, .external_lex_state = 187}, + [8098] = {.lex_state = 0, .external_lex_state = 187}, + [8099] = {.lex_state = 0, .external_lex_state = 187}, + [8100] = {.lex_state = 0, .external_lex_state = 187}, + [8101] = {.lex_state = 0, .external_lex_state = 187}, + [8102] = {.lex_state = 0, .external_lex_state = 187}, + [8103] = {.lex_state = 0, .external_lex_state = 187}, + [8104] = {.lex_state = 0, .external_lex_state = 187}, + [8105] = {.lex_state = 0, .external_lex_state = 187}, + [8106] = {.lex_state = 0, .external_lex_state = 187}, + [8107] = {.lex_state = 0, .external_lex_state = 187}, + [8108] = {.lex_state = 0, .external_lex_state = 187}, + [8109] = {.lex_state = 0, .external_lex_state = 187}, + [8110] = {.lex_state = 0, .external_lex_state = 284}, + [8111] = {.lex_state = 0, .external_lex_state = 187}, + [8112] = {.lex_state = 0, .external_lex_state = 187}, + [8113] = {.lex_state = 0, .external_lex_state = 187}, + [8114] = {.lex_state = 0, .external_lex_state = 187}, + [8115] = {.lex_state = 0, .external_lex_state = 187}, + [8116] = {.lex_state = 0, .external_lex_state = 187}, + [8117] = {.lex_state = 0, .external_lex_state = 187}, + [8118] = {.lex_state = 0, .external_lex_state = 187}, + [8119] = {.lex_state = 0, .external_lex_state = 187}, + [8120] = {.lex_state = 0, .external_lex_state = 288}, + [8121] = {.lex_state = 0, .external_lex_state = 187}, + [8122] = {.lex_state = 0, .external_lex_state = 187}, + [8123] = {.lex_state = 0, .external_lex_state = 187}, + [8124] = {.lex_state = 0, .external_lex_state = 187}, + [8125] = {.lex_state = 0, .external_lex_state = 187}, + [8126] = {.lex_state = 0, .external_lex_state = 187}, + [8127] = {.lex_state = 0, .external_lex_state = 187}, + [8128] = {.lex_state = 0, .external_lex_state = 187}, + [8129] = {.lex_state = 0, .external_lex_state = 187}, + [8130] = {.lex_state = 0, .external_lex_state = 187}, + [8131] = {.lex_state = 0, .external_lex_state = 187}, + [8132] = {.lex_state = 0, .external_lex_state = 187}, + [8133] = {.lex_state = 0, .external_lex_state = 187}, + [8134] = {.lex_state = 0, .external_lex_state = 289}, + [8135] = {.lex_state = 0, .external_lex_state = 260}, + [8136] = {.lex_state = 0, .external_lex_state = 187}, + [8137] = {.lex_state = 0, .external_lex_state = 187}, + [8138] = {.lex_state = 0, .external_lex_state = 187}, + [8139] = {.lex_state = 0, .external_lex_state = 187}, + [8140] = {.lex_state = 0, .external_lex_state = 260}, + [8141] = {.lex_state = 0, .external_lex_state = 187}, + [8142] = {.lex_state = 0, .external_lex_state = 187}, + [8143] = {.lex_state = 0, .external_lex_state = 187}, + [8144] = {.lex_state = 0, .external_lex_state = 187}, + [8145] = {.lex_state = 0, .external_lex_state = 187}, + [8146] = {.lex_state = 0, .external_lex_state = 187}, + [8147] = {.lex_state = 0, .external_lex_state = 187}, + [8148] = {.lex_state = 0, .external_lex_state = 268}, + [8149] = {.lex_state = 0, .external_lex_state = 187}, + [8150] = {.lex_state = 0, .external_lex_state = 240}, + [8151] = {.lex_state = 0, .external_lex_state = 253}, + [8152] = {.lex_state = 0, .external_lex_state = 255}, + [8153] = {.lex_state = 0, .external_lex_state = 259}, + [8154] = {.lex_state = 0, .external_lex_state = 259}, + [8155] = {.lex_state = 0, .external_lex_state = 259}, + [8156] = {.lex_state = 0, .external_lex_state = 187}, + [8157] = {.lex_state = 0, .external_lex_state = 223}, + [8158] = {.lex_state = 0, .external_lex_state = 268}, + [8159] = {.lex_state = 0, .external_lex_state = 268}, + [8160] = {.lex_state = 0, .external_lex_state = 187}, + [8161] = {.lex_state = 0, .external_lex_state = 187}, + [8162] = {.lex_state = 0, .external_lex_state = 268}, + [8163] = {.lex_state = 0, .external_lex_state = 187}, + [8164] = {.lex_state = 0, .external_lex_state = 187}, + [8165] = {.lex_state = 0, .external_lex_state = 187}, + [8166] = {.lex_state = 0, .external_lex_state = 187}, + [8167] = {.lex_state = 0, .external_lex_state = 187}, + [8168] = {.lex_state = 0, .external_lex_state = 187}, + [8169] = {.lex_state = 0, .external_lex_state = 187}, + [8170] = {.lex_state = 0, .external_lex_state = 187}, + [8171] = {.lex_state = 0, .external_lex_state = 187}, + [8172] = {.lex_state = 0, .external_lex_state = 187}, + [8173] = {.lex_state = 0, .external_lex_state = 187}, + [8174] = {.lex_state = 0, .external_lex_state = 187}, + [8175] = {.lex_state = 0, .external_lex_state = 187}, + [8176] = {.lex_state = 0, .external_lex_state = 187}, + [8177] = {.lex_state = 0, .external_lex_state = 187}, + [8178] = {.lex_state = 0, .external_lex_state = 187}, + [8179] = {.lex_state = 0, .external_lex_state = 255}, + [8180] = {.lex_state = 0, .external_lex_state = 259}, + [8181] = {.lex_state = 0, .external_lex_state = 187}, + [8182] = {.lex_state = 0, .external_lex_state = 287}, + [8183] = {.lex_state = 0, .external_lex_state = 187}, + [8184] = {.lex_state = 0, .external_lex_state = 187}, + [8185] = {.lex_state = 0, .external_lex_state = 187}, + [8186] = {.lex_state = 0, .external_lex_state = 187}, + [8187] = {.lex_state = 0, .external_lex_state = 187}, + [8188] = {.lex_state = 0, .external_lex_state = 187}, + [8189] = {.lex_state = 0, .external_lex_state = 187}, + [8190] = {.lex_state = 0, .external_lex_state = 187}, + [8191] = {.lex_state = 0, .external_lex_state = 262}, + [8192] = {.lex_state = 0, .external_lex_state = 187}, + [8193] = {.lex_state = 0, .external_lex_state = 187}, + [8194] = {.lex_state = 0, .external_lex_state = 187}, + [8195] = {.lex_state = 0, .external_lex_state = 187}, + [8196] = {.lex_state = 0, .external_lex_state = 187}, + [8197] = {.lex_state = 0, .external_lex_state = 187}, + [8198] = {.lex_state = 0, .external_lex_state = 187}, + [8199] = {.lex_state = 0, .external_lex_state = 187}, + [8200] = {.lex_state = 0, .external_lex_state = 268}, + [8201] = {.lex_state = 0, .external_lex_state = 187}, + [8202] = {.lex_state = 0, .external_lex_state = 187}, + [8203] = {.lex_state = 0, .external_lex_state = 187}, + [8204] = {.lex_state = 0, .external_lex_state = 187}, + [8205] = {.lex_state = 0, .external_lex_state = 187}, + [8206] = {.lex_state = 0, .external_lex_state = 260}, + [8207] = {.lex_state = 0, .external_lex_state = 187}, + [8208] = {.lex_state = 0, .external_lex_state = 187}, + [8209] = {.lex_state = 0, .external_lex_state = 187}, + [8210] = {.lex_state = 0, .external_lex_state = 268}, + [8211] = {.lex_state = 0, .external_lex_state = 187}, + [8212] = {.lex_state = 0, .external_lex_state = 260}, + [8213] = {.lex_state = 0, .external_lex_state = 187}, + [8214] = {.lex_state = 0, .external_lex_state = 187}, + [8215] = {.lex_state = 0, .external_lex_state = 187}, + [8216] = {.lex_state = 0, .external_lex_state = 187}, + [8217] = {.lex_state = 0, .external_lex_state = 187}, + [8218] = {.lex_state = 0, .external_lex_state = 187}, + [8219] = {.lex_state = 0, .external_lex_state = 187}, + [8220] = {.lex_state = 0, .external_lex_state = 187}, + [8221] = {.lex_state = 0, .external_lex_state = 187}, + [8222] = {.lex_state = 0, .external_lex_state = 187}, + [8223] = {.lex_state = 0, .external_lex_state = 187}, + [8224] = {.lex_state = 0, .external_lex_state = 187}, + [8225] = {.lex_state = 0, .external_lex_state = 187}, + [8226] = {.lex_state = 0, .external_lex_state = 187}, + [8227] = {.lex_state = 0, .external_lex_state = 187}, + [8228] = {.lex_state = 0, .external_lex_state = 187}, + [8229] = {.lex_state = 0, .external_lex_state = 187}, + [8230] = {.lex_state = 0, .external_lex_state = 187}, + [8231] = {.lex_state = 0, .external_lex_state = 187}, + [8232] = {.lex_state = 0, .external_lex_state = 187}, + [8233] = {.lex_state = 0, .external_lex_state = 187}, + [8234] = {.lex_state = 0, .external_lex_state = 187}, + [8235] = {.lex_state = 0, .external_lex_state = 268}, + [8236] = {.lex_state = 0, .external_lex_state = 187}, + [8237] = {.lex_state = 0, .external_lex_state = 187}, + [8238] = {.lex_state = 0, .external_lex_state = 268}, + [8239] = {.lex_state = 0, .external_lex_state = 187}, + [8240] = {.lex_state = 0, .external_lex_state = 187}, + [8241] = {.lex_state = 0, .external_lex_state = 260}, + [8242] = {.lex_state = 0, .external_lex_state = 187}, + [8243] = {.lex_state = 0, .external_lex_state = 270}, + [8244] = {.lex_state = 0, .external_lex_state = 187}, + [8245] = {.lex_state = 0, .external_lex_state = 187}, + [8246] = {.lex_state = 0, .external_lex_state = 259}, + [8247] = {.lex_state = 0, .external_lex_state = 268}, + [8248] = {.lex_state = 0, .external_lex_state = 187}, + [8249] = {.lex_state = 0, .external_lex_state = 268}, + [8250] = {.lex_state = 0, .external_lex_state = 187}, + [8251] = {.lex_state = 0, .external_lex_state = 187}, + [8252] = {.lex_state = 0, .external_lex_state = 187}, + [8253] = {.lex_state = 0, .external_lex_state = 187}, + [8254] = {.lex_state = 0, .external_lex_state = 187}, + [8255] = {.lex_state = 0, .external_lex_state = 187}, + [8256] = {.lex_state = 0, .external_lex_state = 187}, + [8257] = {.lex_state = 0, .external_lex_state = 187}, + [8258] = {.lex_state = 0, .external_lex_state = 187}, + [8259] = {.lex_state = 0, .external_lex_state = 187}, + [8260] = {.lex_state = 0, .external_lex_state = 260}, + [8261] = {.lex_state = 0, .external_lex_state = 187}, + [8262] = {.lex_state = 0, .external_lex_state = 187}, + [8263] = {.lex_state = 0, .external_lex_state = 283}, + [8264] = {.lex_state = 0, .external_lex_state = 187}, + [8265] = {.lex_state = 0, .external_lex_state = 255}, + [8266] = {.lex_state = 0, .external_lex_state = 187}, + [8267] = {.lex_state = 0, .external_lex_state = 255}, + [8268] = {.lex_state = 0, .external_lex_state = 187}, + [8269] = {.lex_state = 0, .external_lex_state = 187}, + [8270] = {.lex_state = 0, .external_lex_state = 283}, + [8271] = {.lex_state = 0, .external_lex_state = 187}, + [8272] = {.lex_state = 0, .external_lex_state = 255}, + [8273] = {.lex_state = 0, .external_lex_state = 187}, + [8274] = {.lex_state = 0, .external_lex_state = 255}, + [8275] = {.lex_state = 0, .external_lex_state = 187}, + [8276] = {.lex_state = 0, .external_lex_state = 187}, + [8277] = {.lex_state = 0, .external_lex_state = 283}, + [8278] = {.lex_state = 0, .external_lex_state = 260}, + [8279] = {.lex_state = 0, .external_lex_state = 255}, + [8280] = {.lex_state = 0, .external_lex_state = 187}, + [8281] = {.lex_state = 0, .external_lex_state = 255}, + [8282] = {.lex_state = 0, .external_lex_state = 187}, + [8283] = {.lex_state = 0, .external_lex_state = 187}, + [8284] = {.lex_state = 0, .external_lex_state = 283}, + [8285] = {.lex_state = 0, .external_lex_state = 223}, + [8286] = {.lex_state = 0, .external_lex_state = 255}, + [8287] = {.lex_state = 0, .external_lex_state = 187}, + [8288] = {.lex_state = 0, .external_lex_state = 187}, + [8289] = {.lex_state = 0, .external_lex_state = 283}, + [8290] = {.lex_state = 0, .external_lex_state = 187}, + [8291] = {.lex_state = 0, .external_lex_state = 255}, + [8292] = {.lex_state = 0, .external_lex_state = 187}, + [8293] = {.lex_state = 0, .external_lex_state = 187}, + [8294] = {.lex_state = 0, .external_lex_state = 283}, + [8295] = {.lex_state = 0, .external_lex_state = 187}, + [8296] = {.lex_state = 0, .external_lex_state = 255}, + [8297] = {.lex_state = 0, .external_lex_state = 187}, + [8298] = {.lex_state = 0, .external_lex_state = 187}, + [8299] = {.lex_state = 0, .external_lex_state = 255}, + [8300] = {.lex_state = 0, .external_lex_state = 187}, + [8301] = {.lex_state = 0, .external_lex_state = 268}, + [8302] = {.lex_state = 0, .external_lex_state = 268}, + [8303] = {.lex_state = 0, .external_lex_state = 187}, + [8304] = {.lex_state = 0, .external_lex_state = 187}, + [8305] = {.lex_state = 0, .external_lex_state = 268}, + [8306] = {.lex_state = 0, .external_lex_state = 268}, + [8307] = {.lex_state = 0, .external_lex_state = 187}, + [8308] = {.lex_state = 0, .external_lex_state = 265}, + [8309] = {.lex_state = 0, .external_lex_state = 187}, + [8310] = {.lex_state = 0, .external_lex_state = 187}, + [8311] = {.lex_state = 0, .external_lex_state = 187}, + [8312] = {.lex_state = 0, .external_lex_state = 223}, + [8313] = {.lex_state = 0, .external_lex_state = 187}, + [8314] = {.lex_state = 0, .external_lex_state = 187}, + [8315] = {.lex_state = 0, .external_lex_state = 265}, + [8316] = {.lex_state = 0, .external_lex_state = 187}, + [8317] = {.lex_state = 0, .external_lex_state = 187}, + [8318] = {.lex_state = 0, .external_lex_state = 187}, + [8319] = {.lex_state = 0, .external_lex_state = 187}, + [8320] = {.lex_state = 0, .external_lex_state = 187}, + [8321] = {.lex_state = 0, .external_lex_state = 187}, + [8322] = {.lex_state = 0, .external_lex_state = 187}, + [8323] = {.lex_state = 0, .external_lex_state = 187}, + [8324] = {.lex_state = 0, .external_lex_state = 187}, + [8325] = {.lex_state = 0, .external_lex_state = 187}, + [8326] = {.lex_state = 0, .external_lex_state = 187}, + [8327] = {.lex_state = 0, .external_lex_state = 255}, + [8328] = {.lex_state = 0, .external_lex_state = 187}, + [8329] = {.lex_state = 0, .external_lex_state = 187}, + [8330] = {.lex_state = 0, .external_lex_state = 187}, + [8331] = {.lex_state = 0, .external_lex_state = 187}, + [8332] = {.lex_state = 0, .external_lex_state = 255}, + [8333] = {.lex_state = 0, .external_lex_state = 187}, + [8334] = {.lex_state = 0, .external_lex_state = 187}, + [8335] = {.lex_state = 0, .external_lex_state = 187}, + [8336] = {.lex_state = 0, .external_lex_state = 187}, + [8337] = {.lex_state = 0, .external_lex_state = 187}, + [8338] = {.lex_state = 0, .external_lex_state = 242}, + [8339] = {.lex_state = 0, .external_lex_state = 187}, + [8340] = {.lex_state = 0, .external_lex_state = 268}, + [8341] = {.lex_state = 0, .external_lex_state = 242}, + [8342] = {.lex_state = 0, .external_lex_state = 223}, + [8343] = {.lex_state = 0, .external_lex_state = 272}, + [8344] = {.lex_state = 0, .external_lex_state = 265}, + [8345] = {.lex_state = 0, .external_lex_state = 268}, + [8346] = {.lex_state = 0, .external_lex_state = 280}, + [8347] = {.lex_state = 0, .external_lex_state = 187}, + [8348] = {.lex_state = 0, .external_lex_state = 187}, + [8349] = {(TSStateId)(-1)}, + [8350] = {(TSStateId)(-1)}, + [8351] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -21016,74 +21662,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_error_sentinel] = ACTIONS(1), }, [1] = { - [sym_design_file] = STATE(7530), - [sym_design_unit] = STATE(2092), - [sym__context_item] = STATE(2133), - [sym_library_clause] = STATE(2131), - [sym_use_clause] = STATE(2127), - [sym_context_reference] = STATE(2131), - [sym__library_unit] = STATE(2123), - [sym_entity_declaration] = STATE(2121), - [sym_configuration_declaration] = STATE(2121), - [sym_package_declaration] = STATE(2110), - [sym_package_instantiation_declaration] = STATE(2110), - [sym_context_declaration] = STATE(2121), - [sym_architecture_definition] = STATE(2121), - [sym_package_definition] = STATE(2110), - [sym__block_declarative_item] = STATE(2107), - [sym_subprogram_declaration] = STATE(2105), - [sym_subprogram_definition] = STATE(2105), - [sym_subprogram_instantiation_declaration] = STATE(2105), - [sym_type_declaration] = STATE(2105), - [sym_subtype_declaration] = STATE(2105), - [sym_mode_view_declaration] = STATE(2105), - [sym_constant_declaration] = STATE(2105), - [sym_signal_declaration] = STATE(2105), - [sym_variable_declaration] = STATE(2105), - [sym_file_declaration] = STATE(2105), - [sym_alias_declaration] = STATE(2105), - [sym_component_declaration] = STATE(2105), - [sym_attribute_declaration] = STATE(2105), - [sym_attribute_specification] = STATE(2105), - [sym_disconnection_specification] = STATE(2105), - [sym_group_template_declaration] = STATE(2105), - [sym_group_declaration] = STATE(2105), - [sym__concurrent_statement] = STATE(2103), - [sym_block_statement] = STATE(2102), - [sym_component_instantiation_statement] = STATE(2102), - [sym_process_statement] = STATE(2102), - [sym_case_generate_statement] = STATE(2102), - [sym_for_generate_statement] = STATE(2102), - [sym_if_generate_statement] = STATE(2102), - [sym_concurrent_assertion_statement] = STATE(2102), - [sym_assertion] = STATE(7529), - [sym_concurrent_procedure_call_statement] = STATE(2102), - [sym_concurrent_simple_signal_assignment] = STATE(2102), - [sym_concurrent_conditional_signal_assignment] = STATE(2102), - [sym_concurrent_selected_signal_assignment] = STATE(2102), - [sym_with_expression] = STATE(6066), - [sym_name] = STATE(6068), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7523), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym_design_file] = STATE(7732), + [sym_design_unit] = STATE(1923), + [sym__context_item] = STATE(1924), + [sym_library_clause] = STATE(1925), + [sym_use_clause] = STATE(1927), + [sym_context_reference] = STATE(1925), + [sym__library_unit] = STATE(1928), + [sym_entity_declaration] = STATE(1929), + [sym_configuration_declaration] = STATE(1929), + [sym_package_declaration] = STATE(1930), + [sym_package_instantiation_declaration] = STATE(1930), + [sym_context_declaration] = STATE(1929), + [sym_architecture_definition] = STATE(1929), + [sym_package_definition] = STATE(1930), + [sym__block_declarative_item] = STATE(1931), + [sym_subprogram_declaration] = STATE(1933), + [sym_subprogram_definition] = STATE(1933), + [sym_subprogram_instantiation_declaration] = STATE(1933), + [sym_type_declaration] = STATE(1933), + [sym_subtype_declaration] = STATE(1933), + [sym_mode_view_declaration] = STATE(1933), + [sym_constant_declaration] = STATE(1933), + [sym_signal_declaration] = STATE(1933), + [sym_variable_declaration] = STATE(1933), + [sym_file_declaration] = STATE(1933), + [sym_alias_declaration] = STATE(1933), + [sym_component_declaration] = STATE(1933), + [sym_attribute_declaration] = STATE(1933), + [sym_attribute_specification] = STATE(1933), + [sym_disconnection_specification] = STATE(1933), + [sym_group_template_declaration] = STATE(1933), + [sym_group_declaration] = STATE(1933), + [sym__concurrent_statement] = STATE(1935), + [sym_block_statement] = STATE(1936), + [sym_component_instantiation_statement] = STATE(1936), + [sym_process_statement] = STATE(1936), + [sym_case_generate_statement] = STATE(1936), + [sym_for_generate_statement] = STATE(1936), + [sym_if_generate_statement] = STATE(1936), + [sym_concurrent_assertion_statement] = STATE(1936), + [sym_assertion] = STATE(7729), + [sym_concurrent_procedure_call_statement] = STATE(1936), + [sym_concurrent_simple_signal_assignment] = STATE(1936), + [sym_concurrent_conditional_signal_assignment] = STATE(1936), + [sym_concurrent_selected_signal_assignment] = STATE(1936), + [sym_with_expression] = STATE(6281), + [sym_name] = STATE(6283), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7713), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(1), - [sym_procedure_specification] = STATE(6075), - [sym_function_specification] = STATE(6075), - [sym__subprogram_specification] = STATE(5624), - [sym__target] = STATE(6080), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(2570), - [sym_configuration_specification] = STATE(2105), + [sym_procedure_specification] = STATE(6351), + [sym_function_specification] = STATE(6351), + [sym__subprogram_specification] = STATE(5843), + [sym__target] = STATE(6306), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(2622), + [sym_configuration_specification] = STATE(1933), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [aux_sym_design_file_repeat1] = STATE(3), - [aux_sym_design_unit_repeat1] = STATE(739), - [aux_sym_design_unit_repeat2] = STATE(63), - [aux_sym_design_unit_repeat3] = STATE(108), + [aux_sym_design_unit_repeat1] = STATE(741), + [aux_sym_design_unit_repeat2] = STATE(17), + [aux_sym_design_unit_repeat3] = STATE(100), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_LT_LT] = ACTIONS(11), [sym_identifier] = ACTIONS(13), @@ -21128,73 +21774,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__end_of_file] = ACTIONS(73), }, [2] = { - [sym_design_unit] = STATE(2092), - [sym__context_item] = STATE(2133), - [sym_library_clause] = STATE(2131), - [sym_use_clause] = STATE(2127), - [sym_context_reference] = STATE(2131), - [sym__library_unit] = STATE(2123), - [sym_entity_declaration] = STATE(2121), - [sym_configuration_declaration] = STATE(2121), - [sym_package_declaration] = STATE(2110), - [sym_package_instantiation_declaration] = STATE(2110), - [sym_context_declaration] = STATE(2121), - [sym_architecture_definition] = STATE(2121), - [sym_package_definition] = STATE(2110), - [sym__block_declarative_item] = STATE(2107), - [sym_subprogram_declaration] = STATE(2105), - [sym_subprogram_definition] = STATE(2105), - [sym_subprogram_instantiation_declaration] = STATE(2105), - [sym_type_declaration] = STATE(2105), - [sym_subtype_declaration] = STATE(2105), - [sym_mode_view_declaration] = STATE(2105), - [sym_constant_declaration] = STATE(2105), - [sym_signal_declaration] = STATE(2105), - [sym_variable_declaration] = STATE(2105), - [sym_file_declaration] = STATE(2105), - [sym_alias_declaration] = STATE(2105), - [sym_component_declaration] = STATE(2105), - [sym_attribute_declaration] = STATE(2105), - [sym_attribute_specification] = STATE(2105), - [sym_disconnection_specification] = STATE(2105), - [sym_group_template_declaration] = STATE(2105), - [sym_group_declaration] = STATE(2105), - [sym__concurrent_statement] = STATE(2103), - [sym_block_statement] = STATE(2102), - [sym_component_instantiation_statement] = STATE(2102), - [sym_process_statement] = STATE(2102), - [sym_case_generate_statement] = STATE(2102), - [sym_for_generate_statement] = STATE(2102), - [sym_if_generate_statement] = STATE(2102), - [sym_concurrent_assertion_statement] = STATE(2102), - [sym_assertion] = STATE(7529), - [sym_concurrent_procedure_call_statement] = STATE(2102), - [sym_concurrent_simple_signal_assignment] = STATE(2102), - [sym_concurrent_conditional_signal_assignment] = STATE(2102), - [sym_concurrent_selected_signal_assignment] = STATE(2102), - [sym_with_expression] = STATE(6066), - [sym_name] = STATE(6068), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7523), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym_design_unit] = STATE(1923), + [sym__context_item] = STATE(1924), + [sym_library_clause] = STATE(1925), + [sym_use_clause] = STATE(1927), + [sym_context_reference] = STATE(1925), + [sym__library_unit] = STATE(1928), + [sym_entity_declaration] = STATE(1929), + [sym_configuration_declaration] = STATE(1929), + [sym_package_declaration] = STATE(1930), + [sym_package_instantiation_declaration] = STATE(1930), + [sym_context_declaration] = STATE(1929), + [sym_architecture_definition] = STATE(1929), + [sym_package_definition] = STATE(1930), + [sym__block_declarative_item] = STATE(1931), + [sym_subprogram_declaration] = STATE(1933), + [sym_subprogram_definition] = STATE(1933), + [sym_subprogram_instantiation_declaration] = STATE(1933), + [sym_type_declaration] = STATE(1933), + [sym_subtype_declaration] = STATE(1933), + [sym_mode_view_declaration] = STATE(1933), + [sym_constant_declaration] = STATE(1933), + [sym_signal_declaration] = STATE(1933), + [sym_variable_declaration] = STATE(1933), + [sym_file_declaration] = STATE(1933), + [sym_alias_declaration] = STATE(1933), + [sym_component_declaration] = STATE(1933), + [sym_attribute_declaration] = STATE(1933), + [sym_attribute_specification] = STATE(1933), + [sym_disconnection_specification] = STATE(1933), + [sym_group_template_declaration] = STATE(1933), + [sym_group_declaration] = STATE(1933), + [sym__concurrent_statement] = STATE(1935), + [sym_block_statement] = STATE(1936), + [sym_component_instantiation_statement] = STATE(1936), + [sym_process_statement] = STATE(1936), + [sym_case_generate_statement] = STATE(1936), + [sym_for_generate_statement] = STATE(1936), + [sym_if_generate_statement] = STATE(1936), + [sym_concurrent_assertion_statement] = STATE(1936), + [sym_assertion] = STATE(7729), + [sym_concurrent_procedure_call_statement] = STATE(1936), + [sym_concurrent_simple_signal_assignment] = STATE(1936), + [sym_concurrent_conditional_signal_assignment] = STATE(1936), + [sym_concurrent_selected_signal_assignment] = STATE(1936), + [sym_with_expression] = STATE(6281), + [sym_name] = STATE(6283), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7713), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(2), - [sym_procedure_specification] = STATE(6075), - [sym_function_specification] = STATE(6075), - [sym__subprogram_specification] = STATE(5624), - [sym__target] = STATE(6080), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(2570), - [sym_configuration_specification] = STATE(2105), + [sym_procedure_specification] = STATE(6351), + [sym_function_specification] = STATE(6351), + [sym__subprogram_specification] = STATE(5843), + [sym__target] = STATE(6306), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(2622), + [sym_configuration_specification] = STATE(1933), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), [aux_sym_design_file_repeat1] = STATE(2), - [aux_sym_design_unit_repeat1] = STATE(739), - [aux_sym_design_unit_repeat2] = STATE(63), - [aux_sym_design_unit_repeat3] = STATE(108), + [aux_sym_design_unit_repeat1] = STATE(741), + [aux_sym_design_unit_repeat2] = STATE(17), + [aux_sym_design_unit_repeat3] = STATE(100), [anon_sym_LPAREN] = ACTIONS(75), [anon_sym_LT_LT] = ACTIONS(78), [sym_identifier] = ACTIONS(81), @@ -21239,73 +21885,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__end_of_file] = ACTIONS(171), }, [3] = { - [sym_design_unit] = STATE(2092), - [sym__context_item] = STATE(2133), - [sym_library_clause] = STATE(2131), - [sym_use_clause] = STATE(2127), - [sym_context_reference] = STATE(2131), - [sym__library_unit] = STATE(2123), - [sym_entity_declaration] = STATE(2121), - [sym_configuration_declaration] = STATE(2121), - [sym_package_declaration] = STATE(2110), - [sym_package_instantiation_declaration] = STATE(2110), - [sym_context_declaration] = STATE(2121), - [sym_architecture_definition] = STATE(2121), - [sym_package_definition] = STATE(2110), - [sym__block_declarative_item] = STATE(2107), - [sym_subprogram_declaration] = STATE(2105), - [sym_subprogram_definition] = STATE(2105), - [sym_subprogram_instantiation_declaration] = STATE(2105), - [sym_type_declaration] = STATE(2105), - [sym_subtype_declaration] = STATE(2105), - [sym_mode_view_declaration] = STATE(2105), - [sym_constant_declaration] = STATE(2105), - [sym_signal_declaration] = STATE(2105), - [sym_variable_declaration] = STATE(2105), - [sym_file_declaration] = STATE(2105), - [sym_alias_declaration] = STATE(2105), - [sym_component_declaration] = STATE(2105), - [sym_attribute_declaration] = STATE(2105), - [sym_attribute_specification] = STATE(2105), - [sym_disconnection_specification] = STATE(2105), - [sym_group_template_declaration] = STATE(2105), - [sym_group_declaration] = STATE(2105), - [sym__concurrent_statement] = STATE(2103), - [sym_block_statement] = STATE(2102), - [sym_component_instantiation_statement] = STATE(2102), - [sym_process_statement] = STATE(2102), - [sym_case_generate_statement] = STATE(2102), - [sym_for_generate_statement] = STATE(2102), - [sym_if_generate_statement] = STATE(2102), - [sym_concurrent_assertion_statement] = STATE(2102), - [sym_assertion] = STATE(7529), - [sym_concurrent_procedure_call_statement] = STATE(2102), - [sym_concurrent_simple_signal_assignment] = STATE(2102), - [sym_concurrent_conditional_signal_assignment] = STATE(2102), - [sym_concurrent_selected_signal_assignment] = STATE(2102), - [sym_with_expression] = STATE(6066), - [sym_name] = STATE(6068), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7523), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym_design_unit] = STATE(1923), + [sym__context_item] = STATE(1924), + [sym_library_clause] = STATE(1925), + [sym_use_clause] = STATE(1927), + [sym_context_reference] = STATE(1925), + [sym__library_unit] = STATE(1928), + [sym_entity_declaration] = STATE(1929), + [sym_configuration_declaration] = STATE(1929), + [sym_package_declaration] = STATE(1930), + [sym_package_instantiation_declaration] = STATE(1930), + [sym_context_declaration] = STATE(1929), + [sym_architecture_definition] = STATE(1929), + [sym_package_definition] = STATE(1930), + [sym__block_declarative_item] = STATE(1931), + [sym_subprogram_declaration] = STATE(1933), + [sym_subprogram_definition] = STATE(1933), + [sym_subprogram_instantiation_declaration] = STATE(1933), + [sym_type_declaration] = STATE(1933), + [sym_subtype_declaration] = STATE(1933), + [sym_mode_view_declaration] = STATE(1933), + [sym_constant_declaration] = STATE(1933), + [sym_signal_declaration] = STATE(1933), + [sym_variable_declaration] = STATE(1933), + [sym_file_declaration] = STATE(1933), + [sym_alias_declaration] = STATE(1933), + [sym_component_declaration] = STATE(1933), + [sym_attribute_declaration] = STATE(1933), + [sym_attribute_specification] = STATE(1933), + [sym_disconnection_specification] = STATE(1933), + [sym_group_template_declaration] = STATE(1933), + [sym_group_declaration] = STATE(1933), + [sym__concurrent_statement] = STATE(1935), + [sym_block_statement] = STATE(1936), + [sym_component_instantiation_statement] = STATE(1936), + [sym_process_statement] = STATE(1936), + [sym_case_generate_statement] = STATE(1936), + [sym_for_generate_statement] = STATE(1936), + [sym_if_generate_statement] = STATE(1936), + [sym_concurrent_assertion_statement] = STATE(1936), + [sym_assertion] = STATE(7729), + [sym_concurrent_procedure_call_statement] = STATE(1936), + [sym_concurrent_simple_signal_assignment] = STATE(1936), + [sym_concurrent_conditional_signal_assignment] = STATE(1936), + [sym_concurrent_selected_signal_assignment] = STATE(1936), + [sym_with_expression] = STATE(6281), + [sym_name] = STATE(6283), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7713), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(3), - [sym_procedure_specification] = STATE(6075), - [sym_function_specification] = STATE(6075), - [sym__subprogram_specification] = STATE(5624), - [sym__target] = STATE(6080), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(2570), - [sym_configuration_specification] = STATE(2105), + [sym_procedure_specification] = STATE(6351), + [sym_function_specification] = STATE(6351), + [sym__subprogram_specification] = STATE(5843), + [sym__target] = STATE(6306), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(2622), + [sym_configuration_specification] = STATE(1933), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), [aux_sym_design_file_repeat1] = STATE(2), - [aux_sym_design_unit_repeat1] = STATE(739), - [aux_sym_design_unit_repeat2] = STATE(63), - [aux_sym_design_unit_repeat3] = STATE(108), + [aux_sym_design_unit_repeat1] = STATE(741), + [aux_sym_design_unit_repeat2] = STATE(17), + [aux_sym_design_unit_repeat3] = STATE(100), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_LT_LT] = ACTIONS(11), [sym_identifier] = ACTIONS(13), @@ -21350,62 +21996,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__end_of_file] = ACTIONS(173), }, [4] = { - [sym_use_clause] = STATE(3074), - [sym_package_declaration] = STATE(3074), - [sym_package_instantiation_declaration] = STATE(3074), - [sym_package_definition] = STATE(3074), - [sym__block_declarative_item] = STATE(3015), - [sym_subprogram_declaration] = STATE(3074), - [sym_subprogram_definition] = STATE(3074), - [sym_subprogram_instantiation_declaration] = STATE(3074), - [sym_type_declaration] = STATE(3074), - [sym_subtype_declaration] = STATE(3074), - [sym_mode_view_declaration] = STATE(3074), - [sym_constant_declaration] = STATE(3074), - [sym_signal_declaration] = STATE(3074), - [sym_variable_declaration] = STATE(3074), - [sym_file_declaration] = STATE(3074), - [sym_alias_declaration] = STATE(3074), - [sym_component_declaration] = STATE(3074), - [sym_attribute_declaration] = STATE(3074), - [sym_attribute_specification] = STATE(3074), - [sym_disconnection_specification] = STATE(3074), - [sym_group_template_declaration] = STATE(3074), - [sym_group_declaration] = STATE(3074), - [sym__concurrent_statement] = STATE(3789), - [sym_block_statement] = STATE(3788), - [sym_component_instantiation_statement] = STATE(3788), - [sym_process_statement] = STATE(3788), - [sym_case_generate_statement] = STATE(3788), - [sym_for_generate_statement] = STATE(3788), - [sym_if_generate_statement] = STATE(3788), - [sym_concurrent_assertion_statement] = STATE(3788), - [sym_assertion] = STATE(6937), - [sym_concurrent_procedure_call_statement] = STATE(3788), - [sym_concurrent_simple_signal_assignment] = STATE(3788), - [sym_concurrent_conditional_signal_assignment] = STATE(3788), - [sym_concurrent_selected_signal_assignment] = STATE(3788), - [sym_with_expression] = STATE(5983), - [sym_name] = STATE(6159), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7523), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym_use_clause] = STATE(3161), + [sym_package_declaration] = STATE(3161), + [sym_package_instantiation_declaration] = STATE(3161), + [sym_package_definition] = STATE(3161), + [sym__block_declarative_item] = STATE(3158), + [sym_subprogram_declaration] = STATE(3161), + [sym_subprogram_definition] = STATE(3161), + [sym_subprogram_instantiation_declaration] = STATE(3161), + [sym_type_declaration] = STATE(3161), + [sym_subtype_declaration] = STATE(3161), + [sym_mode_view_declaration] = STATE(3161), + [sym_constant_declaration] = STATE(3161), + [sym_signal_declaration] = STATE(3161), + [sym_variable_declaration] = STATE(3161), + [sym_file_declaration] = STATE(3161), + [sym_alias_declaration] = STATE(3161), + [sym_component_declaration] = STATE(3161), + [sym_attribute_declaration] = STATE(3161), + [sym_attribute_specification] = STATE(3161), + [sym_disconnection_specification] = STATE(3161), + [sym_group_template_declaration] = STATE(3161), + [sym_group_declaration] = STATE(3161), + [sym__concurrent_statement] = STATE(3818), + [sym_block_statement] = STATE(3809), + [sym_component_instantiation_statement] = STATE(3809), + [sym_process_statement] = STATE(3809), + [sym_case_generate_statement] = STATE(3809), + [sym_for_generate_statement] = STATE(3809), + [sym_if_generate_statement] = STATE(3809), + [sym_concurrent_assertion_statement] = STATE(3809), + [sym_assertion] = STATE(7065), + [sym_concurrent_procedure_call_statement] = STATE(3809), + [sym_concurrent_simple_signal_assignment] = STATE(3809), + [sym_concurrent_conditional_signal_assignment] = STATE(3809), + [sym_concurrent_selected_signal_assignment] = STATE(3809), + [sym_with_expression] = STATE(6182), + [sym_name] = STATE(6397), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7713), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(4), - [sym_procedure_specification] = STATE(6075), - [sym_function_specification] = STATE(6075), - [sym__subprogram_specification] = STATE(5415), - [sym__target] = STATE(6092), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(2540), - [sym_configuration_specification] = STATE(3074), + [sym_procedure_specification] = STATE(6351), + [sym_function_specification] = STATE(6351), + [sym__subprogram_specification] = STATE(5644), + [sym__target] = STATE(6293), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(2679), + [sym_configuration_specification] = STATE(3161), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_design_unit_repeat2] = STATE(817), - [aux_sym_design_unit_repeat3] = STATE(1247), + [aux_sym_design_unit_repeat2] = STATE(827), + [aux_sym_design_unit_repeat3] = STATE(1345), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_LT_LT] = ACTIONS(11), [sym_identifier] = ACTIONS(13), @@ -21448,62 +22094,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [5] = { - [sym_use_clause] = STATE(3074), - [sym_package_declaration] = STATE(3074), - [sym_package_instantiation_declaration] = STATE(3074), - [sym_package_definition] = STATE(3074), - [sym__block_declarative_item] = STATE(3015), - [sym_subprogram_declaration] = STATE(3074), - [sym_subprogram_definition] = STATE(3074), - [sym_subprogram_instantiation_declaration] = STATE(3074), - [sym_type_declaration] = STATE(3074), - [sym_subtype_declaration] = STATE(3074), - [sym_mode_view_declaration] = STATE(3074), - [sym_constant_declaration] = STATE(3074), - [sym_signal_declaration] = STATE(3074), - [sym_variable_declaration] = STATE(3074), - [sym_file_declaration] = STATE(3074), - [sym_alias_declaration] = STATE(3074), - [sym_component_declaration] = STATE(3074), - [sym_attribute_declaration] = STATE(3074), - [sym_attribute_specification] = STATE(3074), - [sym_disconnection_specification] = STATE(3074), - [sym_group_template_declaration] = STATE(3074), - [sym_group_declaration] = STATE(3074), - [sym__concurrent_statement] = STATE(4172), - [sym_block_statement] = STATE(4164), - [sym_component_instantiation_statement] = STATE(4164), - [sym_process_statement] = STATE(4164), - [sym_case_generate_statement] = STATE(4164), - [sym_for_generate_statement] = STATE(4164), - [sym_if_generate_statement] = STATE(4164), - [sym_concurrent_assertion_statement] = STATE(4164), - [sym_assertion] = STATE(6789), - [sym_concurrent_procedure_call_statement] = STATE(4164), - [sym_concurrent_simple_signal_assignment] = STATE(4164), - [sym_concurrent_conditional_signal_assignment] = STATE(4164), - [sym_concurrent_selected_signal_assignment] = STATE(4164), - [sym_with_expression] = STATE(5970), - [sym_name] = STATE(6202), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7523), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym_use_clause] = STATE(3161), + [sym_package_declaration] = STATE(3161), + [sym_package_instantiation_declaration] = STATE(3161), + [sym_package_definition] = STATE(3161), + [sym__block_declarative_item] = STATE(3158), + [sym_subprogram_declaration] = STATE(3161), + [sym_subprogram_definition] = STATE(3161), + [sym_subprogram_instantiation_declaration] = STATE(3161), + [sym_type_declaration] = STATE(3161), + [sym_subtype_declaration] = STATE(3161), + [sym_mode_view_declaration] = STATE(3161), + [sym_constant_declaration] = STATE(3161), + [sym_signal_declaration] = STATE(3161), + [sym_variable_declaration] = STATE(3161), + [sym_file_declaration] = STATE(3161), + [sym_alias_declaration] = STATE(3161), + [sym_component_declaration] = STATE(3161), + [sym_attribute_declaration] = STATE(3161), + [sym_attribute_specification] = STATE(3161), + [sym_disconnection_specification] = STATE(3161), + [sym_group_template_declaration] = STATE(3161), + [sym_group_declaration] = STATE(3161), + [sym__concurrent_statement] = STATE(4216), + [sym_block_statement] = STATE(4213), + [sym_component_instantiation_statement] = STATE(4213), + [sym_process_statement] = STATE(4213), + [sym_case_generate_statement] = STATE(4213), + [sym_for_generate_statement] = STATE(4213), + [sym_if_generate_statement] = STATE(4213), + [sym_concurrent_assertion_statement] = STATE(4213), + [sym_assertion] = STATE(6940), + [sym_concurrent_procedure_call_statement] = STATE(4213), + [sym_concurrent_simple_signal_assignment] = STATE(4213), + [sym_concurrent_conditional_signal_assignment] = STATE(4213), + [sym_concurrent_selected_signal_assignment] = STATE(4213), + [sym_with_expression] = STATE(6163), + [sym_name] = STATE(6414), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7713), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(5), - [sym_procedure_specification] = STATE(6075), - [sym_function_specification] = STATE(6075), - [sym__subprogram_specification] = STATE(5415), - [sym__target] = STATE(6052), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(2575), - [sym_configuration_specification] = STATE(3074), + [sym_procedure_specification] = STATE(6351), + [sym_function_specification] = STATE(6351), + [sym__subprogram_specification] = STATE(5644), + [sym__target] = STATE(6248), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(2690), + [sym_configuration_specification] = STATE(3161), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_design_unit_repeat2] = STATE(833), - [aux_sym_design_unit_repeat3] = STATE(1494), + [aux_sym_design_unit_repeat2] = STATE(816), + [aux_sym_design_unit_repeat3] = STATE(1523), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_LT_LT] = ACTIONS(11), [sym_identifier] = ACTIONS(13), @@ -21545,62 +22191,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [6] = { - [sym_use_clause] = STATE(3074), - [sym_package_declaration] = STATE(3074), - [sym_package_instantiation_declaration] = STATE(3074), - [sym_package_definition] = STATE(3074), - [sym__block_declarative_item] = STATE(3015), - [sym_subprogram_declaration] = STATE(3074), - [sym_subprogram_definition] = STATE(3074), - [sym_subprogram_instantiation_declaration] = STATE(3074), - [sym_type_declaration] = STATE(3074), - [sym_subtype_declaration] = STATE(3074), - [sym_mode_view_declaration] = STATE(3074), - [sym_constant_declaration] = STATE(3074), - [sym_signal_declaration] = STATE(3074), - [sym_variable_declaration] = STATE(3074), - [sym_file_declaration] = STATE(3074), - [sym_alias_declaration] = STATE(3074), - [sym_component_declaration] = STATE(3074), - [sym_attribute_declaration] = STATE(3074), - [sym_attribute_specification] = STATE(3074), - [sym_disconnection_specification] = STATE(3074), - [sym_group_template_declaration] = STATE(3074), - [sym_group_declaration] = STATE(3074), - [sym__concurrent_statement] = STATE(4229), - [sym_block_statement] = STATE(4228), - [sym_component_instantiation_statement] = STATE(4228), - [sym_process_statement] = STATE(4228), - [sym_case_generate_statement] = STATE(4228), - [sym_for_generate_statement] = STATE(4228), - [sym_if_generate_statement] = STATE(4228), - [sym_concurrent_assertion_statement] = STATE(4228), - [sym_assertion] = STATE(7789), - [sym_concurrent_procedure_call_statement] = STATE(4228), - [sym_concurrent_simple_signal_assignment] = STATE(4228), - [sym_concurrent_conditional_signal_assignment] = STATE(4228), - [sym_concurrent_selected_signal_assignment] = STATE(4228), - [sym_with_expression] = STATE(6003), - [sym_name] = STATE(6004), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7523), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym_use_clause] = STATE(3161), + [sym_package_declaration] = STATE(3161), + [sym_package_instantiation_declaration] = STATE(3161), + [sym_package_definition] = STATE(3161), + [sym__block_declarative_item] = STATE(3158), + [sym_subprogram_declaration] = STATE(3161), + [sym_subprogram_definition] = STATE(3161), + [sym_subprogram_instantiation_declaration] = STATE(3161), + [sym_type_declaration] = STATE(3161), + [sym_subtype_declaration] = STATE(3161), + [sym_mode_view_declaration] = STATE(3161), + [sym_constant_declaration] = STATE(3161), + [sym_signal_declaration] = STATE(3161), + [sym_variable_declaration] = STATE(3161), + [sym_file_declaration] = STATE(3161), + [sym_alias_declaration] = STATE(3161), + [sym_component_declaration] = STATE(3161), + [sym_attribute_declaration] = STATE(3161), + [sym_attribute_specification] = STATE(3161), + [sym_disconnection_specification] = STATE(3161), + [sym_group_template_declaration] = STATE(3161), + [sym_group_declaration] = STATE(3161), + [sym__concurrent_statement] = STATE(4316), + [sym_block_statement] = STATE(4351), + [sym_component_instantiation_statement] = STATE(4351), + [sym_process_statement] = STATE(4351), + [sym_case_generate_statement] = STATE(4351), + [sym_for_generate_statement] = STATE(4351), + [sym_if_generate_statement] = STATE(4351), + [sym_concurrent_assertion_statement] = STATE(4351), + [sym_assertion] = STATE(7535), + [sym_concurrent_procedure_call_statement] = STATE(4351), + [sym_concurrent_simple_signal_assignment] = STATE(4351), + [sym_concurrent_conditional_signal_assignment] = STATE(4351), + [sym_concurrent_selected_signal_assignment] = STATE(4351), + [sym_with_expression] = STATE(6197), + [sym_name] = STATE(6369), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7713), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(6), - [sym_procedure_specification] = STATE(6075), - [sym_function_specification] = STATE(6075), - [sym__subprogram_specification] = STATE(5415), - [sym__target] = STATE(6131), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(2594), - [sym_configuration_specification] = STATE(3074), + [sym_procedure_specification] = STATE(6351), + [sym_function_specification] = STATE(6351), + [sym__subprogram_specification] = STATE(5644), + [sym__target] = STATE(6334), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(2666), + [sym_configuration_specification] = STATE(3161), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_design_unit_repeat2] = STATE(817), - [aux_sym_design_unit_repeat3] = STATE(1808), + [aux_sym_design_unit_repeat2] = STATE(827), + [aux_sym_design_unit_repeat3] = STATE(1685), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_LT_LT] = ACTIONS(11), [sym_identifier] = ACTIONS(13), @@ -21641,40 +22287,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [7] = { - [sym_unspecified_type_indication] = STATE(5954), - [sym_array_index_incomplete_type_list] = STATE(7484), - [sym__array_index_incomplete_type] = STATE(5808), - [sym_index_constraint] = STATE(5954), - [sym_index_subtype_definition] = STATE(5954), - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1768), - [sym__direct_name] = STATE(728), - [sym__identifier] = STATE(924), - [sym__external_name] = STATE(924), - [sym_external_constant_name] = STATE(925), - [sym_external_signal_name] = STATE(925), - [sym_external_variable_name] = STATE(925), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7804), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5113), - [sym_simple_range] = STATE(4803), + [sym_unspecified_type_indication] = STATE(6155), + [sym_array_index_incomplete_type_list] = STATE(8108), + [sym__array_index_incomplete_type] = STATE(5743), + [sym_index_constraint] = STATE(6155), + [sym_index_subtype_definition] = STATE(6155), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1721), + [sym__direct_name] = STATE(729), + [sym__identifier] = STATE(888), + [sym__external_name] = STATE(888), + [sym_external_constant_name] = STATE(923), + [sym_external_signal_name] = STATE(923), + [sym_external_variable_name] = STATE(923), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8165), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5243), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(7), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), @@ -21719,40 +22365,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(237), }, [8] = { - [sym_unspecified_type_indication] = STATE(5954), - [sym_array_index_incomplete_type_list] = STATE(7896), - [sym__array_index_incomplete_type] = STATE(5808), - [sym_index_constraint] = STATE(5954), - [sym_index_subtype_definition] = STATE(5954), - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1768), - [sym__direct_name] = STATE(728), - [sym__identifier] = STATE(924), - [sym__external_name] = STATE(924), - [sym_external_constant_name] = STATE(925), - [sym_external_signal_name] = STATE(925), - [sym_external_variable_name] = STATE(925), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7804), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5113), - [sym_simple_range] = STATE(4803), + [sym_unspecified_type_indication] = STATE(6155), + [sym_array_index_incomplete_type_list] = STATE(7703), + [sym__array_index_incomplete_type] = STATE(5743), + [sym_index_constraint] = STATE(6155), + [sym_index_subtype_definition] = STATE(6155), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1721), + [sym__direct_name] = STATE(729), + [sym__identifier] = STATE(888), + [sym__external_name] = STATE(888), + [sym_external_constant_name] = STATE(923), + [sym_external_signal_name] = STATE(923), + [sym_external_variable_name] = STATE(923), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8165), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5243), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(8), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), @@ -21797,49 +22443,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(237), }, [9] = { - [sym__sequential_statement] = STATE(2768), - [sym_sequential_block_statement] = STATE(2766), - [sym_assertion_statement] = STATE(2766), - [sym_assertion] = STATE(7606), - [sym_report_expression] = STATE(5654), - [sym_case_statement] = STATE(2766), - [sym_case_expression] = STATE(6108), - [sym_exit_statement] = STATE(2766), - [sym_if_statement_block] = STATE(2766), - [sym_if_statement] = STATE(4867), - [sym_if_statement_body] = STATE(5780), - [sym_loop_statement] = STATE(2766), - [sym__iteration_scheme] = STATE(6107), - [sym_loop_body] = STATE(6411), - [sym_next_statement] = STATE(2766), - [sym_null_statement] = STATE(2766), - [sym_procedure_call_statement] = STATE(2766), - [sym_report_statement] = STATE(2766), - [sym_return_statement] = STATE(2766), - [sym_simple_waveform_assignment] = STATE(2766), - [sym_simple_variable_assignment] = STATE(2766), - [sym_simple_force_assignment] = STATE(2766), - [sym_simple_release_assignment] = STATE(2766), - [sym_conditional_signal_assignment] = STATE(2766), - [sym_selected_waveform_assignment] = STATE(2766), - [sym_selected_force_assignment] = STATE(2766), - [sym_selected_variable_assignment] = STATE(2766), - [sym_with_expression] = STATE(5993), - [sym_wait_statement] = STATE(2766), - [sym_name] = STATE(5653), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__sequential_statement] = STATE(2850), + [sym_sequential_block_statement] = STATE(2853), + [sym_assertion_statement] = STATE(2853), + [sym_assertion] = STATE(7513), + [sym_report_expression] = STATE(5639), + [sym_case_statement] = STATE(2853), + [sym_case_expression] = STATE(6320), + [sym_exit_statement] = STATE(2853), + [sym_if_statement_block] = STATE(2853), + [sym_if_statement] = STATE(5059), + [sym_if_statement_body] = STATE(6008), + [sym_loop_statement] = STATE(2853), + [sym__iteration_scheme] = STATE(6319), + [sym_loop_body] = STATE(6602), + [sym_next_statement] = STATE(2853), + [sym_null_statement] = STATE(2853), + [sym_procedure_call_statement] = STATE(2853), + [sym_report_statement] = STATE(2853), + [sym_return_statement] = STATE(2853), + [sym_simple_waveform_assignment] = STATE(2853), + [sym_simple_variable_assignment] = STATE(2853), + [sym_simple_force_assignment] = STATE(2853), + [sym_simple_release_assignment] = STATE(2853), + [sym_conditional_signal_assignment] = STATE(2853), + [sym_selected_waveform_assignment] = STATE(2853), + [sym_selected_force_assignment] = STATE(2853), + [sym_selected_variable_assignment] = STATE(2853), + [sym_with_expression] = STATE(6188), + [sym_wait_statement] = STATE(2853), + [sym_name] = STATE(5584), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(9), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5600), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1472), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5866), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1444), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_sequential_block_repeat1] = STATE(11), @@ -21874,49 +22520,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [10] = { - [sym__sequential_statement] = STATE(2768), - [sym_sequential_block_statement] = STATE(2766), - [sym_assertion_statement] = STATE(2766), - [sym_assertion] = STATE(7606), - [sym_report_expression] = STATE(5654), - [sym_case_statement] = STATE(2766), - [sym_case_expression] = STATE(6108), - [sym_exit_statement] = STATE(2766), - [sym_if_statement_block] = STATE(2766), - [sym_if_statement] = STATE(4867), - [sym_if_statement_body] = STATE(5783), - [sym_loop_statement] = STATE(2766), - [sym__iteration_scheme] = STATE(6107), - [sym_loop_body] = STATE(6411), - [sym_next_statement] = STATE(2766), - [sym_null_statement] = STATE(2766), - [sym_procedure_call_statement] = STATE(2766), - [sym_report_statement] = STATE(2766), - [sym_return_statement] = STATE(2766), - [sym_simple_waveform_assignment] = STATE(2766), - [sym_simple_variable_assignment] = STATE(2766), - [sym_simple_force_assignment] = STATE(2766), - [sym_simple_release_assignment] = STATE(2766), - [sym_conditional_signal_assignment] = STATE(2766), - [sym_selected_waveform_assignment] = STATE(2766), - [sym_selected_force_assignment] = STATE(2766), - [sym_selected_variable_assignment] = STATE(2766), - [sym_with_expression] = STATE(5993), - [sym_wait_statement] = STATE(2766), - [sym_name] = STATE(5653), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__sequential_statement] = STATE(2850), + [sym_sequential_block_statement] = STATE(2853), + [sym_assertion_statement] = STATE(2853), + [sym_assertion] = STATE(7513), + [sym_report_expression] = STATE(5639), + [sym_case_statement] = STATE(2853), + [sym_case_expression] = STATE(6320), + [sym_exit_statement] = STATE(2853), + [sym_if_statement_block] = STATE(2853), + [sym_if_statement] = STATE(5059), + [sym_if_statement_body] = STATE(5898), + [sym_loop_statement] = STATE(2853), + [sym__iteration_scheme] = STATE(6319), + [sym_loop_body] = STATE(6602), + [sym_next_statement] = STATE(2853), + [sym_null_statement] = STATE(2853), + [sym_procedure_call_statement] = STATE(2853), + [sym_report_statement] = STATE(2853), + [sym_return_statement] = STATE(2853), + [sym_simple_waveform_assignment] = STATE(2853), + [sym_simple_variable_assignment] = STATE(2853), + [sym_simple_force_assignment] = STATE(2853), + [sym_simple_release_assignment] = STATE(2853), + [sym_conditional_signal_assignment] = STATE(2853), + [sym_selected_waveform_assignment] = STATE(2853), + [sym_selected_force_assignment] = STATE(2853), + [sym_selected_variable_assignment] = STATE(2853), + [sym_with_expression] = STATE(6188), + [sym_wait_statement] = STATE(2853), + [sym_name] = STATE(5584), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(10), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5600), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1472), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5866), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1444), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), [aux_sym_sequential_block_repeat1] = STATE(11), @@ -21951,48 +22597,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [11] = { - [sym__sequential_statement] = STATE(2768), - [sym_sequential_block_statement] = STATE(2766), - [sym_assertion_statement] = STATE(2766), - [sym_assertion] = STATE(7606), - [sym_report_expression] = STATE(5654), - [sym_case_statement] = STATE(2766), - [sym_case_expression] = STATE(6108), - [sym_exit_statement] = STATE(2766), - [sym_if_statement_block] = STATE(2766), - [sym_if_statement] = STATE(4867), - [sym_loop_statement] = STATE(2766), - [sym__iteration_scheme] = STATE(6107), - [sym_loop_body] = STATE(6411), - [sym_next_statement] = STATE(2766), - [sym_null_statement] = STATE(2766), - [sym_procedure_call_statement] = STATE(2766), - [sym_report_statement] = STATE(2766), - [sym_return_statement] = STATE(2766), - [sym_simple_waveform_assignment] = STATE(2766), - [sym_simple_variable_assignment] = STATE(2766), - [sym_simple_force_assignment] = STATE(2766), - [sym_simple_release_assignment] = STATE(2766), - [sym_conditional_signal_assignment] = STATE(2766), - [sym_selected_waveform_assignment] = STATE(2766), - [sym_selected_force_assignment] = STATE(2766), - [sym_selected_variable_assignment] = STATE(2766), - [sym_with_expression] = STATE(5993), - [sym_wait_statement] = STATE(2766), - [sym_name] = STATE(5653), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__sequential_statement] = STATE(2850), + [sym_sequential_block_statement] = STATE(2853), + [sym_assertion_statement] = STATE(2853), + [sym_assertion] = STATE(7513), + [sym_report_expression] = STATE(5639), + [sym_case_statement] = STATE(2853), + [sym_case_expression] = STATE(6320), + [sym_exit_statement] = STATE(2853), + [sym_if_statement_block] = STATE(2853), + [sym_if_statement] = STATE(5059), + [sym_loop_statement] = STATE(2853), + [sym__iteration_scheme] = STATE(6319), + [sym_loop_body] = STATE(6602), + [sym_next_statement] = STATE(2853), + [sym_null_statement] = STATE(2853), + [sym_procedure_call_statement] = STATE(2853), + [sym_report_statement] = STATE(2853), + [sym_return_statement] = STATE(2853), + [sym_simple_waveform_assignment] = STATE(2853), + [sym_simple_variable_assignment] = STATE(2853), + [sym_simple_force_assignment] = STATE(2853), + [sym_simple_release_assignment] = STATE(2853), + [sym_conditional_signal_assignment] = STATE(2853), + [sym_selected_waveform_assignment] = STATE(2853), + [sym_selected_force_assignment] = STATE(2853), + [sym_selected_variable_assignment] = STATE(2853), + [sym_with_expression] = STATE(6188), + [sym_wait_statement] = STATE(2853), + [sym_name] = STATE(5584), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(11), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5600), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1472), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5866), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1444), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_sequential_block_repeat1] = STATE(12), @@ -22027,48 +22673,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [12] = { - [sym__sequential_statement] = STATE(2768), - [sym_sequential_block_statement] = STATE(2766), - [sym_assertion_statement] = STATE(2766), - [sym_assertion] = STATE(7606), - [sym_report_expression] = STATE(5654), - [sym_case_statement] = STATE(2766), - [sym_case_expression] = STATE(6108), - [sym_exit_statement] = STATE(2766), - [sym_if_statement_block] = STATE(2766), - [sym_if_statement] = STATE(4867), - [sym_loop_statement] = STATE(2766), - [sym__iteration_scheme] = STATE(6107), - [sym_loop_body] = STATE(6411), - [sym_next_statement] = STATE(2766), - [sym_null_statement] = STATE(2766), - [sym_procedure_call_statement] = STATE(2766), - [sym_report_statement] = STATE(2766), - [sym_return_statement] = STATE(2766), - [sym_simple_waveform_assignment] = STATE(2766), - [sym_simple_variable_assignment] = STATE(2766), - [sym_simple_force_assignment] = STATE(2766), - [sym_simple_release_assignment] = STATE(2766), - [sym_conditional_signal_assignment] = STATE(2766), - [sym_selected_waveform_assignment] = STATE(2766), - [sym_selected_force_assignment] = STATE(2766), - [sym_selected_variable_assignment] = STATE(2766), - [sym_with_expression] = STATE(5993), - [sym_wait_statement] = STATE(2766), - [sym_name] = STATE(5653), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__sequential_statement] = STATE(2850), + [sym_sequential_block_statement] = STATE(2853), + [sym_assertion_statement] = STATE(2853), + [sym_assertion] = STATE(7513), + [sym_report_expression] = STATE(5639), + [sym_case_statement] = STATE(2853), + [sym_case_expression] = STATE(6320), + [sym_exit_statement] = STATE(2853), + [sym_if_statement_block] = STATE(2853), + [sym_if_statement] = STATE(5059), + [sym_loop_statement] = STATE(2853), + [sym__iteration_scheme] = STATE(6319), + [sym_loop_body] = STATE(6602), + [sym_next_statement] = STATE(2853), + [sym_null_statement] = STATE(2853), + [sym_procedure_call_statement] = STATE(2853), + [sym_report_statement] = STATE(2853), + [sym_return_statement] = STATE(2853), + [sym_simple_waveform_assignment] = STATE(2853), + [sym_simple_variable_assignment] = STATE(2853), + [sym_simple_force_assignment] = STATE(2853), + [sym_simple_release_assignment] = STATE(2853), + [sym_conditional_signal_assignment] = STATE(2853), + [sym_selected_waveform_assignment] = STATE(2853), + [sym_selected_force_assignment] = STATE(2853), + [sym_selected_variable_assignment] = STATE(2853), + [sym_with_expression] = STATE(6188), + [sym_wait_statement] = STATE(2853), + [sym_name] = STATE(5584), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(12), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5600), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1472), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5866), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1444), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_sequential_block_repeat1] = STATE(12), @@ -22103,48 +22749,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(295), }, [13] = { - [sym__sequential_statement] = STATE(2834), - [sym_sequential_block_statement] = STATE(2836), - [sym_assertion_statement] = STATE(2836), - [sym_assertion] = STATE(7192), - [sym_report_expression] = STATE(5404), - [sym_case_statement] = STATE(2836), - [sym_case_expression] = STATE(6072), - [sym_exit_statement] = STATE(2836), - [sym_if_statement_block] = STATE(2836), - [sym_if_statement] = STATE(4815), - [sym_loop_statement] = STATE(2836), - [sym__iteration_scheme] = STATE(6071), - [sym_loop_body] = STATE(6336), - [sym_next_statement] = STATE(2836), - [sym_null_statement] = STATE(2836), - [sym_procedure_call_statement] = STATE(2836), - [sym_report_statement] = STATE(2836), - [sym_return_statement] = STATE(2836), - [sym_simple_waveform_assignment] = STATE(2836), - [sym_simple_variable_assignment] = STATE(2836), - [sym_simple_force_assignment] = STATE(2836), - [sym_simple_release_assignment] = STATE(2836), - [sym_conditional_signal_assignment] = STATE(2836), - [sym_selected_waveform_assignment] = STATE(2836), - [sym_selected_force_assignment] = STATE(2836), - [sym_selected_variable_assignment] = STATE(2836), - [sym_with_expression] = STATE(5977), - [sym_wait_statement] = STATE(2836), - [sym_name] = STATE(5403), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__sequential_statement] = STATE(2880), + [sym_sequential_block_statement] = STATE(2881), + [sym_assertion_statement] = STATE(2881), + [sym_assertion] = STATE(7269), + [sym_report_expression] = STATE(5737), + [sym_case_statement] = STATE(2881), + [sym_case_expression] = STATE(6277), + [sym_exit_statement] = STATE(2881), + [sym_if_statement_block] = STATE(2881), + [sym_if_statement] = STATE(5016), + [sym_loop_statement] = STATE(2881), + [sym__iteration_scheme] = STATE(6274), + [sym_loop_body] = STATE(6529), + [sym_next_statement] = STATE(2881), + [sym_null_statement] = STATE(2881), + [sym_procedure_call_statement] = STATE(2881), + [sym_report_statement] = STATE(2881), + [sym_return_statement] = STATE(2881), + [sym_simple_waveform_assignment] = STATE(2881), + [sym_simple_variable_assignment] = STATE(2881), + [sym_simple_force_assignment] = STATE(2881), + [sym_simple_release_assignment] = STATE(2881), + [sym_conditional_signal_assignment] = STATE(2881), + [sym_selected_waveform_assignment] = STATE(2881), + [sym_selected_force_assignment] = STATE(2881), + [sym_selected_variable_assignment] = STATE(2881), + [sym_with_expression] = STATE(6172), + [sym_wait_statement] = STATE(2881), + [sym_name] = STATE(5744), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(13), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5628), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1608), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5742), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1448), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), [aux_sym_sequential_block_repeat1] = STATE(13), @@ -22178,52 +22824,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(295), }, [14] = { - [sym__sequential_statement] = STATE(2873), - [sym_sequential_block_statement] = STATE(2872), - [sym_assertion_statement] = STATE(2872), - [sym_assertion] = STATE(7107), - [sym_report_expression] = STATE(5484), - [sym_case_statement] = STATE(2872), - [sym_case_expression] = STATE(6182), - [sym_exit_statement] = STATE(2872), - [sym_if_statement_block] = STATE(2872), - [sym_if_statement] = STATE(4832), - [sym_if_statement_body] = STATE(6534), - [sym_loop_statement] = STATE(2872), - [sym__iteration_scheme] = STATE(6183), - [sym_loop_body] = STATE(6198), - [sym_next_statement] = STATE(2872), - [sym_null_statement] = STATE(2872), - [sym_procedure_call_statement] = STATE(2872), - [sym_report_statement] = STATE(2872), - [sym_return_statement] = STATE(2872), - [sym_simple_waveform_assignment] = STATE(2872), - [sym_simple_variable_assignment] = STATE(2872), - [sym_simple_force_assignment] = STATE(2872), - [sym_simple_release_assignment] = STATE(2872), - [sym_conditional_signal_assignment] = STATE(2872), - [sym_selected_waveform_assignment] = STATE(2872), - [sym_selected_force_assignment] = STATE(2872), - [sym_selected_variable_assignment] = STATE(2872), - [sym_with_expression] = STATE(6184), - [sym_wait_statement] = STATE(2872), - [sym_name] = STATE(5503), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__sequential_statement] = STATE(2978), + [sym_sequential_block_statement] = STATE(2979), + [sym_assertion_statement] = STATE(2979), + [sym_assertion] = STATE(6906), + [sym_report_expression] = STATE(5830), + [sym_case_statement] = STATE(2979), + [sym_case_expression] = STATE(6483), + [sym_exit_statement] = STATE(2979), + [sym_if_statement_block] = STATE(2979), + [sym_if_statement] = STATE(5001), + [sym_if_statement_body] = STATE(7735), + [sym_loop_statement] = STATE(2979), + [sym__iteration_scheme] = STATE(6486), + [sym_loop_body] = STATE(6487), + [sym_next_statement] = STATE(2979), + [sym_null_statement] = STATE(2979), + [sym_procedure_call_statement] = STATE(2979), + [sym_report_statement] = STATE(2979), + [sym_return_statement] = STATE(2979), + [sym_simple_waveform_assignment] = STATE(2979), + [sym_simple_variable_assignment] = STATE(2979), + [sym_simple_force_assignment] = STATE(2979), + [sym_simple_release_assignment] = STATE(2979), + [sym_conditional_signal_assignment] = STATE(2979), + [sym_selected_waveform_assignment] = STATE(2979), + [sym_selected_force_assignment] = STATE(2979), + [sym_selected_variable_assignment] = STATE(2979), + [sym_with_expression] = STATE(6488), + [sym_wait_statement] = STATE(2979), + [sym_name] = STATE(5828), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(14), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5507), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1629), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5826), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1458), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_sequential_block_repeat1] = STATE(75), + [aux_sym_sequential_block_repeat1] = STATE(52), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_LT_LT] = ACTIONS(11), [sym_identifier] = ACTIONS(13), @@ -22253,48 +22899,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [15] = { - [sym__sequential_statement] = STATE(2834), - [sym_sequential_block_statement] = STATE(2836), - [sym_assertion_statement] = STATE(2836), - [sym_assertion] = STATE(7192), - [sym_report_expression] = STATE(5404), - [sym_case_statement] = STATE(2836), - [sym_case_expression] = STATE(6072), - [sym_exit_statement] = STATE(2836), - [sym_if_statement_block] = STATE(2836), - [sym_if_statement] = STATE(4815), - [sym_loop_statement] = STATE(2836), - [sym__iteration_scheme] = STATE(6071), - [sym_loop_body] = STATE(6336), - [sym_next_statement] = STATE(2836), - [sym_null_statement] = STATE(2836), - [sym_procedure_call_statement] = STATE(2836), - [sym_report_statement] = STATE(2836), - [sym_return_statement] = STATE(2836), - [sym_simple_waveform_assignment] = STATE(2836), - [sym_simple_variable_assignment] = STATE(2836), - [sym_simple_force_assignment] = STATE(2836), - [sym_simple_release_assignment] = STATE(2836), - [sym_conditional_signal_assignment] = STATE(2836), - [sym_selected_waveform_assignment] = STATE(2836), - [sym_selected_force_assignment] = STATE(2836), - [sym_selected_variable_assignment] = STATE(2836), - [sym_with_expression] = STATE(5977), - [sym_wait_statement] = STATE(2836), - [sym_name] = STATE(5403), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__sequential_statement] = STATE(2880), + [sym_sequential_block_statement] = STATE(2881), + [sym_assertion_statement] = STATE(2881), + [sym_assertion] = STATE(7269), + [sym_report_expression] = STATE(5737), + [sym_case_statement] = STATE(2881), + [sym_case_expression] = STATE(6277), + [sym_exit_statement] = STATE(2881), + [sym_if_statement_block] = STATE(2881), + [sym_if_statement] = STATE(5016), + [sym_loop_statement] = STATE(2881), + [sym__iteration_scheme] = STATE(6274), + [sym_loop_body] = STATE(6529), + [sym_next_statement] = STATE(2881), + [sym_null_statement] = STATE(2881), + [sym_procedure_call_statement] = STATE(2881), + [sym_report_statement] = STATE(2881), + [sym_return_statement] = STATE(2881), + [sym_simple_waveform_assignment] = STATE(2881), + [sym_simple_variable_assignment] = STATE(2881), + [sym_simple_force_assignment] = STATE(2881), + [sym_simple_release_assignment] = STATE(2881), + [sym_conditional_signal_assignment] = STATE(2881), + [sym_selected_waveform_assignment] = STATE(2881), + [sym_selected_force_assignment] = STATE(2881), + [sym_selected_variable_assignment] = STATE(2881), + [sym_with_expression] = STATE(6172), + [sym_wait_statement] = STATE(2881), + [sym_name] = STATE(5744), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(15), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5628), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1608), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5742), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1448), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), [aux_sym_sequential_block_repeat1] = STATE(13), @@ -22328,48 +22974,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [16] = { - [sym__sequential_statement] = STATE(2834), - [sym_sequential_block_statement] = STATE(2836), - [sym_assertion_statement] = STATE(2836), - [sym_assertion] = STATE(7192), - [sym_report_expression] = STATE(5404), - [sym_case_statement] = STATE(2836), - [sym_case_expression] = STATE(6072), - [sym_exit_statement] = STATE(2836), - [sym_if_statement_block] = STATE(2836), - [sym_if_statement] = STATE(4815), - [sym_loop_statement] = STATE(2836), - [sym__iteration_scheme] = STATE(6071), - [sym_loop_body] = STATE(6336), - [sym_next_statement] = STATE(2836), - [sym_null_statement] = STATE(2836), - [sym_procedure_call_statement] = STATE(2836), - [sym_report_statement] = STATE(2836), - [sym_return_statement] = STATE(2836), - [sym_simple_waveform_assignment] = STATE(2836), - [sym_simple_variable_assignment] = STATE(2836), - [sym_simple_force_assignment] = STATE(2836), - [sym_simple_release_assignment] = STATE(2836), - [sym_conditional_signal_assignment] = STATE(2836), - [sym_selected_waveform_assignment] = STATE(2836), - [sym_selected_force_assignment] = STATE(2836), - [sym_selected_variable_assignment] = STATE(2836), - [sym_with_expression] = STATE(5977), - [sym_wait_statement] = STATE(2836), - [sym_name] = STATE(5403), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__sequential_statement] = STATE(2880), + [sym_sequential_block_statement] = STATE(2881), + [sym_assertion_statement] = STATE(2881), + [sym_assertion] = STATE(7269), + [sym_report_expression] = STATE(5737), + [sym_case_statement] = STATE(2881), + [sym_case_expression] = STATE(6277), + [sym_exit_statement] = STATE(2881), + [sym_if_statement_block] = STATE(2881), + [sym_if_statement] = STATE(5016), + [sym_loop_statement] = STATE(2881), + [sym__iteration_scheme] = STATE(6274), + [sym_loop_body] = STATE(6529), + [sym_next_statement] = STATE(2881), + [sym_null_statement] = STATE(2881), + [sym_procedure_call_statement] = STATE(2881), + [sym_report_statement] = STATE(2881), + [sym_return_statement] = STATE(2881), + [sym_simple_waveform_assignment] = STATE(2881), + [sym_simple_variable_assignment] = STATE(2881), + [sym_simple_force_assignment] = STATE(2881), + [sym_simple_release_assignment] = STATE(2881), + [sym_conditional_signal_assignment] = STATE(2881), + [sym_selected_waveform_assignment] = STATE(2881), + [sym_selected_force_assignment] = STATE(2881), + [sym_selected_variable_assignment] = STATE(2881), + [sym_with_expression] = STATE(6172), + [sym_wait_statement] = STATE(2881), + [sym_name] = STATE(5744), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(16), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5628), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1608), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5742), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1448), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_sequential_block_repeat1] = STATE(15), @@ -22403,405 +23049,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(13), }, [17] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7228), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_use_clause] = STATE(1933), + [sym_package_declaration] = STATE(1933), + [sym_package_instantiation_declaration] = STATE(1933), + [sym_package_definition] = STATE(1933), + [sym__block_declarative_item] = STATE(1931), + [sym_subprogram_declaration] = STATE(1933), + [sym_subprogram_definition] = STATE(1933), + [sym_subprogram_instantiation_declaration] = STATE(1933), + [sym_type_declaration] = STATE(1933), + [sym_subtype_declaration] = STATE(1933), + [sym_mode_view_declaration] = STATE(1933), + [sym_constant_declaration] = STATE(1933), + [sym_signal_declaration] = STATE(1933), + [sym_variable_declaration] = STATE(1933), + [sym_file_declaration] = STATE(1933), + [sym_alias_declaration] = STATE(1933), + [sym_component_declaration] = STATE(1933), + [sym_attribute_declaration] = STATE(1933), + [sym_attribute_specification] = STATE(1933), + [sym_disconnection_specification] = STATE(1933), + [sym_group_template_declaration] = STATE(1933), + [sym_group_declaration] = STATE(1933), [sym__tool_directive] = STATE(17), + [sym_procedure_specification] = STATE(6351), + [sym_function_specification] = STATE(6351), + [sym__subprogram_specification] = STATE(5843), + [sym_configuration_specification] = STATE(1933), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(393), - [sym_condition_conversion] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), - [sym__OR] = ACTIONS(239), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), + [aux_sym_design_unit_repeat2] = STATE(55), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(393), + [sym_identifier] = ACTIONS(393), + [sym_ALIAS] = ACTIONS(15), + [sym_ARCHITECTURE] = ACTIONS(393), + [sym_ASSERT] = ACTIONS(393), + [sym_ATTRIBUTE] = ACTIONS(21), + [sym_COMPONENT] = ACTIONS(23), + [sym_CONFIGURATION] = ACTIONS(393), + [sym_CONSTANT] = ACTIONS(27), + [sym_CONTEXT] = ACTIONS(393), + [sym_DISCONNECT] = ACTIONS(31), + [sym_ENTITY] = ACTIONS(393), + [sym_FILE] = ACTIONS(35), + [sym_FOR] = ACTIONS(37), + [sym_FUNCTION] = ACTIONS(39), + [sym_GROUP] = ACTIONS(41), + [sym_IMPURE] = ACTIONS(43), + [sym_LIBRARY] = ACTIONS(393), + [sym_PACKAGE] = ACTIONS(47), + [sym_POSTPONED] = ACTIONS(393), + [sym_PROCEDURE] = ACTIONS(51), + [sym_PROCESS] = ACTIONS(393), + [sym_PURE] = ACTIONS(43), + [sym_SIGNAL] = ACTIONS(55), + [sym_SHARED] = ACTIONS(57), + [sym_SUBTYPE] = ACTIONS(59), + [sym_TYPE] = ACTIONS(61), + [sym_USE] = ACTIONS(63), + [sym_VARIABLE] = ACTIONS(65), + [sym_VIEW] = ACTIONS(67), + [sym_WITH] = ACTIONS(393), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_character_literal] = ACTIONS(393), + [sym_operator_symbol] = ACTIONS(393), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(393), + [sym_library_constant_std_logic] = ACTIONS(393), + [sym_library_function] = ACTIONS(393), + [sym_library_type] = ACTIONS(393), + [sym__end_of_file] = ACTIONS(393), }, [18] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(18), - [sym_selected_waveforms] = STATE(7878), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(295), + [sym_selected_waveforms] = STATE(7119), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(323), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(413), - [sym_INERTIAL] = ACTIONS(415), + [sym_FORCE] = ACTIONS(403), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [19] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7628), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(19), - [sym_selected_waveforms] = STATE(6849), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(255), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(425), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(435), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [20] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(20), - [sym_selected_waveforms] = STATE(6873), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(325), + [sym_selected_waveforms] = STATE(7424), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(263), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym_GUARDED] = ACTIONS(437), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [21] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7924), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(21), + [sym_selected_waveforms] = STATE(7366), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(276), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(439), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_FORCE] = ACTIONS(439), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [22] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(8036), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7500), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(22), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), @@ -22810,17 +23456,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -22828,221 +23474,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [23] = { - [sym__sequential_statement] = STATE(2873), - [sym_sequential_block_statement] = STATE(2872), - [sym_assertion_statement] = STATE(2872), - [sym_assertion] = STATE(7107), - [sym_report_expression] = STATE(5484), - [sym_case_statement] = STATE(2872), - [sym_case_expression] = STATE(6182), - [sym_exit_statement] = STATE(2872), - [sym_if_statement_block] = STATE(2872), - [sym_if_statement] = STATE(4832), - [sym_loop_statement] = STATE(2872), - [sym__iteration_scheme] = STATE(6183), - [sym_loop_body] = STATE(6198), - [sym_next_statement] = STATE(2872), - [sym_null_statement] = STATE(2872), - [sym_procedure_call_statement] = STATE(2872), - [sym_report_statement] = STATE(2872), - [sym_return_statement] = STATE(2872), - [sym_simple_waveform_assignment] = STATE(2872), - [sym_simple_variable_assignment] = STATE(2872), - [sym_simple_force_assignment] = STATE(2872), - [sym_simple_release_assignment] = STATE(2872), - [sym_conditional_signal_assignment] = STATE(2872), - [sym_selected_waveform_assignment] = STATE(2872), - [sym_selected_force_assignment] = STATE(2872), - [sym_selected_variable_assignment] = STATE(2872), - [sym_with_expression] = STATE(6184), - [sym_wait_statement] = STATE(2872), - [sym_name] = STATE(5503), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(23), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5507), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1629), + [sym_waveform] = STATE(5732), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7360), + [sym_delay_mechanism] = STATE(350), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_sequential_block_repeat1] = STATE(24), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_LT_LT] = ACTIONS(11), - [sym_identifier] = ACTIONS(13), - [sym_ASSERT] = ACTIONS(19), - [sym_BLOCK] = ACTIONS(363), - [sym_CASE] = ACTIONS(261), - [sym_END] = ACTIONS(443), - [sym_EXIT] = ACTIONS(367), - [sym_FOR] = ACTIONS(267), - [sym_IF] = ACTIONS(269), - [sym_LOOP] = ACTIONS(271), - [sym_NEXT] = ACTIONS(369), - [sym_NULL] = ACTIONS(371), - [sym_REPORT] = ACTIONS(277), - [sym_RETURN] = ACTIONS(373), - [sym_WAIT] = ACTIONS(375), - [sym_WHILE] = ACTIONS(283), - [sym_WITH] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_FORCE] = ACTIONS(443), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_RELEASE] = ACTIONS(445), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(71), - [sym_operator_symbol] = ACTIONS(71), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(13), - [sym_library_constant_std_logic] = ACTIONS(71), - [sym_library_function] = ACTIONS(13), - [sym_library_type] = ACTIONS(13), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [24] = { - [sym__sequential_statement] = STATE(2873), - [sym_sequential_block_statement] = STATE(2872), - [sym_assertion_statement] = STATE(2872), - [sym_assertion] = STATE(7107), - [sym_report_expression] = STATE(5484), - [sym_case_statement] = STATE(2872), - [sym_case_expression] = STATE(6182), - [sym_exit_statement] = STATE(2872), - [sym_if_statement_block] = STATE(2872), - [sym_if_statement] = STATE(4832), - [sym_loop_statement] = STATE(2872), - [sym__iteration_scheme] = STATE(6183), - [sym_loop_body] = STATE(6198), - [sym_next_statement] = STATE(2872), - [sym_null_statement] = STATE(2872), - [sym_procedure_call_statement] = STATE(2872), - [sym_report_statement] = STATE(2872), - [sym_return_statement] = STATE(2872), - [sym_simple_waveform_assignment] = STATE(2872), - [sym_simple_variable_assignment] = STATE(2872), - [sym_simple_force_assignment] = STATE(2872), - [sym_simple_release_assignment] = STATE(2872), - [sym_conditional_signal_assignment] = STATE(2872), - [sym_selected_waveform_assignment] = STATE(2872), - [sym_selected_force_assignment] = STATE(2872), - [sym_selected_variable_assignment] = STATE(2872), - [sym_with_expression] = STATE(6184), - [sym_wait_statement] = STATE(2872), - [sym_name] = STATE(5503), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7276), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(24), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5507), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1629), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_sequential_block_repeat1] = STATE(49), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_LT_LT] = ACTIONS(11), - [sym_identifier] = ACTIONS(13), - [sym_ASSERT] = ACTIONS(19), - [sym_BLOCK] = ACTIONS(363), - [sym_CASE] = ACTIONS(261), - [sym_END] = ACTIONS(445), - [sym_EXIT] = ACTIONS(367), - [sym_FOR] = ACTIONS(267), - [sym_IF] = ACTIONS(269), - [sym_LOOP] = ACTIONS(271), - [sym_NEXT] = ACTIONS(369), - [sym_NULL] = ACTIONS(371), - [sym_REPORT] = ACTIONS(277), - [sym_RETURN] = ACTIONS(373), - [sym_WAIT] = ACTIONS(375), - [sym_WHILE] = ACTIONS(283), - [sym_WITH] = ACTIONS(69), - [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(71), - [sym_operator_symbol] = ACTIONS(71), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(13), - [sym_library_constant_std_logic] = ACTIONS(71), - [sym_library_function] = ACTIONS(13), - [sym_library_type] = ACTIONS(13), - }, - [25] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(8007), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(25), - [sym_line_comment] = STATE(25), - [sym_block_comment] = STATE(25), [anon_sym_LPAREN] = ACTIONS(229), [anon_sym_RPAREN] = ACTIONS(447), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -23050,443 +23622,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), - }, - [26] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(26), - [sym_selected_waveforms] = STATE(6973), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(313), - [sym_line_comment] = STATE(26), - [sym_block_comment] = STATE(26), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(449), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [27] = { - [sym__sequential_statement] = STATE(2873), - [sym_sequential_block_statement] = STATE(2872), - [sym_assertion_statement] = STATE(2872), - [sym_assertion] = STATE(7107), - [sym_report_expression] = STATE(5484), - [sym_case_statement] = STATE(2872), - [sym_case_expression] = STATE(6182), - [sym_exit_statement] = STATE(2872), - [sym_if_statement_block] = STATE(2872), - [sym_if_statement] = STATE(4832), - [sym_loop_statement] = STATE(2872), - [sym__iteration_scheme] = STATE(6183), - [sym_loop_body] = STATE(6198), - [sym_next_statement] = STATE(2872), - [sym_null_statement] = STATE(2872), - [sym_procedure_call_statement] = STATE(2872), - [sym_report_statement] = STATE(2872), - [sym_return_statement] = STATE(2872), - [sym_simple_waveform_assignment] = STATE(2872), - [sym_simple_variable_assignment] = STATE(2872), - [sym_simple_force_assignment] = STATE(2872), - [sym_simple_release_assignment] = STATE(2872), - [sym_conditional_signal_assignment] = STATE(2872), - [sym_selected_waveform_assignment] = STATE(2872), - [sym_selected_force_assignment] = STATE(2872), - [sym_selected_variable_assignment] = STATE(2872), - [sym_with_expression] = STATE(6184), - [sym_wait_statement] = STATE(2872), - [sym_name] = STATE(5503), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), - [sym__tool_directive] = STATE(27), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5507), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1629), - [sym_line_comment] = STATE(27), - [sym_block_comment] = STATE(27), - [aux_sym_sequential_block_repeat1] = STATE(38), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_LT_LT] = ACTIONS(11), - [sym_identifier] = ACTIONS(13), - [sym_ASSERT] = ACTIONS(19), - [sym_BLOCK] = ACTIONS(363), - [sym_CASE] = ACTIONS(261), - [sym_END] = ACTIONS(451), - [sym_EXIT] = ACTIONS(367), - [sym_FOR] = ACTIONS(267), - [sym_IF] = ACTIONS(269), - [sym_LOOP] = ACTIONS(271), - [sym_NEXT] = ACTIONS(369), - [sym_NULL] = ACTIONS(371), - [sym_REPORT] = ACTIONS(277), - [sym_RETURN] = ACTIONS(373), - [sym_WAIT] = ACTIONS(375), - [sym_WHILE] = ACTIONS(283), - [sym_WITH] = ACTIONS(69), - [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(71), - [sym_operator_symbol] = ACTIONS(71), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(13), - [sym_library_constant_std_logic] = ACTIONS(71), - [sym_library_function] = ACTIONS(13), - [sym_library_type] = ACTIONS(13), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [28] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(28), - [sym_selected_waveforms] = STATE(7032), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(301), - [sym_line_comment] = STATE(28), - [sym_block_comment] = STATE(28), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [25] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(25), + [sym_selected_waveforms] = STATE(7375), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(271), + [sym_line_comment] = STATE(25), + [sym_block_comment] = STATE(25), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(453), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(449), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, - [29] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(29), - [sym_selected_waveforms] = STATE(7958), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(268), - [sym_line_comment] = STATE(29), - [sym_block_comment] = STATE(29), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [26] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7053), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(26), + [sym_line_comment] = STATE(26), + [sym_block_comment] = STATE(26), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(451), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(455), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [30] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(30), - [sym_waveform] = STATE(5641), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7008), - [sym_delay_mechanism] = STATE(344), - [sym_line_comment] = STATE(30), - [sym_block_comment] = STATE(30), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [27] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(27), + [sym_selected_waveforms] = STATE(7200), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(286), + [sym_line_comment] = STATE(27), + [sym_block_comment] = STATE(27), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(457), - [sym_INERTIAL] = ACTIONS(415), + [sym_FORCE] = ACTIONS(453), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_RELEASE] = ACTIONS(459), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, - [31] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(8110), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(31), - [sym_line_comment] = STATE(31), - [sym_block_comment] = STATE(31), + [28] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6948), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(28), + [sym_line_comment] = STATE(28), + [sym_block_comment] = STATE(28), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(455), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -23494,147 +23918,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [32] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(32), - [sym_selected_waveforms] = STATE(7017), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(305), - [sym_line_comment] = STATE(32), - [sym_block_comment] = STATE(32), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [29] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6872), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(29), + [sym_line_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(457), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(463), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [33] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(8071), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(33), - [sym_line_comment] = STATE(33), - [sym_block_comment] = STATE(33), + [30] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(30), + [sym_selected_waveforms] = STATE(7689), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(306), + [sym_line_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_GUARDED] = ACTIONS(459), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [31] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(31), + [sym_selected_waveforms] = STATE(8170), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(261), + [sym_line_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_FORCE] = ACTIONS(461), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [32] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7047), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(32), + [sym_line_comment] = STATE(32), + [sym_block_comment] = STATE(32), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(463), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -23642,73 +24214,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), + }, + [33] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(33), + [sym_selected_waveforms] = STATE(7540), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(321), + [sym_line_comment] = STATE(33), + [sym_block_comment] = STATE(33), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_GUARDED] = ACTIONS(465), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [34] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(8017), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(34), + [sym_selected_waveforms] = STATE(7454), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(252), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_GUARDED] = ACTIONS(467), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [35] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8059), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(35), + [sym_line_comment] = STATE(35), + [sym_block_comment] = STATE(35), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(469), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -23716,147 +24436,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [35] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(35), - [sym_selected_waveforms] = STATE(6479), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(276), - [sym_line_comment] = STATE(35), - [sym_block_comment] = STATE(35), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [36] = { + [sym__sequential_statement] = STATE(2978), + [sym_sequential_block_statement] = STATE(2979), + [sym_assertion_statement] = STATE(2979), + [sym_assertion] = STATE(6906), + [sym_report_expression] = STATE(5830), + [sym_case_statement] = STATE(2979), + [sym_case_expression] = STATE(6483), + [sym_exit_statement] = STATE(2979), + [sym_if_statement_block] = STATE(2979), + [sym_if_statement] = STATE(5001), + [sym_loop_statement] = STATE(2979), + [sym__iteration_scheme] = STATE(6486), + [sym_loop_body] = STATE(6487), + [sym_next_statement] = STATE(2979), + [sym_null_statement] = STATE(2979), + [sym_procedure_call_statement] = STATE(2979), + [sym_report_statement] = STATE(2979), + [sym_return_statement] = STATE(2979), + [sym_simple_waveform_assignment] = STATE(2979), + [sym_simple_variable_assignment] = STATE(2979), + [sym_simple_force_assignment] = STATE(2979), + [sym_simple_release_assignment] = STATE(2979), + [sym_conditional_signal_assignment] = STATE(2979), + [sym_selected_waveform_assignment] = STATE(2979), + [sym_selected_force_assignment] = STATE(2979), + [sym_selected_variable_assignment] = STATE(2979), + [sym_with_expression] = STATE(6488), + [sym_wait_statement] = STATE(2979), + [sym_name] = STATE(5828), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), + [sym__tool_directive] = STATE(36), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5826), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1458), + [sym_line_comment] = STATE(36), + [sym_block_comment] = STATE(36), + [aux_sym_sequential_block_repeat1] = STATE(40), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_LT_LT] = ACTIONS(11), + [sym_identifier] = ACTIONS(13), + [sym_ASSERT] = ACTIONS(19), + [sym_BLOCK] = ACTIONS(363), + [sym_CASE] = ACTIONS(261), + [sym_END] = ACTIONS(471), + [sym_EXIT] = ACTIONS(367), + [sym_FOR] = ACTIONS(267), + [sym_IF] = ACTIONS(269), + [sym_LOOP] = ACTIONS(271), + [sym_NEXT] = ACTIONS(369), + [sym_NULL] = ACTIONS(371), + [sym_REPORT] = ACTIONS(277), + [sym_RETURN] = ACTIONS(373), + [sym_WAIT] = ACTIONS(375), + [sym_WHILE] = ACTIONS(283), + [sym_WITH] = ACTIONS(69), + [sym__grave_accent] = ACTIONS(3), + [sym_character_literal] = ACTIONS(71), + [sym_operator_symbol] = ACTIONS(71), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(13), + [sym_library_constant_std_logic] = ACTIONS(71), + [sym_library_function] = ACTIONS(13), + [sym_library_type] = ACTIONS(13), + }, + [37] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6787), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(37), + [sym_line_comment] = STATE(37), + [sym_block_comment] = STATE(37), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(473), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(469), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [36] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7949), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(36), - [sym_line_comment] = STATE(36), - [sym_block_comment] = STATE(36), + [38] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7467), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(38), + [sym_line_comment] = STATE(38), + [sym_block_comment] = STATE(38), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(475), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -23864,151 +24658,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [37] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(37), - [sym_waveform] = STATE(5689), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7074), - [sym_delay_mechanism] = STATE(331), - [sym_line_comment] = STATE(37), - [sym_block_comment] = STATE(37), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [39] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7542), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(39), + [sym_line_comment] = STATE(39), + [sym_block_comment] = STATE(39), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(477), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(473), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_RELEASE] = ACTIONS(475), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [38] = { - [sym__sequential_statement] = STATE(2873), - [sym_sequential_block_statement] = STATE(2872), - [sym_assertion_statement] = STATE(2872), - [sym_assertion] = STATE(7107), - [sym_report_expression] = STATE(5484), - [sym_case_statement] = STATE(2872), - [sym_case_expression] = STATE(6182), - [sym_exit_statement] = STATE(2872), - [sym_if_statement_block] = STATE(2872), - [sym_if_statement] = STATE(4832), - [sym_loop_statement] = STATE(2872), - [sym__iteration_scheme] = STATE(6183), - [sym_loop_body] = STATE(6198), - [sym_next_statement] = STATE(2872), - [sym_null_statement] = STATE(2872), - [sym_procedure_call_statement] = STATE(2872), - [sym_report_statement] = STATE(2872), - [sym_return_statement] = STATE(2872), - [sym_simple_waveform_assignment] = STATE(2872), - [sym_simple_variable_assignment] = STATE(2872), - [sym_simple_force_assignment] = STATE(2872), - [sym_simple_release_assignment] = STATE(2872), - [sym_conditional_signal_assignment] = STATE(2872), - [sym_selected_waveform_assignment] = STATE(2872), - [sym_selected_force_assignment] = STATE(2872), - [sym_selected_variable_assignment] = STATE(2872), - [sym_with_expression] = STATE(6184), - [sym_wait_statement] = STATE(2872), - [sym_name] = STATE(5503), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), - [sym__tool_directive] = STATE(38), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5507), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1629), - [sym_line_comment] = STATE(38), - [sym_block_comment] = STATE(38), - [aux_sym_sequential_block_repeat1] = STATE(49), + [40] = { + [sym__sequential_statement] = STATE(2978), + [sym_sequential_block_statement] = STATE(2979), + [sym_assertion_statement] = STATE(2979), + [sym_assertion] = STATE(6906), + [sym_report_expression] = STATE(5830), + [sym_case_statement] = STATE(2979), + [sym_case_expression] = STATE(6483), + [sym_exit_statement] = STATE(2979), + [sym_if_statement_block] = STATE(2979), + [sym_if_statement] = STATE(5001), + [sym_loop_statement] = STATE(2979), + [sym__iteration_scheme] = STATE(6486), + [sym_loop_body] = STATE(6487), + [sym_next_statement] = STATE(2979), + [sym_null_statement] = STATE(2979), + [sym_procedure_call_statement] = STATE(2979), + [sym_report_statement] = STATE(2979), + [sym_return_statement] = STATE(2979), + [sym_simple_waveform_assignment] = STATE(2979), + [sym_simple_variable_assignment] = STATE(2979), + [sym_simple_force_assignment] = STATE(2979), + [sym_simple_release_assignment] = STATE(2979), + [sym_conditional_signal_assignment] = STATE(2979), + [sym_selected_waveform_assignment] = STATE(2979), + [sym_selected_force_assignment] = STATE(2979), + [sym_selected_variable_assignment] = STATE(2979), + [sym_with_expression] = STATE(6488), + [sym_wait_statement] = STATE(2979), + [sym_name] = STATE(5828), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), + [sym__tool_directive] = STATE(40), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5826), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1458), + [sym_line_comment] = STATE(40), + [sym_block_comment] = STATE(40), + [aux_sym_sequential_block_repeat1] = STATE(58), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_LT_LT] = ACTIONS(11), [sym_identifier] = ACTIONS(13), [sym_ASSERT] = ACTIONS(19), [sym_BLOCK] = ACTIONS(363), [sym_CASE] = ACTIONS(261), - [sym_END] = ACTIONS(477), + [sym_END] = ACTIONS(479), [sym_EXIT] = ACTIONS(367), [sym_FOR] = ACTIONS(267), [sym_IF] = ACTIONS(269), @@ -24030,277 +24824,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(13), [sym_library_type] = ACTIONS(13), }, - [39] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(39), - [sym_selected_waveforms] = STATE(7098), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(293), - [sym_line_comment] = STATE(39), - [sym_block_comment] = STATE(39), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(479), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [40] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(40), - [sym_selected_waveforms] = STATE(7869), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(239), - [sym_line_comment] = STATE(40), - [sym_block_comment] = STATE(40), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(481), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, [41] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(41), - [sym_selected_waveforms] = STATE(7134), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(287), + [sym_selected_waveforms] = STATE(8073), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(300), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(483), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(481), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [42] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7881), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8139), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(42), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_RPAREN] = ACTIONS(483), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -24308,73 +24954,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [43] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7583), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7589), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(43), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(485), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -24382,295 +25028,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [44] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(44), - [sym_selected_waveforms] = STATE(6475), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(264), + [sym_selected_waveforms] = STATE(7211), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(310), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(489), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(487), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [45] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7828), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(45), + [sym_waveform] = STATE(5919), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(8013), + [sym_delay_mechanism] = STATE(348), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(491), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_FORCE] = ACTIONS(489), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_RELEASE] = ACTIONS(491), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [46] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8198), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(46), - [sym_waveform] = STATE(5500), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6601), - [sym_delay_mechanism] = STATE(341), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(493), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(493), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_RELEASE] = ACTIONS(495), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [47] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7793), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6988), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(47), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_RPAREN] = ACTIONS(495), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -24678,221 +25324,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [48] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8244), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(48), - [sym_selected_waveforms] = STATE(7261), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(257), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(497), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(499), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [49] = { - [sym__sequential_statement] = STATE(2873), - [sym_sequential_block_statement] = STATE(2872), - [sym_assertion_statement] = STATE(2872), - [sym_assertion] = STATE(7107), - [sym_report_expression] = STATE(5484), - [sym_case_statement] = STATE(2872), - [sym_case_expression] = STATE(6182), - [sym_exit_statement] = STATE(2872), - [sym_if_statement_block] = STATE(2872), - [sym_if_statement] = STATE(4832), - [sym_loop_statement] = STATE(2872), - [sym__iteration_scheme] = STATE(6183), - [sym_loop_body] = STATE(6198), - [sym_next_statement] = STATE(2872), - [sym_null_statement] = STATE(2872), - [sym_procedure_call_statement] = STATE(2872), - [sym_report_statement] = STATE(2872), - [sym_return_statement] = STATE(2872), - [sym_simple_waveform_assignment] = STATE(2872), - [sym_simple_variable_assignment] = STATE(2872), - [sym_simple_force_assignment] = STATE(2872), - [sym_simple_release_assignment] = STATE(2872), - [sym_conditional_signal_assignment] = STATE(2872), - [sym_selected_waveform_assignment] = STATE(2872), - [sym_selected_force_assignment] = STATE(2872), - [sym_selected_variable_assignment] = STATE(2872), - [sym_with_expression] = STATE(6184), - [sym_wait_statement] = STATE(2872), - [sym_name] = STATE(5503), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(49), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5507), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1629), + [sym_selected_waveforms] = STATE(8089), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(290), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [aux_sym_sequential_block_repeat1] = STATE(49), - [anon_sym_LPAREN] = ACTIONS(289), - [anon_sym_LT_LT] = ACTIONS(292), - [sym_identifier] = ACTIONS(295), - [sym_ASSERT] = ACTIONS(298), - [sym_BLOCK] = ACTIONS(501), - [sym_CASE] = ACTIONS(304), - [sym_END] = ACTIONS(307), - [sym_EXIT] = ACTIONS(504), - [sym_FOR] = ACTIONS(312), - [sym_IF] = ACTIONS(315), - [sym_LOOP] = ACTIONS(318), - [sym_NEXT] = ACTIONS(507), - [sym_NULL] = ACTIONS(510), - [sym_REPORT] = ACTIONS(327), - [sym_RETURN] = ACTIONS(513), - [sym_WAIT] = ACTIONS(516), - [sym_WHILE] = ACTIONS(336), - [sym_WITH] = ACTIONS(339), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_FORCE] = ACTIONS(499), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(342), - [sym_operator_symbol] = ACTIONS(342), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(295), - [sym_library_constant_std_logic] = ACTIONS(342), - [sym_library_function] = ACTIONS(295), - [sym_library_type] = ACTIONS(295), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [50] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7184), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7811), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(50), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(501), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -24900,295 +25546,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [51] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(51), - [sym_selected_waveforms] = STATE(7310), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(242), + [sym_selected_waveforms] = STATE(7185), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(317), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(521), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(503), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [52] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__sequential_statement] = STATE(2978), + [sym_sequential_block_statement] = STATE(2979), + [sym_assertion_statement] = STATE(2979), + [sym_assertion] = STATE(6906), + [sym_report_expression] = STATE(5830), + [sym_case_statement] = STATE(2979), + [sym_case_expression] = STATE(6483), + [sym_exit_statement] = STATE(2979), + [sym_if_statement_block] = STATE(2979), + [sym_if_statement] = STATE(5001), + [sym_loop_statement] = STATE(2979), + [sym__iteration_scheme] = STATE(6486), + [sym_loop_body] = STATE(6487), + [sym_next_statement] = STATE(2979), + [sym_null_statement] = STATE(2979), + [sym_procedure_call_statement] = STATE(2979), + [sym_report_statement] = STATE(2979), + [sym_return_statement] = STATE(2979), + [sym_simple_waveform_assignment] = STATE(2979), + [sym_simple_variable_assignment] = STATE(2979), + [sym_simple_force_assignment] = STATE(2979), + [sym_simple_release_assignment] = STATE(2979), + [sym_conditional_signal_assignment] = STATE(2979), + [sym_selected_waveform_assignment] = STATE(2979), + [sym_selected_force_assignment] = STATE(2979), + [sym_selected_variable_assignment] = STATE(2979), + [sym_with_expression] = STATE(6488), + [sym_wait_statement] = STATE(2979), + [sym_name] = STATE(5828), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(52), - [sym_waveform] = STATE(5452), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7295), - [sym_delay_mechanism] = STATE(333), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5826), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1458), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(523), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_RELEASE] = ACTIONS(525), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), + [aux_sym_sequential_block_repeat1] = STATE(58), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_LT_LT] = ACTIONS(11), + [sym_identifier] = ACTIONS(13), + [sym_ASSERT] = ACTIONS(19), + [sym_BLOCK] = ACTIONS(363), + [sym_CASE] = ACTIONS(261), + [sym_END] = ACTIONS(287), + [sym_EXIT] = ACTIONS(367), + [sym_FOR] = ACTIONS(267), + [sym_IF] = ACTIONS(269), + [sym_LOOP] = ACTIONS(271), + [sym_NEXT] = ACTIONS(369), + [sym_NULL] = ACTIONS(371), + [sym_REPORT] = ACTIONS(277), + [sym_RETURN] = ACTIONS(373), + [sym_WAIT] = ACTIONS(375), + [sym_WHILE] = ACTIONS(283), + [sym_WITH] = ACTIONS(69), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_character_literal] = ACTIONS(71), + [sym_operator_symbol] = ACTIONS(71), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(13), + [sym_library_constant_std_logic] = ACTIONS(71), + [sym_library_function] = ACTIONS(13), + [sym_library_type] = ACTIONS(13), }, [53] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8058), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(53), - [sym_selected_waveforms] = STATE(7302), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(244), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(527), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [54] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6901), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(54), - [sym_line_comment] = STATE(54), - [sym_block_comment] = STATE(54), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_RPAREN] = ACTIONS(505), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -25196,147 +25768,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), + }, + [54] = { + [sym__sequential_statement] = STATE(2978), + [sym_sequential_block_statement] = STATE(2979), + [sym_assertion_statement] = STATE(2979), + [sym_assertion] = STATE(6906), + [sym_report_expression] = STATE(5830), + [sym_case_statement] = STATE(2979), + [sym_case_expression] = STATE(6483), + [sym_exit_statement] = STATE(2979), + [sym_if_statement_block] = STATE(2979), + [sym_if_statement] = STATE(5001), + [sym_loop_statement] = STATE(2979), + [sym__iteration_scheme] = STATE(6486), + [sym_loop_body] = STATE(6487), + [sym_next_statement] = STATE(2979), + [sym_null_statement] = STATE(2979), + [sym_procedure_call_statement] = STATE(2979), + [sym_report_statement] = STATE(2979), + [sym_return_statement] = STATE(2979), + [sym_simple_waveform_assignment] = STATE(2979), + [sym_simple_variable_assignment] = STATE(2979), + [sym_simple_force_assignment] = STATE(2979), + [sym_simple_release_assignment] = STATE(2979), + [sym_conditional_signal_assignment] = STATE(2979), + [sym_selected_waveform_assignment] = STATE(2979), + [sym_selected_force_assignment] = STATE(2979), + [sym_selected_variable_assignment] = STATE(2979), + [sym_with_expression] = STATE(6488), + [sym_wait_statement] = STATE(2979), + [sym_name] = STATE(5828), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), + [sym__tool_directive] = STATE(54), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5826), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1458), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [aux_sym_sequential_block_repeat1] = STATE(90), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_LT_LT] = ACTIONS(11), + [sym_identifier] = ACTIONS(13), + [sym_ASSERT] = ACTIONS(19), + [sym_BLOCK] = ACTIONS(363), + [sym_CASE] = ACTIONS(261), + [sym_END] = ACTIONS(507), + [sym_EXIT] = ACTIONS(367), + [sym_FOR] = ACTIONS(267), + [sym_IF] = ACTIONS(269), + [sym_LOOP] = ACTIONS(271), + [sym_NEXT] = ACTIONS(369), + [sym_NULL] = ACTIONS(371), + [sym_REPORT] = ACTIONS(277), + [sym_RETURN] = ACTIONS(373), + [sym_WAIT] = ACTIONS(375), + [sym_WHILE] = ACTIONS(283), + [sym_WITH] = ACTIONS(69), + [sym__grave_accent] = ACTIONS(3), + [sym_character_literal] = ACTIONS(71), + [sym_operator_symbol] = ACTIONS(71), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(13), + [sym_library_constant_std_logic] = ACTIONS(71), + [sym_library_function] = ACTIONS(13), + [sym_library_type] = ACTIONS(13), }, [55] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7602), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_use_clause] = STATE(1933), + [sym_package_declaration] = STATE(1933), + [sym_package_instantiation_declaration] = STATE(1933), + [sym_package_definition] = STATE(1933), + [sym__block_declarative_item] = STATE(1931), + [sym_subprogram_declaration] = STATE(1933), + [sym_subprogram_definition] = STATE(1933), + [sym_subprogram_instantiation_declaration] = STATE(1933), + [sym_type_declaration] = STATE(1933), + [sym_subtype_declaration] = STATE(1933), + [sym_mode_view_declaration] = STATE(1933), + [sym_constant_declaration] = STATE(1933), + [sym_signal_declaration] = STATE(1933), + [sym_variable_declaration] = STATE(1933), + [sym_file_declaration] = STATE(1933), + [sym_alias_declaration] = STATE(1933), + [sym_component_declaration] = STATE(1933), + [sym_attribute_declaration] = STATE(1933), + [sym_attribute_specification] = STATE(1933), + [sym_disconnection_specification] = STATE(1933), + [sym_group_template_declaration] = STATE(1933), + [sym_group_declaration] = STATE(1933), [sym__tool_directive] = STATE(55), + [sym_procedure_specification] = STATE(6351), + [sym_function_specification] = STATE(6351), + [sym__subprogram_specification] = STATE(5843), + [sym_configuration_specification] = STATE(1933), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(531), - [sym_condition_conversion] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), - [sym__OR] = ACTIONS(239), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), + [aux_sym_design_unit_repeat2] = STATE(55), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [sym_identifier] = ACTIONS(509), + [sym_ALIAS] = ACTIONS(511), + [sym_ARCHITECTURE] = ACTIONS(509), + [sym_ASSERT] = ACTIONS(509), + [sym_ATTRIBUTE] = ACTIONS(514), + [sym_COMPONENT] = ACTIONS(517), + [sym_CONFIGURATION] = ACTIONS(509), + [sym_CONSTANT] = ACTIONS(520), + [sym_CONTEXT] = ACTIONS(509), + [sym_DISCONNECT] = ACTIONS(523), + [sym_ENTITY] = ACTIONS(509), + [sym_FILE] = ACTIONS(526), + [sym_FOR] = ACTIONS(529), + [sym_FUNCTION] = ACTIONS(532), + [sym_GROUP] = ACTIONS(535), + [sym_IMPURE] = ACTIONS(538), + [sym_LIBRARY] = ACTIONS(509), + [sym_PACKAGE] = ACTIONS(541), + [sym_POSTPONED] = ACTIONS(509), + [sym_PROCEDURE] = ACTIONS(544), + [sym_PROCESS] = ACTIONS(509), + [sym_PURE] = ACTIONS(538), + [sym_SIGNAL] = ACTIONS(547), + [sym_SHARED] = ACTIONS(550), + [sym_SUBTYPE] = ACTIONS(553), + [sym_TYPE] = ACTIONS(556), + [sym_USE] = ACTIONS(559), + [sym_VARIABLE] = ACTIONS(562), + [sym_VIEW] = ACTIONS(565), + [sym_WITH] = ACTIONS(509), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_character_literal] = ACTIONS(509), + [sym_operator_symbol] = ACTIONS(509), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(509), + [sym_library_constant_std_logic] = ACTIONS(509), + [sym_library_function] = ACTIONS(509), + [sym_library_type] = ACTIONS(509), + [sym__end_of_file] = ACTIONS(509), }, [56] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7577), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6713), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(56), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(568), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -25344,73 +25990,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [57] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6768), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6743), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(57), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(570), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -25418,147 +26064,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [58] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7541), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__sequential_statement] = STATE(2978), + [sym_sequential_block_statement] = STATE(2979), + [sym_assertion_statement] = STATE(2979), + [sym_assertion] = STATE(6906), + [sym_report_expression] = STATE(5830), + [sym_case_statement] = STATE(2979), + [sym_case_expression] = STATE(6483), + [sym_exit_statement] = STATE(2979), + [sym_if_statement_block] = STATE(2979), + [sym_if_statement] = STATE(5001), + [sym_loop_statement] = STATE(2979), + [sym__iteration_scheme] = STATE(6486), + [sym_loop_body] = STATE(6487), + [sym_next_statement] = STATE(2979), + [sym_null_statement] = STATE(2979), + [sym_procedure_call_statement] = STATE(2979), + [sym_report_statement] = STATE(2979), + [sym_return_statement] = STATE(2979), + [sym_simple_waveform_assignment] = STATE(2979), + [sym_simple_variable_assignment] = STATE(2979), + [sym_simple_force_assignment] = STATE(2979), + [sym_simple_release_assignment] = STATE(2979), + [sym_conditional_signal_assignment] = STATE(2979), + [sym_selected_waveform_assignment] = STATE(2979), + [sym_selected_force_assignment] = STATE(2979), + [sym_selected_variable_assignment] = STATE(2979), + [sym_with_expression] = STATE(6488), + [sym_wait_statement] = STATE(2979), + [sym_name] = STATE(5828), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(58), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5826), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1458), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(537), - [sym_condition_conversion] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), - [sym__OR] = ACTIONS(239), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), + [aux_sym_sequential_block_repeat1] = STATE(58), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(292), + [sym_identifier] = ACTIONS(295), + [sym_ASSERT] = ACTIONS(298), + [sym_BLOCK] = ACTIONS(572), + [sym_CASE] = ACTIONS(304), + [sym_END] = ACTIONS(307), + [sym_EXIT] = ACTIONS(575), + [sym_FOR] = ACTIONS(312), + [sym_IF] = ACTIONS(315), + [sym_LOOP] = ACTIONS(318), + [sym_NEXT] = ACTIONS(578), + [sym_NULL] = ACTIONS(581), + [sym_REPORT] = ACTIONS(327), + [sym_RETURN] = ACTIONS(584), + [sym_WAIT] = ACTIONS(587), + [sym_WHILE] = ACTIONS(336), + [sym_WITH] = ACTIONS(339), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_character_literal] = ACTIONS(342), + [sym_operator_symbol] = ACTIONS(342), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(295), + [sym_library_constant_std_logic] = ACTIONS(342), + [sym_library_function] = ACTIONS(295), + [sym_library_type] = ACTIONS(295), }, [59] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7513), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6766), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(59), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_RPAREN] = ACTIONS(590), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -25566,147 +26212,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [60] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(60), - [sym_waveform] = STATE(5793), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7880), - [sym_delay_mechanism] = STATE(340), + [sym_waveform] = STATE(5924), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7166), + [sym_delay_mechanism] = STATE(330), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(541), - [sym_INERTIAL] = ACTIONS(415), + [sym_FORCE] = ACTIONS(592), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_RELEASE] = ACTIONS(543), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_RELEASE] = ACTIONS(594), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [61] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7369), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7757), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(61), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_RPAREN] = ACTIONS(596), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -25714,221 +26360,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [62] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(62), - [sym_waveform] = STATE(5520), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7354), - [sym_delay_mechanism] = STATE(350), + [sym_selected_waveforms] = STATE(7086), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(307), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_FORCE] = ACTIONS(547), - [sym_INERTIAL] = ACTIONS(415), + [sym_FORCE] = ACTIONS(598), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_RELEASE] = ACTIONS(549), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [63] = { - [sym_use_clause] = STATE(2105), - [sym_package_declaration] = STATE(2105), - [sym_package_instantiation_declaration] = STATE(2105), - [sym_package_definition] = STATE(2105), - [sym__block_declarative_item] = STATE(2107), - [sym_subprogram_declaration] = STATE(2105), - [sym_subprogram_definition] = STATE(2105), - [sym_subprogram_instantiation_declaration] = STATE(2105), - [sym_type_declaration] = STATE(2105), - [sym_subtype_declaration] = STATE(2105), - [sym_mode_view_declaration] = STATE(2105), - [sym_constant_declaration] = STATE(2105), - [sym_signal_declaration] = STATE(2105), - [sym_variable_declaration] = STATE(2105), - [sym_file_declaration] = STATE(2105), - [sym_alias_declaration] = STATE(2105), - [sym_component_declaration] = STATE(2105), - [sym_attribute_declaration] = STATE(2105), - [sym_attribute_specification] = STATE(2105), - [sym_disconnection_specification] = STATE(2105), - [sym_group_template_declaration] = STATE(2105), - [sym_group_declaration] = STATE(2105), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7651), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(63), - [sym_procedure_specification] = STATE(6075), - [sym_function_specification] = STATE(6075), - [sym__subprogram_specification] = STATE(5624), - [sym_configuration_specification] = STATE(2105), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [aux_sym_design_unit_repeat2] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [sym_identifier] = ACTIONS(551), - [sym_ALIAS] = ACTIONS(15), - [sym_ARCHITECTURE] = ACTIONS(551), - [sym_ASSERT] = ACTIONS(551), - [sym_ATTRIBUTE] = ACTIONS(21), - [sym_COMPONENT] = ACTIONS(23), - [sym_CONFIGURATION] = ACTIONS(551), - [sym_CONSTANT] = ACTIONS(27), - [sym_CONTEXT] = ACTIONS(551), - [sym_DISCONNECT] = ACTIONS(31), - [sym_ENTITY] = ACTIONS(551), - [sym_FILE] = ACTIONS(35), - [sym_FOR] = ACTIONS(37), - [sym_FUNCTION] = ACTIONS(39), - [sym_GROUP] = ACTIONS(41), - [sym_IMPURE] = ACTIONS(43), - [sym_LIBRARY] = ACTIONS(551), - [sym_PACKAGE] = ACTIONS(47), - [sym_POSTPONED] = ACTIONS(551), - [sym_PROCEDURE] = ACTIONS(51), - [sym_PROCESS] = ACTIONS(551), - [sym_PURE] = ACTIONS(43), - [sym_SIGNAL] = ACTIONS(55), - [sym_SHARED] = ACTIONS(57), - [sym_SUBTYPE] = ACTIONS(59), - [sym_TYPE] = ACTIONS(61), - [sym_USE] = ACTIONS(63), - [sym_VARIABLE] = ACTIONS(65), - [sym_VIEW] = ACTIONS(67), - [sym_WITH] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(600), + [sym_condition_conversion] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(241), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), + [sym__OR] = ACTIONS(239), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(551), - [sym_operator_symbol] = ACTIONS(551), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(551), - [sym_library_constant_std_logic] = ACTIONS(551), - [sym_library_function] = ACTIONS(551), - [sym_library_type] = ACTIONS(551), - [sym__end_of_file] = ACTIONS(551), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [64] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7446), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7688), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(64), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_RPAREN] = ACTIONS(602), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -25936,73 +26582,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [65] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6674), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6920), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(65), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(604), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26010,221 +26656,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [66] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6809), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(66), - [sym_selected_waveforms] = STATE(7375), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(300), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(606), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(557), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [67] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6842), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(67), - [sym_selected_waveforms] = STATE(7413), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(273), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(608), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(559), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [68] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7417), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6717), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(68), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(610), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26232,73 +26878,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [69] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6589), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7586), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(69), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_RPAREN] = ACTIONS(612), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26306,73 +26952,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [70] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7318), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7744), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(70), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(614), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26380,147 +27026,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [71] = { - [sym_use_clause] = STATE(2105), - [sym_package_declaration] = STATE(2105), - [sym_package_instantiation_declaration] = STATE(2105), - [sym_package_definition] = STATE(2105), - [sym__block_declarative_item] = STATE(2107), - [sym_subprogram_declaration] = STATE(2105), - [sym_subprogram_definition] = STATE(2105), - [sym_subprogram_instantiation_declaration] = STATE(2105), - [sym_type_declaration] = STATE(2105), - [sym_subtype_declaration] = STATE(2105), - [sym_mode_view_declaration] = STATE(2105), - [sym_constant_declaration] = STATE(2105), - [sym_signal_declaration] = STATE(2105), - [sym_variable_declaration] = STATE(2105), - [sym_file_declaration] = STATE(2105), - [sym_alias_declaration] = STATE(2105), - [sym_component_declaration] = STATE(2105), - [sym_attribute_declaration] = STATE(2105), - [sym_attribute_specification] = STATE(2105), - [sym_disconnection_specification] = STATE(2105), - [sym_group_template_declaration] = STATE(2105), - [sym_group_declaration] = STATE(2105), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6878), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(71), - [sym_procedure_specification] = STATE(6075), - [sym_function_specification] = STATE(6075), - [sym__subprogram_specification] = STATE(5624), - [sym_configuration_specification] = STATE(2105), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_design_unit_repeat2] = STATE(71), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(567), - [sym_identifier] = ACTIONS(567), - [sym_ALIAS] = ACTIONS(569), - [sym_ARCHITECTURE] = ACTIONS(567), - [sym_ASSERT] = ACTIONS(567), - [sym_ATTRIBUTE] = ACTIONS(572), - [sym_COMPONENT] = ACTIONS(575), - [sym_CONFIGURATION] = ACTIONS(567), - [sym_CONSTANT] = ACTIONS(578), - [sym_CONTEXT] = ACTIONS(567), - [sym_DISCONNECT] = ACTIONS(581), - [sym_ENTITY] = ACTIONS(567), - [sym_FILE] = ACTIONS(584), - [sym_FOR] = ACTIONS(587), - [sym_FUNCTION] = ACTIONS(590), - [sym_GROUP] = ACTIONS(593), - [sym_IMPURE] = ACTIONS(596), - [sym_LIBRARY] = ACTIONS(567), - [sym_PACKAGE] = ACTIONS(599), - [sym_POSTPONED] = ACTIONS(567), - [sym_PROCEDURE] = ACTIONS(602), - [sym_PROCESS] = ACTIONS(567), - [sym_PURE] = ACTIONS(596), - [sym_SIGNAL] = ACTIONS(605), - [sym_SHARED] = ACTIONS(608), - [sym_SUBTYPE] = ACTIONS(611), - [sym_TYPE] = ACTIONS(614), - [sym_USE] = ACTIONS(617), - [sym_VARIABLE] = ACTIONS(620), - [sym_VIEW] = ACTIONS(623), - [sym_WITH] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(616), + [sym_condition_conversion] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(241), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), + [sym__OR] = ACTIONS(239), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(567), - [sym_operator_symbol] = ACTIONS(567), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(567), - [sym_library_constant_std_logic] = ACTIONS(567), - [sym_library_function] = ACTIONS(567), - [sym_library_type] = ACTIONS(567), - [sym__end_of_file] = ACTIONS(567), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [72] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7172), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7698), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(72), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_RPAREN] = ACTIONS(618), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26528,73 +27174,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [73] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7011), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6636), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(73), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(628), + [anon_sym_RPAREN] = ACTIONS(620), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26602,73 +27248,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [74] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6537), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6819), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(74), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(622), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26676,147 +27322,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [75] = { - [sym__sequential_statement] = STATE(2873), - [sym_sequential_block_statement] = STATE(2872), - [sym_assertion_statement] = STATE(2872), - [sym_assertion] = STATE(7107), - [sym_report_expression] = STATE(5484), - [sym_case_statement] = STATE(2872), - [sym_case_expression] = STATE(6182), - [sym_exit_statement] = STATE(2872), - [sym_if_statement_block] = STATE(2872), - [sym_if_statement] = STATE(4832), - [sym_loop_statement] = STATE(2872), - [sym__iteration_scheme] = STATE(6183), - [sym_loop_body] = STATE(6198), - [sym_next_statement] = STATE(2872), - [sym_null_statement] = STATE(2872), - [sym_procedure_call_statement] = STATE(2872), - [sym_report_statement] = STATE(2872), - [sym_return_statement] = STATE(2872), - [sym_simple_waveform_assignment] = STATE(2872), - [sym_simple_variable_assignment] = STATE(2872), - [sym_simple_force_assignment] = STATE(2872), - [sym_simple_release_assignment] = STATE(2872), - [sym_conditional_signal_assignment] = STATE(2872), - [sym_selected_waveform_assignment] = STATE(2872), - [sym_selected_force_assignment] = STATE(2872), - [sym_selected_variable_assignment] = STATE(2872), - [sym_with_expression] = STATE(6184), - [sym_wait_statement] = STATE(2872), - [sym_name] = STATE(5503), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7787), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(75), - [sym_while_loop] = STATE(7089), - [sym_for_loop] = STATE(7089), - [sym__target] = STATE(5507), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(1629), + [sym_waveform] = STATE(5957), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7410), + [sym_delay_mechanism] = STATE(339), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_sequential_block_repeat1] = STATE(49), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_LT_LT] = ACTIONS(11), - [sym_identifier] = ACTIONS(13), - [sym_ASSERT] = ACTIONS(19), - [sym_BLOCK] = ACTIONS(363), - [sym_CASE] = ACTIONS(261), - [sym_END] = ACTIONS(287), - [sym_EXIT] = ACTIONS(367), - [sym_FOR] = ACTIONS(267), - [sym_IF] = ACTIONS(269), - [sym_LOOP] = ACTIONS(271), - [sym_NEXT] = ACTIONS(369), - [sym_NULL] = ACTIONS(371), - [sym_REPORT] = ACTIONS(277), - [sym_RETURN] = ACTIONS(373), - [sym_WAIT] = ACTIONS(375), - [sym_WHILE] = ACTIONS(283), - [sym_WITH] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_FORCE] = ACTIONS(624), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_RELEASE] = ACTIONS(626), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(71), - [sym_operator_symbol] = ACTIONS(71), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(13), - [sym_library_constant_std_logic] = ACTIONS(71), - [sym_library_function] = ACTIONS(13), - [sym_library_type] = ACTIONS(13), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [76] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6922), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8297), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(76), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(632), + [anon_sym_RPAREN] = ACTIONS(628), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26824,73 +27470,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [77] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6487), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8337), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(77), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(634), + [anon_sym_RPAREN] = ACTIONS(630), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -26898,147 +27544,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [78] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8324), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(78), - [sym_selected_waveforms] = STATE(6821), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(248), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(632), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(636), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [79] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6995), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8256), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(79), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(638), + [anon_sym_RPAREN] = ACTIONS(634), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27046,73 +27692,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [80] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6463), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8181), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(80), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(636), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27120,73 +27766,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [81] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6528), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7507), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(81), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(638), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27194,73 +27840,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [82] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6809), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6683), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(82), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(640), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27268,73 +27914,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [83] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6771), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(8015), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(83), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(642), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27342,221 +27988,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [84] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6501), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(84), + [sym_selected_waveforms] = STATE(7022), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(284), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(648), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_GUARDED] = ACTIONS(644), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [85] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6568), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(85), + [sym_selected_waveforms] = STATE(7005), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(277), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(650), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_GUARDED] = ACTIONS(646), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [86] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6565), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7764), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(86), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(648), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27564,73 +28210,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [87] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6604), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7826), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(87), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(654), + [anon_sym_RPAREN] = ACTIONS(650), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27638,73 +28284,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [88] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6639), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6742), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(88), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(652), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27712,73 +28358,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [89] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6642), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6907), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(89), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(654), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27786,147 +28432,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [90] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6695), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__sequential_statement] = STATE(2978), + [sym_sequential_block_statement] = STATE(2979), + [sym_assertion_statement] = STATE(2979), + [sym_assertion] = STATE(6906), + [sym_report_expression] = STATE(5830), + [sym_case_statement] = STATE(2979), + [sym_case_expression] = STATE(6483), + [sym_exit_statement] = STATE(2979), + [sym_if_statement_block] = STATE(2979), + [sym_if_statement] = STATE(5001), + [sym_loop_statement] = STATE(2979), + [sym__iteration_scheme] = STATE(6486), + [sym_loop_body] = STATE(6487), + [sym_next_statement] = STATE(2979), + [sym_null_statement] = STATE(2979), + [sym_procedure_call_statement] = STATE(2979), + [sym_report_statement] = STATE(2979), + [sym_return_statement] = STATE(2979), + [sym_simple_waveform_assignment] = STATE(2979), + [sym_simple_variable_assignment] = STATE(2979), + [sym_simple_force_assignment] = STATE(2979), + [sym_simple_release_assignment] = STATE(2979), + [sym_conditional_signal_assignment] = STATE(2979), + [sym_selected_waveform_assignment] = STATE(2979), + [sym_selected_force_assignment] = STATE(2979), + [sym_selected_variable_assignment] = STATE(2979), + [sym_with_expression] = STATE(6488), + [sym_wait_statement] = STATE(2979), + [sym_name] = STATE(5828), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7533), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(90), + [sym_while_loop] = STATE(6892), + [sym_for_loop] = STATE(6892), + [sym__target] = STATE(5826), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(1458), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(660), - [sym_condition_conversion] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), - [sym__OR] = ACTIONS(239), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), + [aux_sym_sequential_block_repeat1] = STATE(58), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_LT_LT] = ACTIONS(11), + [sym_identifier] = ACTIONS(13), + [sym_ASSERT] = ACTIONS(19), + [sym_BLOCK] = ACTIONS(363), + [sym_CASE] = ACTIONS(261), + [sym_END] = ACTIONS(656), + [sym_EXIT] = ACTIONS(367), + [sym_FOR] = ACTIONS(267), + [sym_IF] = ACTIONS(269), + [sym_LOOP] = ACTIONS(271), + [sym_NEXT] = ACTIONS(369), + [sym_NULL] = ACTIONS(371), + [sym_REPORT] = ACTIONS(277), + [sym_RETURN] = ACTIONS(373), + [sym_WAIT] = ACTIONS(375), + [sym_WHILE] = ACTIONS(283), + [sym_WITH] = ACTIONS(69), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_character_literal] = ACTIONS(71), + [sym_operator_symbol] = ACTIONS(71), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(13), + [sym_library_constant_std_logic] = ACTIONS(71), + [sym_library_function] = ACTIONS(13), + [sym_library_type] = ACTIONS(13), }, [91] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6779), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6938), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(91), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(662), + [anon_sym_RPAREN] = ACTIONS(658), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -27934,73 +28580,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [92] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6951), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7261), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(92), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(664), + [anon_sym_RPAREN] = ACTIONS(660), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -28008,350 +28654,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [93] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7808), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(93), + [sym_selected_waveforms] = STATE(6973), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(273), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(666), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_GUARDED] = ACTIONS(662), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [94] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7448), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(94), + [sym_waveform] = STATE(5721), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7749), + [sym_delay_mechanism] = STATE(329), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(668), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_FORCE] = ACTIONS(664), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_RELEASE] = ACTIONS(666), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [95] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7515), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(95), + [sym_waveform] = STATE(5648), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7115), + [sym_delay_mechanism] = STATE(326), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(670), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_FORCE] = ACTIONS(668), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_RELEASE] = ACTIONS(670), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [96] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6667), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(96), + [sym_selected_waveforms] = STATE(7131), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(239), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(672), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_GUARDED] = ACTIONS(672), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [97] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(7590), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7046), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(97), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), @@ -28360,17 +29006,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -28378,54 +29024,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [98] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6692), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(6788), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(98), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), @@ -28434,17 +29080,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -28452,54 +29098,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [99] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym_association_or_range_list] = STATE(6739), - [sym__association_or_range] = STATE(5650), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym_association_or_range_list] = STATE(7802), + [sym__association_or_range] = STATE(5567), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(99), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), @@ -28508,17 +29154,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -28526,2024 +29172,2024 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [100] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__concurrent_statement] = STATE(1935), + [sym_block_statement] = STATE(1936), + [sym_component_instantiation_statement] = STATE(1936), + [sym_process_statement] = STATE(1936), + [sym_case_generate_statement] = STATE(1936), + [sym_for_generate_statement] = STATE(1936), + [sym_if_generate_statement] = STATE(1936), + [sym_concurrent_assertion_statement] = STATE(1936), + [sym_assertion] = STATE(7729), + [sym_concurrent_procedure_call_statement] = STATE(1936), + [sym_concurrent_simple_signal_assignment] = STATE(1936), + [sym_concurrent_conditional_signal_assignment] = STATE(1936), + [sym_concurrent_selected_signal_assignment] = STATE(1936), + [sym_with_expression] = STATE(6281), + [sym_name] = STATE(6283), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7713), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(100), - [sym_waveform] = STATE(5828), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6848), - [sym_delay_mechanism] = STATE(332), + [sym__target] = STATE(6306), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(2622), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(680), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), + [aux_sym_design_unit_repeat3] = STATE(117), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_LT_LT] = ACTIONS(11), + [sym_identifier] = ACTIONS(13), + [sym_ALIAS] = ACTIONS(393), + [sym_ARCHITECTURE] = ACTIONS(393), + [sym_ASSERT] = ACTIONS(19), + [sym_ATTRIBUTE] = ACTIONS(393), + [sym_COMPONENT] = ACTIONS(393), + [sym_CONFIGURATION] = ACTIONS(393), + [sym_CONSTANT] = ACTIONS(393), + [sym_CONTEXT] = ACTIONS(393), + [sym_DISCONNECT] = ACTIONS(393), + [sym_ENTITY] = ACTIONS(393), + [sym_FILE] = ACTIONS(393), + [sym_FOR] = ACTIONS(393), + [sym_FUNCTION] = ACTIONS(393), + [sym_GROUP] = ACTIONS(393), + [sym_IMPURE] = ACTIONS(393), + [sym_LIBRARY] = ACTIONS(393), + [sym_PACKAGE] = ACTIONS(393), + [sym_POSTPONED] = ACTIONS(49), + [sym_PROCEDURE] = ACTIONS(393), + [sym_PROCESS] = ACTIONS(53), + [sym_PURE] = ACTIONS(393), + [sym_SIGNAL] = ACTIONS(393), + [sym_SHARED] = ACTIONS(393), + [sym_SUBTYPE] = ACTIONS(393), + [sym_TYPE] = ACTIONS(393), + [sym_USE] = ACTIONS(393), + [sym_VARIABLE] = ACTIONS(393), + [sym_VIEW] = ACTIONS(393), + [sym_WITH] = ACTIONS(69), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_character_literal] = ACTIONS(71), + [sym_operator_symbol] = ACTIONS(71), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(13), + [sym_library_constant_std_logic] = ACTIONS(71), + [sym_library_function] = ACTIONS(13), + [sym_library_type] = ACTIONS(13), + [sym__end_of_file] = ACTIONS(393), }, [101] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(101), - [sym_selected_waveforms] = STATE(6927), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(315), + [sym_selected_waveforms] = STATE(7090), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(302), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [102] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(102), - [sym_selected_waveforms] = STATE(6800), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(281), + [sym_selected_waveforms] = STATE(6973), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(273), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [103] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(103), - [sym_waveform] = STATE(5644), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7582), - [sym_delay_mechanism] = STATE(338), + [sym_selected_waveforms] = STATE(6955), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(268), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(682), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [104] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(104), - [sym_selected_waveforms] = STATE(6479), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(276), + [sym_selected_waveforms] = STATE(7424), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(263), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [105] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(105), - [sym_selected_waveforms] = STATE(6849), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(255), + [sym_waveform] = STATE(5633), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(6754), + [sym_delay_mechanism] = STATE(332), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(680), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [106] = { - [sym__concurrent_statement] = STATE(2103), - [sym_block_statement] = STATE(2102), - [sym_component_instantiation_statement] = STATE(2102), - [sym_process_statement] = STATE(2102), - [sym_case_generate_statement] = STATE(2102), - [sym_for_generate_statement] = STATE(2102), - [sym_if_generate_statement] = STATE(2102), - [sym_concurrent_assertion_statement] = STATE(2102), - [sym_assertion] = STATE(7529), - [sym_concurrent_procedure_call_statement] = STATE(2102), - [sym_concurrent_simple_signal_assignment] = STATE(2102), - [sym_concurrent_conditional_signal_assignment] = STATE(2102), - [sym_concurrent_selected_signal_assignment] = STATE(2102), - [sym_with_expression] = STATE(6066), - [sym_name] = STATE(6068), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7523), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(106), - [sym__target] = STATE(6080), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(2570), + [sym_selected_waveforms] = STATE(7689), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(306), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym_design_unit_repeat3] = STATE(106), - [anon_sym_LPAREN] = ACTIONS(684), - [anon_sym_LT_LT] = ACTIONS(687), - [sym_identifier] = ACTIONS(690), - [sym_ALIAS] = ACTIONS(693), - [sym_ARCHITECTURE] = ACTIONS(693), - [sym_ASSERT] = ACTIONS(695), - [sym_ATTRIBUTE] = ACTIONS(693), - [sym_COMPONENT] = ACTIONS(693), - [sym_CONFIGURATION] = ACTIONS(693), - [sym_CONSTANT] = ACTIONS(693), - [sym_CONTEXT] = ACTIONS(693), - [sym_DISCONNECT] = ACTIONS(693), - [sym_ENTITY] = ACTIONS(693), - [sym_FILE] = ACTIONS(693), - [sym_FOR] = ACTIONS(693), - [sym_FUNCTION] = ACTIONS(693), - [sym_GROUP] = ACTIONS(693), - [sym_IMPURE] = ACTIONS(693), - [sym_LIBRARY] = ACTIONS(693), - [sym_PACKAGE] = ACTIONS(693), - [sym_POSTPONED] = ACTIONS(698), - [sym_PROCEDURE] = ACTIONS(693), - [sym_PROCESS] = ACTIONS(701), - [sym_PURE] = ACTIONS(693), - [sym_SIGNAL] = ACTIONS(693), - [sym_SHARED] = ACTIONS(693), - [sym_SUBTYPE] = ACTIONS(693), - [sym_TYPE] = ACTIONS(693), - [sym_USE] = ACTIONS(693), - [sym_VARIABLE] = ACTIONS(693), - [sym_VIEW] = ACTIONS(693), - [sym_WITH] = ACTIONS(704), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(707), - [sym_operator_symbol] = ACTIONS(707), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(690), - [sym_library_constant_std_logic] = ACTIONS(707), - [sym_library_function] = ACTIONS(690), - [sym_library_type] = ACTIONS(690), - [sym__end_of_file] = ACTIONS(693), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [107] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(107), - [sym_waveform] = STATE(5618), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7365), - [sym_delay_mechanism] = STATE(342), + [sym_waveform] = STATE(5739), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7031), + [sym_delay_mechanism] = STATE(333), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(710), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(682), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [108] = { - [sym__concurrent_statement] = STATE(2103), - [sym_block_statement] = STATE(2102), - [sym_component_instantiation_statement] = STATE(2102), - [sym_process_statement] = STATE(2102), - [sym_case_generate_statement] = STATE(2102), - [sym_for_generate_statement] = STATE(2102), - [sym_if_generate_statement] = STATE(2102), - [sym_concurrent_assertion_statement] = STATE(2102), - [sym_assertion] = STATE(7529), - [sym_concurrent_procedure_call_statement] = STATE(2102), - [sym_concurrent_simple_signal_assignment] = STATE(2102), - [sym_concurrent_conditional_signal_assignment] = STATE(2102), - [sym_concurrent_selected_signal_assignment] = STATE(2102), - [sym_with_expression] = STATE(6066), - [sym_name] = STATE(6068), - [sym__direct_name] = STATE(2920), - [sym__label] = STATE(7523), - [sym__identifier] = STATE(4246), - [sym__external_name] = STATE(4246), - [sym_external_constant_name] = STATE(4237), - [sym_external_signal_name] = STATE(4237), - [sym_external_variable_name] = STATE(4237), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(108), - [sym__target] = STATE(6080), - [sym_aggregate] = STATE(6083), - [sym_label_declaration] = STATE(2570), + [sym_selected_waveforms] = STATE(7131), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(239), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym_design_unit_repeat3] = STATE(106), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_LT_LT] = ACTIONS(11), - [sym_identifier] = ACTIONS(13), - [sym_ALIAS] = ACTIONS(551), - [sym_ARCHITECTURE] = ACTIONS(551), - [sym_ASSERT] = ACTIONS(19), - [sym_ATTRIBUTE] = ACTIONS(551), - [sym_COMPONENT] = ACTIONS(551), - [sym_CONFIGURATION] = ACTIONS(551), - [sym_CONSTANT] = ACTIONS(551), - [sym_CONTEXT] = ACTIONS(551), - [sym_DISCONNECT] = ACTIONS(551), - [sym_ENTITY] = ACTIONS(551), - [sym_FILE] = ACTIONS(551), - [sym_FOR] = ACTIONS(551), - [sym_FUNCTION] = ACTIONS(551), - [sym_GROUP] = ACTIONS(551), - [sym_IMPURE] = ACTIONS(551), - [sym_LIBRARY] = ACTIONS(551), - [sym_PACKAGE] = ACTIONS(551), - [sym_POSTPONED] = ACTIONS(49), - [sym_PROCEDURE] = ACTIONS(551), - [sym_PROCESS] = ACTIONS(53), - [sym_PURE] = ACTIONS(551), - [sym_SIGNAL] = ACTIONS(551), - [sym_SHARED] = ACTIONS(551), - [sym_SUBTYPE] = ACTIONS(551), - [sym_TYPE] = ACTIONS(551), - [sym_USE] = ACTIONS(551), - [sym_VARIABLE] = ACTIONS(551), - [sym_VIEW] = ACTIONS(551), - [sym_WITH] = ACTIONS(69), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_character_literal] = ACTIONS(71), - [sym_operator_symbol] = ACTIONS(71), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(13), - [sym_library_constant_std_logic] = ACTIONS(71), - [sym_library_function] = ACTIONS(13), - [sym_library_type] = ACTIONS(13), - [sym__end_of_file] = ACTIONS(551), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [109] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(109), - [sym_selected_waveforms] = STATE(6821), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(248), + [sym_waveform] = STATE(5966), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7182), + [sym_delay_mechanism] = STATE(337), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(684), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [110] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(110), - [sym_selected_waveforms] = STATE(7375), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(300), + [sym_waveform] = STATE(5691), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7044), + [sym_delay_mechanism] = STATE(346), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(686), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [111] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(111), - [sym_waveform] = STATE(5551), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7372), - [sym_delay_mechanism] = STATE(349), + [sym_waveform] = STATE(5855), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7693), + [sym_delay_mechanism] = STATE(343), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(712), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(688), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [112] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(112), - [sym_waveform] = STATE(5672), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6957), - [sym_delay_mechanism] = STATE(329), + [sym_selected_waveforms] = STATE(7005), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(277), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(714), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [113] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(113), - [sym_selected_waveforms] = STATE(7869), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(239), + [sym_waveform] = STATE(5992), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7002), + [sym_delay_mechanism] = STATE(327), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(690), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [114] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(114), - [sym_waveform] = STATE(5463), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6473), - [sym_delay_mechanism] = STATE(335), + [sym_waveform] = STATE(5759), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7423), + [sym_delay_mechanism] = STATE(334), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(716), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(692), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [115] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(115), - [sym_waveform] = STATE(5397), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7183), - [sym_delay_mechanism] = STATE(337), + [sym_selected_waveforms] = STATE(8073), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(300), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(718), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [116] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(116), - [sym_waveform] = STATE(5387), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7163), - [sym_delay_mechanism] = STATE(346), + [sym_selected_waveforms] = STATE(7375), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(271), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(720), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [117] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__concurrent_statement] = STATE(1935), + [sym_block_statement] = STATE(1936), + [sym_component_instantiation_statement] = STATE(1936), + [sym_process_statement] = STATE(1936), + [sym_case_generate_statement] = STATE(1936), + [sym_for_generate_statement] = STATE(1936), + [sym_if_generate_statement] = STATE(1936), + [sym_concurrent_assertion_statement] = STATE(1936), + [sym_assertion] = STATE(7729), + [sym_concurrent_procedure_call_statement] = STATE(1936), + [sym_concurrent_simple_signal_assignment] = STATE(1936), + [sym_concurrent_conditional_signal_assignment] = STATE(1936), + [sym_concurrent_selected_signal_assignment] = STATE(1936), + [sym_with_expression] = STATE(6281), + [sym_name] = STATE(6283), + [sym__direct_name] = STATE(3020), + [sym__label] = STATE(7713), + [sym__identifier] = STATE(4332), + [sym__external_name] = STATE(4332), + [sym_external_constant_name] = STATE(4335), + [sym_external_signal_name] = STATE(4335), + [sym_external_variable_name] = STATE(4335), [sym__tool_directive] = STATE(117), - [sym_selected_waveforms] = STATE(7098), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(293), + [sym__target] = STATE(6306), + [sym_aggregate] = STATE(6312), + [sym_label_declaration] = STATE(2622), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), + [aux_sym_design_unit_repeat3] = STATE(117), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(697), + [sym_identifier] = ACTIONS(700), + [sym_ALIAS] = ACTIONS(703), + [sym_ARCHITECTURE] = ACTIONS(703), + [sym_ASSERT] = ACTIONS(705), + [sym_ATTRIBUTE] = ACTIONS(703), + [sym_COMPONENT] = ACTIONS(703), + [sym_CONFIGURATION] = ACTIONS(703), + [sym_CONSTANT] = ACTIONS(703), + [sym_CONTEXT] = ACTIONS(703), + [sym_DISCONNECT] = ACTIONS(703), + [sym_ENTITY] = ACTIONS(703), + [sym_FILE] = ACTIONS(703), + [sym_FOR] = ACTIONS(703), + [sym_FUNCTION] = ACTIONS(703), + [sym_GROUP] = ACTIONS(703), + [sym_IMPURE] = ACTIONS(703), + [sym_LIBRARY] = ACTIONS(703), + [sym_PACKAGE] = ACTIONS(703), + [sym_POSTPONED] = ACTIONS(708), + [sym_PROCEDURE] = ACTIONS(703), + [sym_PROCESS] = ACTIONS(711), + [sym_PURE] = ACTIONS(703), + [sym_SIGNAL] = ACTIONS(703), + [sym_SHARED] = ACTIONS(703), + [sym_SUBTYPE] = ACTIONS(703), + [sym_TYPE] = ACTIONS(703), + [sym_USE] = ACTIONS(703), + [sym_VARIABLE] = ACTIONS(703), + [sym_VIEW] = ACTIONS(703), + [sym_WITH] = ACTIONS(714), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_character_literal] = ACTIONS(717), + [sym_operator_symbol] = ACTIONS(717), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(700), + [sym_library_constant_std_logic] = ACTIONS(717), + [sym_library_function] = ACTIONS(700), + [sym_library_type] = ACTIONS(700), + [sym__end_of_file] = ACTIONS(703), }, [118] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(118), - [sym_selected_waveforms] = STATE(7266), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(261), + [sym_selected_waveforms] = STATE(7185), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(317), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [119] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(119), - [sym_waveform] = STATE(5497), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7095), - [sym_delay_mechanism] = STATE(327), + [sym_waveform] = STATE(5605), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7503), + [sym_delay_mechanism] = STATE(340), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(722), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(720), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [120] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(120), - [sym_selected_waveforms] = STATE(7032), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(301), + [sym_waveform] = STATE(5881), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7236), + [sym_delay_mechanism] = STATE(349), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(722), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [121] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(121), - [sym_waveform] = STATE(5594), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6650), - [sym_delay_mechanism] = STATE(347), + [sym_waveform] = STATE(5757), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7474), + [sym_delay_mechanism] = STATE(335), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym_GUARDED] = ACTIONS(724), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [122] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(122), - [sym_selected_waveforms] = STATE(7310), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(242), + [sym_waveform] = STATE(5705), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(6840), + [sym_delay_mechanism] = STATE(328), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(726), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [123] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(123), - [sym_selected_waveforms] = STATE(7952), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_delay_mechanism] = STATE(246), + [sym_waveform] = STATE(5796), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7260), + [sym_delay_mechanism] = STATE(331), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_GUARDED] = ACTIONS(728), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [124] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(124), - [sym_waveform] = STATE(5716), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6900), - [sym_delay_mechanism] = STATE(343), + [sym_selected_waveforms] = STATE(7333), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(292), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(726), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [125] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(125), - [sym_waveform] = STATE(5736), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6876), - [sym_delay_mechanism] = STATE(348), + [sym_selected_waveforms] = STATE(8163), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_delay_mechanism] = STATE(259), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_GUARDED] = ACTIONS(728), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [126] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6637), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(126), - [sym_waveform] = STATE(5616), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7028), - [sym_delay_mechanism] = STATE(339), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [127] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7436), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6656), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(127), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), @@ -30551,8 +31197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -30568,54 +31214,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [128] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6480), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6714), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(128), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), @@ -30623,8 +31269,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -30640,126 +31286,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [129] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6769), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(129), - [sym_waveform] = STATE(5828), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6848), - [sym_delay_mechanism] = STATE(332), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [130] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6495), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6672), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(130), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), @@ -30767,8 +31413,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -30784,54 +31430,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [131] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(8112), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6797), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(131), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), @@ -30839,8 +31485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -30856,54 +31502,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [132] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6507), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7489), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(132), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), @@ -30911,8 +31557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -30928,126 +31574,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [133] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6844), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(133), - [sym_waveform] = STATE(5736), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6876), - [sym_delay_mechanism] = STATE(348), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [134] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6913), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6882), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(134), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), @@ -31055,8 +31701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31072,54 +31718,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [135] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6435), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6634), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(135), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), @@ -31127,8 +31773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31144,54 +31790,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [136] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6478), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6936), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(136), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), @@ -31199,8 +31845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31216,54 +31862,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [137] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6689), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6639), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(137), [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), @@ -31271,8 +31917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31288,126 +31934,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [138] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6529), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(138), + [sym_waveform] = STATE(5759), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7423), + [sym_delay_mechanism] = STATE(334), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [139] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(8076), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6638), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(139), [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), @@ -31415,8 +32061,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31432,54 +32078,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [140] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(8024), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6909), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(140), [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), @@ -31487,8 +32133,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31504,54 +32150,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [141] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7279), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6641), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(141), [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), @@ -31559,8 +32205,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31576,54 +32222,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [142] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7950), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8165), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(142), [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), @@ -31631,8 +32277,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31648,54 +32294,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [143] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6432), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6642), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(143), [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), @@ -31703,8 +32349,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31720,54 +32366,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [144] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6433), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6946), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(144), [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), @@ -31775,8 +32421,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31792,54 +32438,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [145] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6566), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6643), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(145), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), @@ -31847,8 +32493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31864,54 +32510,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [146] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7888), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6817), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(146), [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), @@ -31919,8 +32565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -31936,54 +32582,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [147] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6434), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6644), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(147), [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), @@ -31991,8 +32637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32008,126 +32654,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [148] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6996), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(148), - [sym_waveform] = STATE(5781), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7870), - [sym_delay_mechanism] = STATE(326), [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [149] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6769), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6645), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(149), [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), @@ -32135,8 +32781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32152,54 +32798,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [150] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6605), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7048), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(150), [sym_line_comment] = STATE(150), [sym_block_comment] = STATE(150), @@ -32207,8 +32853,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32224,54 +32870,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [151] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7829), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6646), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(151), [sym_line_comment] = STATE(151), [sym_block_comment] = STATE(151), @@ -32279,8 +32925,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32296,54 +32942,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [152] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6436), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7278), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(152), [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), @@ -32351,8 +32997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32368,54 +33014,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [153] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6437), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6647), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(153), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), @@ -32423,8 +33069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32440,54 +33086,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [154] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6438), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6648), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(154), [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), @@ -32495,8 +33141,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32512,54 +33158,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [155] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6439), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7482), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(155), [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), @@ -32567,8 +33213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32584,63 +33230,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [156] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6440), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(156), + [sym_waveform] = STATE(5705), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(6840), + [sym_delay_mechanism] = STATE(328), [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [157] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(157), + [sym_waveform] = STATE(5739), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7031), + [sym_delay_mechanism] = STATE(333), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [158] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6649), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(158), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32656,63 +33446,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [157] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6441), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(157), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), + [159] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7543), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(159), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32728,63 +33518,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [158] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6640), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(158), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), + [160] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6650), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(160), + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32800,63 +33590,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [159] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7799), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(159), - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), + [161] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7592), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(161), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32872,63 +33662,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [160] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6442), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(160), - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), + [162] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(162), + [sym_waveform] = STATE(5992), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7002), + [sym_delay_mechanism] = STATE(327), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [163] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7655), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(163), + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -32944,63 +33806,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [161] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6443), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(161), - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), + [164] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6651), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(164), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33016,63 +33878,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [162] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6444), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(162), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), + [165] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6652), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(165), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33088,63 +33950,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [163] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6445), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(163), - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), + [166] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7690), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(166), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33160,63 +34022,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [164] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6668), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(164), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), + [167] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(167), + [sym_waveform] = STATE(5792), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7372), + [sym_delay_mechanism] = STATE(341), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [168] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6653), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(168), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33232,63 +34166,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [165] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7604), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(165), - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), + [169] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7714), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(169), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33304,63 +34238,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [166] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6446), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(166), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), + [170] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6654), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(170), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33376,342 +34310,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), - }, - [167] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6447), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(167), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), - }, - [168] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(168), - [sym_waveform] = STATE(5463), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6473), - [sym_delay_mechanism] = STATE(335), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [169] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6448), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(169), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), - }, - [170] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6449), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(170), - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [171] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6694), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6655), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(171), [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), @@ -33719,8 +34365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33736,54 +34382,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [172] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7579), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7750), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(172), [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), @@ -33791,8 +34437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33808,126 +34454,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [173] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6450), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(173), + [sym_waveform] = STATE(5817), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7129), + [sym_delay_mechanism] = STATE(342), [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [174] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6451), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7765), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(174), [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), @@ -33935,8 +34581,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -33952,126 +34598,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [175] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6452), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(175), + [sym_waveform] = STATE(5757), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7474), + [sym_delay_mechanism] = STATE(335), [sym_line_comment] = STATE(175), [sym_block_comment] = STATE(175), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [176] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6453), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7803), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(176), [sym_line_comment] = STATE(176), [sym_block_comment] = STATE(176), @@ -34079,8 +34725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34096,126 +34742,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [177] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6454), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(177), + [sym_waveform] = STATE(5936), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(6971), + [sym_delay_mechanism] = STATE(345), [sym_line_comment] = STATE(177), [sym_block_comment] = STATE(177), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [178] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(8106), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7835), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(178), [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), @@ -34223,8 +34869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34240,54 +34886,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [179] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7237), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7274), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(179), [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), @@ -34295,8 +34941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34312,54 +34958,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [180] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6741), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7170), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(180), [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), @@ -34367,8 +35013,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34384,54 +35030,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [181] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6455), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6744), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(181), [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), @@ -34439,8 +35085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34456,54 +35102,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [182] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6456), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6657), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(182), [sym_line_comment] = STATE(182), [sym_block_comment] = STATE(182), @@ -34511,8 +35157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34528,54 +35174,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [183] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6638), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6658), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(183), [sym_line_comment] = STATE(183), [sym_block_comment] = STATE(183), @@ -34583,8 +35229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34600,126 +35246,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [184] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2283), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(2288), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__association_or_range] = STATE(6002), - [sym_association_element] = STATE(6194), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym__range] = STATE(6194), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(184), + [sym_waveform] = STATE(5855), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7693), + [sym_delay_mechanism] = STATE(343), [sym_line_comment] = STATE(184), [sym_block_comment] = STATE(184), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [185] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7543), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7040), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(185), [sym_line_comment] = STATE(185), [sym_block_comment] = STATE(185), @@ -34727,8 +35373,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34744,126 +35390,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [186] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8018), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(186), - [sym_waveform] = STATE(5497), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7095), - [sym_delay_mechanism] = STATE(327), [sym_line_comment] = STATE(186), [sym_block_comment] = STATE(186), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [187] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6558), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6931), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(187), [sym_line_comment] = STATE(187), [sym_block_comment] = STATE(187), @@ -34871,8 +35517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34888,54 +35534,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [188] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6497), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8060), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(188), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), @@ -34943,8 +35589,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -34960,54 +35606,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [189] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7629), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6659), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(189), [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), @@ -35015,8 +35661,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35032,54 +35678,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [190] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7514), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6660), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(190), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), @@ -35087,8 +35733,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35104,54 +35750,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [191] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7804), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8142), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(191), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), @@ -35159,8 +35805,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35176,135 +35822,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [192] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6661), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(192), - [sym_waveform] = STATE(5387), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7163), - [sym_delay_mechanism] = STATE(346), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [193] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7483), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(193), - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35320,63 +35894,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [194] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7200), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(194), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), + [193] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8199), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(193), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35392,63 +35966,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [195] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(8028), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(195), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), + [194] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6662), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(194), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35464,63 +36038,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [196] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6428), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(196), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), + [195] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8245), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(195), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35536,54 +36110,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), + }, + [196] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6663), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(196), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(241), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(243), + [sym__OR] = ACTIONS(239), + [sym_OTHERS] = ACTIONS(245), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [197] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7447), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6664), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(197), [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), @@ -35591,8 +36237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35608,54 +36254,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [198] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7422), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6665), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(198), [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), @@ -35663,8 +36309,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35680,126 +36326,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [199] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6708), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(199), - [sym_waveform] = STATE(5594), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6650), - [sym_delay_mechanism] = STATE(347), [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [200] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7916), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2345), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(2346), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__association_or_range] = STATE(6206), + [sym_association_element] = STATE(6546), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym__range] = STATE(6546), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(200), [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), @@ -35807,71 +36452,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(243), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [201] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6772), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7350), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(201), [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), @@ -35879,8 +36525,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -35896,135 +36542,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [202] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8300), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(202), - [sym_waveform] = STATE(5804), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6820), - [sym_delay_mechanism] = STATE(336), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [203] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6934), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(203), - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36040,135 +36614,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, - [204] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(204), - [sym_waveform] = STATE(5618), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7365), - [sym_delay_mechanism] = STATE(342), - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [203] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(203), + [sym_waveform] = STATE(5966), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7182), + [sym_delay_mechanism] = STATE(337), + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, - [205] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6494), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(205), - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), + [204] = { + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8339), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(204), + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), [anon_sym_LPAREN] = ACTIONS(229), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36184,54 +36758,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), + }, + [205] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(205), + [sym_waveform] = STATE(5953), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(8074), + [sym_delay_mechanism] = STATE(336), + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(405), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [206] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6812), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8314), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(206), [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), @@ -36239,8 +36885,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36256,54 +36902,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [207] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7334), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7521), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(207), [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), @@ -36311,8 +36957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36328,54 +36974,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [208] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7586), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8248), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(208), [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), @@ -36383,8 +37029,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36400,126 +37046,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [209] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(209), - [sym_waveform] = STATE(5551), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7372), + [sym_waveform] = STATE(5881), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7236), [sym_delay_mechanism] = STATE(349), [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), + [sym_INERTIAL] = ACTIONS(405), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_REJECT] = ACTIONS(411), + [sym_TRANSPORT] = ACTIONS(405), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [210] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6545), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8045), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(210), [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), @@ -36527,8 +37173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36544,54 +37190,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [211] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6932), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6825), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(211), [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), @@ -36599,8 +37245,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36616,126 +37262,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [212] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7805), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(212), - [sym_waveform] = STATE(5472), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7307), - [sym_delay_mechanism] = STATE(345), [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(415), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(241), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(243), [sym__OR] = ACTIONS(239), - [sym_REJECT] = ACTIONS(421), - [sym_TRANSPORT] = ACTIONS(415), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [213] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7181), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6854), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(213), [sym_line_comment] = STATE(213), [sym_block_comment] = STATE(213), @@ -36743,8 +37389,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36760,54 +37406,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [214] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7193), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7752), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(214), [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), @@ -36815,8 +37461,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36832,54 +37478,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [215] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6776), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6756), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(215), [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), @@ -36887,8 +37533,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36904,54 +37550,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [216] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7016), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(8049), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(216), [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), @@ -36959,8 +37605,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -36976,54 +37622,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [217] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(7512), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6781), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(217), [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), @@ -37031,8 +37677,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -37048,54 +37694,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [218] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6588), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(7610), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(218), [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), @@ -37103,8 +37749,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -37120,54 +37766,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [219] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association_list] = STATE(6686), - [sym_element_association] = STATE(5430), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association_list] = STATE(6760), + [sym_element_association] = STATE(5938), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(219), [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), @@ -37175,8 +37821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -37192,54 +37838,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [220] = { - [sym__expression] = STATE(1002), - [sym_condition_expression] = STATE(2093), - [sym_logical_expression] = STATE(2093), - [sym_relational_expression] = STATE(2093), - [sym_shift_expression] = STATE(2093), - [sym_simple_expression] = STATE(2177), - [sym_unary_operator] = STATE(629), - [sym_sign] = STATE(628), - [sym__primary] = STATE(1584), - [sym_name] = STATE(1587), - [sym__direct_name] = STATE(725), - [sym__label] = STATE(6696), - [sym__identifier] = STATE(840), - [sym__external_name] = STATE(840), - [sym_external_constant_name] = STATE(869), - [sym_external_signal_name] = STATE(869), - [sym_external_variable_name] = STATE(869), - [sym__literal] = STATE(1587), - [sym_bit_string_literal] = STATE(1562), - [sym__abstract_literal] = STATE(839), - [sym_based_literal] = STATE(903), - [sym_allocator] = STATE(1587), - [sym_parenthesis_expression] = STATE(1587), - [sym__element] = STATE(5161), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym__expression] = STATE(1100), + [sym_condition_expression] = STATE(2052), + [sym_logical_expression] = STATE(2052), + [sym_relational_expression] = STATE(2052), + [sym_shift_expression] = STATE(2052), + [sym_simple_expression] = STATE(2238), + [sym_unary_operator] = STATE(711), + [sym_sign] = STATE(713), + [sym__primary] = STATE(1657), + [sym_name] = STATE(1653), + [sym__direct_name] = STATE(724), + [sym__label] = STATE(6837), + [sym__identifier] = STATE(850), + [sym__external_name] = STATE(850), + [sym_external_constant_name] = STATE(876), + [sym_external_signal_name] = STATE(876), + [sym_external_variable_name] = STATE(876), + [sym__literal] = STATE(1651), + [sym_bit_string_literal] = STATE(1668), + [sym__abstract_literal] = STATE(841), + [sym_based_literal] = STATE(900), + [sym_allocator] = STATE(1653), + [sym_parenthesis_expression] = STATE(1653), + [sym__element] = STATE(5332), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(220), - [sym_label_declaration] = STATE(319), + [sym_label_declaration] = STATE(267), [sym_line_comment] = STATE(220), [sym_block_comment] = STATE(220), [anon_sym_LPAREN] = ACTIONS(730), @@ -37282,34 +37928,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(736), }, [221] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association] = STATE(5493), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association] = STATE(6402), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(221), [sym_line_comment] = STATE(221), [sym_block_comment] = STATE(221), @@ -37317,8 +37963,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -37334,53 +37980,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [222] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association] = STATE(6384), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association] = STATE(5900), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(222), [sym_line_comment] = STATE(222), [sym_block_comment] = STATE(222), @@ -37388,8 +38034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), @@ -37405,53 +38051,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_decimal_integer] = ACTIONS(249), [sym_decimal_float] = ACTIONS(249), [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), + [sym_character_literal] = ACTIONS(435), [sym_string_literal] = ACTIONS(243), [sym_string_literal_std_logic] = ACTIONS(243), [sym_bit_string_length] = ACTIONS(255), [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), + [sym_operator_symbol] = ACTIONS(435), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), + [sym_library_constant] = ACTIONS(429), [sym_library_constant_boolean] = ACTIONS(243), [sym_library_constant_character] = ACTIONS(243), [sym_library_constant_debug] = ACTIONS(243), [sym_library_constant_env] = ACTIONS(243), [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), }, [223] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5813), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym_conditional_expression] = STATE(6386), + [sym__expression] = STATE(1093), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(1735), + [sym_unary_operator] = STATE(430), + [sym_sign] = STATE(431), + [sym__primary] = STATE(1951), + [sym_name] = STATE(1952), + [sym__direct_name] = STATE(735), + [sym__identifier] = STATE(966), + [sym__external_name] = STATE(966), + [sym_external_constant_name] = STATE(961), + [sym_external_signal_name] = STATE(961), + [sym_external_variable_name] = STATE(961), + [sym__literal] = STATE(1953), + [sym_bit_string_literal] = STATE(1945), + [sym__abstract_literal] = STATE(937), + [sym_based_literal] = STATE(1018), + [sym_allocator] = STATE(1952), + [sym_parenthesis_expression] = STATE(1952), + [sym_element_association] = STATE(6357), + [sym__element] = STATE(6393), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(223), [sym_line_comment] = STATE(223), [sym_block_comment] = STATE(223), + [anon_sym_LPAREN] = ACTIONS(229), + [sym_condition_conversion] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(241), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(243), + [sym__OR] = ACTIONS(239), + [sym_OTHERS] = ACTIONS(245), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(249), + [sym_decimal_float] = ACTIONS(249), + [sym_based_base] = ACTIONS(251), + [sym_character_literal] = ACTIONS(435), + [sym_string_literal] = ACTIONS(243), + [sym_string_literal_std_logic] = ACTIONS(243), + [sym_bit_string_length] = ACTIONS(255), + [sym_bit_string_base] = ACTIONS(257), + [sym_operator_symbol] = ACTIONS(435), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(429), + [sym_library_constant_boolean] = ACTIONS(243), + [sym_library_constant_character] = ACTIONS(243), + [sym_library_constant_debug] = ACTIONS(243), + [sym_library_constant_env] = ACTIONS(243), + [sym_library_constant_standard] = ACTIONS(243), + [sym_library_constant_std_logic] = ACTIONS(435), + [sym_library_function] = ACTIONS(429), + [sym_library_type] = ACTIONS(429), + }, + [224] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5963), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(224), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -37461,13 +38178,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym_DEFAULT] = ACTIONS(758), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -37494,106 +38211,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [224] = { - [sym_conditional_expression] = STATE(6148), - [sym__expression] = STATE(1104), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(1787), - [sym_unary_operator] = STATE(436), - [sym_sign] = STATE(437), - [sym__primary] = STATE(1903), - [sym_name] = STATE(1904), - [sym__direct_name] = STATE(736), - [sym__identifier] = STATE(967), - [sym__external_name] = STATE(967), - [sym_external_constant_name] = STATE(979), - [sym_external_signal_name] = STATE(979), - [sym_external_variable_name] = STATE(979), - [sym__literal] = STATE(1904), - [sym_bit_string_literal] = STATE(1897), - [sym__abstract_literal] = STATE(935), - [sym_based_literal] = STATE(1081), - [sym_allocator] = STATE(1904), - [sym_parenthesis_expression] = STATE(1904), - [sym_element_association] = STATE(5871), - [sym__element] = STATE(6149), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), - [sym__tool_directive] = STATE(224), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [anon_sym_LPAREN] = ACTIONS(229), - [sym_condition_conversion] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(241), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(243), - [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(249), - [sym_decimal_float] = ACTIONS(249), - [sym_based_base] = ACTIONS(251), - [sym_character_literal] = ACTIONS(403), - [sym_string_literal] = ACTIONS(243), - [sym_string_literal_std_logic] = ACTIONS(243), - [sym_bit_string_length] = ACTIONS(255), - [sym_bit_string_base] = ACTIONS(257), - [sym_operator_symbol] = ACTIONS(403), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(397), - [sym_library_constant_boolean] = ACTIONS(243), - [sym_library_constant_character] = ACTIONS(243), - [sym_library_constant_debug] = ACTIONS(243), - [sym_library_constant_env] = ACTIONS(243), - [sym_library_constant_standard] = ACTIONS(243), - [sym_library_constant_std_logic] = ACTIONS(403), - [sym_library_function] = ACTIONS(397), - [sym_library_type] = ACTIONS(397), - }, [225] = { - [sym_unspecified_type_indication] = STATE(5954), - [sym__array_index_incomplete_type] = STATE(5914), - [sym_index_constraint] = STATE(5954), - [sym_index_subtype_definition] = STATE(5954), - [sym__expression] = STATE(1002), - [sym_condition_expression] = STATE(2093), - [sym_logical_expression] = STATE(2093), - [sym_relational_expression] = STATE(2093), - [sym_shift_expression] = STATE(2093), - [sym_simple_expression] = STATE(1820), - [sym_unary_operator] = STATE(629), - [sym_sign] = STATE(628), - [sym__primary] = STATE(1584), - [sym_name] = STATE(2371), + [sym_unspecified_type_indication] = STATE(6155), + [sym__array_index_incomplete_type] = STATE(6101), + [sym_index_constraint] = STATE(6155), + [sym_index_subtype_definition] = STATE(6155), + [sym__expression] = STATE(1100), + [sym_condition_expression] = STATE(2052), + [sym_logical_expression] = STATE(2052), + [sym_relational_expression] = STATE(2052), + [sym_shift_expression] = STATE(2052), + [sym_simple_expression] = STATE(1774), + [sym_unary_operator] = STATE(711), + [sym_sign] = STATE(713), + [sym__primary] = STATE(1657), + [sym_name] = STATE(2458), [sym__direct_name] = STATE(751), - [sym__identifier] = STATE(1152), - [sym__external_name] = STATE(1152), - [sym_external_constant_name] = STATE(1147), - [sym_external_signal_name] = STATE(1147), - [sym_external_variable_name] = STATE(1147), - [sym__literal] = STATE(1587), - [sym_bit_string_literal] = STATE(1562), - [sym__abstract_literal] = STATE(839), - [sym_based_literal] = STATE(903), - [sym_allocator] = STATE(1587), - [sym_parenthesis_expression] = STATE(1587), - [sym__range] = STATE(5435), - [sym_simple_range] = STATE(4803), + [sym__identifier] = STATE(1145), + [sym__external_name] = STATE(1145), + [sym_external_constant_name] = STATE(1167), + [sym_external_signal_name] = STATE(1167), + [sym_external_variable_name] = STATE(1167), + [sym__literal] = STATE(1651), + [sym_bit_string_literal] = STATE(1668), + [sym__abstract_literal] = STATE(841), + [sym_based_literal] = STATE(900), + [sym_allocator] = STATE(1653), + [sym_parenthesis_expression] = STATE(1653), + [sym__range] = STATE(5617), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(225), [sym_line_comment] = STATE(225), [sym_block_comment] = STATE(225), @@ -37637,35 +38283,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(778), }, [226] = { - [sym_when_expression] = STATE(6791), - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(226), - [sym_conditional_or_unaffected_expression] = STATE(6791), - [sym__expression_or_unaffected] = STATE(5305), + [sym_force_mode] = STATE(357), + [sym_conditional_or_unaffected_expression] = STATE(8090), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [anon_sym_SEMI] = ACTIONS(782), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -37674,14 +38319,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_IN] = ACTIONS(782), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(782), [sym_UNAFFECTED] = ACTIONS(784), - [sym_WHEN] = ACTIONS(786), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -37707,32 +38353,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [227] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(227), - [sym_force_mode] = STATE(363), - [sym_conditional_or_unaffected_expression] = STATE(6972), - [sym__expression_or_unaffected] = STATE(5305), + [sym_force_mode] = STATE(351), + [sym_conditional_or_unaffected_expression] = STATE(7117), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(227), [sym_block_comment] = STATE(227), [anon_sym_LPAREN] = ACTIONS(752), @@ -37743,14 +38389,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(788), + [sym_IN] = ACTIONS(782), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(788), + [sym_OUT] = ACTIONS(782), [sym_UNAFFECTED] = ACTIONS(784), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -37777,35 +38423,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [228] = { - [sym_when_expression] = STATE(6631), - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_when_expression] = STATE(7456), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(228), - [sym_conditional_or_unaffected_expression] = STATE(6631), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7456), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(228), [sym_block_comment] = STATE(228), - [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -37821,7 +38467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), [sym_UNAFFECTED] = ACTIONS(784), - [sym_WHEN] = ACTIONS(786), + [sym_WHEN] = ACTIONS(788), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -37847,34 +38493,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [229] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_when_expression] = STATE(7408), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(229), - [sym_force_mode] = STATE(364), - [sym_conditional_or_unaffected_expression] = STATE(7959), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7408), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(229), [sym_block_comment] = STATE(229), + [anon_sym_SEMI] = ACTIONS(790), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -37883,15 +38530,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(788), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(788), [sym_UNAFFECTED] = ACTIONS(784), + [sym_WHEN] = ACTIONS(788), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -37917,34 +38563,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [230] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_when_expression] = STATE(7228), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(230), - [sym_force_mode] = STATE(358), - [sym_conditional_or_unaffected_expression] = STATE(7014), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7228), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(230), [sym_block_comment] = STATE(230), + [anon_sym_SEMI] = ACTIONS(792), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -37953,15 +38600,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(788), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(788), [sym_UNAFFECTED] = ACTIONS(784), + [sym_WHEN] = ACTIONS(788), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -37987,32 +38633,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [231] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(231), - [sym_force_mode] = STATE(355), - [sym_conditional_or_unaffected_expression] = STATE(7299), - [sym__expression_or_unaffected] = STATE(5305), + [sym_force_mode] = STATE(362), + [sym_conditional_or_unaffected_expression] = STATE(8171), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(231), [sym_block_comment] = STATE(231), [anon_sym_LPAREN] = ACTIONS(752), @@ -38023,14 +38669,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(788), + [sym_IN] = ACTIONS(782), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(788), + [sym_OUT] = ACTIONS(782), [sym_UNAFFECTED] = ACTIONS(784), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -38057,35 +38703,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [232] = { - [sym_when_expression] = STATE(7482), - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_when_expression] = STATE(7165), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(232), - [sym_conditional_or_unaffected_expression] = STATE(7482), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7165), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(232), [sym_block_comment] = STATE(232), - [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(794), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -38101,7 +38747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), [sym_UNAFFECTED] = ACTIONS(784), - [sym_WHEN] = ACTIONS(786), + [sym_WHEN] = ACTIONS(788), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -38127,35 +38773,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [233] = { - [sym_when_expression] = STATE(7351), - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(233), - [sym_conditional_or_unaffected_expression] = STATE(7351), - [sym__expression_or_unaffected] = STATE(5305), + [sym_force_mode] = STATE(360), + [sym_conditional_or_unaffected_expression] = STATE(7326), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(233), [sym_block_comment] = STATE(233), - [anon_sym_SEMI] = ACTIONS(794), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -38164,14 +38809,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_IN] = ACTIONS(782), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(782), [sym_UNAFFECTED] = ACTIONS(784), - [sym_WHEN] = ACTIONS(786), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -38197,32 +38843,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [234] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(234), - [sym_force_mode] = STATE(361), - [sym_conditional_or_unaffected_expression] = STATE(7899), - [sym__expression_or_unaffected] = STATE(5305), + [sym_force_mode] = STATE(353), + [sym_conditional_or_unaffected_expression] = STATE(7364), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(234), [sym_block_comment] = STATE(234), [anon_sym_LPAREN] = ACTIONS(752), @@ -38233,14 +38879,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(788), + [sym_IN] = ACTIONS(782), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(788), + [sym_OUT] = ACTIONS(782), [sym_UNAFFECTED] = ACTIONS(784), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -38267,34 +38913,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [235] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_when_expression] = STATE(7753), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(235), - [sym_force_mode] = STATE(362), - [sym_conditional_or_unaffected_expression] = STATE(7258), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7753), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(235), [sym_block_comment] = STATE(235), + [anon_sym_SEMI] = ACTIONS(796), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -38303,15 +38950,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(788), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(788), [sym_UNAFFECTED] = ACTIONS(784), + [sym_WHEN] = ACTIONS(788), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -38337,35 +38983,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [236] = { - [sym_when_expression] = STATE(7071), - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(236), - [sym_conditional_or_unaffected_expression] = STATE(7071), - [sym__expression_or_unaffected] = STATE(5305), + [sym_force_mode] = STATE(356), + [sym_conditional_or_unaffected_expression] = STATE(7083), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(236), [sym_block_comment] = STATE(236), - [anon_sym_SEMI] = ACTIONS(796), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -38374,14 +39019,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_IN] = ACTIONS(782), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(782), [sym_UNAFFECTED] = ACTIONS(784), - [sym_WHEN] = ACTIONS(786), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -38407,32 +39053,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [237] = { - [sym_when_expression] = STATE(7156), - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_when_expression] = STATE(6685), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(237), - [sym_conditional_or_unaffected_expression] = STATE(7156), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(6685), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(237), [sym_block_comment] = STATE(237), [anon_sym_SEMI] = ACTIONS(798), @@ -38451,7 +39097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), [sym_UNAFFECTED] = ACTIONS(784), - [sym_WHEN] = ACTIONS(786), + [sym_WHEN] = ACTIONS(788), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -38477,169 +39123,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [238] = { - [sym__expression] = STATE(1002), - [sym_condition_expression] = STATE(2093), - [sym_logical_expression] = STATE(2093), - [sym_relational_expression] = STATE(2093), - [sym_shift_expression] = STATE(2093), - [sym_simple_expression] = STATE(2177), - [sym_unary_operator] = STATE(629), - [sym_sign] = STATE(628), - [sym__primary] = STATE(1584), - [sym_name] = STATE(1587), - [sym__direct_name] = STATE(725), - [sym__identifier] = STATE(840), - [sym__external_name] = STATE(840), - [sym_external_constant_name] = STATE(869), - [sym_external_signal_name] = STATE(869), - [sym_external_variable_name] = STATE(869), - [sym__literal] = STATE(1587), - [sym_bit_string_literal] = STATE(1562), - [sym__abstract_literal] = STATE(839), - [sym_based_literal] = STATE(903), - [sym_allocator] = STATE(1587), - [sym_parenthesis_expression] = STATE(1587), - [sym__element] = STATE(5374), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5995), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(238), [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [anon_sym_LPAREN] = ACTIONS(730), - [sym_condition_conversion] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(734), - [sym_identifier] = ACTIONS(800), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(738), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(740), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(742), - [sym_decimal_float] = ACTIONS(742), - [sym_based_base] = ACTIONS(744), - [sym_character_literal] = ACTIONS(746), - [sym_string_literal] = ACTIONS(740), - [sym_string_literal_std_logic] = ACTIONS(740), - [sym_bit_string_length] = ACTIONS(748), - [sym_bit_string_base] = ACTIONS(750), - [sym_operator_symbol] = ACTIONS(746), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(800), - [sym_library_constant_boolean] = ACTIONS(740), - [sym_library_constant_character] = ACTIONS(740), - [sym_library_constant_debug] = ACTIONS(740), - [sym_library_constant_env] = ACTIONS(740), - [sym_library_constant_standard] = ACTIONS(740), - [sym_library_constant_std_logic] = ACTIONS(746), - [sym_library_function] = ACTIONS(800), - [sym_library_type] = ACTIONS(800), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [239] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(239), - [sym_selected_waveforms] = STATE(7952), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), + [sym_selected_waveforms] = STATE(7090), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [240] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5646), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5975), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(240), [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), @@ -38651,13 +39297,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -38684,31 +39330,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [241] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5620), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5994), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(241), [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), @@ -38720,13 +39366,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -38753,103 +39399,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [242] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(6014), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(242), - [sym_selected_waveforms] = STATE(7266), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [243] = { - [sym__expression] = STATE(2159), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(6022), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(243), - [sym_force_mode] = STATE(389), - [sym_selected_expressions] = STATE(7262), [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [aux_sym_selected_expressions_repeat1] = STATE(406), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -38858,14 +39504,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(802), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(802), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -38891,100 +39537,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [244] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5968), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(244), - [sym_selected_waveforms] = STATE(7261), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [245] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5701), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5873), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(245), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), @@ -38996,13 +39642,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39029,100 +39675,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [246] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5941), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(246), - [sym_selected_waveforms] = STATE(8018), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [247] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5623), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5914), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(247), [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), @@ -39134,13 +39780,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39167,100 +39813,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [248] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5887), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(248), - [sym_selected_waveforms] = STATE(6800), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [249] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5395), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5860), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(249), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), @@ -39272,13 +39918,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39305,31 +39951,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [250] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5662), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5833), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(250), [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), @@ -39341,13 +39987,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39374,31 +40020,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [251] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5612), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5806), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(251), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), @@ -39410,13 +40056,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39443,100 +40089,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [252] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5728), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(252), + [sym_selected_waveforms] = STATE(7424), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [253] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5599), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5779), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(253), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), @@ -39548,13 +40194,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39581,31 +40227,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [254] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5671), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5752), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(254), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), @@ -39617,13 +40263,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39650,103 +40296,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [255] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5725), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(255), - [sym_selected_waveforms] = STATE(6821), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [256] = { - [sym__expression] = STATE(2159), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5698), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(256), - [sym_force_mode] = STATE(378), - [sym_selected_expressions] = STATE(7140), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [aux_sym_selected_expressions_repeat1] = STATE(406), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -39755,14 +40401,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(802), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(802), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -39788,103 +40434,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [257] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5671), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(257), - [sym_selected_waveforms] = STATE(7233), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [258] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5427), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(258), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -39893,13 +40470,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39925,35 +40502,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [259] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [258] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5683), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(259), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5640), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(258), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -39962,13 +40539,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -39994,32 +40571,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, + [259] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(259), + [sym_selected_waveforms] = STATE(8239), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, [260] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5755), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5608), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(260), [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), @@ -40031,13 +40677,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -40064,172 +40710,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [261] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(261), - [sym_selected_waveforms] = STATE(7227), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), + [sym_selected_waveforms] = STATE(8226), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [262] = { - [sym__expression] = STATE(1002), - [sym_condition_expression] = STATE(2093), - [sym_logical_expression] = STATE(2093), - [sym_relational_expression] = STATE(2093), - [sym_shift_expression] = STATE(2093), - [sym_simple_expression] = STATE(2177), - [sym_unary_operator] = STATE(629), - [sym_sign] = STATE(628), - [sym__primary] = STATE(1584), - [sym_name] = STATE(1587), - [sym__direct_name] = STATE(725), - [sym__identifier] = STATE(840), - [sym__external_name] = STATE(840), - [sym_external_constant_name] = STATE(869), - [sym_external_signal_name] = STATE(869), - [sym_external_variable_name] = STATE(869), - [sym__literal] = STATE(1587), - [sym_bit_string_literal] = STATE(1562), - [sym__abstract_literal] = STATE(839), - [sym_based_literal] = STATE(903), - [sym_allocator] = STATE(1587), - [sym_parenthesis_expression] = STATE(1587), - [sym__element] = STATE(5224), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5575), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(262), [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), - [anon_sym_LPAREN] = ACTIONS(730), - [sym_condition_conversion] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(734), - [sym_identifier] = ACTIONS(800), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(738), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(740), - [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(742), - [sym_decimal_float] = ACTIONS(742), - [sym_based_base] = ACTIONS(744), - [sym_character_literal] = ACTIONS(746), - [sym_string_literal] = ACTIONS(740), - [sym_string_literal_std_logic] = ACTIONS(740), - [sym_bit_string_length] = ACTIONS(748), - [sym_bit_string_base] = ACTIONS(750), - [sym_operator_symbol] = ACTIONS(746), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(800), - [sym_library_constant_boolean] = ACTIONS(740), - [sym_library_constant_character] = ACTIONS(740), - [sym_library_constant_debug] = ACTIONS(740), - [sym_library_constant_env] = ACTIONS(740), - [sym_library_constant_standard] = ACTIONS(740), - [sym_library_constant_std_logic] = ACTIONS(746), - [sym_library_function] = ACTIONS(800), - [sym_library_type] = ACTIONS(800), - }, - [263] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5593), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(263), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -40238,13 +40815,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -40270,104 +40847,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [264] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(264), - [sym_selected_waveforms] = STATE(6479), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [263] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(263), + [sym_selected_waveforms] = STATE(7375), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, - [265] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [264] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5697), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(265), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5682), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(264), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -40376,13 +40953,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -40408,35 +40985,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [266] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [265] = { + [sym__expression] = STATE(2199), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5496), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(266), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(265), + [sym_force_mode] = STATE(380), + [sym_selected_expressions] = STATE(8225), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [aux_sym_selected_expressions_repeat1] = STATE(412), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -40445,14 +41022,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_IN] = ACTIONS(800), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(800), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -40477,35 +41054,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [267] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [266] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5637), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(267), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5807), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(266), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -40514,13 +41091,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -40546,104 +41123,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, + [267] = { + [sym__expression] = STATE(1100), + [sym_condition_expression] = STATE(2052), + [sym_logical_expression] = STATE(2052), + [sym_relational_expression] = STATE(2052), + [sym_shift_expression] = STATE(2052), + [sym_simple_expression] = STATE(2238), + [sym_unary_operator] = STATE(711), + [sym_sign] = STATE(713), + [sym__primary] = STATE(1657), + [sym_name] = STATE(1653), + [sym__direct_name] = STATE(724), + [sym__identifier] = STATE(850), + [sym__external_name] = STATE(850), + [sym_external_constant_name] = STATE(876), + [sym_external_signal_name] = STATE(876), + [sym_external_variable_name] = STATE(876), + [sym__literal] = STATE(1651), + [sym_bit_string_literal] = STATE(1668), + [sym__abstract_literal] = STATE(841), + [sym_based_literal] = STATE(900), + [sym_allocator] = STATE(1653), + [sym_parenthesis_expression] = STATE(1653), + [sym__element] = STATE(5310), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), + [sym__tool_directive] = STATE(267), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(730), + [sym_condition_conversion] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(734), + [sym_identifier] = ACTIONS(802), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(738), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(740), + [sym__OR] = ACTIONS(239), + [sym_OTHERS] = ACTIONS(245), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(742), + [sym_decimal_float] = ACTIONS(742), + [sym_based_base] = ACTIONS(744), + [sym_character_literal] = ACTIONS(746), + [sym_string_literal] = ACTIONS(740), + [sym_string_literal_std_logic] = ACTIONS(740), + [sym_bit_string_length] = ACTIONS(748), + [sym_bit_string_base] = ACTIONS(750), + [sym_operator_symbol] = ACTIONS(746), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(802), + [sym_library_constant_boolean] = ACTIONS(740), + [sym_library_constant_character] = ACTIONS(740), + [sym_library_constant_debug] = ACTIONS(740), + [sym_library_constant_env] = ACTIONS(740), + [sym_library_constant_standard] = ACTIONS(740), + [sym_library_constant_std_logic] = ACTIONS(746), + [sym_library_function] = ACTIONS(802), + [sym_library_type] = ACTIONS(802), + }, [268] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(268), - [sym_selected_waveforms] = STATE(8005), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), + [sym_selected_waveforms] = STATE(6942), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [269] = { - [sym__expression] = STATE(2159), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(6124), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(269), - [sym_force_mode] = STATE(377), - [sym_selected_expressions] = STATE(8004), [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [aux_sym_selected_expressions_repeat1] = STATE(406), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -40652,14 +41298,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(802), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(802), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -40685,31 +41331,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [270] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5458), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5942), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(270), [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), @@ -40721,13 +41367,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -40754,100 +41400,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [271] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5587), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(271), + [sym_selected_waveforms] = STATE(7333), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [272] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5706), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5930), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(272), [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), @@ -40859,13 +41505,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -40892,103 +41538,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [273] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(273), - [sym_selected_waveforms] = STATE(7375), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), + [sym_selected_waveforms] = STATE(6955), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [274] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym__expression] = STATE(2199), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5813), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(274), + [sym_force_mode] = STATE(377), + [sym_selected_expressions] = STATE(7331), [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), + [aux_sym_selected_expressions_repeat1] = STATE(412), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -40997,14 +41643,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_IN] = ACTIONS(800), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(800), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -41030,31 +41676,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [275] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5711), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5915), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(275), [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), @@ -41066,13 +41712,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -41099,169 +41745,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [276] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(276), - [sym_selected_waveforms] = STATE(7869), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), + [sym_selected_waveforms] = STATE(7200), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [277] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5467), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(277), + [sym_selected_waveforms] = STATE(6973), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [278] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5719), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5905), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(278), [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), @@ -41273,13 +41919,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -41306,31 +41952,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [279] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5782), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5890), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(279), [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), @@ -41342,13 +41988,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -41375,34 +42021,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [280] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym__expression] = STATE(2199), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5576), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(280), + [sym_force_mode] = STATE(371), + [sym_selected_expressions] = STATE(7308), [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), + [aux_sym_selected_expressions_repeat1] = STATE(412), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -41411,14 +42057,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_IN] = ACTIONS(800), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(800), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -41444,100 +42090,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [281] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5878), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(281), - [sym_selected_waveforms] = STATE(6792), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [282] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5674), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5863), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(282), [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), @@ -41549,13 +42195,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -41582,31 +42228,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [283] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5512), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5963), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(283), [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), @@ -41618,13 +42264,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -41651,100 +42297,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [284] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5731), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(284), + [sym_selected_waveforms] = STATE(7005), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(284), [sym_block_comment] = STATE(284), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [285] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5562), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5723), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(285), [sym_line_comment] = STATE(285), [sym_block_comment] = STATE(285), @@ -41756,13 +42402,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -41789,34 +42435,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [286] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5685), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(286), + [sym_selected_waveforms] = STATE(7307), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(286), [sym_block_comment] = STATE(286), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [287] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5851), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(287), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -41825,13 +42540,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -41857,101 +42572,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [287] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(287), - [sym_selected_waveforms] = STATE(7098), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, [288] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5485), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5837), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(288), [sym_line_comment] = STATE(288), [sym_block_comment] = STATE(288), @@ -41963,13 +42609,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -41996,31 +42642,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [289] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5747), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5827), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(289), [sym_line_comment] = STATE(289), [sym_block_comment] = STATE(289), @@ -42032,13 +42678,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -42065,34 +42711,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [290] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5589), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(290), + [sym_selected_waveforms] = STATE(8170), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(290), [sym_block_comment] = STATE(290), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [291] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5813), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(291), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -42101,13 +42816,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -42133,35 +42848,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [291] = { - [sym__expression] = STATE(2159), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [292] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(292), + [sym_selected_waveforms] = STATE(7302), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [293] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(291), - [sym_force_mode] = STATE(384), - [sym_selected_expressions] = STATE(7957), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [aux_sym_selected_expressions_repeat1] = STATE(406), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5802), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(293), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -42170,14 +42954,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(802), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(802), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -42202,35 +42986,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [292] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [294] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5549), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(292), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5788), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(294), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -42239,13 +43023,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -42271,104 +43055,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [293] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(293), - [sym_selected_waveforms] = STATE(7032), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [294] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [295] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5761), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(294), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5776), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(295), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -42377,13 +43092,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -42409,101 +43124,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [295] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(295), - [sym_selected_waveforms] = STATE(7958), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, [296] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5564), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5762), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(296), [sym_line_comment] = STATE(296), [sym_block_comment] = STATE(296), @@ -42515,13 +43161,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -42548,34 +43194,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [297] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym__expression] = STATE(2199), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5535), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(297), + [sym_force_mode] = STATE(367), + [sym_selected_expressions] = STATE(8169), [sym_line_comment] = STATE(297), [sym_block_comment] = STATE(297), + [aux_sym_selected_expressions_repeat1] = STATE(412), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -42584,14 +43230,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_IN] = ACTIONS(800), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(800), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -42617,31 +43263,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [298] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5776), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5748), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(298), [sym_line_comment] = STATE(298), [sym_block_comment] = STATE(298), @@ -42653,13 +43299,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -42686,31 +43332,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [299] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5539), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5735), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(299), [sym_line_comment] = STATE(299), [sym_block_comment] = STATE(299), @@ -42722,13 +43368,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -42755,238 +43401,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [300] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(300), - [sym_selected_waveforms] = STATE(7310), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), + [sym_selected_waveforms] = STATE(8163), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(300), [sym_block_comment] = STATE(300), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [301] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1100), + [sym_condition_expression] = STATE(2052), + [sym_logical_expression] = STATE(2052), + [sym_relational_expression] = STATE(2052), + [sym_shift_expression] = STATE(2052), + [sym_simple_expression] = STATE(2238), + [sym_unary_operator] = STATE(711), + [sym_sign] = STATE(713), + [sym__primary] = STATE(1657), + [sym_name] = STATE(1653), + [sym__direct_name] = STATE(724), + [sym__identifier] = STATE(850), + [sym__external_name] = STATE(850), + [sym_external_constant_name] = STATE(876), + [sym_external_signal_name] = STATE(876), + [sym_external_variable_name] = STATE(876), + [sym__literal] = STATE(1651), + [sym_bit_string_literal] = STATE(1668), + [sym__abstract_literal] = STATE(841), + [sym_based_literal] = STATE(900), + [sym_allocator] = STATE(1653), + [sym_parenthesis_expression] = STATE(1653), + [sym__element] = STATE(5560), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(301), - [sym_selected_waveforms] = STATE(6927), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(301), [sym_block_comment] = STATE(301), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(730), + [sym_condition_conversion] = ACTIONS(732), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(734), + [sym_identifier] = ACTIONS(802), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(738), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(740), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(742), + [sym_decimal_float] = ACTIONS(742), + [sym_based_base] = ACTIONS(744), + [sym_character_literal] = ACTIONS(746), + [sym_string_literal] = ACTIONS(740), + [sym_string_literal_std_logic] = ACTIONS(740), + [sym_bit_string_length] = ACTIONS(748), + [sym_bit_string_base] = ACTIONS(750), + [sym_operator_symbol] = ACTIONS(746), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(802), + [sym_library_constant_boolean] = ACTIONS(740), + [sym_library_constant_character] = ACTIONS(740), + [sym_library_constant_debug] = ACTIONS(740), + [sym_library_constant_env] = ACTIONS(740), + [sym_library_constant_standard] = ACTIONS(740), + [sym_library_constant_std_logic] = ACTIONS(746), + [sym_library_function] = ACTIONS(802), + [sym_library_type] = ACTIONS(802), }, [302] = { - [sym__expression] = STATE(2159), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(302), - [sym_force_mode] = STATE(367), - [sym_selected_expressions] = STATE(6978), + [sym_selected_waveforms] = STATE(7067), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(302), [sym_block_comment] = STATE(302), - [aux_sym_selected_expressions_repeat1] = STATE(406), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(802), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(802), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [303] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5647), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5714), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(303), [sym_line_comment] = STATE(303), [sym_block_comment] = STATE(303), @@ -42998,13 +43644,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -43031,172 +43677,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [304] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5521), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1100), + [sym_condition_expression] = STATE(2052), + [sym_logical_expression] = STATE(2052), + [sym_relational_expression] = STATE(2052), + [sym_shift_expression] = STATE(2052), + [sym_simple_expression] = STATE(2238), + [sym_unary_operator] = STATE(711), + [sym_sign] = STATE(713), + [sym__primary] = STATE(1657), + [sym_name] = STATE(1653), + [sym__direct_name] = STATE(724), + [sym__identifier] = STATE(850), + [sym__external_name] = STATE(850), + [sym_external_constant_name] = STATE(876), + [sym_external_signal_name] = STATE(876), + [sym_external_variable_name] = STATE(876), + [sym__literal] = STATE(1651), + [sym_bit_string_literal] = STATE(1668), + [sym__abstract_literal] = STATE(841), + [sym_based_literal] = STATE(900), + [sym_allocator] = STATE(1653), + [sym_parenthesis_expression] = STATE(1653), + [sym__element] = STATE(5354), + [sym_choices] = STATE(5441), + [sym__range] = STATE(5441), + [sym_simple_range] = STATE(4975), [sym__tool_directive] = STATE(304), [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(730), + [sym_condition_conversion] = ACTIONS(732), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(734), + [sym_identifier] = ACTIONS(802), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(738), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(740), [sym__OR] = ACTIONS(239), + [sym_OTHERS] = ACTIONS(245), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(742), + [sym_decimal_float] = ACTIONS(742), + [sym_based_base] = ACTIONS(744), + [sym_character_literal] = ACTIONS(746), + [sym_string_literal] = ACTIONS(740), + [sym_string_literal_std_logic] = ACTIONS(740), + [sym_bit_string_length] = ACTIONS(748), + [sym_bit_string_base] = ACTIONS(750), + [sym_operator_symbol] = ACTIONS(746), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(802), + [sym_library_constant_boolean] = ACTIONS(740), + [sym_library_constant_character] = ACTIONS(740), + [sym_library_constant_debug] = ACTIONS(740), + [sym_library_constant_env] = ACTIONS(740), + [sym_library_constant_standard] = ACTIONS(740), + [sym_library_constant_std_logic] = ACTIONS(746), + [sym_library_function] = ACTIONS(802), + [sym_library_type] = ACTIONS(802), }, [305] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5701), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(305), - [sym_selected_waveforms] = STATE(6973), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(305), [sym_block_comment] = STATE(305), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [306] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5789), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(306), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -43205,13 +43782,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -43237,104 +43814,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, + [306] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(306), + [sym_selected_waveforms] = STATE(8073), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, [307] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5476), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(307), + [sym_selected_waveforms] = STATE(7070), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(307), [sym_block_comment] = STATE(307), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [308] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym__expression] = STATE(2199), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5506), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(308), + [sym_force_mode] = STATE(374), + [sym_selected_expressions] = STATE(7071), [sym_line_comment] = STATE(308), [sym_block_comment] = STATE(308), + [aux_sym_selected_expressions_repeat1] = STATE(412), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -43343,14 +43989,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_IN] = ACTIONS(800), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(800), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -43376,31 +44022,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [309] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5803), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5689), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(309), [sym_line_comment] = STATE(309), [sym_block_comment] = STATE(309), @@ -43412,13 +44058,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -43445,103 +44091,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [310] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5457), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(310), + [sym_selected_waveforms] = STATE(7185), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(310), [sym_block_comment] = STATE(310), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [311] = { - [sym__expression] = STATE(2159), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5876), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(311), - [sym_force_mode] = STATE(380), - [sym_selected_expressions] = STATE(6954), [sym_line_comment] = STATE(311), [sym_block_comment] = STATE(311), - [aux_sym_selected_expressions_repeat1] = STATE(406), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -43550,14 +44196,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_IN] = ACTIONS(802), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_OUT] = ACTIONS(802), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -43583,31 +44229,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [312] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5924), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5676), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(312), [sym_line_comment] = STATE(312), [sym_block_comment] = STATE(312), @@ -43619,13 +44265,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -43652,100 +44298,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [313] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5665), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(313), - [sym_selected_waveforms] = STATE(6949), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(313), [sym_block_comment] = STATE(313), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [314] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5821), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5677), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(314), [sym_line_comment] = STATE(314), [sym_block_comment] = STATE(314), @@ -43757,13 +44403,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -43790,103 +44436,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [315] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5653), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(315), - [sym_selected_waveforms] = STATE(6947), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), [sym_line_comment] = STATE(315), [sym_block_comment] = STATE(315), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [316] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5461), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(316), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -43895,13 +44472,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -43927,35 +44504,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [317] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [316] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5495), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(317), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5643), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(316), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -43964,13 +44541,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -43996,32 +44573,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, + [317] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(317), + [sym_selected_waveforms] = STATE(7131), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, [318] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5409), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5636), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(318), [sym_line_comment] = STATE(318), [sym_block_comment] = STATE(318), @@ -44033,13 +44679,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -44066,103 +44712,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [319] = { - [sym__expression] = STATE(1002), - [sym_condition_expression] = STATE(2093), - [sym_logical_expression] = STATE(2093), - [sym_relational_expression] = STATE(2093), - [sym_shift_expression] = STATE(2093), - [sym_simple_expression] = STATE(2177), - [sym_unary_operator] = STATE(629), - [sym_sign] = STATE(628), - [sym__primary] = STATE(1584), - [sym_name] = STATE(1587), - [sym__direct_name] = STATE(725), - [sym__identifier] = STATE(840), - [sym__external_name] = STATE(840), - [sym_external_constant_name] = STATE(869), - [sym_external_signal_name] = STATE(869), - [sym_external_variable_name] = STATE(869), - [sym__literal] = STATE(1587), - [sym_bit_string_literal] = STATE(1562), - [sym__abstract_literal] = STATE(839), - [sym_based_literal] = STATE(903), - [sym_allocator] = STATE(1587), - [sym_parenthesis_expression] = STATE(1587), - [sym__element] = STATE(4996), - [sym_choices] = STATE(5337), - [sym__range] = STATE(5337), - [sym_simple_range] = STATE(4803), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5631), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(319), [sym_line_comment] = STATE(319), [sym_block_comment] = STATE(319), - [anon_sym_LPAREN] = ACTIONS(730), - [sym_condition_conversion] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(734), - [sym_identifier] = ACTIONS(800), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(738), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(740), - [sym__OR] = ACTIONS(239), - [sym_OTHERS] = ACTIONS(245), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(742), - [sym_decimal_float] = ACTIONS(742), - [sym_based_base] = ACTIONS(744), - [sym_character_literal] = ACTIONS(746), - [sym_string_literal] = ACTIONS(740), - [sym_string_literal_std_logic] = ACTIONS(740), - [sym_bit_string_length] = ACTIONS(748), - [sym_bit_string_base] = ACTIONS(750), - [sym_operator_symbol] = ACTIONS(746), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(800), - [sym_library_constant_boolean] = ACTIONS(740), - [sym_library_constant_character] = ACTIONS(740), - [sym_library_constant_debug] = ACTIONS(740), - [sym_library_constant_env] = ACTIONS(740), - [sym_library_constant_standard] = ACTIONS(740), - [sym_library_constant_std_logic] = ACTIONS(746), - [sym_library_function] = ACTIONS(800), - [sym_library_type] = ACTIONS(800), - }, - [320] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5464), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(320), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -44171,13 +44748,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -44203,35 +44780,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [321] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [320] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5566), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(321), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5629), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(320), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -44240,13 +44817,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -44272,32 +44849,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, + [321] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(321), + [sym_selected_waveforms] = STATE(7689), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, [322] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5482), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5625), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(322), [sym_line_comment] = STATE(322), [sym_block_comment] = STATE(322), @@ -44309,13 +44955,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -44342,34 +44988,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [323] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5809), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(323), + [sym_selected_waveforms] = STATE(7086), + [sym_waveform] = STATE(6364), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(323), [sym_block_comment] = STATE(323), + [aux_sym_selected_waveforms_repeat1] = STATE(347), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [324] = { + [sym__expression] = STATE(2199), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(324), + [sym_force_mode] = STATE(391), + [sym_selected_expressions] = STATE(7088), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [aux_sym_selected_expressions_repeat1] = STATE(412), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -44378,14 +45093,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_IN] = ACTIONS(800), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), [sym__OR] = ACTIONS(239), + [sym_OUT] = ACTIONS(800), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), @@ -44410,35 +45125,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [324] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2456), + [325] = { + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2469), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym_association_element] = STATE(5475), - [sym__actual_part] = STATE(6197), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(324), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym_association_element] = STATE(5959), + [sym__actual_part] = STATE(6615), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(325), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -44447,13 +45162,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), @@ -44479,648 +45194,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [325] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(325), - [sym_selected_waveforms] = STATE(6849), - [sym_waveform] = STATE(6421), - [sym_waveform_element] = STATE(5246), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [aux_sym_selected_waveforms_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, [326] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(326), - [sym_waveform] = STATE(5739), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7988), + [sym_waveform] = STATE(5661), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7075), [sym_line_comment] = STATE(326), [sym_block_comment] = STATE(326), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [327] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(327), - [sym_waveform] = STATE(5616), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7028), + [sym_waveform] = STATE(5936), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(6971), [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [328] = { - [sym_conditional_expression] = STATE(6193), - [sym__expression] = STATE(1154), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__actual_part] = STATE(6010), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(328), + [sym_waveform] = STATE(5855), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7693), [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), - [sym_INERTIAL] = ACTIONS(399), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), - [sym_OPEN] = ACTIONS(401), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [329] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(329), - [sym_waveform] = STATE(5594), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6650), + [sym_waveform] = STATE(5919), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(8013), [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [330] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(330), - [sym_waveform] = STATE(6022), - [sym_waveform_element] = STATE(5246), + [sym_waveform] = STATE(5648), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7115), [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [aux_sym_selected_waveforms_repeat1] = STATE(334), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [331] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(331), - [sym_waveform] = STATE(5641), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7008), + [sym_waveform] = STATE(5881), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7236), [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [332] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(332), - [sym_waveform] = STATE(5804), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6820), + [sym_waveform] = STATE(5705), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(6840), [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [333] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(333), - [sym_waveform] = STATE(5437), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7246), + [sym_waveform] = STATE(5992), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7002), [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [334] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(334), - [sym_waveform] = STATE(5950), - [sym_waveform_element] = STATE(5246), + [sym_waveform] = STATE(5792), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7372), [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), - [aux_sym_selected_waveforms_repeat1] = STATE(334), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [335] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(335), + [sym_waveform] = STATE(5759), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7423), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [336] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(336), + [sym_waveform] = STATE(6018), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(8205), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [337] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(337), + [sym_waveform] = STATE(5817), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7129), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(407), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(409), + [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(413), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), + }, + [338] = { + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), + [sym__tool_directive] = STATE(338), + [sym_waveform] = STATE(6152), + [sym_waveform_element] = STATE(5543), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [aux_sym_selected_waveforms_repeat1] = STATE(338), [anon_sym_LPAREN] = ACTIONS(804), [sym_condition_conversion] = ACTIONS(807), [anon_sym_PLUS] = ACTIONS(810), @@ -45160,1120 +46078,848 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(816), [sym_library_type] = ACTIONS(816), }, - [335] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(335), - [sym_waveform] = STATE(5781), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7870), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [336] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(336), - [sym_waveform] = STATE(5779), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6795), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [337] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(337), - [sym_waveform] = STATE(5387), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7163), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [338] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(338), - [sym_waveform] = STATE(5618), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7365), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, [339] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(339), - [sym_waveform] = STATE(5681), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6958), + [sym_waveform] = STATE(5732), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7360), [sym_line_comment] = STATE(339), [sym_block_comment] = STATE(339), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [340] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(340), - [sym_waveform] = STATE(5770), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7965), + [sym_waveform] = STATE(5757), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7474), [sym_line_comment] = STATE(340), [sym_block_comment] = STATE(340), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [341] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(341), - [sym_waveform] = STATE(5793), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7880), + [sym_waveform] = STATE(5594), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7311), [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [342] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(342), - [sym_waveform] = STATE(5551), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7372), + [sym_waveform] = STATE(5621), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7051), [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [343] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(343), - [sym_waveform] = STATE(5736), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6876), + [sym_waveform] = STATE(5953), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(8074), [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [344] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym_conditional_expression] = STATE(6544), + [sym__expression] = STATE(1142), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__actual_part] = STATE(6208), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(344), - [sym_waveform] = STATE(5669), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6961), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), + [sym_INERTIAL] = ACTIONS(431), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(762), + [sym_OPEN] = ACTIONS(433), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, [345] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(345), - [sym_waveform] = STATE(5434), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7240), + [sym_waveform] = STATE(5908), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(6943), [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [346] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(346), - [sym_waveform] = STATE(5497), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7095), + [sym_waveform] = STATE(5739), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7031), [sym_line_comment] = STATE(346), [sym_block_comment] = STATE(346), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [347] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(347), - [sym_waveform] = STATE(5463), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6473), + [sym_waveform] = STATE(6210), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [aux_sym_selected_waveforms_repeat1] = STATE(338), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [348] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(348), - [sym_waveform] = STATE(5828), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(6848), + [sym_waveform] = STATE(5923), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(8177), [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [349] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(349), - [sym_waveform] = STATE(5472), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7307), + [sym_waveform] = STATE(5966), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7182), [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [350] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(350), - [sym_waveform] = STATE(5452), - [sym_waveform_element] = STATE(5246), - [sym_conditional_waveforms] = STATE(7295), + [sym_waveform] = STATE(5599), + [sym_waveform_element] = STATE(5543), + [sym_conditional_waveforms] = STATE(7319), [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, [351] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(351), - [sym_conditional_or_unaffected_expression] = STATE(7359), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7083), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), [anon_sym_LPAREN] = ACTIONS(752), @@ -46316,31 +46962,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [352] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(352), - [sym_conditional_or_unaffected_expression] = STATE(7290), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7167), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), [anon_sym_LPAREN] = ACTIONS(752), @@ -46383,31 +47029,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [353] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(353), - [sym_conditional_or_unaffected_expression] = STATE(6997), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7326), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(353), [sym_block_comment] = STATE(353), [anon_sym_LPAREN] = ACTIONS(752), @@ -46450,33 +47096,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [354] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym_index_constraint] = STATE(6768), + [sym__expression] = STATE(2159), + [sym_condition_expression] = STATE(2619), + [sym_logical_expression] = STATE(2619), + [sym_relational_expression] = STATE(2619), + [sym_shift_expression] = STATE(2619), + [sym_simple_expression] = STATE(2467), + [sym_unary_operator] = STATE(413), + [sym_sign] = STATE(507), + [sym__primary] = STATE(2534), + [sym_name] = STATE(2529), + [sym__direct_name] = STATE(774), + [sym__identifier] = STATE(1402), + [sym__external_name] = STATE(1402), + [sym_external_constant_name] = STATE(1401), + [sym_external_signal_name] = STATE(1401), + [sym_external_variable_name] = STATE(1401), + [sym__literal] = STATE(2526), + [sym_bit_string_literal] = STATE(2519), + [sym__abstract_literal] = STATE(1363), + [sym_based_literal] = STATE(1428), + [sym_allocator] = STATE(2529), + [sym_parenthesis_expression] = STATE(2529), + [sym__range] = STATE(5645), + [sym_simple_range] = STATE(6057), [sym__tool_directive] = STATE(354), - [sym_conditional_or_unaffected_expression] = STATE(7079), - [sym__expression_or_unaffected] = STATE(5305), [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), + [anon_sym_LPAREN] = ACTIONS(846), + [sym_condition_conversion] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(850), + [sym_identifier] = ACTIONS(852), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(854), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(856), + [sym__OR] = ACTIONS(239), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(858), + [sym_decimal_float] = ACTIONS(858), + [sym_based_base] = ACTIONS(860), + [sym_character_literal] = ACTIONS(862), + [sym_string_literal] = ACTIONS(856), + [sym_string_literal_std_logic] = ACTIONS(856), + [sym_bit_string_length] = ACTIONS(864), + [sym_bit_string_base] = ACTIONS(866), + [sym_operator_symbol] = ACTIONS(862), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(852), + [sym_library_constant_boolean] = ACTIONS(856), + [sym_library_constant_character] = ACTIONS(856), + [sym_library_constant_debug] = ACTIONS(856), + [sym_library_constant_env] = ACTIONS(856), + [sym_library_constant_standard] = ACTIONS(856), + [sym_library_constant_std_logic] = ACTIONS(862), + [sym_library_function] = ACTIONS(852), + [sym_library_type] = ACTIONS(852), + }, + [355] = { + [sym_index_constraint] = STATE(7715), + [sym__expression] = STATE(2159), + [sym_condition_expression] = STATE(2619), + [sym_logical_expression] = STATE(2619), + [sym_relational_expression] = STATE(2619), + [sym_shift_expression] = STATE(2619), + [sym_simple_expression] = STATE(2467), + [sym_unary_operator] = STATE(413), + [sym_sign] = STATE(507), + [sym__primary] = STATE(2534), + [sym_name] = STATE(2529), + [sym__direct_name] = STATE(774), + [sym__identifier] = STATE(1402), + [sym__external_name] = STATE(1402), + [sym_external_constant_name] = STATE(1401), + [sym_external_signal_name] = STATE(1401), + [sym_external_variable_name] = STATE(1401), + [sym__literal] = STATE(2526), + [sym_bit_string_literal] = STATE(2519), + [sym__abstract_literal] = STATE(1363), + [sym_based_literal] = STATE(1428), + [sym_allocator] = STATE(2529), + [sym_parenthesis_expression] = STATE(2529), + [sym__range] = STATE(5645), + [sym_simple_range] = STATE(6057), + [sym__tool_directive] = STATE(355), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [anon_sym_LPAREN] = ACTIONS(868), + [sym_condition_conversion] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT_LT] = ACTIONS(850), + [sym_identifier] = ACTIONS(852), + [sym__ABS] = ACTIONS(239), + [sym__AND] = ACTIONS(239), + [sym__NAND] = ACTIONS(239), + [sym_NEW] = ACTIONS(854), + [sym__NOR] = ACTIONS(239), + [sym__NOT] = ACTIONS(239), + [sym_NULL] = ACTIONS(856), + [sym__OR] = ACTIONS(239), + [sym__XNOR] = ACTIONS(239), + [sym__XOR] = ACTIONS(239), + [sym__grave_accent] = ACTIONS(3), + [sym_decimal_integer] = ACTIONS(858), + [sym_decimal_float] = ACTIONS(858), + [sym_based_base] = ACTIONS(860), + [sym_character_literal] = ACTIONS(862), + [sym_string_literal] = ACTIONS(856), + [sym_string_literal_std_logic] = ACTIONS(856), + [sym_bit_string_length] = ACTIONS(864), + [sym_bit_string_base] = ACTIONS(866), + [sym_operator_symbol] = ACTIONS(862), + [sym__line_comment_start] = ACTIONS(5), + [sym__block_comment_start] = ACTIONS(7), + [sym_library_constant] = ACTIONS(852), + [sym_library_constant_boolean] = ACTIONS(856), + [sym_library_constant_character] = ACTIONS(856), + [sym_library_constant_debug] = ACTIONS(856), + [sym_library_constant_env] = ACTIONS(856), + [sym_library_constant_standard] = ACTIONS(856), + [sym_library_constant_std_logic] = ACTIONS(862), + [sym_library_function] = ACTIONS(852), + [sym_library_type] = ACTIONS(852), + }, + [356] = { + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(356), + [sym_conditional_or_unaffected_expression] = STATE(7069), + [sym__expression_or_unaffected] = STATE(5541), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -46516,34 +47296,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [355] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [357] = { + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(355), - [sym_conditional_or_unaffected_expression] = STATE(7258), - [sym__expression_or_unaffected] = STATE(5305), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(357), + [sym_conditional_or_unaffected_expression] = STATE(8171), + [sym__expression_or_unaffected] = STATE(5541), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -46583,101 +47363,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [356] = { - [sym_index_constraint] = STATE(6790), - [sym__expression] = STATE(2120), - [sym_condition_expression] = STATE(2574), - [sym_logical_expression] = STATE(2574), - [sym_relational_expression] = STATE(2574), - [sym_shift_expression] = STATE(2574), - [sym_simple_expression] = STATE(2372), - [sym_unary_operator] = STATE(531), - [sym_sign] = STATE(530), - [sym__primary] = STATE(2435), - [sym_name] = STATE(2444), - [sym__direct_name] = STATE(772), - [sym__identifier] = STATE(1283), - [sym__external_name] = STATE(1283), - [sym_external_constant_name] = STATE(1280), - [sym_external_signal_name] = STATE(1280), - [sym_external_variable_name] = STATE(1280), - [sym__literal] = STATE(2444), - [sym_bit_string_literal] = STATE(2439), - [sym__abstract_literal] = STATE(1277), - [sym_based_literal] = STATE(1628), - [sym_allocator] = STATE(2444), - [sym_parenthesis_expression] = STATE(2444), - [sym__range] = STATE(5777), - [sym_simple_range] = STATE(5869), - [sym__tool_directive] = STATE(356), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [anon_sym_LPAREN] = ACTIONS(846), - [sym_condition_conversion] = ACTIONS(848), + [358] = { + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), + [sym__direct_name] = STATE(749), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(358), + [sym_conditional_or_unaffected_expression] = STATE(7748), + [sym__expression_or_unaffected] = STATE(5541), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [anon_sym_LPAREN] = ACTIONS(752), + [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(850), - [sym_identifier] = ACTIONS(852), + [anon_sym_LT_LT] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(854), + [sym_NEW] = ACTIONS(760), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(856), + [sym_NULL] = ACTIONS(762), [sym__OR] = ACTIONS(239), + [sym_UNAFFECTED] = ACTIONS(784), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(858), - [sym_decimal_float] = ACTIONS(858), - [sym_based_base] = ACTIONS(860), - [sym_character_literal] = ACTIONS(862), - [sym_string_literal] = ACTIONS(856), - [sym_string_literal_std_logic] = ACTIONS(856), - [sym_bit_string_length] = ACTIONS(864), - [sym_bit_string_base] = ACTIONS(866), - [sym_operator_symbol] = ACTIONS(862), + [sym_decimal_integer] = ACTIONS(766), + [sym_decimal_float] = ACTIONS(766), + [sym_based_base] = ACTIONS(768), + [sym_character_literal] = ACTIONS(770), + [sym_string_literal] = ACTIONS(762), + [sym_string_literal_std_logic] = ACTIONS(762), + [sym_bit_string_length] = ACTIONS(772), + [sym_bit_string_base] = ACTIONS(774), + [sym_operator_symbol] = ACTIONS(770), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(852), - [sym_library_constant_boolean] = ACTIONS(856), - [sym_library_constant_character] = ACTIONS(856), - [sym_library_constant_debug] = ACTIONS(856), - [sym_library_constant_env] = ACTIONS(856), - [sym_library_constant_standard] = ACTIONS(856), - [sym_library_constant_std_logic] = ACTIONS(862), - [sym_library_function] = ACTIONS(852), - [sym_library_type] = ACTIONS(852), + [sym_library_constant] = ACTIONS(756), + [sym_library_constant_boolean] = ACTIONS(762), + [sym_library_constant_character] = ACTIONS(762), + [sym_library_constant_debug] = ACTIONS(762), + [sym_library_constant_env] = ACTIONS(762), + [sym_library_constant_standard] = ACTIONS(762), + [sym_library_constant_std_logic] = ACTIONS(770), + [sym_library_function] = ACTIONS(756), + [sym_library_type] = ACTIONS(756), }, - [357] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [359] = { + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(357), - [sym_conditional_or_unaffected_expression] = STATE(7890), - [sym__expression_or_unaffected] = STATE(5305), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(359), + [sym_conditional_or_unaffected_expression] = STATE(7355), + [sym__expression_or_unaffected] = STATE(5541), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -46717,34 +47497,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [358] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [360] = { + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), - [sym__tool_directive] = STATE(358), - [sym_conditional_or_unaffected_expression] = STATE(6972), - [sym__expression_or_unaffected] = STATE(5305), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), + [sym__tool_directive] = STATE(360), + [sym_conditional_or_unaffected_expression] = STATE(7305), + [sym__expression_or_unaffected] = STATE(5541), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), [anon_sym_LPAREN] = ACTIONS(752), [sym_condition_conversion] = ACTIONS(231), [anon_sym_PLUS] = ACTIONS(233), @@ -46784,166 +47564,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_function] = ACTIONS(756), [sym_library_type] = ACTIONS(756), }, - [359] = { - [sym__expression] = STATE(1416), - [sym_condition_expression] = STATE(2449), - [sym_logical_expression] = STATE(2449), - [sym_relational_expression] = STATE(2449), - [sym_shift_expression] = STATE(2449), - [sym_simple_expression] = STATE(2449), - [sym_unary_operator] = STATE(503), - [sym_sign] = STATE(498), - [sym__primary] = STATE(2451), - [sym_name] = STATE(2453), - [sym__direct_name] = STATE(764), - [sym__identifier] = STATE(1274), - [sym__external_name] = STATE(1274), - [sym_external_constant_name] = STATE(1281), - [sym_external_signal_name] = STATE(1281), - [sym_external_variable_name] = STATE(1281), - [sym__literal] = STATE(2453), - [sym_bit_string_literal] = STATE(2446), - [sym__abstract_literal] = STATE(1379), - [sym_based_literal] = STATE(1415), - [sym_allocator] = STATE(2453), - [sym_parenthesis_expression] = STATE(2453), - [sym__tool_directive] = STATE(359), - [sym_waveform] = STATE(5948), - [sym_waveform_element] = STATE(5246), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_condition_conversion] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(417), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(419), - [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(423), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(425), - [sym_decimal_float] = ACTIONS(425), - [sym_based_base] = ACTIONS(427), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(419), - [sym_string_literal_std_logic] = ACTIONS(419), - [sym_bit_string_length] = ACTIONS(431), - [sym_bit_string_base] = ACTIONS(433), - [sym_operator_symbol] = ACTIONS(429), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(411), - [sym_library_constant_boolean] = ACTIONS(419), - [sym_library_constant_character] = ACTIONS(419), - [sym_library_constant_debug] = ACTIONS(419), - [sym_library_constant_env] = ACTIONS(419), - [sym_library_constant_standard] = ACTIONS(419), - [sym_library_constant_std_logic] = ACTIONS(429), - [sym_library_function] = ACTIONS(411), - [sym_library_type] = ACTIONS(411), - }, - [360] = { - [sym_index_constraint] = STATE(6554), - [sym__expression] = STATE(2120), - [sym_condition_expression] = STATE(2574), - [sym_logical_expression] = STATE(2574), - [sym_relational_expression] = STATE(2574), - [sym_shift_expression] = STATE(2574), - [sym_simple_expression] = STATE(2372), - [sym_unary_operator] = STATE(531), - [sym_sign] = STATE(530), - [sym__primary] = STATE(2435), - [sym_name] = STATE(2444), - [sym__direct_name] = STATE(772), - [sym__identifier] = STATE(1283), - [sym__external_name] = STATE(1283), - [sym_external_constant_name] = STATE(1280), - [sym_external_signal_name] = STATE(1280), - [sym_external_variable_name] = STATE(1280), - [sym__literal] = STATE(2444), - [sym_bit_string_literal] = STATE(2439), - [sym__abstract_literal] = STATE(1277), - [sym_based_literal] = STATE(1628), - [sym_allocator] = STATE(2444), - [sym_parenthesis_expression] = STATE(2444), - [sym__range] = STATE(5777), - [sym_simple_range] = STATE(5869), - [sym__tool_directive] = STATE(360), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [anon_sym_LPAREN] = ACTIONS(868), - [sym_condition_conversion] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(850), - [sym_identifier] = ACTIONS(852), - [sym__ABS] = ACTIONS(239), - [sym__AND] = ACTIONS(239), - [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(854), - [sym__NOR] = ACTIONS(239), - [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(856), - [sym__OR] = ACTIONS(239), - [sym__XNOR] = ACTIONS(239), - [sym__XOR] = ACTIONS(239), - [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(858), - [sym_decimal_float] = ACTIONS(858), - [sym_based_base] = ACTIONS(860), - [sym_character_literal] = ACTIONS(862), - [sym_string_literal] = ACTIONS(856), - [sym_string_literal_std_logic] = ACTIONS(856), - [sym_bit_string_length] = ACTIONS(864), - [sym_bit_string_base] = ACTIONS(866), - [sym_operator_symbol] = ACTIONS(862), - [sym__line_comment_start] = ACTIONS(5), - [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(852), - [sym_library_constant_boolean] = ACTIONS(856), - [sym_library_constant_character] = ACTIONS(856), - [sym_library_constant_debug] = ACTIONS(856), - [sym_library_constant_env] = ACTIONS(856), - [sym_library_constant_standard] = ACTIONS(856), - [sym_library_constant_std_logic] = ACTIONS(862), - [sym_library_function] = ACTIONS(852), - [sym_library_type] = ACTIONS(852), - }, [361] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(361), - [sym_conditional_or_unaffected_expression] = STATE(7959), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7411), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(361), [sym_block_comment] = STATE(361), [anon_sym_LPAREN] = ACTIONS(752), @@ -46986,31 +47632,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [362] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(362), - [sym_conditional_or_unaffected_expression] = STATE(7229), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(8227), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(362), [sym_block_comment] = STATE(362), [anon_sym_LPAREN] = ACTIONS(752), @@ -47053,31 +47699,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [363] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(363), - [sym_conditional_or_unaffected_expression] = STATE(6948), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(8099), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), [anon_sym_LPAREN] = ACTIONS(752), @@ -47120,31 +47766,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [364] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), + [sym__expression] = STATE(2046), + [sym_condition_expression] = STATE(2324), + [sym_logical_expression] = STATE(2324), + [sym_relational_expression] = STATE(2324), + [sym_shift_expression] = STATE(2324), + [sym_simple_expression] = STATE(2324), + [sym_unary_operator] = STATE(669), + [sym_sign] = STATE(675), + [sym__primary] = STATE(2393), + [sym_name] = STATE(2394), [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__identifier] = STATE(1083), + [sym__external_name] = STATE(1083), + [sym_external_constant_name] = STATE(1086), + [sym_external_signal_name] = STATE(1086), + [sym_external_variable_name] = STATE(1086), + [sym__literal] = STATE(2395), + [sym_bit_string_literal] = STATE(2387), + [sym__abstract_literal] = STATE(1102), + [sym_based_literal] = STATE(1141), + [sym_allocator] = STATE(2394), + [sym_parenthesis_expression] = STATE(2394), [sym__tool_directive] = STATE(364), - [sym_conditional_or_unaffected_expression] = STATE(8006), - [sym__expression_or_unaffected] = STATE(5305), + [sym_conditional_or_unaffected_expression] = STATE(7104), + [sym__expression_or_unaffected] = STATE(5541), [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), [anon_sym_LPAREN] = ACTIONS(752), @@ -47187,126 +47833,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_library_type] = ACTIONS(756), }, [365] = { - [sym__expression] = STATE(1987), - [sym_condition_expression] = STATE(2253), - [sym_logical_expression] = STATE(2253), - [sym_relational_expression] = STATE(2253), - [sym_shift_expression] = STATE(2253), - [sym_simple_expression] = STATE(2253), - [sym_unary_operator] = STATE(511), - [sym_sign] = STATE(512), - [sym__primary] = STATE(2347), - [sym_name] = STATE(2350), - [sym__direct_name] = STATE(749), - [sym__identifier] = STATE(1016), - [sym__external_name] = STATE(1016), - [sym_external_constant_name] = STATE(995), - [sym_external_signal_name] = STATE(995), - [sym_external_variable_name] = STATE(995), - [sym__literal] = STATE(2350), - [sym_bit_string_literal] = STATE(2344), - [sym__abstract_literal] = STATE(1008), - [sym_based_literal] = STATE(1204), - [sym_allocator] = STATE(2350), - [sym_parenthesis_expression] = STATE(2350), + [sym__expression] = STATE(1420), + [sym_condition_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_simple_expression] = STATE(2492), + [sym_unary_operator] = STATE(619), + [sym_sign] = STATE(608), + [sym__primary] = STATE(2488), + [sym_name] = STATE(2487), + [sym__direct_name] = STATE(775), + [sym__identifier] = STATE(1343), + [sym__external_name] = STATE(1343), + [sym_external_constant_name] = STATE(1344), + [sym_external_signal_name] = STATE(1344), + [sym_external_variable_name] = STATE(1344), + [sym__literal] = STATE(2503), + [sym_bit_string_literal] = STATE(2493), + [sym__abstract_literal] = STATE(1309), + [sym_based_literal] = STATE(1518), + [sym_allocator] = STATE(2487), + [sym_parenthesis_expression] = STATE(2487), [sym__tool_directive] = STATE(365), - [sym_conditional_or_unaffected_expression] = STATE(6587), - [sym__expression_or_unaffected] = STATE(5305), + [sym_waveform] = STATE(6151), + [sym_waveform_element] = STATE(5543), [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(752), - [sym_condition_conversion] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(395), + [sym_condition_conversion] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(754), - [sym_identifier] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), [sym__ABS] = ACTIONS(239), [sym__AND] = ACTIONS(239), [sym__NAND] = ACTIONS(239), - [sym_NEW] = ACTIONS(760), + [sym_NEW] = ACTIONS(407), [sym__NOR] = ACTIONS(239), [sym__NOT] = ACTIONS(239), - [sym_NULL] = ACTIONS(762), + [sym_NULL] = ACTIONS(409), [sym__OR] = ACTIONS(239), - [sym_UNAFFECTED] = ACTIONS(784), + [sym_UNAFFECTED] = ACTIONS(413), [sym__XNOR] = ACTIONS(239), [sym__XOR] = ACTIONS(239), [sym__grave_accent] = ACTIONS(3), - [sym_decimal_integer] = ACTIONS(766), - [sym_decimal_float] = ACTIONS(766), - [sym_based_base] = ACTIONS(768), - [sym_character_literal] = ACTIONS(770), - [sym_string_literal] = ACTIONS(762), - [sym_string_literal_std_logic] = ACTIONS(762), - [sym_bit_string_length] = ACTIONS(772), - [sym_bit_string_base] = ACTIONS(774), - [sym_operator_symbol] = ACTIONS(770), + [sym_decimal_integer] = ACTIONS(415), + [sym_decimal_float] = ACTIONS(415), + [sym_based_base] = ACTIONS(417), + [sym_character_literal] = ACTIONS(419), + [sym_string_literal] = ACTIONS(409), + [sym_string_literal_std_logic] = ACTIONS(409), + [sym_bit_string_length] = ACTIONS(421), + [sym_bit_string_base] = ACTIONS(423), + [sym_operator_symbol] = ACTIONS(419), [sym__line_comment_start] = ACTIONS(5), [sym__block_comment_start] = ACTIONS(7), - [sym_library_constant] = ACTIONS(756), - [sym_library_constant_boolean] = ACTIONS(762), - [sym_library_constant_character] = ACTIONS(762), - [sym_library_constant_debug] = ACTIONS(762), - [sym_library_constant_env] = ACTIONS(762), - [sym_library_constant_standard] = ACTIONS(762), - [sym_library_constant_std_logic] = ACTIONS(770), - [sym_library_function] = ACTIONS(756), - [sym_library_type] = ACTIONS(756), + [sym_library_constant] = ACTIONS(401), + [sym_library_constant_boolean] = ACTIONS(409), + [sym_library_constant_character] = ACTIONS(409), + [sym_library_constant_debug] = ACTIONS(409), + [sym_library_constant_env] = ACTIONS(409), + [sym_library_constant_standard] = ACTIONS(409), + [sym_library_constant_std_logic] = ACTIONS(419), + [sym_library_function] = ACTIONS(401), + [sym_library_type] = ACTIONS(401), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 31, + [0] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(872), 1, + sym_condition_conversion, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(890), 1, sym_bit_string_base, - STATE(406), 1, - aux_sym_selected_expressions_repeat1, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, + STATE(593), 1, sym_sign, - STATE(749), 1, + STATE(598), 1, + sym_unary_operator, + STATE(743), 1, sym__direct_name, - STATE(1008), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1128), 1, sym_based_literal, - STATE(2159), 1, + STATE(1650), 1, sym__expression, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(1920), 1, + sym_simple_expression, + STATE(2310), 1, sym__primary, - STATE(7963), 1, - sym_selected_expressions, + STATE(2351), 1, + sym_bit_string_literal, + STATE(2356), 1, + sym__literal, + STATE(5376), 1, + sym_simple_range, + STATE(5437), 1, + sym__range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -47314,26 +47964,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2476), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -47343,7 +47991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -47352,7 +48000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [127] = 31, + [131] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -47373,25 +48021,27 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(406), 1, + STATE(412), 1, aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2159), 1, + STATE(2199), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6954), 1, + STATE(2395), 1, + sym__literal, + STATE(8225), 1, sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, @@ -47399,7 +48049,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -47410,21 +48060,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -47448,7 +48097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [254] = 31, + [260] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -47469,33 +48118,35 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(406), 1, - aux_sym_selected_expressions_repeat1, - STATE(511), 1, + ACTIONS(784), 1, + sym_UNAFFECTED, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2159), 1, + STATE(2046), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(7020), 1, - sym_selected_expressions, + STATE(2395), 1, + sym__literal, + STATE(6133), 1, + sym__expression_or_unaffected, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -47506,21 +48157,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -47544,59 +48194,59 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [381] = 32, + [389] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(894), 1, sym_condition_conversion, - ACTIONS(874), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(539), 1, - sym_unary_operator, - STATE(540), 1, + STATE(426), 1, + sym_label_declaration, + STATE(466), 1, sym_sign, - STATE(788), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(1609), 1, + STATE(1425), 1, + sym__expression, + STATE(2210), 1, sym__abstract_literal, - STATE(1749), 1, + STATE(2431), 1, sym_based_literal, - STATE(2336), 1, - sym__expression, - STATE(2417), 1, - sym_simple_expression, - STATE(2462), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2465), 1, + STATE(2768), 1, sym_bit_string_literal, - STATE(8093), 1, - sym__range, - STATE(8122), 1, - sym_simple_range, + STATE(7287), 1, + sym__label, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -47604,25 +48254,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1496), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(898), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 4, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -47632,7 +48282,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -47641,59 +48291,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [510] = 32, + [518] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(896), 1, + ACTIONS(918), 1, anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(922), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(928), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(932), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(934), 1, sym_bit_string_base, - STATE(438), 1, + STATE(456), 1, sym_sign, - STATE(439), 1, + STATE(457), 1, sym_unary_operator, - STATE(795), 1, + STATE(745), 1, sym__direct_name, - STATE(1400), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1835), 1, + STATE(1171), 1, sym_based_literal, - STATE(2328), 1, + STATE(1443), 1, sym__expression, - STATE(2421), 1, + STATE(1993), 1, sym_simple_expression, - STATE(2502), 1, - sym_bit_string_literal, - STATE(2503), 1, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, - STATE(8092), 1, - sym__range, - STATE(8118), 1, + STATE(2337), 1, + sym_bit_string_literal, + STATE(5390), 1, sym_simple_range, + STATE(5545), 1, + sym__range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(1043), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -47701,21 +48353,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1586), 3, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 4, + STATE(2500), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -47729,7 +48380,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(924), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -47738,59 +48389,59 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [639] = 32, + [649] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(734), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(628), 1, - sym_sign, - STATE(629), 1, + STATE(412), 1, + aux_sym_selected_expressions_repeat1, + STATE(669), 1, sym_unary_operator, - STATE(725), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(839), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(903), 1, + STATE(1141), 1, sym_based_literal, - STATE(1002), 1, + STATE(2199), 1, sym__expression, - STATE(1562), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(1584), 1, + STATE(2393), 1, sym__primary, - STATE(1820), 1, - sym_simple_expression, - STATE(4803), 1, - sym_simple_range, - STATE(5860), 1, - sym__range, + STATE(2395), 1, + sym__literal, + STATE(7298), 1, + sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -47798,25 +48449,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 4, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -47826,7 +48477,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -47835,57 +48486,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [768] = 31, + [778] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, - anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(938), 1, + sym_condition_conversion, + ACTIONS(940), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(950), 1, sym_bit_string_base, - STATE(406), 1, - aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(670), 1, sym_unary_operator, - STATE(512), 1, + STATE(689), 1, sym_sign, - STATE(749), 1, + STATE(765), 1, sym__direct_name, - STATE(1008), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1335), 1, sym_based_literal, - STATE(2159), 1, + STATE(1750), 1, sym__expression, - STATE(2344), 1, + STATE(2317), 1, + sym_simple_expression, + STATE(2436), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2465), 1, sym__primary, - STATE(7250), 1, - sym_selected_expressions, + STATE(2466), 1, + sym__literal, + STATE(5741), 1, + sym__range, + STATE(5926), 1, + sym_simple_range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -47893,26 +48548,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2570), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -47922,7 +48575,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -47931,59 +48584,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [895] = 32, + [909] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(914), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(954), 1, sym_condition_conversion, - ACTIONS(918), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(922), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(928), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(932), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(934), 1, + ACTIONS(972), 1, sym_bit_string_base, - STATE(462), 1, - sym_sign, - STATE(463), 1, + STATE(621), 1, sym_unary_operator, - STATE(792), 1, + STATE(628), 1, + sym_sign, + STATE(777), 1, sym__direct_name, - STATE(1430), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(1784), 1, + STATE(1524), 1, sym_based_literal, - STATE(2329), 1, + STATE(2024), 1, sym__expression, - STATE(2458), 1, + STATE(2456), 1, sym_simple_expression, - STATE(2473), 1, + STATE(2495), 1, sym_bit_string_literal, - STATE(2477), 1, + STATE(2504), 1, sym__primary, - STATE(7810), 1, - sym__range, - STATE(8119), 1, + STATE(2512), 1, + sym__literal, + STATE(6053), 1, sym_simple_range, + STATE(6240), 1, + sym__range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(926), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(930), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -47991,21 +48646,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1555), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(920), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 4, + STATE(2672), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -48019,7 +48673,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(924), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -48028,57 +48682,59 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [1024] = 31, + [1040] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(412), 1, + aux_sym_selected_expressions_repeat1, + STATE(669), 1, sym_unary_operator, - STATE(625), 1, - sym_label_declaration, - STATE(847), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(1420), 1, - sym__expression, - STATE(2165), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(1141), 1, sym_based_literal, - STATE(2615), 1, + STATE(2199), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2393), 1, sym__primary, - STATE(7208), 1, - sym__label, + STATE(2395), 1, + sym__literal, + STATE(7066), 1, + sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -48086,21 +48742,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(940), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -48115,7 +48770,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -48124,59 +48779,59 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [1151] = 32, + [1169] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, - anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(734), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(628), 1, - sym_sign, - STATE(629), 1, + STATE(412), 1, + aux_sym_selected_expressions_repeat1, + STATE(669), 1, sym_unary_operator, - STATE(725), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(839), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(903), 1, + STATE(1141), 1, sym_based_literal, - STATE(1002), 1, + STATE(2199), 1, sym__expression, - STATE(1562), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(1584), 1, + STATE(2393), 1, sym__primary, - STATE(1820), 1, - sym_simple_expression, - STATE(4803), 1, - sym_simple_range, - STATE(5087), 1, - sym__range, + STATE(2395), 1, + sym__literal, + STATE(8088), 1, + sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -48184,25 +48839,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 4, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -48212,7 +48867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -48221,57 +48876,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [1280] = 31, + [1298] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(427), 1, - sym_label_declaration, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(711), 1, sym_unary_operator, - STATE(847), 1, + STATE(713), 1, + sym_sign, + STATE(724), 1, sym__direct_name, - STATE(1390), 1, - sym__expression, - STATE(2165), 1, + STATE(841), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(900), 1, sym_based_literal, - STATE(2615), 1, - sym_bit_string_literal, - STATE(2627), 1, + STATE(1100), 1, + sym__expression, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, - STATE(7208), 1, - sym__label, + STATE(1668), 1, + sym_bit_string_literal, + STATE(1774), 1, + sym_simple_expression, + STATE(4975), 1, + sym_simple_range, + STATE(5341), 1, + sym__range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -48279,26 +48938,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(940), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -48308,7 +48965,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -48317,7 +48974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [1407] = 31, + [1429] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -48338,25 +48995,27 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(406), 1, + STATE(412), 1, aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2159), 1, + STATE(2199), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(8031), 1, + STATE(2395), 1, + sym__literal, + STATE(7308), 1, sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, @@ -48364,7 +49023,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -48375,21 +49034,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -48413,57 +49071,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [1534] = 31, + [1558] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(406), 1, - aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(711), 1, sym_unary_operator, - STATE(512), 1, + STATE(713), 1, sym_sign, - STATE(749), 1, + STATE(724), 1, sym__direct_name, - STATE(1008), 1, + STATE(841), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(900), 1, sym_based_literal, - STATE(2159), 1, + STATE(1100), 1, sym__expression, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, - STATE(7222), 1, - sym_selected_expressions, + STATE(1668), 1, + sym_bit_string_literal, + STATE(1774), 1, + sym_simple_expression, + STATE(4975), 1, + sym_simple_range, + STATE(6050), 1, + sym__range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -48471,26 +49133,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -48500,7 +49160,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -48509,59 +49169,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [1661] = 32, + [1689] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(958), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(960), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(994), 1, sym_bit_string_base, - STATE(474), 1, - sym_unary_operator, - STATE(475), 1, + STATE(511), 1, sym_sign, - STATE(755), 1, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1184), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(1217), 1, + STATE(1780), 1, sym_based_literal, - STATE(1847), 1, + STATE(2369), 1, sym__expression, - STATE(2339), 1, + STATE(2470), 1, sym_simple_expression, - STATE(2391), 1, + STATE(2594), 1, sym__primary, - STATE(2393), 1, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, sym_bit_string_literal, - STATE(5426), 1, - sym_simple_range, - STATE(5778), 1, + STATE(8315), 1, sym__range, + STATE(8344), 1, + sym_simple_range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -48569,21 +49231,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1188), 3, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 4, + STATE(2697), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -48597,7 +49258,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -48606,7 +49267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [1790] = 31, + [1820] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -48627,25 +49288,27 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(406), 1, + STATE(412), 1, aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2159), 1, + STATE(2199), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6945), 1, + STATE(2395), 1, + sym__literal, + STATE(8251), 1, sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, @@ -48653,7 +49316,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -48664,21 +49327,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -48702,7 +49364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [1917] = 31, + [1949] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -48723,25 +49385,27 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(406), 1, + STATE(412), 1, aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2159), 1, + STATE(2199), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(7303), 1, + STATE(2395), 1, + sym__literal, + STATE(8175), 1, sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, @@ -48749,7 +49413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -48760,21 +49424,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -48798,59 +49461,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [2044] = 32, + [2078] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, + ACTIONS(996), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, sym_condition_conversion, - ACTIONS(850), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(1016), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - STATE(530), 1, + STATE(676), 1, sym_sign, - STATE(531), 1, + STATE(678), 1, sym_unary_operator, - STATE(772), 1, + STATE(788), 1, sym__direct_name, - STATE(1277), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(1628), 1, + STATE(1694), 1, sym_based_literal, - STATE(2120), 1, + STATE(2388), 1, sym__expression, - STATE(2372), 1, + STATE(2511), 1, sym_simple_expression, - STATE(2435), 1, - sym__primary, - STATE(2439), 1, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, - STATE(5869), 1, - sym_simple_range, - STATE(5928), 1, + STATE(2613), 1, + sym__primary, + STATE(8285), 1, sym__range, + STATE(8342), 1, + sym_simple_range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -48858,21 +49523,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1280), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 4, + STATE(2701), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -48886,7 +49550,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -48895,57 +49559,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [2173] = 31, + [2209] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1020), 1, + sym_condition_conversion, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1038), 1, sym_bit_string_base, - ACTIONS(784), 1, - sym_UNAFFECTED, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, + STATE(599), 1, sym_sign, - STATE(749), 1, + STATE(602), 1, + sym_unary_operator, + STATE(753), 1, sym__direct_name, - STATE(1008), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1348), 1, sym_based_literal, - STATE(1987), 1, + STATE(1775), 1, sym__expression, - STATE(2344), 1, + STATE(2371), 1, + sym_simple_expression, + STATE(2435), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2438), 1, sym__primary, - STATE(5931), 1, - sym__expression_or_unaffected, + STATE(2439), 1, + sym__literal, + STATE(5728), 1, + sym_simple_range, + STATE(5814), 1, + sym__range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -48953,26 +49621,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2568), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -48982,7 +49648,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -48991,7 +49657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [2300] = 31, + [2340] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -49012,25 +49678,27 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(406), 1, + STATE(412), 1, aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2159), 1, + STATE(2199), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(8004), 1, + STATE(2395), 1, + sym__literal, + STATE(7077), 1, sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, @@ -49038,7 +49706,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -49049,21 +49717,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -49087,57 +49754,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [2427] = 31, + [2469] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, + ACTIONS(848), 1, sym_condition_conversion, - ACTIONS(752), 1, - anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(866), 1, sym_bit_string_base, - STATE(406), 1, - aux_sym_selected_expressions_repeat1, - STATE(511), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + STATE(413), 1, sym_unary_operator, - STATE(512), 1, + STATE(507), 1, sym_sign, - STATE(749), 1, + STATE(774), 1, sym__direct_name, - STATE(1008), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1428), 1, sym_based_literal, STATE(2159), 1, sym__expression, - STATE(2344), 1, + STATE(2467), 1, + sym_simple_expression, + STATE(2519), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, sym__primary, - STATE(7877), 1, - sym_selected_expressions, + STATE(6057), 1, + sym_simple_range, + STATE(6129), 1, + sym__range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -49145,26 +49816,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2619), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -49174,7 +49843,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -49183,59 +49852,59 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [2554] = 32, + [2600] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, - anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(984), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(501), 1, - sym_sign, - STATE(502), 1, + STATE(412), 1, + aux_sym_selected_expressions_repeat1, + STATE(669), 1, sym_unary_operator, - STATE(765), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(1260), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1537), 1, + STATE(1141), 1, sym_based_literal, - STATE(1976), 1, + STATE(2199), 1, sym__expression, - STATE(2364), 1, - sym_simple_expression, - STATE(2419), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2427), 1, + STATE(2393), 1, sym__primary, - STATE(5851), 1, - sym_simple_range, - STATE(6170), 1, - sym__range, + STATE(2395), 1, + sym__literal, + STATE(7321), 1, + sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -49243,25 +49912,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1241), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 4, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -49271,7 +49940,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -49280,59 +49949,59 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [2683] = 32, + [2729] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, - anon_sym_LPAREN, - ACTIONS(1004), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(1006), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(422), 1, + STATE(412), 1, + aux_sym_selected_expressions_repeat1, + STATE(669), 1, sym_unary_operator, - STATE(423), 1, + STATE(675), 1, sym_sign, - STATE(741), 1, + STATE(749), 1, sym__direct_name, - STATE(1089), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1123), 1, + STATE(1141), 1, sym_based_literal, - STATE(1432), 1, + STATE(2199), 1, sym__expression, - STATE(2020), 1, - sym_simple_expression, - STATE(2241), 1, - sym__primary, - STATE(2245), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(5287), 1, - sym_simple_range, - STATE(5364), 1, - sym__range, + STATE(2393), 1, + sym__primary, + STATE(2395), 1, + sym__literal, + STATE(7120), 1, + sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -49340,25 +50009,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1029), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 4, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -49368,7 +50037,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -49377,59 +50046,59 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [2812] = 32, + [2858] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1026), 1, + ACTIONS(894), 1, sym_condition_conversion, - ACTIONS(1028), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(698), 1, - sym_unary_operator, - STATE(699), 1, + STATE(466), 1, sym_sign, - STATE(748), 1, + STATE(468), 1, + sym_unary_operator, + STATE(708), 1, + sym_label_declaration, + STATE(845), 1, sym__direct_name, - STATE(1037), 1, + STATE(1623), 1, + sym__expression, + STATE(2210), 1, sym__abstract_literal, - STATE(1135), 1, + STATE(2431), 1, sym_based_literal, - STATE(1456), 1, - sym__expression, - STATE(2059), 1, - sym_simple_expression, - STATE(2277), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2299), 1, + STATE(2768), 1, sym_bit_string_literal, - STATE(5313), 1, - sym__range, - STATE(5325), 1, - sym_simple_range, + STATE(7287), 1, + sym__label, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -49437,25 +50106,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1026), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(898), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 4, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -49465,7 +50134,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -49474,57 +50143,61 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [2941] = 31, + [2987] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, + ACTIONS(894), 1, sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1060), 1, sym_bit_string_base, - STATE(406), 1, - aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(686), 1, sym_unary_operator, - STATE(512), 1, + STATE(687), 1, sym_sign, - STATE(749), 1, + STATE(780), 1, sym__direct_name, - STATE(1008), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1773), 1, sym_based_literal, - STATE(2159), 1, + STATE(2402), 1, sym__expression, - STATE(2344), 1, + STATE(2524), 1, + sym_simple_expression, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2612), 1, sym__primary, - STATE(7140), 1, - sym_selected_expressions, + STATE(8038), 1, + sym__range, + STATE(8341), 1, + sym_simple_range, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -49532,26 +50205,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2766), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -49561,7 +50232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -49570,59 +50241,59 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [3068] = 32, + [3118] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, - anon_sym_LPAREN, - ACTIONS(1048), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(1050), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, + anon_sym_LT_LT, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(643), 1, + STATE(412), 1, + aux_sym_selected_expressions_repeat1, + STATE(669), 1, sym_unary_operator, - STATE(646), 1, + STATE(675), 1, sym_sign, - STATE(766), 1, + STATE(749), 1, sym__direct_name, - STATE(1131), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1338), 1, + STATE(1141), 1, sym_based_literal, - STATE(1826), 1, + STATE(2199), 1, sym__expression, - STATE(2237), 1, - sym_simple_expression, - STATE(2379), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2382), 1, + STATE(2393), 1, sym__primary, - STATE(5527), 1, - sym__range, - STATE(5538), 1, - sym_simple_range, + STATE(2395), 1, + sym__literal, + STATE(7367), 1, + sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -49630,25 +50301,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 4, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -49658,7 +50329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -49667,7 +50338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [3197] = 31, + [3247] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -49688,25 +50359,27 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(406), 1, + STATE(412), 1, aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2159), 1, + STATE(2199), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6968), 1, + STATE(2395), 1, + sym__literal, + STATE(7071), 1, sym_selected_expressions, ACTIONS(233), 2, anon_sym_PLUS, @@ -49714,7 +50387,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -49725,21 +50398,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -49763,7 +50435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [3324] = 30, + [3376] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -49784,23 +50456,25 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(1142), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6717), 1, + STATE(2395), 1, + sym__literal, + STATE(6183), 1, sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, @@ -49808,7 +50482,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -49819,21 +50493,115 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, + STATE(2324), 5, + sym_condition_expression, + sym_logical_expression, + sym_relational_expression, + sym_shift_expression, + sym_simple_expression, + ACTIONS(239), 8, + sym__ABS, + sym__AND, + sym__NAND, + sym__NOR, + sym__NOT, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(762), 8, + sym_NULL, + sym_string_literal, + sym_string_literal_std_logic, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + [3502] = 31, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(395), 1, + anon_sym_LPAREN, + ACTIONS(397), 1, + sym_condition_conversion, + ACTIONS(399), 1, + anon_sym_LT_LT, + ACTIONS(407), 1, + sym_NEW, + ACTIONS(417), 1, + sym_based_base, + ACTIONS(421), 1, + sym_bit_string_length, + ACTIONS(423), 1, + sym_bit_string_base, + STATE(608), 1, + sym_sign, + STATE(619), 1, + sym_unary_operator, + STATE(775), 1, + sym__direct_name, + STATE(1309), 1, + sym__abstract_literal, + STATE(1420), 1, + sym__expression, + STATE(1518), 1, + sym_based_literal, + STATE(2488), 1, + sym__primary, + STATE(2493), 1, + sym_bit_string_literal, + STATE(2503), 1, sym__literal, + STATE(5711), 1, + sym_waveform_element, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(415), 2, + sym_decimal_integer, + sym_decimal_float, + STATE(1343), 2, + sym__identifier, + sym__external_name, + ACTIONS(419), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(393), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1344), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(2487), 3, + sym_name, sym_allocator, sym_parenthesis_expression, - STATE(2253), 5, + ACTIONS(401), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -49848,7 +50616,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -49857,14 +50625,14 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [3448] = 30, + [3628] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, + ACTIONS(998), 1, sym_condition_conversion, ACTIONS(1062), 1, anon_sym_LPAREN, @@ -49880,54 +50648,55 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(1082), 1, sym_bit_string_base, - STATE(477), 1, - sym_sign, - STATE(529), 1, + STATE(491), 1, sym_unary_operator, - STATE(865), 1, + STATE(496), 1, + sym_sign, + STATE(882), 1, sym__direct_name, - STATE(2069), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(2290), 1, + STATE(2342), 1, sym_based_literal, - STATE(2352), 1, + STATE(2354), 1, sym__expression, - STATE(2618), 1, + STATE(2699), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2703), 1, sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(1915), 2, sym__identifier, sym__external_name, ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(393), 3, + STATE(394), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -49951,7 +50720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [3572] = 30, + [3754] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -49972,23 +50741,25 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(1142), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6520), 1, + STATE(2395), 1, + sym__literal, + STATE(7144), 1, sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, @@ -49996,32 +50767,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(394), 3, + STATE(395), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -50045,7 +50815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [3696] = 38, + [3880] = 38, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -50098,33 +50868,33 @@ static const uint16_t ts_small_parse_table[] = { sym_IS, ACTIONS(1092), 1, sym_PORT, - STATE(727), 1, + STATE(726), 1, sym_guard_condition, - STATE(745), 1, + STATE(739), 1, sym_generic_clause, - STATE(758), 1, + STATE(766), 1, sym_port_clause, - STATE(798), 1, + STATE(823), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(6040), 1, + STATE(6316), 1, sym_block_head, - STATE(6271), 1, + STATE(6597), 1, sym_concurrent_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(395), 3, + STATE(396), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -50147,7 +50917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [3836] = 30, + [4020] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -50168,23 +50938,25 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(1112), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(629), 1, sym_sign, - STATE(732), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(955), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1094), 1, sym_based_literal, - STATE(2091), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2094), 1, + STATE(2053), 1, sym_bit_string_literal, - STATE(2343), 1, + STATE(2389), 1, sym__expression, - STATE(7996), 1, + STATE(8215), 1, sym_file_logical_name, ACTIONS(233), 2, anon_sym_PLUS, @@ -50192,32 +50964,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(945), 2, sym__identifier, sym__external_name, ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(396), 3, + STATE(397), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -50241,177 +51012,83 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [3960] = 30, + [4146] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1117), 1, + sym_condition_conversion, + ACTIONS(1123), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1132), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1141), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1147), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1150), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(2272), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6569), 1, - sym_conditional_expression, - ACTIONS(233), 2, + STATE(2395), 1, + sym__literal, + ACTIONS(1120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1138), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1144), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(397), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(2350), 4, + STATE(2394), 3, sym_name, - sym__literal, sym_allocator, sym_parenthesis_expression, - STATE(2253), 5, - sym_condition_expression, - sym_logical_expression, - sym_relational_expression, - sym_shift_expression, - sym_simple_expression, - ACTIONS(239), 8, - sym__ABS, - sym__AND, - sym__NAND, - sym__NOR, - sym__NOT, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(762), 8, - sym_NULL, - sym_string_literal, - sym_string_literal_std_logic, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - [4084] = 30, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, - anon_sym_LPAREN, - ACTIONS(754), 1, - anon_sym_LT_LT, - ACTIONS(760), 1, - sym_NEW, - ACTIONS(768), 1, - sym_based_base, - ACTIONS(772), 1, - sym_bit_string_length, - ACTIONS(774), 1, - sym_bit_string_base, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, - sym_sign, - STATE(749), 1, - sym__direct_name, - STATE(1008), 1, - sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, - sym_based_literal, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, - sym__primary, - STATE(7327), 1, - sym_conditional_expression, - ACTIONS(233), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(766), 2, - sym_decimal_integer, - sym_decimal_float, - STATE(1016), 2, - sym__identifier, - sym__external_name, - ACTIONS(770), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(398), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(995), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(756), 4, + ACTIONS(1126), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(398), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_selected_expressions_repeat1, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, sym_simple_expression, - ACTIONS(239), 8, + ACTIONS(1129), 8, sym__ABS, sym__AND, sym__NAND, @@ -50420,7 +51097,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1135), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -50429,7 +51106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [4208] = 38, + [4270] = 38, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -50482,33 +51159,33 @@ static const uint16_t ts_small_parse_table[] = { sym_IS, ACTIONS(1092), 1, sym_PORT, - STATE(723), 1, + STATE(721), 1, sym_guard_condition, - STATE(745), 1, + STATE(739), 1, sym_generic_clause, - STATE(758), 1, + STATE(766), 1, sym_port_clause, - STATE(798), 1, + STATE(823), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(6070), 1, - sym_block_head, - STATE(6333), 1, + STATE(6568), 1, sym_concurrent_block, + STATE(6571), 1, + sym_block_head, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(399), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -50531,109 +51208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [4348] = 38, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(1084), 1, - anon_sym_LPAREN, - ACTIONS(1086), 1, - sym_BEGIN, - ACTIONS(1088), 1, - sym_GENERIC, - ACTIONS(1090), 1, - sym_IS, - ACTIONS(1092), 1, - sym_PORT, - STATE(721), 1, - sym_guard_condition, - STATE(745), 1, - sym_generic_clause, - STATE(758), 1, - sym_port_clause, - STATE(798), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - STATE(6106), 1, - sym_block_head, - STATE(6404), 1, - sym_concurrent_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(400), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [4488] = 30, + [4410] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -50654,23 +51229,25 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(1142), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6623), 1, + STATE(2395), 1, + sym__literal, + STATE(8019), 1, sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, @@ -50678,32 +51255,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(401), 3, + STATE(400), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -50727,82 +51303,84 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [4612] = 29, + [4536] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1114), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(1123), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1132), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1141), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1147), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1150), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2218), 1, + STATE(1142), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - ACTIONS(1120), 2, + STATE(2395), 1, + sym__literal, + STATE(6866), 1, + sym_conditional_expression, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1138), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1144), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(995), 3, + STATE(401), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1126), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(402), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_selected_expressions_repeat1, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, sym_simple_expression, - ACTIONS(1129), 8, + ACTIONS(239), 8, sym__ABS, sym__AND, sym__NAND, @@ -50811,7 +51389,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1135), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -50820,55 +51398,159 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [4734] = 30, + [4662] = 38, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, + sym_ALIAS, + ACTIONS(177), 1, + sym_ATTRIBUTE, + ACTIONS(181), 1, + sym_COMPONENT, + ACTIONS(183), 1, + sym_CONSTANT, + ACTIONS(185), 1, + sym_DISCONNECT, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(1084), 1, + anon_sym_LPAREN, + ACTIONS(1086), 1, + sym_BEGIN, + ACTIONS(1088), 1, + sym_GENERIC, + ACTIONS(1090), 1, + sym_IS, + ACTIONS(1092), 1, + sym_PORT, + STATE(723), 1, + sym_guard_condition, + STATE(739), 1, + sym_generic_clause, + STATE(766), 1, + sym_port_clause, + STATE(823), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + STATE(6235), 1, + sym_block_head, + STATE(6455), 1, + sym_concurrent_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(402), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [4802] = 31, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, + STATE(629), 1, sym_sign, - STATE(749), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1008), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1094), 1, sym_based_literal, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(6391), 1, - sym_conditional_expression, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2389), 1, + sym__expression, + STATE(8037), 1, + sym_file_logical_name, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -50876,21 +51558,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -50905,7 +51586,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -50914,7 +51595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [4858] = 30, + [4928] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -50935,23 +51616,25 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(1142), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6427), 1, + STATE(2395), 1, + sym__literal, + STATE(6394), 1, sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, @@ -50959,7 +51642,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -50970,21 +51653,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51008,7 +51690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [4982] = 30, + [5054] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -51029,23 +51711,25 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(1142), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(7050), 1, + STATE(2395), 1, + sym__literal, + STATE(6789), 1, sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, @@ -51053,7 +51737,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -51064,21 +51748,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51102,7 +51785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [5106] = 30, + [5180] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -51123,31 +51806,33 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(402), 1, - aux_sym_selected_expressions_repeat1, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2199), 1, + STATE(1142), 1, sym__expression, - STATE(2344), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, + STATE(2395), 1, + sym__literal, + STATE(6721), 1, + sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -51158,21 +51843,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51196,7 +51880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [5230] = 30, + [5306] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -51217,23 +51901,25 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(1142), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(6829), 1, + STATE(2395), 1, + sym__literal, + STATE(7389), 1, sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, @@ -51241,7 +51927,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -51252,21 +51938,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51290,7 +51975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [5354] = 38, + [5432] = 38, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -51343,33 +52028,33 @@ static const uint16_t ts_small_parse_table[] = { sym_IS, ACTIONS(1092), 1, sym_PORT, - STATE(722), 1, + STATE(727), 1, sym_guard_condition, - STATE(745), 1, + STATE(739), 1, sym_generic_clause, - STATE(758), 1, + STATE(766), 1, sym_port_clause, - STATE(798), 1, + STATE(823), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(6200), 1, - sym_concurrent_block, - STATE(6201), 1, + STATE(6273), 1, sym_block_head, + STATE(6524), 1, + sym_concurrent_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(408), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -51392,55 +52077,57 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [5494] = 30, + [5572] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(581), 1, + STATE(669), 1, sym_unary_operator, - STATE(582), 1, + STATE(675), 1, sym_sign, - STATE(732), 1, + STATE(749), 1, sym__direct_name, - STATE(955), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1141), 1, sym_based_literal, - STATE(2091), 1, - sym__primary, - STATE(2094), 1, - sym_bit_string_literal, - STATE(2343), 1, + STATE(1142), 1, sym__expression, - STATE(7833), 1, - sym_file_logical_name, + STATE(2387), 1, + sym_bit_string_literal, + STATE(2393), 1, + sym__primary, + STATE(2395), 1, + sym__literal, + STATE(6363), 1, + sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -51448,21 +52135,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51477,7 +52163,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -51486,55 +52172,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [5618] = 30, + [5698] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, - anon_sym_LPAREN, - ACTIONS(407), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(498), 1, - sym_sign, - STATE(503), 1, + STATE(669), 1, sym_unary_operator, - STATE(764), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(1379), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1415), 1, + STATE(1141), 1, sym_based_literal, - STATE(1416), 1, + STATE(1142), 1, sym__expression, - STATE(2446), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2451), 1, + STATE(2393), 1, sym__primary, - STATE(5687), 1, - sym_waveform_element, + STATE(2395), 1, + sym__literal, + STATE(6669), 1, + sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -51542,21 +52230,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1281), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51571,7 +52258,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -51580,7 +52267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [5742] = 30, + [5824] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -51601,23 +52288,25 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(1142), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(5978), 1, + STATE(2395), 1, + sym__literal, + STATE(6985), 1, sym_conditional_expression, ACTIONS(233), 2, anon_sym_PLUS, @@ -51625,7 +52314,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -51636,21 +52325,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51674,7 +52362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [5866] = 30, + [5950] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -51695,31 +52383,33 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(774), 1, sym_bit_string_base, - STATE(511), 1, + STATE(398), 1, + aux_sym_selected_expressions_repeat1, + STATE(669), 1, sym_unary_operator, - STATE(512), 1, + STATE(675), 1, sym_sign, STATE(749), 1, sym__direct_name, - STATE(1008), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1154), 1, - sym__expression, - STATE(1204), 1, + STATE(1141), 1, sym_based_literal, - STATE(2344), 1, + STATE(2224), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2393), 1, sym__primary, - STATE(7819), 1, - sym_conditional_expression, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1083), 2, sym__identifier, sym__external_name, ACTIONS(770), 3, @@ -51730,21 +52420,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51768,75 +52457,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [5990] = 29, + [6076] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, - sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(866), 1, sym_bit_string_base, - STATE(609), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, + sym_condition_conversion, + STATE(507), 1, sym_sign, - STATE(610), 1, - sym_unary_operator, - STATE(879), 1, + STATE(774), 1, sym__direct_name, - STATE(2180), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(2342), 1, + STATE(1428), 1, sym_based_literal, - STATE(2349), 1, + STATE(1478), 1, sym__expression, - STATE(2619), 1, + STATE(2519), 1, sym_bit_string_literal, - STATE(2665), 1, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(413), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1895), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(413), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51851,7 +52540,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -51860,53 +52549,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [6111] = 29, + [6197] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(872), 1, sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1157), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1173), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(476), 1, sym_sign, - STATE(732), 1, + STATE(483), 1, + sym_unary_operator, + STATE(769), 1, sym__direct_name, - STATE(955), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1438), 1, sym_based_literal, - STATE(2091), 1, + STATE(1666), 1, + sym__expression, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, - STATE(2094), 1, + STATE(2531), 1, sym_bit_string_literal, - STATE(2331), 1, - sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -51914,21 +52605,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -51943,7 +52633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -51952,7 +52642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [6232] = 29, + [6320] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -51973,29 +52663,31 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_base, ACTIONS(1175), 1, sym_condition_conversion, - STATE(462), 1, + STATE(456), 1, sym_sign, - STATE(463), 1, + STATE(457), 1, sym_unary_operator, - STATE(792), 1, + STATE(745), 1, sym__direct_name, - STATE(1430), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1679), 1, - sym__expression, - STATE(1784), 1, + STATE(1171), 1, sym_based_literal, - STATE(2473), 1, - sym_bit_string_literal, - STATE(2477), 1, + STATE(1215), 1, + sym__expression, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, + STATE(2337), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1043), 2, sym__identifier, sym__external_name, ACTIONS(930), 3, @@ -52006,21 +52698,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1555), 3, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52044,75 +52735,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [6353] = 29, + [6443] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(914), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(918), 1, + ACTIONS(1179), 1, + sym_condition_conversion, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(922), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(928), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(932), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(934), 1, + ACTIONS(1197), 1, sym_bit_string_base, - ACTIONS(1175), 1, - sym_condition_conversion, - STATE(462), 1, - sym_sign, - STATE(463), 1, + STATE(417), 1, sym_unary_operator, - STATE(792), 1, + STATE(817), 1, sym__direct_name, - STATE(1430), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(1752), 1, - sym__expression, - STATE(1784), 1, + STATE(1926), 1, sym_based_literal, - STATE(2473), 1, - sym_bit_string_literal, - STATE(2477), 1, + STATE(1946), 1, + sym__expression, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, + STATE(2678), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(926), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(930), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(416), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1555), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(920), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(416), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52127,7 +52818,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(924), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52136,75 +52827,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [6474] = 29, + [6564] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1179), 1, + sym_condition_conversion, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1197), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(416), 1, sym_sign, - STATE(732), 1, + STATE(817), 1, sym__direct_name, - STATE(955), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1926), 1, sym_based_literal, - STATE(2091), 1, + STATE(1944), 1, + sym__expression, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, - STATE(2094), 1, + STATE(2678), 1, sym_bit_string_literal, - STATE(2281), 1, - sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(417), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(930), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(417), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52219,7 +52910,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52228,75 +52919,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [6595] = 29, + [6685] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(914), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(918), 1, + ACTIONS(1201), 1, + sym_condition_conversion, + ACTIONS(1203), 1, anon_sym_LT_LT, - ACTIONS(922), 1, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(928), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(932), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(934), 1, + ACTIONS(1219), 1, sym_bit_string_base, - ACTIONS(1175), 1, - sym_condition_conversion, - STATE(462), 1, + STATE(419), 1, sym_sign, - STATE(463), 1, - sym_unary_operator, - STATE(792), 1, + STATE(825), 1, sym__direct_name, - STATE(1430), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(1753), 1, + STATE(2123), 1, sym__expression, - STATE(1784), 1, + STATE(2167), 1, sym_based_literal, - STATE(2473), 1, + STATE(2628), 1, sym_bit_string_literal, - STATE(2477), 1, + STATE(2631), 1, sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(926), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(930), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(418), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1555), 3, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(920), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(418), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52311,7 +53002,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(924), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52320,75 +53011,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [6716] = 29, + [6806] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(914), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(918), 1, + ACTIONS(1201), 1, + sym_condition_conversion, + ACTIONS(1203), 1, anon_sym_LT_LT, - ACTIONS(922), 1, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(928), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(932), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(934), 1, + ACTIONS(1219), 1, sym_bit_string_base, - ACTIONS(1175), 1, - sym_condition_conversion, - STATE(462), 1, - sym_sign, - STATE(463), 1, + STATE(418), 1, sym_unary_operator, - STATE(792), 1, + STATE(825), 1, sym__direct_name, - STATE(1430), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(1754), 1, + STATE(2121), 1, sym__expression, - STATE(1784), 1, + STATE(2167), 1, sym_based_literal, - STATE(2473), 1, + STATE(2628), 1, sym_bit_string_literal, - STATE(2477), 1, + STATE(2631), 1, sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(926), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(930), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(419), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1555), 3, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(920), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(419), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52403,7 +53094,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(924), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52412,50 +53103,52 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [6837] = 29, + [6927] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, + ACTIONS(732), 1, sym_condition_conversion, + ACTIONS(1094), 1, + anon_sym_LPAREN, ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1177), 1, - anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(471), 1, + STATE(629), 1, sym_sign, - STATE(473), 1, + STATE(638), 1, sym_unary_operator, - STATE(803), 1, + STATE(734), 1, sym__direct_name, - STATE(1434), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1767), 1, + STATE(1094), 1, sym_based_literal, - STATE(1822), 1, - sym__expression, - STATE(2513), 1, - sym_bit_string_literal, - STATE(2516), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2364), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(945), 2, sym__identifier, sym__external_name, ACTIONS(1108), 3, @@ -52466,21 +53159,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52495,7 +53187,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52504,59 +53196,65 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [6958] = 28, + [7050] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(1241), 1, sym_bit_string_base, - STATE(591), 1, + STATE(427), 1, sym_sign, - STATE(806), 1, + STATE(871), 1, sym__direct_name, - STATE(1862), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(2152), 1, + STATE(2391), 1, sym_based_literal, - STATE(2163), 1, + STATE(2414), 1, sym__expression, - STATE(2582), 1, - sym__primary, - STATE(2589), 1, + STATE(2691), 1, sym_bit_string_literal, + STATE(2726), 1, + sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1733), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, @@ -52566,12 +53264,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52586,7 +53279,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52595,74 +53288,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [7077] = 28, + [7171] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(918), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(922), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(928), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(932), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(934), 1, sym_bit_string_base, - ACTIONS(1211), 1, + ACTIONS(1175), 1, sym_condition_conversion, - STATE(423), 1, + STATE(456), 1, sym_sign, - STATE(741), 1, + STATE(457), 1, + sym_unary_operator, + STATE(745), 1, sym__direct_name, - STATE(1089), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1123), 1, + STATE(1171), 1, sym_based_literal, - STATE(1138), 1, + STATE(1218), 1, sym__expression, - STATE(2241), 1, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, - STATE(2245), 1, + STATE(2337), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(1043), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1029), 3, + STATE(422), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(422), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52677,7 +53372,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(924), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52686,74 +53381,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [7196] = 28, + [7294] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(918), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(922), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(928), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(932), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(934), 1, sym_bit_string_base, - ACTIONS(1211), 1, + ACTIONS(1175), 1, sym_condition_conversion, - STATE(422), 1, + STATE(456), 1, + sym_sign, + STATE(457), 1, sym_unary_operator, - STATE(741), 1, + STATE(745), 1, sym__direct_name, - STATE(1089), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1123), 1, + STATE(1171), 1, sym_based_literal, - STATE(1139), 1, + STATE(1220), 1, sym__expression, - STATE(2241), 1, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, - STATE(2245), 1, + STATE(2337), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(1043), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1029), 3, + STATE(423), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(423), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52768,7 +53465,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(924), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52777,53 +53474,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [7315] = 29, + [7417] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, + ACTIONS(1221), 1, + anon_sym_LPAREN, + ACTIONS(1223), 1, sym_condition_conversion, - ACTIONS(1096), 1, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(1177), 1, - anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(1241), 1, sym_bit_string_base, - STATE(471), 1, - sym_sign, - STATE(473), 1, + STATE(421), 1, sym_unary_operator, - STATE(803), 1, + STATE(427), 1, + sym_sign, + STATE(871), 1, sym__direct_name, - STATE(1434), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(1767), 1, - sym_based_literal, - STATE(1821), 1, + STATE(2363), 1, sym__expression, - STATE(2513), 1, + STATE(2391), 1, + sym_based_literal, + STATE(2691), 1, sym_bit_string_literal, - STATE(2516), 1, + STATE(2726), 1, sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -52831,21 +53530,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52860,7 +53558,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52869,75 +53567,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [7436] = 29, + [7540] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1177), 1, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(1245), 1, + anon_sym_LT_LT, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(471), 1, + STATE(438), 1, sym_sign, - STATE(473), 1, - sym_unary_operator, - STATE(803), 1, + STATE(870), 1, sym__direct_name, - STATE(1434), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(1767), 1, - sym_based_literal, - STATE(1799), 1, + STATE(2301), 1, sym__expression, - STATE(2513), 1, - sym_bit_string_literal, - STATE(2516), 1, + STATE(2304), 1, + sym_based_literal, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, + STATE(2698), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(425), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(930), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(425), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -52952,7 +53650,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -52961,53 +53659,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [7557] = 29, + [7661] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(912), 1, sym_bit_string_base, - ACTIONS(1211), 1, - sym_condition_conversion, - STATE(422), 1, - sym_unary_operator, - STATE(423), 1, + STATE(466), 1, sym_sign, - STATE(741), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(1089), 1, + STATE(1640), 1, + sym__expression, + STATE(2210), 1, sym__abstract_literal, - STATE(1123), 1, + STATE(2431), 1, sym_based_literal, - STATE(1157), 1, - sym__expression, - STATE(2241), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2245), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -53015,21 +53715,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1029), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53044,7 +53743,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53053,75 +53752,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [7678] = 29, + [7784] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1241), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(421), 1, sym_unary_operator, - STATE(847), 1, + STATE(871), 1, sym__direct_name, - STATE(1423), 1, - sym__expression, - STATE(2165), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(2391), 1, sym_based_literal, - STATE(2615), 1, + STATE(2416), 1, + sym__expression, + STATE(2691), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2726), 1, sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(427), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2071), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(427), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53136,7 +53835,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53145,53 +53844,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [7799] = 29, + [7905] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(976), 1, + sym_condition_conversion, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(1261), 1, sym_bit_string_base, - ACTIONS(1211), 1, - sym_condition_conversion, - STATE(422), 1, + STATE(425), 1, sym_unary_operator, - STATE(423), 1, + STATE(438), 1, sym_sign, - STATE(741), 1, + STATE(870), 1, sym__direct_name, - STATE(1089), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(1123), 1, - sym_based_literal, - STATE(1159), 1, + STATE(2294), 1, sym__expression, - STATE(2241), 1, + STATE(2304), 1, + sym_based_literal, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, - STATE(2245), 1, + STATE(2698), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -53199,21 +53900,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1029), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53228,7 +53928,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53237,53 +53937,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [7920] = 29, + [8028] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(231), 1, + sym_condition_conversion, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(774), 1, sym_bit_string_base, - ACTIONS(1211), 1, - sym_condition_conversion, - STATE(422), 1, + STATE(669), 1, sym_unary_operator, - STATE(423), 1, + STATE(675), 1, sym_sign, - STATE(741), 1, + STATE(749), 1, sym__direct_name, - STATE(1089), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1123), 1, + STATE(1141), 1, sym_based_literal, - STATE(1160), 1, + STATE(1200), 1, sym__expression, - STATE(2241), 1, - sym__primary, - STATE(2245), 1, + STATE(2387), 1, sym_bit_string_literal, + STATE(2393), 1, + sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -53291,21 +53993,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1029), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53320,7 +54021,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53329,75 +54030,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [8041] = 29, + [8151] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(257), 1, sym_bit_string_base, - ACTIONS(1215), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, sym_condition_conversion, - STATE(438), 1, + STATE(431), 1, sym_sign, - STATE(439), 1, - sym_unary_operator, - STATE(795), 1, + STATE(735), 1, sym__direct_name, - STATE(1400), 1, + STATE(937), 1, sym__abstract_literal, - STATE(1835), 1, + STATE(1018), 1, sym_based_literal, - STATE(1859), 1, + STATE(1038), 1, sym__expression, - STATE(2502), 1, + STATE(1945), 1, sym_bit_string_literal, - STATE(2503), 1, + STATE(1951), 1, sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(430), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1586), 3, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(430), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53412,7 +54113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53421,75 +54122,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [8162] = 29, + [8272] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(257), 1, sym_bit_string_base, - ACTIONS(1215), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, sym_condition_conversion, - STATE(438), 1, - sym_sign, - STATE(439), 1, + STATE(430), 1, sym_unary_operator, - STATE(795), 1, + STATE(735), 1, sym__direct_name, - STATE(1400), 1, + STATE(937), 1, sym__abstract_literal, - STATE(1835), 1, + STATE(1018), 1, sym_based_literal, - STATE(1838), 1, + STATE(1040), 1, sym__expression, - STATE(2502), 1, + STATE(1945), 1, sym_bit_string_literal, - STATE(2503), 1, + STATE(1951), 1, sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(431), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1586), 3, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(431), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53504,7 +54205,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53513,53 +54214,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [8283] = 29, + [8393] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(1241), 1, sym_bit_string_base, - ACTIONS(1215), 1, - sym_condition_conversion, - STATE(438), 1, - sym_sign, - STATE(439), 1, + STATE(421), 1, sym_unary_operator, - STATE(795), 1, + STATE(427), 1, + sym_sign, + STATE(871), 1, sym__direct_name, - STATE(1400), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(1835), 1, + STATE(2391), 1, sym_based_literal, - STATE(1864), 1, + STATE(2428), 1, sym__expression, - STATE(2502), 1, + STATE(2691), 1, sym_bit_string_literal, - STATE(2503), 1, + STATE(2726), 1, sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -53567,21 +54270,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1586), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53596,7 +54298,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53605,53 +54307,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [8404] = 29, + [8516] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(1241), 1, sym_bit_string_base, STATE(421), 1, sym_unary_operator, - STATE(591), 1, + STATE(427), 1, sym_sign, - STATE(806), 1, + STATE(871), 1, sym__direct_name, - STATE(1862), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(2152), 1, + STATE(2391), 1, sym_based_literal, - STATE(2179), 1, + STATE(2427), 1, sym__expression, - STATE(2582), 1, - sym__primary, - STATE(2589), 1, + STATE(2691), 1, sym_bit_string_literal, + STATE(2726), 1, + sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -53659,21 +54363,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1733), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53688,7 +54391,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53697,53 +54400,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [8525] = 29, + [8639] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, - sym_condition_conversion, - ACTIONS(1062), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(1241), 1, sym_bit_string_base, - STATE(477), 1, - sym_sign, - STATE(529), 1, + STATE(421), 1, sym_unary_operator, - STATE(865), 1, + STATE(427), 1, + sym_sign, + STATE(871), 1, sym__direct_name, - STATE(2069), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(2260), 1, - sym__expression, - STATE(2290), 1, + STATE(2391), 1, sym_based_literal, - STATE(2618), 1, + STATE(2425), 1, + sym__expression, + STATE(2691), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2726), 1, sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -53751,21 +54456,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53780,7 +54484,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53789,75 +54493,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [8646] = 29, + [8762] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, + ACTIONS(848), 1, sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1269), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1285), 1, sym_bit_string_base, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, + STATE(436), 1, sym_sign, - STATE(749), 1, + STATE(814), 1, sym__direct_name, - STATE(1008), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(1161), 1, - sym__expression, - STATE(1204), 1, + STATE(1932), 1, sym_based_literal, - STATE(2344), 1, + STATE(1984), 1, + sym__expression, + STATE(2644), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(435), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(995), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(435), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53872,7 +54576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53881,74 +54585,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [8767] = 28, + [8883] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(848), 1, + sym_condition_conversion, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(1269), 1, + anon_sym_LT_LT, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(1285), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, - sym_condition_conversion, - STATE(437), 1, - sym_sign, - STATE(736), 1, + STATE(435), 1, + sym_unary_operator, + STATE(814), 1, sym__direct_name, - STATE(935), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(1065), 1, - sym__expression, - STATE(1081), 1, + STATE(1932), 1, sym_based_literal, - STATE(1897), 1, + STATE(1985), 1, + sym__expression, + STATE(2644), 1, sym_bit_string_literal, - STATE(1903), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(979), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, STATE(436), 4, - sym_unary_operator, + sym_sign, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -53963,7 +54668,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -53972,74 +54677,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [8886] = 28, + [9004] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(1112), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, - sym_condition_conversion, - STATE(436), 1, + STATE(629), 1, + sym_sign, + STATE(638), 1, sym_unary_operator, - STATE(736), 1, + STATE(734), 1, sym__direct_name, - STATE(935), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1053), 1, - sym__expression, - STATE(1081), 1, + STATE(1094), 1, sym_based_literal, - STATE(1897), 1, - sym_bit_string_literal, - STATE(1903), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2291), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(979), 3, + STATE(437), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(437), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54054,7 +54761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54063,59 +54770,65 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9005] = 28, + [9127] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(976), 1, + sym_condition_conversion, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(1261), 1, sym_bit_string_base, - ACTIONS(1215), 1, - sym_condition_conversion, - STATE(439), 1, + STATE(425), 1, sym_unary_operator, - STATE(795), 1, + STATE(870), 1, sym__direct_name, - STATE(1400), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(1750), 1, + STATE(2300), 1, sym__expression, - STATE(1835), 1, + STATE(2304), 1, sym_based_literal, - STATE(2502), 1, - sym_bit_string_literal, - STATE(2503), 1, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, + STATE(2698), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1586), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, @@ -54125,12 +54838,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54145,7 +54853,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54154,74 +54862,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9124] = 28, + [9248] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(1112), 1, sym_bit_string_base, - ACTIONS(1215), 1, - sym_condition_conversion, - STATE(438), 1, + STATE(629), 1, sym_sign, - STATE(795), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1400), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1835), 1, + STATE(1094), 1, sym_based_literal, - STATE(1850), 1, - sym__expression, - STATE(2502), 1, - sym_bit_string_literal, - STATE(2503), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2360), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1586), 3, + STATE(439), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(439), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54236,7 +54946,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54245,53 +54955,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9243] = 29, + [9371] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, - sym_condition_conversion, - ACTIONS(1062), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, - anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(257), 1, sym_bit_string_base, - STATE(477), 1, - sym_sign, - STATE(529), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, + sym_condition_conversion, + STATE(430), 1, sym_unary_operator, - STATE(865), 1, + STATE(431), 1, + sym_sign, + STATE(735), 1, sym__direct_name, - STATE(2069), 1, + STATE(937), 1, sym__abstract_literal, - STATE(2255), 1, - sym__expression, - STATE(2290), 1, + STATE(1018), 1, sym_based_literal, - STATE(2618), 1, + STATE(1048), 1, + sym__expression, + STATE(1945), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(1951), 1, sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -54299,21 +55011,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54328,7 +55039,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54337,53 +55048,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9364] = 29, + [9494] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(609), 1, - sym_sign, - STATE(610), 1, + STATE(669), 1, sym_unary_operator, - STATE(879), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(2180), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(2238), 1, - sym__expression, - STATE(2342), 1, + STATE(1141), 1, sym_based_literal, - STATE(2619), 1, + STATE(1164), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(2665), 1, + STATE(2393), 1, sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -54391,21 +55104,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1895), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54420,7 +55132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54429,53 +55141,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9485] = 29, + [9617] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(231), 1, + sym_condition_conversion, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(774), 1, sym_bit_string_base, - ACTIONS(1215), 1, - sym_condition_conversion, - STATE(438), 1, - sym_sign, - STATE(439), 1, + STATE(669), 1, sym_unary_operator, - STATE(795), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(1400), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1835), 1, + STATE(1141), 1, sym_based_literal, - STATE(1851), 1, + STATE(1163), 1, sym__expression, - STATE(2502), 1, + STATE(2387), 1, sym_bit_string_literal, - STATE(2503), 1, + STATE(2393), 1, sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -54483,21 +55197,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1586), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54512,7 +55225,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54521,53 +55234,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9606] = 29, + [9740] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, + anon_sym_LT_LT, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(1307), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, - sym_condition_conversion, - STATE(436), 1, + STATE(710), 1, sym_unary_operator, - STATE(437), 1, + STATE(719), 1, sym_sign, - STATE(736), 1, + STATE(864), 1, sym__direct_name, - STATE(935), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(1045), 1, + STATE(2323), 1, sym__expression, - STATE(1081), 1, + STATE(2397), 1, sym_based_literal, - STATE(1897), 1, + STATE(2725), 1, sym_bit_string_literal, - STATE(1903), 1, + STATE(2740), 1, sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -54575,21 +55290,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(979), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54604,7 +55318,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54613,53 +55327,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9727] = 29, + [9863] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(511), 1, + STATE(425), 1, sym_unary_operator, - STATE(512), 1, + STATE(438), 1, sym_sign, - STATE(749), 1, + STATE(870), 1, sym__direct_name, - STATE(1008), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(1164), 1, + STATE(2298), 1, sym__expression, - STATE(1204), 1, + STATE(2304), 1, sym_based_literal, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, + STATE(2698), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -54667,21 +55383,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54696,7 +55411,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54705,53 +55420,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9848] = 29, + [9986] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, + STATE(629), 1, sym_sign, - STATE(749), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1008), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1170), 1, - sym__expression, - STATE(1204), 1, + STATE(1094), 1, sym_based_literal, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2075), 1, + sym_simple_expression, + STATE(2450), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -54759,26 +55478,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -54788,7 +55505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54797,53 +55514,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [9969] = 29, + [10111] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, - anon_sym_LPAREN, - ACTIONS(1221), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(1243), 1, + anon_sym_LPAREN, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(569), 1, - sym_sign, - STATE(570), 1, + STATE(425), 1, sym_unary_operator, - STATE(878), 1, + STATE(438), 1, + sym_sign, + STATE(870), 1, sym__direct_name, - STATE(1986), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(2269), 1, + STATE(2293), 1, sym__expression, - STATE(2330), 1, + STATE(2304), 1, sym_based_literal, - STATE(2611), 1, - sym_bit_string_literal, - STATE(2630), 1, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, + STATE(2698), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -54851,21 +55570,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2151), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54880,7 +55598,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54889,53 +55607,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [10090] = 29, + [10234] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1179), 1, + sym_condition_conversion, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1197), 1, sym_bit_string_base, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, + STATE(416), 1, sym_sign, - STATE(749), 1, + STATE(417), 1, + sym_unary_operator, + STATE(817), 1, sym__direct_name, - STATE(1008), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(1171), 1, - sym__expression, - STATE(1204), 1, + STATE(1926), 1, sym_based_literal, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(2056), 1, + sym__expression, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, + STATE(2678), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -54943,21 +55663,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -54972,7 +55691,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -54981,53 +55700,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [10211] = 29, + [10357] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(231), 1, + sym_condition_conversion, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(754), 1, + anon_sym_LT_LT, + ACTIONS(760), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(774), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, - sym_condition_conversion, - STATE(436), 1, + STATE(669), 1, sym_unary_operator, - STATE(437), 1, + STATE(675), 1, sym_sign, - STATE(736), 1, + STATE(749), 1, sym__direct_name, - STATE(935), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1044), 1, - sym__expression, - STATE(1081), 1, + STATE(1141), 1, sym_based_literal, - STATE(1897), 1, + STATE(1161), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(1903), 1, + STATE(2393), 1, sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -55035,21 +55756,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(979), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55064,7 +55784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55073,74 +55793,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [10332] = 28, + [10480] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, - anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(257), 1, sym_bit_string_base, - STATE(450), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, + sym_condition_conversion, + STATE(430), 1, + sym_unary_operator, + STATE(431), 1, sym_sign, - STATE(770), 1, + STATE(735), 1, sym__direct_name, - STATE(1330), 1, + STATE(937), 1, sym__abstract_literal, - STATE(1417), 1, + STATE(1018), 1, sym_based_literal, - STATE(1435), 1, + STATE(1053), 1, sym__expression, - STATE(2415), 1, + STATE(1945), 1, sym_bit_string_literal, - STATE(2434), 1, + STATE(1951), 1, sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1384), 3, + STATE(449), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(449), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55155,7 +55877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55164,74 +55886,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [10451] = 28, + [10603] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, - anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(257), 1, sym_bit_string_base, - STATE(449), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, + sym_condition_conversion, + STATE(430), 1, sym_unary_operator, - STATE(770), 1, + STATE(431), 1, + sym_sign, + STATE(735), 1, sym__direct_name, - STATE(1330), 1, + STATE(937), 1, sym__abstract_literal, - STATE(1417), 1, + STATE(1018), 1, sym_based_literal, - STATE(1436), 1, + STATE(1054), 1, sym__expression, - STATE(2415), 1, + STATE(1945), 1, sym_bit_string_literal, - STATE(2434), 1, + STATE(1951), 1, sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1384), 3, + STATE(450), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(450), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55246,7 +55970,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55255,53 +55979,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [10570] = 29, + [10726] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(848), 1, + sym_condition_conversion, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(1269), 1, + anon_sym_LT_LT, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(1285), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, - sym_condition_conversion, - STATE(436), 1, + STATE(435), 1, sym_unary_operator, - STATE(437), 1, + STATE(436), 1, sym_sign, - STATE(736), 1, + STATE(814), 1, sym__direct_name, - STATE(935), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(1040), 1, - sym__expression, - STATE(1081), 1, + STATE(1932), 1, sym_based_literal, - STATE(1897), 1, + STATE(2037), 1, + sym__expression, + STATE(2644), 1, sym_bit_string_literal, - STATE(1903), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -55309,21 +56035,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(979), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55338,7 +56063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55347,53 +56072,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [10691] = 29, + [10849] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(848), 1, + sym_condition_conversion, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(1269), 1, anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(1285), 1, sym_bit_string_base, - ACTIONS(1215), 1, - sym_condition_conversion, - STATE(438), 1, - sym_sign, - STATE(439), 1, + STATE(435), 1, sym_unary_operator, - STATE(795), 1, + STATE(436), 1, + sym_sign, + STATE(814), 1, sym__direct_name, - STATE(1400), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(1636), 1, - sym__expression, - STATE(1835), 1, + STATE(1932), 1, sym_based_literal, - STATE(2502), 1, + STATE(2038), 1, + sym__expression, + STATE(2644), 1, sym_bit_string_literal, - STATE(2503), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -55401,21 +56128,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1586), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55430,7 +56156,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55439,74 +56165,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [10812] = 28, + [10972] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, - anon_sym_LPAREN, - ACTIONS(1263), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(1243), 1, + anon_sym_LPAREN, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(472), 1, + STATE(425), 1, + sym_unary_operator, + STATE(438), 1, sym_sign, - STATE(827), 1, + STATE(870), 1, sym__direct_name, - STATE(1761), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(2126), 1, - sym__expression, - STATE(2141), 1, + STATE(2304), 1, sym_based_literal, - STATE(2533), 1, - sym_bit_string_literal, - STATE(2598), 1, + STATE(2358), 1, + sym__expression, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, + STATE(2698), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1736), 3, + STATE(453), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(453), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55521,7 +56249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55530,53 +56258,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [10931] = 29, + [11095] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, - sym_condition_conversion, - ACTIONS(1062), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1311), 1, + sym_condition_conversion, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(477), 1, - sym_sign, - STATE(529), 1, + STATE(626), 1, sym_unary_operator, + STATE(627), 1, + sym_sign, STATE(865), 1, sym__direct_name, - STATE(2069), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(2254), 1, - sym__expression, - STATE(2290), 1, + STATE(2326), 1, sym_based_literal, - STATE(2618), 1, + STATE(2357), 1, + sym__expression, + STATE(2756), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2759), 1, sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -55584,21 +56314,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55613,7 +56342,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55622,53 +56351,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [11052] = 29, + [11218] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(914), 1, + ACTIONS(848), 1, + sym_condition_conversion, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(918), 1, + ACTIONS(1269), 1, anon_sym_LT_LT, - ACTIONS(922), 1, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(928), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(932), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(934), 1, + ACTIONS(1285), 1, sym_bit_string_base, - ACTIONS(1175), 1, - sym_condition_conversion, - STATE(462), 1, - sym_sign, - STATE(463), 1, + STATE(435), 1, sym_unary_operator, - STATE(792), 1, + STATE(436), 1, + sym_sign, + STATE(814), 1, sym__direct_name, - STATE(1430), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(1784), 1, + STATE(1932), 1, sym_based_literal, - STATE(1810), 1, + STATE(1971), 1, sym__expression, - STATE(2473), 1, + STATE(2644), 1, sym_bit_string_literal, - STATE(2477), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(926), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(930), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -55676,21 +56407,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1555), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(920), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55705,7 +56435,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(924), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55714,7 +56444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [11173] = 29, + [11341] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -55735,54 +56465,54 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_base, ACTIONS(1175), 1, sym_condition_conversion, - STATE(462), 1, - sym_sign, - STATE(463), 1, + STATE(457), 1, sym_unary_operator, - STATE(792), 1, + STATE(745), 1, sym__direct_name, - STATE(1430), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1784), 1, + STATE(1171), 1, sym_based_literal, - STATE(1807), 1, + STATE(1232), 1, sym__expression, - STATE(2473), 1, - sym_bit_string_literal, - STATE(2477), 1, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, + STATE(2337), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1043), 2, sym__identifier, sym__external_name, ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(456), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1555), 3, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(456), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55806,7 +56536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [11294] = 29, + [11462] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -55827,54 +56557,54 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_base, ACTIONS(1175), 1, sym_condition_conversion, - STATE(462), 1, + STATE(456), 1, sym_sign, - STATE(463), 1, - sym_unary_operator, - STATE(792), 1, + STATE(745), 1, sym__direct_name, - STATE(1430), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1784), 1, - sym_based_literal, - STATE(1803), 1, + STATE(1127), 1, sym__expression, - STATE(2473), 1, - sym_bit_string_literal, - STATE(2477), 1, + STATE(1171), 1, + sym_based_literal, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, + STATE(2337), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1043), 2, sym__identifier, sym__external_name, ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(457), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1555), 3, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(457), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55898,53 +56628,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [11415] = 29, + [11583] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, - sym_condition_conversion, - ACTIONS(1062), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1201), 1, + sym_condition_conversion, + ACTIONS(1203), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(1219), 1, sym_bit_string_base, - STATE(477), 1, - sym_sign, - STATE(529), 1, + STATE(418), 1, sym_unary_operator, - STATE(865), 1, + STATE(419), 1, + sym_sign, + STATE(825), 1, sym__direct_name, - STATE(2069), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(2290), 1, - sym_based_literal, - STATE(2302), 1, + STATE(2109), 1, sym__expression, - STATE(2618), 1, + STATE(2167), 1, + sym_based_literal, + STATE(2628), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2631), 1, sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -55952,21 +56684,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -55981,7 +56712,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -55990,53 +56721,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [11536] = 29, + [11706] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(421), 1, - sym_unary_operator, - STATE(591), 1, + STATE(466), 1, sym_sign, - STATE(806), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(1862), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(2152), 1, - sym_based_literal, - STATE(2182), 1, + STATE(2405), 1, sym__expression, - STATE(2582), 1, + STATE(2431), 1, + sym_based_literal, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2589), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -56044,21 +56777,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1733), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56073,7 +56805,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56082,53 +56814,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [11657] = 29, + [11829] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(534), 1, + STATE(466), 1, sym_sign, - STATE(537), 1, + STATE(468), 1, sym_unary_operator, - STATE(847), 1, + STATE(845), 1, sym__direct_name, - STATE(2165), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(2303), 1, - sym_based_literal, - STATE(2307), 1, + STATE(2406), 1, sym__expression, - STATE(2615), 1, - sym_bit_string_literal, - STATE(2627), 1, + STATE(2431), 1, + sym_based_literal, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, + STATE(2768), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -56136,21 +56870,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56165,7 +56898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56174,53 +56907,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [11778] = 29, + [11952] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(892), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(900), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(906), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(910), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(912), 1, + ACTIONS(1112), 1, sym_bit_string_base, - ACTIONS(1215), 1, - sym_condition_conversion, - STATE(438), 1, + STATE(629), 1, sym_sign, - STATE(439), 1, + STATE(638), 1, sym_unary_operator, - STATE(795), 1, + STATE(734), 1, sym__direct_name, - STATE(1400), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1643), 1, - sym__expression, - STATE(1835), 1, + STATE(1094), 1, sym_based_literal, - STATE(2502), 1, - sym_bit_string_literal, - STATE(2503), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2365), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(904), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -56228,21 +56963,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1586), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56257,7 +56991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(902), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56266,74 +57000,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [11899] = 28, + [12075] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(914), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(918), 1, + ACTIONS(1201), 1, + sym_condition_conversion, + ACTIONS(1203), 1, anon_sym_LT_LT, - ACTIONS(922), 1, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(928), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(932), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(934), 1, + ACTIONS(1219), 1, sym_bit_string_base, - ACTIONS(1175), 1, - sym_condition_conversion, - STATE(463), 1, + STATE(418), 1, sym_unary_operator, - STATE(792), 1, + STATE(419), 1, + sym_sign, + STATE(825), 1, sym__direct_name, - STATE(1430), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(1784), 1, - sym_based_literal, - STATE(1802), 1, + STATE(2099), 1, sym__expression, - STATE(2473), 1, + STATE(2167), 1, + sym_based_literal, + STATE(2628), 1, sym_bit_string_literal, - STATE(2477), 1, + STATE(2631), 1, sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(926), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(930), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1555), 3, + STATE(462), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(920), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(462), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56348,7 +57084,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(924), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56357,74 +57093,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12018] = 28, + [12198] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(914), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(918), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(922), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(928), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(932), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(934), 1, + ACTIONS(912), 1, sym_bit_string_base, - ACTIONS(1175), 1, - sym_condition_conversion, - STATE(462), 1, + STATE(466), 1, sym_sign, - STATE(792), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(1430), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(1784), 1, - sym_based_literal, - STATE(1801), 1, + STATE(2410), 1, sym__expression, - STATE(2473), 1, - sym_bit_string_literal, - STATE(2477), 1, + STATE(2431), 1, + sym_based_literal, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, + STATE(2768), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(926), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1552), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(930), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1555), 3, + STATE(463), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(920), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(463), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2480), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2524), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56439,7 +57177,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(924), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56448,53 +57186,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12137] = 29, + [12321] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, + ACTIONS(1199), 1, + anon_sym_LPAREN, + ACTIONS(1201), 1, sym_condition_conversion, - ACTIONS(1096), 1, + ACTIONS(1203), 1, anon_sym_LT_LT, - ACTIONS(1177), 1, - anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(1219), 1, sym_bit_string_base, - STATE(471), 1, - sym_sign, - STATE(473), 1, + STATE(418), 1, sym_unary_operator, - STATE(803), 1, + STATE(419), 1, + sym_sign, + STATE(825), 1, sym__direct_name, - STATE(1434), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(1767), 1, - sym_based_literal, - STATE(1848), 1, + STATE(2098), 1, sym__expression, - STATE(2513), 1, + STATE(2167), 1, + sym_based_literal, + STATE(2628), 1, sym_bit_string_literal, - STATE(2516), 1, + STATE(2631), 1, sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -56502,21 +57242,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56531,7 +57270,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56540,53 +57279,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12258] = 29, + [12444] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, - sym_condition_conversion, - ACTIONS(1096), 1, - anon_sym_LT_LT, ACTIONS(1177), 1, anon_sym_LPAREN, ACTIONS(1179), 1, - sym_NEW, + sym_condition_conversion, + ACTIONS(1181), 1, + anon_sym_LT_LT, ACTIONS(1185), 1, + sym_NEW, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(1197), 1, sym_bit_string_base, - STATE(471), 1, + STATE(416), 1, sym_sign, - STATE(473), 1, + STATE(417), 1, sym_unary_operator, - STATE(803), 1, + STATE(817), 1, sym__direct_name, - STATE(1434), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(1767), 1, + STATE(1926), 1, sym_based_literal, - STATE(1832), 1, + STATE(1958), 1, sym__expression, - STATE(2513), 1, - sym_bit_string_literal, - STATE(2516), 1, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, + STATE(2678), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -56594,21 +57335,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56623,7 +57363,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56632,7 +57372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12379] = 29, + [12567] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -56641,6 +57381,8 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(892), 1, anon_sym_LPAREN, + ACTIONS(894), 1, + sym_condition_conversion, ACTIONS(896), 1, anon_sym_LT_LT, ACTIONS(900), 1, @@ -56651,56 +57393,54 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(912), 1, sym_bit_string_base, - ACTIONS(1215), 1, - sym_condition_conversion, - STATE(438), 1, - sym_sign, - STATE(439), 1, + STATE(468), 1, sym_unary_operator, - STATE(795), 1, + STATE(845), 1, sym__direct_name, - STATE(1400), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(1652), 1, + STATE(2417), 1, sym__expression, - STATE(1835), 1, + STATE(2431), 1, sym_based_literal, - STATE(2502), 1, - sym_bit_string_literal, - STATE(2503), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, + STATE(2768), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1597), 2, + STATE(2020), 2, sym__identifier, sym__external_name, ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(466), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1586), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(898), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2506), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2496), 5, + STATE(466), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56724,53 +57464,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12500] = 29, + [12688] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, + ACTIONS(892), 1, + anon_sym_LPAREN, + ACTIONS(894), 1, sym_condition_conversion, - ACTIONS(1096), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1177), 1, - anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(471), 1, + STATE(466), 1, sym_sign, - STATE(473), 1, + STATE(468), 1, sym_unary_operator, - STATE(803), 1, + STATE(845), 1, sym__direct_name, - STATE(1434), 1, + STATE(1921), 1, + sym__expression, + STATE(2210), 1, sym__abstract_literal, - STATE(1767), 1, + STATE(2431), 1, sym_based_literal, - STATE(1792), 1, - sym__expression, - STATE(2513), 1, - sym_bit_string_literal, - STATE(2516), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, + STATE(2768), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -56778,21 +57520,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56807,7 +57548,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56816,75 +57557,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12621] = 29, + [12811] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(449), 1, - sym_unary_operator, - STATE(450), 1, + STATE(466), 1, sym_sign, - STATE(770), 1, + STATE(845), 1, sym__direct_name, - STATE(1330), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(1417), 1, - sym_based_literal, - STATE(1438), 1, + STATE(2418), 1, sym__expression, - STATE(2415), 1, - sym_bit_string_literal, - STATE(2434), 1, + STATE(2431), 1, + sym_based_literal, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, + STATE(2768), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(468), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1384), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(468), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56899,7 +57640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -56908,75 +57649,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12742] = 29, + [12932] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(1331), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, + ACTIONS(1333), 1, + sym_condition_conversion, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(1351), 1, sym_bit_string_base, - STATE(449), 1, - sym_unary_operator, - STATE(450), 1, + STATE(470), 1, sym_sign, - STATE(770), 1, + STATE(813), 1, sym__direct_name, - STATE(1330), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(1417), 1, + STATE(2227), 1, sym_based_literal, - STATE(1443), 1, + STATE(2234), 1, sym__expression, - STATE(2415), 1, + STATE(2616), 1, sym_bit_string_literal, - STATE(2434), 1, + STATE(2620), 1, sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(469), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1384), 3, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(469), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -56991,7 +57732,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57000,75 +57741,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12863] = 29, + [13053] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(1331), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, + ACTIONS(1333), 1, + sym_condition_conversion, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(1351), 1, sym_bit_string_base, - STATE(449), 1, + STATE(469), 1, sym_unary_operator, - STATE(450), 1, - sym_sign, - STATE(770), 1, + STATE(813), 1, sym__direct_name, - STATE(1330), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(1417), 1, + STATE(2227), 1, sym_based_literal, - STATE(1444), 1, + STATE(2237), 1, sym__expression, - STATE(2415), 1, + STATE(2616), 1, sym_bit_string_literal, - STATE(2434), 1, + STATE(2620), 1, sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(470), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1384), 3, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(470), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57083,7 +57824,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57092,74 +57833,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [12984] = 28, + [13174] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, + ACTIONS(1331), 1, + anon_sym_LPAREN, + ACTIONS(1333), 1, sym_condition_conversion, - ACTIONS(1096), 1, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(1177), 1, - anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(1351), 1, sym_bit_string_base, - STATE(473), 1, + STATE(469), 1, sym_unary_operator, - STATE(803), 1, + STATE(470), 1, + sym_sign, + STATE(813), 1, sym__direct_name, - STATE(1434), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(1767), 1, + STATE(2227), 1, sym_based_literal, - STATE(1783), 1, + STATE(2242), 1, sym__expression, - STATE(2513), 1, + STATE(2616), 1, sym_bit_string_literal, - STATE(2516), 1, + STATE(2620), 1, sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(930), 3, + STATE(471), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(471), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57174,7 +57917,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57183,74 +57926,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [13103] = 28, + [13297] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, + ACTIONS(1331), 1, anon_sym_LPAREN, - ACTIONS(1263), 1, + ACTIONS(1333), 1, sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(1351), 1, sym_bit_string_base, - STATE(453), 1, + STATE(469), 1, sym_unary_operator, - STATE(827), 1, + STATE(470), 1, + sym_sign, + STATE(813), 1, sym__direct_name, - STATE(1761), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(2125), 1, - sym__expression, - STATE(2141), 1, + STATE(2227), 1, sym_based_literal, - STATE(2533), 1, + STATE(2247), 1, + sym__expression, + STATE(2616), 1, sym_bit_string_literal, - STATE(2598), 1, + STATE(2620), 1, sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1736), 3, + STATE(472), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(472), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57265,7 +58010,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57274,74 +58019,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [13222] = 28, + [13420] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, + ACTIONS(872), 1, sym_condition_conversion, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1177), 1, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(1157), 1, + anon_sym_LT_LT, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(1173), 1, sym_bit_string_base, - STATE(471), 1, + STATE(476), 1, sym_sign, - STATE(803), 1, + STATE(483), 1, + sym_unary_operator, + STATE(769), 1, sym__direct_name, - STATE(1434), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1767), 1, - sym_based_literal, - STATE(1782), 1, + STATE(1421), 1, sym__expression, - STATE(2513), 1, - sym_bit_string_literal, - STATE(2516), 1, + STATE(1438), 1, + sym_based_literal, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, + STATE(2531), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(930), 3, + STATE(473), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(473), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57356,7 +58103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57365,74 +58112,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [13341] = 28, + [13543] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(872), 1, + sym_condition_conversion, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(1157), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(1173), 1, sym_bit_string_base, - ACTIONS(1283), 1, - sym_condition_conversion, - STATE(475), 1, + STATE(476), 1, sym_sign, - STATE(755), 1, + STATE(483), 1, + sym_unary_operator, + STATE(769), 1, sym__direct_name, - STATE(1184), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1217), 1, - sym_based_literal, - STATE(1255), 1, + STATE(1422), 1, sym__expression, - STATE(2391), 1, + STATE(1438), 1, + sym_based_literal, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, - STATE(2393), 1, + STATE(2531), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1188), 3, + STATE(474), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(474), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57447,7 +58196,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57456,74 +58205,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [13460] = 28, + [13666] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(1331), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(1333), 1, + sym_condition_conversion, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(1351), 1, sym_bit_string_base, - ACTIONS(1283), 1, - sym_condition_conversion, - STATE(474), 1, + STATE(469), 1, sym_unary_operator, - STATE(755), 1, + STATE(470), 1, + sym_sign, + STATE(813), 1, sym__direct_name, - STATE(1184), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(1217), 1, + STATE(2227), 1, sym_based_literal, - STATE(1258), 1, + STATE(2249), 1, sym__expression, - STATE(2391), 1, - sym__primary, - STATE(2393), 1, + STATE(2616), 1, sym_bit_string_literal, + STATE(2620), 1, + sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1188), 3, + STATE(475), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(475), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57538,7 +58289,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57547,75 +58298,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [13579] = 29, + [13789] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1048), 1, + ACTIONS(872), 1, sym_condition_conversion, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1177), 1, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(1157), 1, + anon_sym_LT_LT, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(1173), 1, sym_bit_string_base, - STATE(471), 1, - sym_sign, - STATE(473), 1, + STATE(483), 1, sym_unary_operator, - STATE(803), 1, + STATE(769), 1, sym__direct_name, - STATE(1434), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1767), 1, - sym_based_literal, - STATE(1771), 1, + STATE(1424), 1, sym__expression, - STATE(2513), 1, - sym_bit_string_literal, - STATE(2516), 1, + STATE(1438), 1, + sym_based_literal, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, + STATE(2531), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(476), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(930), 3, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2478), 5, + STATE(476), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57630,7 +58381,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57639,74 +58390,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [13700] = 28, + [13910] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1062), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(529), 1, + STATE(629), 1, + sym_sign, + STATE(638), 1, sym_unary_operator, - STATE(865), 1, + STATE(734), 1, sym__direct_name, - STATE(2069), 1, + STATE(971), 1, sym__abstract_literal, - STATE(2272), 1, - sym__expression, - STATE(2290), 1, + STATE(1094), 1, sym_based_literal, - STATE(2618), 1, - sym_bit_string_literal, - STATE(2623), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2348), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1910), 3, + STATE(477), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(477), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57721,7 +58474,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57730,53 +58483,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [13819] = 29, + [14033] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1355), 1, + sym_condition_conversion, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1373), 1, sym_bit_string_base, - STATE(534), 1, + STATE(667), 1, sym_sign, - STATE(537), 1, + STATE(668), 1, sym_unary_operator, - STATE(847), 1, + STATE(784), 1, sym__direct_name, - STATE(2153), 1, - sym__expression, - STATE(2165), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(1699), 1, sym_based_literal, - STATE(2615), 1, + STATE(1817), 1, + sym__expression, + STATE(2543), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2548), 1, sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -57784,21 +58539,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57813,7 +58567,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57822,53 +58576,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [13940] = 29, + [14156] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(890), 1, sym_bit_string_base, - STATE(534), 1, + ACTIONS(1375), 1, + sym_condition_conversion, + STATE(593), 1, sym_sign, - STATE(537), 1, + STATE(598), 1, sym_unary_operator, - STATE(847), 1, + STATE(743), 1, sym__direct_name, - STATE(2165), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(1128), 1, sym_based_literal, - STATE(2311), 1, + STATE(1178), 1, sym__expression, - STATE(2615), 1, - sym_bit_string_literal, - STATE(2627), 1, + STATE(2310), 1, sym__primary, + STATE(2351), 1, + sym_bit_string_literal, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -57876,21 +58632,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57905,7 +58660,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -57914,53 +58669,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [14061] = 29, + [14279] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(890), 1, sym_bit_string_base, - ACTIONS(1283), 1, + ACTIONS(1375), 1, sym_condition_conversion, - STATE(474), 1, - sym_unary_operator, - STATE(475), 1, + STATE(593), 1, sym_sign, - STATE(755), 1, + STATE(598), 1, + sym_unary_operator, + STATE(743), 1, sym__direct_name, - STATE(1184), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(1217), 1, + STATE(1128), 1, sym_based_literal, - STATE(1369), 1, + STATE(1179), 1, sym__expression, - STATE(2391), 1, + STATE(2310), 1, sym__primary, - STATE(2393), 1, + STATE(2351), 1, sym_bit_string_literal, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -57968,21 +58725,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1188), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -57997,7 +58753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58006,53 +58762,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [14182] = 29, + [14402] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(890), 1, sym_bit_string_base, - STATE(534), 1, + ACTIONS(1375), 1, + sym_condition_conversion, + STATE(593), 1, sym_sign, - STATE(537), 1, + STATE(598), 1, sym_unary_operator, - STATE(847), 1, + STATE(743), 1, sym__direct_name, - STATE(2165), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(2267), 1, - sym__expression, - STATE(2303), 1, + STATE(1128), 1, sym_based_literal, - STATE(2615), 1, - sym_bit_string_literal, - STATE(2627), 1, + STATE(1185), 1, + sym__expression, + STATE(2310), 1, sym__primary, + STATE(2351), 1, + sym_bit_string_literal, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -58060,21 +58818,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58089,7 +58846,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58098,53 +58855,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [14303] = 29, + [14525] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, - sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(890), 1, sym_bit_string_base, - STATE(487), 1, + ACTIONS(1375), 1, + sym_condition_conversion, + STATE(593), 1, sym_sign, - STATE(489), 1, + STATE(598), 1, sym_unary_operator, - STATE(767), 1, + STATE(743), 1, sym__direct_name, - STATE(1239), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(1437), 1, - sym__expression, - STATE(1513), 1, + STATE(1128), 1, sym_based_literal, - STATE(2410), 1, - sym_bit_string_literal, - STATE(2447), 1, + STATE(1206), 1, + sym__expression, + STATE(2310), 1, sym__primary, + STATE(2351), 1, + sym_bit_string_literal, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -58152,21 +58911,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1222), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58181,7 +58939,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58190,75 +58948,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [14424] = 29, + [14648] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, + ACTIONS(872), 1, sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1157), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(1173), 1, sym_bit_string_base, - STATE(487), 1, + STATE(476), 1, sym_sign, - STATE(489), 1, - sym_unary_operator, - STATE(767), 1, + STATE(769), 1, sym__direct_name, - STATE(1239), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1439), 1, + STATE(1426), 1, sym__expression, - STATE(1513), 1, + STATE(1438), 1, sym_based_literal, - STATE(2410), 1, - sym_bit_string_literal, - STATE(2447), 1, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, + STATE(2531), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(483), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1222), 3, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(483), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58273,7 +59031,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58282,53 +59040,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [14545] = 29, + [14769] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, + ACTIONS(872), 1, sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1157), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(1173), 1, sym_bit_string_base, - STATE(487), 1, + STATE(476), 1, sym_sign, - STATE(489), 1, + STATE(483), 1, sym_unary_operator, - STATE(767), 1, + STATE(769), 1, sym__direct_name, - STATE(1239), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1469), 1, - sym__expression, - STATE(1513), 1, + STATE(1438), 1, sym_based_literal, - STATE(2410), 1, - sym_bit_string_literal, - STATE(2447), 1, + STATE(1451), 1, + sym__expression, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, + STATE(2531), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -58336,21 +59096,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1222), 3, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58365,7 +59124,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58374,53 +59133,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [14666] = 29, + [14892] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(994), 1, sym_bit_string_base, - ACTIONS(1283), 1, + ACTIONS(1377), 1, sym_condition_conversion, - STATE(474), 1, - sym_unary_operator, - STATE(475), 1, + STATE(511), 1, sym_sign, - STATE(755), 1, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1184), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(1217), 1, + STATE(1780), 1, sym_based_literal, - STATE(1352), 1, + STATE(1823), 1, sym__expression, - STATE(2391), 1, + STATE(2594), 1, sym__primary, - STATE(2393), 1, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -58428,21 +59189,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1188), 3, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58457,7 +59217,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58466,53 +59226,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [14787] = 29, + [15015] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(872), 1, + sym_condition_conversion, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(1157), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(1173), 1, sym_bit_string_base, - ACTIONS(1283), 1, - sym_condition_conversion, - STATE(474), 1, - sym_unary_operator, - STATE(475), 1, + STATE(476), 1, sym_sign, - STATE(755), 1, + STATE(483), 1, + sym_unary_operator, + STATE(769), 1, sym__direct_name, - STATE(1184), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1217), 1, + STATE(1438), 1, sym_based_literal, - STATE(1350), 1, + STATE(1452), 1, sym__expression, - STATE(2391), 1, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, - STATE(2393), 1, + STATE(2531), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -58520,21 +59282,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1188), 3, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58549,7 +59310,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58558,74 +59319,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [14908] = 28, + [15138] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, + ACTIONS(872), 1, sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1157), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(1173), 1, sym_bit_string_base, - STATE(489), 1, + STATE(476), 1, + sym_sign, + STATE(483), 1, sym_unary_operator, - STATE(767), 1, + STATE(769), 1, sym__direct_name, - STATE(1239), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1470), 1, - sym__expression, - STATE(1513), 1, + STATE(1438), 1, sym_based_literal, - STATE(2410), 1, - sym_bit_string_literal, - STATE(2447), 1, + STATE(1453), 1, + sym__expression, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, + STATE(2531), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1222), 3, + STATE(487), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(487), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58640,7 +59403,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58649,53 +59412,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15027] = 29, + [15261] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(994), 1, sym_bit_string_base, - ACTIONS(1283), 1, + ACTIONS(1377), 1, sym_condition_conversion, - STATE(474), 1, - sym_unary_operator, - STATE(475), 1, + STATE(511), 1, sym_sign, - STATE(755), 1, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1184), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(1217), 1, + STATE(1780), 1, sym_based_literal, - STATE(1268), 1, + STATE(1822), 1, sym__expression, - STATE(2391), 1, + STATE(2594), 1, sym__primary, - STATE(2393), 1, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -58703,21 +59468,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1188), 3, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58732,7 +59496,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58741,74 +59505,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15148] = 28, + [15384] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, + ACTIONS(872), 1, sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(1155), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1157), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(1173), 1, sym_bit_string_base, - STATE(487), 1, + STATE(476), 1, sym_sign, - STATE(767), 1, + STATE(483), 1, + sym_unary_operator, + STATE(769), 1, sym__direct_name, - STATE(1239), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1471), 1, - sym__expression, - STATE(1513), 1, + STATE(1438), 1, sym_based_literal, - STATE(2410), 1, - sym_bit_string_literal, - STATE(2447), 1, + STATE(1474), 1, + sym__expression, + STATE(2509), 1, + sym__literal, + STATE(2528), 1, sym__primary, + STATE(2531), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1222), 3, + STATE(489), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(489), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(2476), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58823,7 +59589,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58832,53 +59598,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15267] = 29, + [15507] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(994), 1, sym_bit_string_base, - STATE(421), 1, - sym_unary_operator, - STATE(591), 1, + ACTIONS(1377), 1, + sym_condition_conversion, + STATE(511), 1, sym_sign, - STATE(806), 1, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1862), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(2152), 1, + STATE(1780), 1, sym_based_literal, - STATE(2183), 1, + STATE(1813), 1, sym__expression, - STATE(2582), 1, + STATE(2594), 1, sym__primary, - STATE(2589), 1, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -58886,21 +59654,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1733), 3, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -58915,7 +59682,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -58924,75 +59691,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15388] = 29, + [15630] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, - anon_sym_LPAREN, - ACTIONS(984), 1, - anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(998), 1, + sym_condition_conversion, + ACTIONS(1062), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, + anon_sym_LT_LT, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(1082), 1, sym_bit_string_base, - ACTIONS(1305), 1, - sym_condition_conversion, - STATE(501), 1, + STATE(496), 1, sym_sign, - STATE(502), 1, - sym_unary_operator, - STATE(765), 1, + STATE(882), 1, sym__direct_name, - STATE(1260), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(1448), 1, + STATE(2339), 1, sym__expression, - STATE(1537), 1, + STATE(2342), 1, sym_based_literal, - STATE(2419), 1, + STATE(2699), 1, sym_bit_string_literal, - STATE(2427), 1, + STATE(2703), 1, sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(491), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1241), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(491), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59007,7 +59774,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59016,53 +59783,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15509] = 29, + [15751] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, - anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(950), 1, sym_bit_string_base, - ACTIONS(1305), 1, + ACTIONS(1379), 1, sym_condition_conversion, - STATE(501), 1, - sym_sign, - STATE(502), 1, + STATE(670), 1, sym_unary_operator, + STATE(689), 1, + sym_sign, STATE(765), 1, sym__direct_name, - STATE(1260), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1537), 1, - sym_based_literal, - STATE(1631), 1, + STATE(1316), 1, sym__expression, - STATE(2419), 1, + STATE(1335), 1, + sym_based_literal, + STATE(2436), 1, sym_bit_string_literal, - STATE(2427), 1, + STATE(2465), 1, sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -59070,21 +59839,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1241), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59099,7 +59867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59108,53 +59876,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15630] = 29, + [15874] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, - anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(950), 1, sym_bit_string_base, - ACTIONS(1305), 1, + ACTIONS(1379), 1, sym_condition_conversion, - STATE(501), 1, - sym_sign, - STATE(502), 1, + STATE(670), 1, sym_unary_operator, + STATE(689), 1, + sym_sign, STATE(765), 1, sym__direct_name, - STATE(1260), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1473), 1, + STATE(1312), 1, sym__expression, - STATE(1537), 1, + STATE(1335), 1, sym_based_literal, - STATE(2419), 1, + STATE(2436), 1, sym_bit_string_literal, - STATE(2427), 1, + STATE(2465), 1, sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -59162,21 +59932,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1241), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59191,7 +59960,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59200,53 +59969,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15751] = 29, + [15997] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, - anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(950), 1, sym_bit_string_base, - ACTIONS(1283), 1, + ACTIONS(1379), 1, sym_condition_conversion, - STATE(474), 1, + STATE(670), 1, sym_unary_operator, - STATE(475), 1, + STATE(689), 1, sym_sign, - STATE(755), 1, + STATE(765), 1, sym__direct_name, - STATE(1184), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1217), 1, - sym_based_literal, - STATE(1348), 1, + STATE(1311), 1, sym__expression, - STATE(2391), 1, - sym__primary, - STATE(2393), 1, + STATE(1335), 1, + sym_based_literal, + STATE(2436), 1, sym_bit_string_literal, + STATE(2465), 1, + sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -59254,21 +60025,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1188), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59283,7 +60053,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59292,53 +60062,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15872] = 29, + [16120] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, - anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(950), 1, sym_bit_string_base, - ACTIONS(1307), 1, + ACTIONS(1379), 1, sym_condition_conversion, - STATE(539), 1, + STATE(670), 1, sym_unary_operator, - STATE(540), 1, + STATE(689), 1, sym_sign, - STATE(788), 1, + STATE(765), 1, sym__direct_name, - STATE(1609), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1710), 1, + STATE(1298), 1, sym__expression, - STATE(1749), 1, + STATE(1335), 1, sym_based_literal, - STATE(2462), 1, - sym__primary, - STATE(2465), 1, + STATE(2436), 1, sym_bit_string_literal, + STATE(2465), 1, + sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -59346,21 +60118,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1496), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59375,7 +60146,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59384,75 +60155,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [15993] = 29, + [16243] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(998), 1, + sym_condition_conversion, + ACTIONS(1062), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(1082), 1, sym_bit_string_base, - ACTIONS(1283), 1, - sym_condition_conversion, - STATE(474), 1, + STATE(491), 1, sym_unary_operator, - STATE(475), 1, - sym_sign, - STATE(755), 1, + STATE(882), 1, sym__direct_name, - STATE(1184), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(1217), 1, - sym_based_literal, - STATE(1269), 1, + STATE(2338), 1, sym__expression, - STATE(2391), 1, - sym__primary, - STATE(2393), 1, + STATE(2342), 1, + sym_based_literal, + STATE(2699), 1, sym_bit_string_literal, + STATE(2703), 1, + sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(496), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1188), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(496), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59467,7 +60238,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59476,53 +60247,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [16114] = 29, + [16364] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(956), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(960), 1, + ACTIONS(918), 1, anon_sym_LT_LT, - ACTIONS(964), 1, + ACTIONS(922), 1, sym_NEW, - ACTIONS(970), 1, + ACTIONS(928), 1, sym_based_base, - ACTIONS(974), 1, + ACTIONS(932), 1, sym_bit_string_length, - ACTIONS(976), 1, + ACTIONS(934), 1, sym_bit_string_base, - ACTIONS(1283), 1, + ACTIONS(1175), 1, sym_condition_conversion, - STATE(474), 1, - sym_unary_operator, - STATE(475), 1, + STATE(456), 1, sym_sign, - STATE(755), 1, + STATE(457), 1, + sym_unary_operator, + STATE(745), 1, sym__direct_name, - STATE(1184), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1217), 1, - sym_based_literal, - STATE(1271), 1, + STATE(1137), 1, sym__expression, - STATE(2391), 1, + STATE(1171), 1, + sym_based_literal, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, - STATE(2393), 1, + STATE(2337), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(968), 2, + ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1190), 2, + STATE(1043), 2, sym__identifier, sym__external_name, - ACTIONS(972), 3, + ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -59530,21 +60303,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1188), 3, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(962), 4, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2389), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2380), 5, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59559,7 +60331,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(966), 8, + ACTIONS(924), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59568,74 +60340,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [16235] = 28, + [16487] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(407), 1, - sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(918), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(922), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(928), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(932), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(934), 1, sym_bit_string_base, - STATE(503), 1, + ACTIONS(1175), 1, + sym_condition_conversion, + STATE(456), 1, + sym_sign, + STATE(457), 1, sym_unary_operator, - STATE(764), 1, + STATE(745), 1, sym__direct_name, - STATE(1379), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1415), 1, - sym_based_literal, - STATE(1475), 1, + STATE(1140), 1, sym__expression, - STATE(2446), 1, - sym_bit_string_literal, - STATE(2451), 1, + STATE(1171), 1, + sym_based_literal, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, + STATE(2337), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1043), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1281), 3, + STATE(498), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(498), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59650,7 +60424,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(924), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59659,53 +60433,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [16354] = 29, + [16610] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(918), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(922), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(928), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(932), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(934), 1, sym_bit_string_base, - ACTIONS(1305), 1, + ACTIONS(1175), 1, sym_condition_conversion, - STATE(501), 1, + STATE(456), 1, sym_sign, - STATE(502), 1, + STATE(457), 1, sym_unary_operator, - STATE(765), 1, + STATE(745), 1, sym__direct_name, - STATE(1260), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(1463), 1, + STATE(1151), 1, sym__expression, - STATE(1537), 1, + STATE(1171), 1, sym_based_literal, - STATE(2419), 1, - sym_bit_string_literal, - STATE(2427), 1, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, + STATE(2337), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(1043), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -59713,21 +60489,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1241), 3, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59742,7 +60517,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(924), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59751,53 +60526,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [16475] = 29, + [16733] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(918), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(922), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(928), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(932), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(934), 1, sym_bit_string_base, - STATE(534), 1, + ACTIONS(1175), 1, + sym_condition_conversion, + STATE(456), 1, sym_sign, - STATE(537), 1, + STATE(457), 1, sym_unary_operator, - STATE(847), 1, + STATE(745), 1, sym__direct_name, - STATE(2080), 1, - sym__expression, - STATE(2165), 1, + STATE(1024), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(1170), 1, + sym__expression, + STATE(1171), 1, sym_based_literal, - STATE(2615), 1, - sym_bit_string_literal, - STATE(2627), 1, + STATE(2327), 1, + sym__literal, + STATE(2336), 1, sym__primary, + STATE(2337), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(926), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1043), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -59805,21 +60582,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2328), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2299), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59834,7 +60610,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(924), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59843,74 +60619,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [16596] = 28, + [16856] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, + ACTIONS(954), 1, + sym_condition_conversion, + ACTIONS(1381), 1, anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(1399), 1, sym_bit_string_base, - ACTIONS(1305), 1, - sym_condition_conversion, - STATE(502), 1, - sym_unary_operator, - STATE(765), 1, + STATE(504), 1, + sym_sign, + STATE(821), 1, sym__direct_name, - STATE(1260), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(1500), 1, - sym__expression, - STATE(1537), 1, + STATE(2044), 1, sym_based_literal, - STATE(2419), 1, - sym_bit_string_literal, - STATE(2427), 1, + STATE(2102), 1, + sym__expression, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, + STATE(2657), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1241), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, STATE(501), 4, - sym_sign, + sym_unary_operator, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -59925,7 +60702,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -59934,74 +60711,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [16715] = 28, + [16977] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(994), 1, sym_bit_string_base, - ACTIONS(1305), 1, + ACTIONS(1377), 1, sym_condition_conversion, - STATE(501), 1, + STATE(511), 1, sym_sign, - STATE(765), 1, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1260), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(1509), 1, + STATE(1759), 1, sym__expression, - STATE(1537), 1, + STATE(1780), 1, sym_based_literal, - STATE(2419), 1, - sym_bit_string_literal, - STATE(2427), 1, + STATE(2594), 1, sym__primary, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1241), 3, + STATE(502), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(502), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60016,7 +60795,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60025,74 +60804,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [16834] = 28, + [17100] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(407), 1, - sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(994), 1, sym_bit_string_base, - STATE(498), 1, + ACTIONS(1377), 1, + sym_condition_conversion, + STATE(511), 1, sym_sign, - STATE(764), 1, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1379), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(1415), 1, - sym_based_literal, - STATE(1460), 1, + STATE(1757), 1, sym__expression, - STATE(2446), 1, - sym_bit_string_literal, - STATE(2451), 1, + STATE(1780), 1, + sym_based_literal, + STATE(2594), 1, sym__primary, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1281), 3, + STATE(503), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(503), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60107,7 +60888,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60116,75 +60897,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [16953] = 29, + [17223] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, + ACTIONS(954), 1, + sym_condition_conversion, + ACTIONS(1381), 1, anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(1399), 1, sym_bit_string_base, - ACTIONS(1307), 1, - sym_condition_conversion, - STATE(539), 1, + STATE(501), 1, sym_unary_operator, - STATE(540), 1, - sym_sign, - STATE(788), 1, + STATE(821), 1, sym__direct_name, - STATE(1609), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(1669), 1, - sym__expression, - STATE(1749), 1, + STATE(2044), 1, sym_based_literal, - STATE(2462), 1, + STATE(2108), 1, + sym__expression, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, - STATE(2465), 1, + STATE(2657), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(504), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1496), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(504), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60199,7 +60980,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60208,53 +60989,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [17074] = 29, + [17344] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(1263), 1, - sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(994), 1, sym_bit_string_base, - STATE(453), 1, - sym_unary_operator, - STATE(472), 1, + ACTIONS(1377), 1, + sym_condition_conversion, + STATE(511), 1, sym_sign, - STATE(827), 1, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1761), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(2119), 1, + STATE(1748), 1, sym__expression, - STATE(2141), 1, + STATE(1780), 1, sym_based_literal, - STATE(2533), 1, - sym_bit_string_literal, - STATE(2598), 1, + STATE(2594), 1, sym__primary, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -60262,21 +61045,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1736), 3, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60291,7 +61073,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60300,53 +61082,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [17195] = 29, + [17467] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(994), 1, sym_bit_string_base, - ACTIONS(1307), 1, + ACTIONS(1377), 1, sym_condition_conversion, - STATE(539), 1, - sym_unary_operator, - STATE(540), 1, + STATE(511), 1, sym_sign, - STATE(788), 1, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1609), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(1670), 1, + STATE(1725), 1, sym__expression, - STATE(1749), 1, + STATE(1780), 1, sym_based_literal, - STATE(2462), 1, + STATE(2594), 1, sym__primary, - STATE(2465), 1, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -60354,21 +61138,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1496), 3, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60383,7 +61166,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60392,75 +61175,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [17316] = 29, + [17590] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, - anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(866), 1, sym_bit_string_base, - ACTIONS(1307), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, sym_condition_conversion, - STATE(539), 1, + STATE(413), 1, sym_unary_operator, - STATE(540), 1, - sym_sign, - STATE(788), 1, + STATE(774), 1, sym__direct_name, - STATE(1609), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(1686), 1, - sym__expression, - STATE(1749), 1, + STATE(1428), 1, sym_based_literal, - STATE(2462), 1, - sym__primary, - STATE(2465), 1, + STATE(1481), 1, + sym__expression, + STATE(2519), 1, sym_bit_string_literal, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(507), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1496), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(507), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60475,7 +61258,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60484,53 +61267,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [17437] = 29, + [17711] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, - anon_sym_LPAREN, - ACTIONS(1263), 1, - sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(866), 1, sym_bit_string_base, - STATE(453), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, + sym_condition_conversion, + STATE(413), 1, sym_unary_operator, - STATE(472), 1, + STATE(507), 1, sym_sign, - STATE(827), 1, + STATE(774), 1, sym__direct_name, - STATE(1761), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(2112), 1, - sym__expression, - STATE(2141), 1, + STATE(1428), 1, sym_based_literal, - STATE(2533), 1, + STATE(1501), 1, + sym__expression, + STATE(2519), 1, sym_bit_string_literal, - STATE(2598), 1, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -60538,21 +61323,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1736), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60567,7 +61351,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60576,55 +61360,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [17558] = 30, + [17834] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(890), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + ACTIONS(1375), 1, + sym_condition_conversion, + STATE(593), 1, sym_sign, - STATE(732), 1, + STATE(598), 1, + sym_unary_operator, + STATE(743), 1, sym__direct_name, - STATE(955), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1128), 1, sym_based_literal, - STATE(1999), 1, - sym_simple_expression, - STATE(2091), 1, + STATE(1158), 1, + sym__expression, + STATE(2310), 1, sym__primary, - STATE(2094), 1, + STATE(2351), 1, sym_bit_string_literal, - STATE(2367), 1, - sym__expression, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -60632,25 +61416,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 4, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -60660,7 +61444,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60669,53 +61453,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [17681] = 29, + [17957] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(874), 1, + anon_sym_LT_LT, + ACTIONS(878), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(890), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, + ACTIONS(1375), 1, sym_condition_conversion, - STATE(436), 1, - sym_unary_operator, - STATE(437), 1, + STATE(593), 1, sym_sign, - STATE(736), 1, + STATE(598), 1, + sym_unary_operator, + STATE(743), 1, sym__direct_name, - STATE(935), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(1005), 1, - sym__expression, - STATE(1081), 1, + STATE(1128), 1, sym_based_literal, - STATE(1897), 1, - sym_bit_string_literal, - STATE(1903), 1, + STATE(1157), 1, + sym__expression, + STATE(2310), 1, sym__primary, + STATE(2351), 1, + sym_bit_string_literal, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -60723,21 +61509,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(979), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60752,7 +61537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60761,74 +61546,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [17802] = 28, + [18080] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(994), 1, sym_bit_string_base, - STATE(512), 1, - sym_sign, - STATE(749), 1, + ACTIONS(1377), 1, + sym_condition_conversion, + STATE(530), 1, + sym_unary_operator, + STATE(783), 1, sym__direct_name, - STATE(1008), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(1201), 1, - sym__expression, - STATE(1204), 1, + STATE(1780), 1, sym_based_literal, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(1809), 1, + sym__expression, + STATE(2594), 1, sym__primary, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(995), 3, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, STATE(511), 4, - sym_unary_operator, + sym_sign, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60843,7 +61629,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60852,74 +61638,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [17921] = 28, + [18201] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1038), 1, sym_bit_string_base, - STATE(511), 1, + ACTIONS(1401), 1, + sym_condition_conversion, + STATE(599), 1, + sym_sign, + STATE(602), 1, sym_unary_operator, - STATE(749), 1, + STATE(753), 1, sym__direct_name, - STATE(1008), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(1199), 1, + STATE(1256), 1, sym__expression, - STATE(1204), 1, + STATE(1348), 1, sym_based_literal, - STATE(2344), 1, + STATE(2435), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2438), 1, sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(995), 3, + STATE(512), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(512), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -60934,7 +61722,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -60943,53 +61731,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [18040] = 29, + [18324] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(1263), 1, - sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(1038), 1, sym_bit_string_base, - STATE(453), 1, - sym_unary_operator, - STATE(472), 1, + ACTIONS(1401), 1, + sym_condition_conversion, + STATE(599), 1, sym_sign, - STATE(827), 1, + STATE(602), 1, + sym_unary_operator, + STATE(753), 1, sym__direct_name, - STATE(1761), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(2111), 1, + STATE(1257), 1, sym__expression, - STATE(2141), 1, + STATE(1348), 1, sym_based_literal, - STATE(2533), 1, + STATE(2435), 1, sym_bit_string_literal, - STATE(2598), 1, + STATE(2438), 1, sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -60997,21 +61787,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1736), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61026,7 +61815,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61035,53 +61824,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [18161] = 29, + [18447] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(1038), 1, sym_bit_string_base, - ACTIONS(1305), 1, + ACTIONS(1401), 1, sym_condition_conversion, - STATE(501), 1, + STATE(599), 1, sym_sign, - STATE(502), 1, + STATE(602), 1, sym_unary_operator, - STATE(765), 1, + STATE(753), 1, sym__direct_name, - STATE(1260), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(1464), 1, + STATE(1261), 1, sym__expression, - STATE(1537), 1, + STATE(1348), 1, sym_based_literal, - STATE(2419), 1, + STATE(2435), 1, sym_bit_string_literal, - STATE(2427), 1, + STATE(2438), 1, sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61089,21 +61880,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1241), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61118,7 +61908,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61127,53 +61917,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [18282] = 29, + [18570] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(1038), 1, sym_bit_string_base, - ACTIONS(1305), 1, + ACTIONS(1401), 1, sym_condition_conversion, - STATE(501), 1, + STATE(599), 1, sym_sign, - STATE(502), 1, + STATE(602), 1, sym_unary_operator, - STATE(765), 1, + STATE(753), 1, sym__direct_name, - STATE(1260), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(1465), 1, + STATE(1325), 1, sym__expression, - STATE(1537), 1, + STATE(1348), 1, sym_based_literal, - STATE(2419), 1, + STATE(2435), 1, sym_bit_string_literal, - STATE(2427), 1, + STATE(2438), 1, sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61181,21 +61973,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1241), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61210,7 +62001,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61219,53 +62010,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [18403] = 29, + [18693] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1355), 1, sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(1373), 1, sym_bit_string_base, - STATE(676), 1, + STATE(667), 1, sym_sign, - STATE(677), 1, + STATE(668), 1, sym_unary_operator, - STATE(832), 1, + STATE(784), 1, sym__direct_name, - STATE(1734), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(1998), 1, - sym__expression, - STATE(2005), 1, + STATE(1699), 1, sym_based_literal, - STATE(2569), 1, - sym__primary, - STATE(2573), 1, + STATE(1800), 1, + sym__expression, + STATE(2543), 1, sym_bit_string_literal, + STATE(2548), 1, + sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61273,21 +62066,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1755), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61302,7 +62094,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61311,53 +62103,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [18524] = 29, + [18816] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(1016), 1, sym_bit_string_base, - ACTIONS(1331), 1, + ACTIONS(1403), 1, sym_condition_conversion, - STATE(698), 1, - sym_unary_operator, - STATE(699), 1, + STATE(676), 1, sym_sign, - STATE(748), 1, + STATE(678), 1, + sym_unary_operator, + STATE(788), 1, sym__direct_name, - STATE(1037), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(1135), 1, + STATE(1694), 1, sym_based_literal, - STATE(1214), 1, + STATE(1742), 1, sym__expression, - STATE(2277), 1, - sym__primary, - STATE(2299), 1, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, + STATE(2613), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61365,21 +62159,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1026), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61394,7 +62187,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61403,53 +62196,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [18645] = 29, + [18939] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(1016), 1, sym_bit_string_base, - ACTIONS(1331), 1, + ACTIONS(1403), 1, sym_condition_conversion, - STATE(698), 1, - sym_unary_operator, - STATE(699), 1, + STATE(676), 1, sym_sign, - STATE(748), 1, + STATE(678), 1, + sym_unary_operator, + STATE(788), 1, sym__direct_name, - STATE(1037), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(1135), 1, + STATE(1694), 1, sym_based_literal, - STATE(1210), 1, + STATE(1743), 1, sym__expression, - STATE(2277), 1, - sym__primary, - STATE(2299), 1, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, + STATE(2613), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61457,21 +62252,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1026), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61486,7 +62280,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61495,53 +62289,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [18766] = 29, + [19062] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(980), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(988), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(994), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(998), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(1000), 1, + ACTIONS(1016), 1, sym_bit_string_base, - ACTIONS(1305), 1, + ACTIONS(1403), 1, sym_condition_conversion, - STATE(501), 1, + STATE(676), 1, sym_sign, - STATE(502), 1, + STATE(678), 1, sym_unary_operator, - STATE(765), 1, + STATE(788), 1, sym__direct_name, - STATE(1260), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(1537), 1, + STATE(1694), 1, sym_based_literal, - STATE(1621), 1, + STATE(1744), 1, sym__expression, - STATE(2419), 1, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, - STATE(2427), 1, + STATE(2613), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(992), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(1240), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(996), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61549,21 +62345,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1241), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(986), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2428), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2452), 5, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61578,7 +62373,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(990), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61587,53 +62382,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [18887] = 29, + [19185] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1016), 1, sym_bit_string_base, - STATE(534), 1, + ACTIONS(1403), 1, + sym_condition_conversion, + STATE(676), 1, sym_sign, - STATE(537), 1, + STATE(678), 1, sym_unary_operator, - STATE(847), 1, + STATE(788), 1, sym__direct_name, - STATE(2097), 1, - sym__expression, - STATE(2165), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(1694), 1, sym_based_literal, - STATE(2615), 1, + STATE(1764), 1, + sym__expression, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2613), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61641,21 +62438,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61670,7 +62466,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61679,53 +62475,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19008] = 29, + [19308] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(1355), 1, + sym_condition_conversion, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(1373), 1, sym_bit_string_base, - ACTIONS(1331), 1, - sym_condition_conversion, - STATE(698), 1, - sym_unary_operator, - STATE(699), 1, + STATE(667), 1, sym_sign, - STATE(748), 1, + STATE(668), 1, + sym_unary_operator, + STATE(784), 1, sym__direct_name, - STATE(1037), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(1135), 1, + STATE(1699), 1, sym_based_literal, - STATE(1209), 1, + STATE(1801), 1, sym__expression, - STATE(2277), 1, - sym__primary, - STATE(2299), 1, + STATE(2543), 1, sym_bit_string_literal, + STATE(2548), 1, + sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61733,21 +62531,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1026), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61762,7 +62559,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61771,53 +62568,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19129] = 29, + [19431] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1060), 1, sym_bit_string_base, - STATE(581), 1, + ACTIONS(1405), 1, + sym_condition_conversion, + STATE(686), 1, sym_unary_operator, - STATE(582), 1, + STATE(687), 1, sym_sign, - STATE(732), 1, + STATE(780), 1, sym__direct_name, - STATE(955), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1773), 1, sym_based_literal, - STATE(2091), 1, - sym__primary, - STATE(2094), 1, - sym_bit_string_literal, - STATE(2322), 1, + STATE(1810), 1, sym__expression, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, + sym_bit_string_literal, + STATE(2612), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61825,21 +62624,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61854,7 +62652,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61863,53 +62661,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19250] = 29, + [19554] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(890), 1, sym_bit_string_base, - ACTIONS(1331), 1, + ACTIONS(1375), 1, sym_condition_conversion, - STATE(698), 1, - sym_unary_operator, - STATE(699), 1, + STATE(593), 1, sym_sign, - STATE(748), 1, + STATE(598), 1, + sym_unary_operator, + STATE(743), 1, sym__direct_name, - STATE(1037), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(1107), 1, - sym__expression, - STATE(1135), 1, + STATE(1128), 1, sym_based_literal, - STATE(2277), 1, + STATE(1155), 1, + sym__expression, + STATE(2310), 1, sym__primary, - STATE(2299), 1, + STATE(2351), 1, sym_bit_string_literal, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -61917,21 +62717,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1026), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -61946,7 +62745,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -61955,53 +62754,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19371] = 29, + [19677] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1060), 1, sym_bit_string_base, - STATE(511), 1, + ACTIONS(1405), 1, + sym_condition_conversion, + STATE(686), 1, sym_unary_operator, - STATE(512), 1, + STATE(687), 1, sym_sign, - STATE(749), 1, + STATE(780), 1, sym__direct_name, - STATE(1008), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(1198), 1, - sym__expression, - STATE(1204), 1, + STATE(1773), 1, sym_based_literal, - STATE(2344), 1, + STATE(1811), 1, + sym__expression, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2612), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -62009,21 +62810,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62038,7 +62838,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62047,53 +62847,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19492] = 29, + [19800] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(1042), 1, + anon_sym_LPAREN, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(1060), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, + ACTIONS(1405), 1, sym_condition_conversion, - STATE(530), 1, - sym_sign, - STATE(531), 1, + STATE(686), 1, sym_unary_operator, - STATE(772), 1, + STATE(687), 1, + sym_sign, + STATE(780), 1, sym__direct_name, - STATE(1277), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(1538), 1, - sym__expression, - STATE(1628), 1, + STATE(1773), 1, sym_based_literal, - STATE(2435), 1, - sym__primary, - STATE(2439), 1, + STATE(1812), 1, + sym__expression, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, + STATE(2612), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -62101,21 +62903,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1280), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62130,7 +62931,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62139,53 +62940,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19613] = 29, + [19923] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(1042), 1, + anon_sym_LPAREN, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(1060), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, + ACTIONS(1405), 1, sym_condition_conversion, - STATE(530), 1, - sym_sign, - STATE(531), 1, + STATE(686), 1, sym_unary_operator, - STATE(772), 1, + STATE(687), 1, + sym_sign, + STATE(780), 1, sym__direct_name, - STATE(1277), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(1544), 1, - sym__expression, - STATE(1628), 1, + STATE(1773), 1, sym_based_literal, - STATE(2435), 1, - sym__primary, - STATE(2439), 1, + STATE(1852), 1, + sym__expression, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, + STATE(2612), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -62193,21 +62996,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1280), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62222,7 +63024,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62231,53 +63033,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19734] = 29, + [20046] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(1353), 1, + anon_sym_LPAREN, + ACTIONS(1355), 1, + sym_condition_conversion, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(1373), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - sym_condition_conversion, - STATE(530), 1, + STATE(667), 1, sym_sign, - STATE(531), 1, + STATE(668), 1, sym_unary_operator, - STATE(772), 1, + STATE(784), 1, sym__direct_name, - STATE(1277), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(1545), 1, - sym__expression, - STATE(1628), 1, + STATE(1699), 1, sym_based_literal, - STATE(2435), 1, - sym__primary, - STATE(2439), 1, + STATE(1802), 1, + sym__expression, + STATE(2543), 1, sym_bit_string_literal, + STATE(2548), 1, + sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -62285,21 +63089,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1280), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62314,7 +63117,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62323,53 +63126,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19855] = 29, + [20169] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(938), 1, + sym_condition_conversion, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(1419), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, - sym_condition_conversion, - STATE(436), 1, - sym_unary_operator, - STATE(437), 1, + STATE(630), 1, sym_sign, - STATE(736), 1, + STATE(633), 1, + sym_unary_operator, + STATE(802), 1, sym__direct_name, - STATE(935), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(1068), 1, - sym__expression, - STATE(1081), 1, + STATE(1784), 1, sym_based_literal, - STATE(1897), 1, + STATE(1900), 1, + sym__expression, + STATE(2541), 1, sym_bit_string_literal, - STATE(1903), 1, + STATE(2554), 1, sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -62377,21 +63182,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(979), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62406,7 +63210,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62415,74 +63219,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [19976] = 28, + [20292] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, + ACTIONS(938), 1, sym_condition_conversion, - ACTIONS(1062), 1, - anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(1419), 1, sym_bit_string_base, - STATE(477), 1, + STATE(630), 1, sym_sign, - STATE(865), 1, + STATE(633), 1, + sym_unary_operator, + STATE(802), 1, sym__direct_name, - STATE(2069), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(2273), 1, - sym__expression, - STATE(2290), 1, + STATE(1784), 1, sym_based_literal, - STATE(2618), 1, + STATE(1901), 1, + sym__expression, + STATE(2541), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2554), 1, sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1910), 3, + STATE(529), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(529), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62497,7 +63303,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62506,74 +63312,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [20095] = 28, + [20415] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(974), 1, + anon_sym_LPAREN, + ACTIONS(978), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(982), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(988), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(992), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(994), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, + ACTIONS(1377), 1, sym_condition_conversion, - STATE(531), 1, - sym_unary_operator, - STATE(772), 1, + STATE(511), 1, + sym_sign, + STATE(783), 1, sym__direct_name, - STATE(1277), 1, + STATE(1512), 1, sym__abstract_literal, - STATE(1595), 1, - sym__expression, - STATE(1628), 1, + STATE(1780), 1, sym_based_literal, - STATE(2435), 1, + STATE(1808), 1, + sym__expression, + STATE(2594), 1, sym__primary, - STATE(2439), 1, + STATE(2598), 1, + sym__literal, + STATE(2604), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(986), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(1603), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(990), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1280), 3, + STATE(1610), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2597), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, STATE(530), 4, - sym_sign, + sym_unary_operator, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(2611), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62588,7 +63395,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(984), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62597,74 +63404,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [20214] = 28, + [20536] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(938), 1, + sym_condition_conversion, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(1419), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - sym_condition_conversion, - STATE(530), 1, + STATE(630), 1, sym_sign, - STATE(772), 1, + STATE(633), 1, + sym_unary_operator, + STATE(802), 1, sym__direct_name, - STATE(1277), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(1613), 1, - sym__expression, - STATE(1628), 1, + STATE(1784), 1, sym_based_literal, - STATE(2435), 1, - sym__primary, - STATE(2439), 1, + STATE(1902), 1, + sym__expression, + STATE(2541), 1, sym_bit_string_literal, + STATE(2554), 1, + sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1280), 3, + STATE(531), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(531), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62679,7 +63488,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62688,53 +63497,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [20333] = 29, + [20659] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(1112), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, - sym_condition_conversion, - STATE(436), 1, - sym_unary_operator, - STATE(437), 1, + STATE(629), 1, sym_sign, - STATE(736), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(935), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1080), 1, + STATE(1061), 1, sym__expression, - STATE(1081), 1, + STATE(1094), 1, sym_based_literal, - STATE(1897), 1, - sym_bit_string_literal, - STATE(1903), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -62742,21 +63553,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(979), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62771,7 +63581,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62780,53 +63590,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [20454] = 29, + [20782] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, + ACTIONS(938), 1, + sym_condition_conversion, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(1419), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(643), 1, - sym_unary_operator, - STATE(646), 1, + STATE(630), 1, sym_sign, - STATE(766), 1, + STATE(633), 1, + sym_unary_operator, + STATE(802), 1, sym__direct_name, - STATE(1131), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(1325), 1, - sym__expression, - STATE(1338), 1, + STATE(1784), 1, sym_based_literal, - STATE(2379), 1, + STATE(1888), 1, + sym__expression, + STATE(2541), 1, sym_bit_string_literal, - STATE(2382), 1, + STATE(2554), 1, sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -62834,21 +63646,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62863,7 +63674,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62872,74 +63683,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [20575] = 28, + [20905] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1355), 1, + sym_condition_conversion, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1373), 1, sym_bit_string_base, - STATE(537), 1, + STATE(667), 1, + sym_sign, + STATE(668), 1, sym_unary_operator, - STATE(847), 1, + STATE(784), 1, sym__direct_name, - STATE(2165), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(2296), 1, - sym__expression, - STATE(2303), 1, + STATE(1699), 1, sym_based_literal, - STATE(2615), 1, + STATE(1806), 1, + sym__expression, + STATE(2543), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2548), 1, sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2071), 3, + STATE(534), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(534), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -62954,7 +63767,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -62963,53 +63776,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [20694] = 29, + [21028] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(229), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(241), 1, + ACTIONS(956), 1, + anon_sym_LT_LT, + ACTIONS(960), 1, sym_NEW, - ACTIONS(251), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(255), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(257), 1, + ACTIONS(972), 1, sym_bit_string_base, - ACTIONS(395), 1, - anon_sym_LT_LT, - ACTIONS(1217), 1, + ACTIONS(1421), 1, sym_condition_conversion, - STATE(436), 1, + STATE(621), 1, sym_unary_operator, - STATE(437), 1, + STATE(628), 1, sym_sign, - STATE(736), 1, + STATE(777), 1, sym__direct_name, - STATE(935), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(1081), 1, - sym_based_literal, - STATE(1083), 1, + STATE(1498), 1, sym__expression, - STATE(1897), 1, + STATE(1524), 1, + sym_based_literal, + STATE(2495), 1, sym_bit_string_literal, - STATE(1903), 1, + STATE(2504), 1, sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(249), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(967), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(403), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -63017,21 +63832,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(979), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(397), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1904), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2130), 5, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63046,7 +63860,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(243), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63055,74 +63869,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [20815] = 28, + [21151] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(1339), 1, - sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(972), 1, sym_bit_string_base, - STATE(572), 1, + ACTIONS(1421), 1, + sym_condition_conversion, + STATE(621), 1, + sym_unary_operator, + STATE(628), 1, sym_sign, - STATE(880), 1, + STATE(777), 1, sym__direct_name, - STATE(2033), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(2231), 1, - sym_based_literal, - STATE(2249), 1, + STATE(1499), 1, sym__expression, - STATE(2646), 1, - sym__primary, - STATE(2664), 1, + STATE(1524), 1, + sym_based_literal, + STATE(2495), 1, sym_bit_string_literal, + STATE(2504), 1, + sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1878), 3, + STATE(536), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(536), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63137,7 +63953,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63146,74 +63962,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [20934] = 28, + [21274] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(972), 1, sym_bit_string_base, - STATE(534), 1, + ACTIONS(1421), 1, + sym_condition_conversion, + STATE(621), 1, + sym_unary_operator, + STATE(628), 1, sym_sign, - STATE(847), 1, + STATE(777), 1, sym__direct_name, - STATE(2165), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(2301), 1, + STATE(1504), 1, sym__expression, - STATE(2303), 1, + STATE(1524), 1, sym_based_literal, - STATE(2615), 1, + STATE(2495), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2504), 1, sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2071), 3, + STATE(537), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(537), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63228,7 +64046,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63237,53 +64055,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [21053] = 29, + [21397] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(972), 1, sym_bit_string_base, - STATE(511), 1, + ACTIONS(1421), 1, + sym_condition_conversion, + STATE(621), 1, sym_unary_operator, - STATE(512), 1, + STATE(628), 1, sym_sign, - STATE(749), 1, + STATE(777), 1, sym__direct_name, - STATE(1008), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(1197), 1, + STATE(1510), 1, sym__expression, - STATE(1204), 1, + STATE(1524), 1, sym_based_literal, - STATE(2344), 1, + STATE(2495), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2504), 1, sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -63291,21 +64111,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63320,7 +64139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63329,74 +64148,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [21174] = 28, + [21520] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(1355), 1, + sym_condition_conversion, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(1373), 1, sym_bit_string_base, - ACTIONS(1307), 1, - sym_condition_conversion, - STATE(540), 1, + STATE(667), 1, sym_sign, - STATE(788), 1, + STATE(668), 1, + sym_unary_operator, + STATE(784), 1, sym__direct_name, - STATE(1609), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(1645), 1, - sym__expression, - STATE(1749), 1, + STATE(1699), 1, sym_based_literal, - STATE(2462), 1, - sym__primary, - STATE(2465), 1, + STATE(1807), 1, + sym__expression, + STATE(2543), 1, sym_bit_string_literal, + STATE(2548), 1, + sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1496), 3, + STATE(539), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(539), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63411,7 +64232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63420,74 +64241,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [21293] = 28, + [21643] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, - anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(866), 1, sym_bit_string_base, - ACTIONS(1307), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, sym_condition_conversion, - STATE(539), 1, + STATE(413), 1, sym_unary_operator, - STATE(788), 1, + STATE(507), 1, + sym_sign, + STATE(774), 1, sym__direct_name, - STATE(1609), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(1650), 1, - sym__expression, - STATE(1749), 1, + STATE(1428), 1, sym_based_literal, - STATE(2462), 1, - sym__primary, - STATE(2465), 1, + STATE(1557), 1, + sym__expression, + STATE(2519), 1, sym_bit_string_literal, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1496), 3, + STATE(540), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(540), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63502,7 +64325,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63511,53 +64334,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [21412] = 29, + [21766] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, - anon_sym_LPAREN, - ACTIONS(1361), 1, - sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(866), 1, sym_bit_string_base, - STATE(548), 1, - sym_sign, - STATE(549), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, + sym_condition_conversion, + STATE(413), 1, sym_unary_operator, - STATE(823), 1, + STATE(507), 1, + sym_sign, + STATE(774), 1, sym__direct_name, - STATE(1738), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(1963), 1, - sym__expression, - STATE(1974), 1, + STATE(1428), 1, sym_based_literal, - STATE(2567), 1, - sym__primary, - STATE(2577), 1, + STATE(1559), 1, + sym__expression, + STATE(2519), 1, sym_bit_string_literal, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -63565,21 +64390,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1861), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63594,7 +64418,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63603,53 +64427,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [21533] = 29, + [21889] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, - anon_sym_LPAREN, - ACTIONS(1361), 1, - sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(866), 1, sym_bit_string_base, - STATE(548), 1, - sym_sign, - STATE(549), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, + sym_condition_conversion, + STATE(413), 1, sym_unary_operator, - STATE(823), 1, + STATE(507), 1, + sym_sign, + STATE(774), 1, sym__direct_name, - STATE(1738), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(1964), 1, - sym__expression, - STATE(1974), 1, + STATE(1428), 1, sym_based_literal, - STATE(2567), 1, - sym__primary, - STATE(2577), 1, + STATE(1572), 1, + sym__expression, + STATE(2519), 1, sym_bit_string_literal, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -63657,21 +64483,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1861), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63686,7 +64511,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63695,53 +64520,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [21654] = 29, + [22012] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, - anon_sym_LPAREN, - ACTIONS(1361), 1, - sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(866), 1, sym_bit_string_base, - STATE(548), 1, - sym_sign, - STATE(549), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, + sym_condition_conversion, + STATE(413), 1, sym_unary_operator, - STATE(823), 1, + STATE(507), 1, + sym_sign, + STATE(774), 1, sym__direct_name, - STATE(1738), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(1968), 1, - sym__expression, - STATE(1974), 1, + STATE(1428), 1, sym_based_literal, - STATE(2567), 1, - sym__primary, - STATE(2577), 1, + STATE(1576), 1, + sym__expression, + STATE(2519), 1, sym_bit_string_literal, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -63749,21 +64576,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1861), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63778,7 +64604,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63787,53 +64613,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [21775] = 29, + [22135] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, - sym_condition_conversion, - ACTIONS(1381), 1, - anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(866), 1, sym_bit_string_base, - STATE(700), 1, - sym_sign, - STATE(701), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, + sym_condition_conversion, + STATE(413), 1, sym_unary_operator, - STATE(870), 1, + STATE(507), 1, + sym_sign, + STATE(774), 1, sym__direct_name, - STATE(2023), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(2270), 1, + STATE(1428), 1, sym_based_literal, - STATE(2341), 1, + STATE(1505), 1, sym__expression, - STATE(2638), 1, - sym__primary, - STATE(2648), 1, + STATE(2519), 1, sym_bit_string_literal, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -63841,21 +64669,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63870,7 +64697,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63879,53 +64706,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [21896] = 29, + [22258] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1423), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, + STATE(680), 1, sym_sign, - STATE(749), 1, + STATE(683), 1, + sym_unary_operator, + STATE(762), 1, sym__direct_name, - STATE(1008), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(1196), 1, - sym__expression, - STATE(1204), 1, + STATE(1564), 1, sym_based_literal, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(1579), 1, + sym__expression, + STATE(2484), 1, sym__primary, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -63933,21 +64762,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -63962,7 +64790,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -63971,53 +64799,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22017] = 29, + [22381] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(916), 1, + sym_condition_conversion, + ACTIONS(1423), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(1425), 1, + anon_sym_LT_LT, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(1441), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(643), 1, - sym_unary_operator, - STATE(646), 1, + STATE(680), 1, sym_sign, - STATE(766), 1, + STATE(683), 1, + sym_unary_operator, + STATE(762), 1, sym__direct_name, - STATE(1131), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(1338), 1, + STATE(1564), 1, sym_based_literal, - STATE(1349), 1, + STATE(1582), 1, sym__expression, - STATE(2379), 1, - sym_bit_string_literal, - STATE(2382), 1, + STATE(2484), 1, sym__primary, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64025,21 +64855,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64054,7 +64883,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64063,53 +64892,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22138] = 29, + [22504] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(536), 1, - sym_unary_operator, - STATE(572), 1, + STATE(680), 1, sym_sign, - STATE(880), 1, + STATE(683), 1, + sym_unary_operator, + STATE(762), 1, sym__direct_name, - STATE(2033), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(2231), 1, + STATE(1564), 1, sym_based_literal, - STATE(2351), 1, + STATE(1583), 1, sym__expression, - STATE(2646), 1, + STATE(2484), 1, sym__primary, - STATE(2664), 1, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64117,21 +64948,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1878), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64146,7 +64976,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64155,74 +64985,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22259] = 28, + [22627] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, - anon_sym_LPAREN, - ACTIONS(1361), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(549), 1, + STATE(680), 1, + sym_sign, + STATE(683), 1, sym_unary_operator, - STATE(823), 1, + STATE(762), 1, sym__direct_name, - STATE(1738), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(1969), 1, - sym__expression, - STATE(1974), 1, + STATE(1564), 1, sym_based_literal, - STATE(2567), 1, + STATE(1602), 1, + sym__expression, + STATE(2484), 1, sym__primary, - STATE(2577), 1, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1861), 3, + STATE(548), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(548), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64237,7 +65069,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64246,74 +65078,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22378] = 28, + [22750] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1361), 1, + ACTIONS(894), 1, sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(548), 1, + STATE(466), 1, sym_sign, - STATE(823), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(1738), 1, - sym__abstract_literal, - STATE(1970), 1, + STATE(1942), 1, sym__expression, - STATE(1974), 1, + STATE(2210), 1, + sym__abstract_literal, + STATE(2431), 1, sym_based_literal, - STATE(2567), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2577), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1861), 3, + STATE(549), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(549), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64328,7 +65162,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64337,53 +65171,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22497] = 29, + [22873] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(701), 1, sym_sign, - STATE(732), 1, + STATE(705), 1, + sym_unary_operator, + STATE(791), 1, sym__direct_name, - STATE(955), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1688), 1, + sym__expression, + STATE(1718), 1, sym_based_literal, - STATE(2091), 1, + STATE(2536), 1, sym__primary, - STATE(2094), 1, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, sym_bit_string_literal, - STATE(2338), 1, - sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64391,21 +65227,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64420,7 +65255,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64429,53 +65264,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22618] = 29, + [22996] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(609), 1, + STATE(701), 1, sym_sign, - STATE(610), 1, + STATE(705), 1, sym_unary_operator, - STATE(879), 1, + STATE(791), 1, sym__direct_name, - STATE(2180), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(2342), 1, - sym_based_literal, - STATE(2354), 1, + STATE(1689), 1, sym__expression, - STATE(2619), 1, - sym_bit_string_literal, - STATE(2665), 1, + STATE(1718), 1, + sym_based_literal, + STATE(2536), 1, sym__primary, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64483,21 +65320,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1895), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64512,7 +65348,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64521,53 +65357,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22739] = 29, + [23119] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1401), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(563), 1, + STATE(701), 1, sym_sign, - STATE(573), 1, + STATE(705), 1, sym_unary_operator, - STATE(809), 1, + STATE(791), 1, sym__direct_name, - STATE(1675), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(2101), 1, - sym_based_literal, - STATE(2142), 1, + STATE(1693), 1, sym__expression, - STATE(2543), 1, + STATE(1718), 1, + sym_based_literal, + STATE(2536), 1, sym__primary, - STATE(2548), 1, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64575,21 +65413,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1770), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64604,7 +65441,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64613,53 +65450,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22860] = 29, + [23242] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(609), 1, + STATE(701), 1, sym_sign, - STATE(610), 1, + STATE(705), 1, sym_unary_operator, - STATE(879), 1, + STATE(791), 1, sym__direct_name, - STATE(2180), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(2226), 1, - sym__expression, - STATE(2342), 1, + STATE(1718), 1, sym_based_literal, - STATE(2619), 1, - sym_bit_string_literal, - STATE(2665), 1, + STATE(1732), 1, + sym__expression, + STATE(2536), 1, sym__primary, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64667,21 +65506,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1895), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64696,7 +65534,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64705,53 +65543,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [22981] = 29, + [23365] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, - sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(854), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(860), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(864), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(866), 1, sym_bit_string_base, - STATE(609), 1, - sym_sign, - STATE(610), 1, + ACTIONS(1040), 1, + anon_sym_LPAREN, + ACTIONS(1153), 1, + sym_condition_conversion, + STATE(413), 1, sym_unary_operator, - STATE(879), 1, + STATE(507), 1, + sym_sign, + STATE(774), 1, sym__direct_name, - STATE(2180), 1, + STATE(1363), 1, sym__abstract_literal, - STATE(2342), 1, + STATE(1428), 1, sym_based_literal, - STATE(2357), 1, + STATE(1506), 1, sym__expression, - STATE(2619), 1, + STATE(2519), 1, sym_bit_string_literal, - STATE(2665), 1, + STATE(2526), 1, + sym__literal, + STATE(2534), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(858), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(1402), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(862), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64759,21 +65599,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1895), 3, + STATE(1401), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(2529), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(852), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(2522), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64788,7 +65627,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(856), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64797,53 +65636,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [23102] = 29, + [23488] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(1155), 1, - sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(609), 1, - sym_sign, - STATE(610), 1, + ACTIONS(1463), 1, + sym_condition_conversion, + STATE(711), 1, sym_unary_operator, - STATE(879), 1, + STATE(713), 1, + sym_sign, + STATE(724), 1, sym__direct_name, - STATE(2180), 1, + STATE(841), 1, sym__abstract_literal, - STATE(2342), 1, + STATE(900), 1, sym_based_literal, - STATE(2360), 1, + STATE(914), 1, sym__expression, - STATE(2619), 1, - sym_bit_string_literal, - STATE(2665), 1, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, + STATE(1668), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64851,21 +65692,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1895), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64880,7 +65720,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64889,53 +65729,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [23223] = 29, + [23611] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(1155), 1, - sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(609), 1, - sym_sign, - STATE(610), 1, + ACTIONS(1463), 1, + sym_condition_conversion, + STATE(711), 1, sym_unary_operator, - STATE(879), 1, + STATE(713), 1, + sym_sign, + STATE(724), 1, sym__direct_name, - STATE(2180), 1, + STATE(841), 1, sym__abstract_literal, - STATE(2342), 1, + STATE(900), 1, sym_based_literal, - STATE(2362), 1, + STATE(911), 1, sym__expression, - STATE(2619), 1, - sym_bit_string_literal, - STATE(2665), 1, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, + STATE(1668), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -64943,21 +65785,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1895), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -64972,7 +65813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -64981,55 +65822,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [23344] = 30, + [23734] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1401), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(563), 1, - sym_sign, - STATE(573), 1, + ACTIONS(1463), 1, + sym_condition_conversion, + STATE(711), 1, sym_unary_operator, - STATE(809), 1, + STATE(713), 1, + sym_sign, + STATE(724), 1, sym__direct_name, - STATE(1675), 1, + STATE(841), 1, sym__abstract_literal, - STATE(2101), 1, + STATE(900), 1, sym_based_literal, - STATE(2365), 1, + STATE(905), 1, sym__expression, - STATE(2543), 1, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, - STATE(2548), 1, + STATE(1668), 1, sym_bit_string_literal, - STATE(2553), 1, - sym_simple_expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65037,25 +65878,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1770), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -65065,7 +65906,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65074,53 +65915,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [23467] = 29, + [23857] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(750), 1, sym_bit_string_base, - ACTIONS(1307), 1, + ACTIONS(1463), 1, sym_condition_conversion, - STATE(539), 1, + STATE(711), 1, sym_unary_operator, - STATE(540), 1, + STATE(713), 1, sym_sign, - STATE(788), 1, + STATE(724), 1, sym__direct_name, - STATE(1609), 1, + STATE(841), 1, sym__abstract_literal, - STATE(1737), 1, - sym__expression, - STATE(1749), 1, + STATE(900), 1, sym_based_literal, - STATE(2462), 1, + STATE(902), 1, + sym__expression, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, - STATE(2465), 1, + STATE(1668), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65128,21 +65971,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1496), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65157,7 +65999,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65166,53 +66008,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [23588] = 29, + [23980] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1401), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(563), 1, + STATE(629), 1, sym_sign, - STATE(573), 1, + STATE(638), 1, sym_unary_operator, - STATE(809), 1, + STATE(734), 1, sym__direct_name, - STATE(1675), 1, + STATE(971), 1, sym__abstract_literal, - STATE(2101), 1, - sym_based_literal, - STATE(2137), 1, + STATE(1015), 1, sym__expression, - STATE(2543), 1, + STATE(1094), 1, + sym_based_literal, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2548), 1, + STATE(2053), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65220,21 +66064,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1770), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65249,7 +66092,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65258,53 +66101,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [23709] = 29, + [24103] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1401), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(563), 1, + STATE(629), 1, sym_sign, - STATE(573), 1, + STATE(638), 1, sym_unary_operator, - STATE(809), 1, + STATE(734), 1, sym__direct_name, - STATE(1675), 1, + STATE(971), 1, sym__abstract_literal, - STATE(2101), 1, + STATE(1094), 1, sym_based_literal, - STATE(2132), 1, - sym__expression, - STATE(2543), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2548), 1, + STATE(2053), 1, sym_bit_string_literal, + STATE(2347), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65312,21 +66157,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1770), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65341,7 +66185,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65350,53 +66194,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [23830] = 29, + [24226] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, + ACTIONS(954), 1, + sym_condition_conversion, + ACTIONS(1381), 1, anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(1399), 1, sym_bit_string_base, - ACTIONS(1307), 1, - sym_condition_conversion, - STATE(539), 1, + STATE(501), 1, sym_unary_operator, - STATE(540), 1, + STATE(504), 1, sym_sign, - STATE(788), 1, + STATE(821), 1, sym__direct_name, - STATE(1609), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(1744), 1, - sym__expression, - STATE(1749), 1, + STATE(2044), 1, sym_based_literal, - STATE(2462), 1, + STATE(2277), 1, + sym__expression, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, - STATE(2465), 1, + STATE(2657), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65404,21 +66250,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1496), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65433,7 +66278,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65442,53 +66287,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [23951] = 29, + [24349] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(954), 1, + sym_condition_conversion, + ACTIONS(1381), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(1383), 1, + anon_sym_LT_LT, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(1399), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(643), 1, + STATE(501), 1, sym_unary_operator, - STATE(646), 1, + STATE(504), 1, sym_sign, - STATE(766), 1, + STATE(821), 1, sym__direct_name, - STATE(1131), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(1338), 1, + STATE(2044), 1, sym_based_literal, - STATE(1354), 1, + STATE(2276), 1, sym__expression, - STATE(2379), 1, - sym_bit_string_literal, - STATE(2382), 1, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, + STATE(2657), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65496,21 +66343,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65525,7 +66371,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65534,74 +66380,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [24072] = 28, + [24472] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, + ACTIONS(954), 1, sym_condition_conversion, - ACTIONS(1401), 1, + ACTIONS(1381), 1, anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(1399), 1, sym_bit_string_base, - STATE(573), 1, + STATE(501), 1, sym_unary_operator, - STATE(809), 1, + STATE(504), 1, + sym_sign, + STATE(821), 1, sym__direct_name, - STATE(1675), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(2101), 1, + STATE(2044), 1, sym_based_literal, - STATE(2109), 1, + STATE(2275), 1, sym__expression, - STATE(2543), 1, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, - STATE(2548), 1, + STATE(2657), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1770), 3, + STATE(563), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(563), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65616,7 +66464,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65625,53 +66473,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [24191] = 29, + [24595] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, - anon_sym_LPAREN, - ACTIONS(1221), 1, + ACTIONS(954), 1, sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(1381), 1, + anon_sym_LPAREN, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(1399), 1, sym_bit_string_base, - STATE(569), 1, - sym_sign, - STATE(570), 1, + STATE(501), 1, sym_unary_operator, - STATE(878), 1, + STATE(504), 1, + sym_sign, + STATE(821), 1, sym__direct_name, - STATE(1986), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(2289), 1, - sym__expression, - STATE(2330), 1, + STATE(2044), 1, sym_based_literal, - STATE(2611), 1, - sym_bit_string_literal, - STATE(2630), 1, + STATE(2266), 1, + sym__expression, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, + STATE(2657), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65679,21 +66529,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2151), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65708,7 +66557,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65717,53 +66566,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [24312] = 29, + [24718] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1221), 1, + ACTIONS(397), 1, sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(423), 1, sym_bit_string_base, - STATE(569), 1, + STATE(608), 1, sym_sign, - STATE(570), 1, + STATE(619), 1, sym_unary_operator, - STATE(878), 1, + STATE(775), 1, sym__direct_name, - STATE(1986), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(2284), 1, + STATE(1439), 1, sym__expression, - STATE(2330), 1, + STATE(1518), 1, sym_based_literal, - STATE(2611), 1, - sym_bit_string_literal, - STATE(2630), 1, + STATE(2488), 1, sym__primary, + STATE(2493), 1, + sym_bit_string_literal, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65771,21 +66622,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2151), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65800,7 +66650,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65809,53 +66659,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [24433] = 29, + [24841] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1221), 1, + ACTIONS(397), 1, sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(423), 1, sym_bit_string_base, - STATE(569), 1, + STATE(608), 1, sym_sign, - STATE(570), 1, + STATE(619), 1, sym_unary_operator, - STATE(878), 1, + STATE(775), 1, sym__direct_name, - STATE(1986), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(2286), 1, + STATE(1447), 1, sym__expression, - STATE(2330), 1, + STATE(1518), 1, sym_based_literal, - STATE(2611), 1, - sym_bit_string_literal, - STATE(2630), 1, + STATE(2488), 1, sym__primary, + STATE(2493), 1, + sym_bit_string_literal, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65863,21 +66715,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2151), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65892,7 +66743,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65901,53 +66752,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [24554] = 29, + [24964] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(848), 1, + sym_condition_conversion, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(1269), 1, + anon_sym_LT_LT, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(1285), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(643), 1, + STATE(435), 1, sym_unary_operator, - STATE(646), 1, + STATE(436), 1, sym_sign, - STATE(766), 1, + STATE(814), 1, sym__direct_name, - STATE(1131), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(1338), 1, + STATE(1932), 1, sym_based_literal, - STATE(1357), 1, + STATE(2246), 1, sym__expression, - STATE(2379), 1, + STATE(2644), 1, sym_bit_string_literal, - STATE(2382), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -65955,21 +66808,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -65984,7 +66836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -65993,53 +66845,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [24675] = 29, + [25087] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(407), 1, - sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(1038), 1, sym_bit_string_base, - STATE(498), 1, + ACTIONS(1401), 1, + sym_condition_conversion, + STATE(599), 1, sym_sign, - STATE(503), 1, + STATE(602), 1, sym_unary_operator, - STATE(764), 1, + STATE(753), 1, sym__direct_name, - STATE(1379), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(1415), 1, + STATE(1348), 1, sym_based_literal, - STATE(1453), 1, + STATE(1369), 1, sym__expression, - STATE(2446), 1, + STATE(2435), 1, sym_bit_string_literal, - STATE(2451), 1, + STATE(2438), 1, sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -66047,21 +66901,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1281), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66076,7 +66929,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66085,74 +66938,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [24796] = 28, + [25210] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, - anon_sym_LPAREN, - ACTIONS(1221), 1, + ACTIONS(848), 1, sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(1285), 1, sym_bit_string_base, - STATE(570), 1, + STATE(435), 1, sym_unary_operator, - STATE(878), 1, + STATE(436), 1, + sym_sign, + STATE(814), 1, sym__direct_name, - STATE(1986), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(2318), 1, - sym__expression, - STATE(2330), 1, + STATE(1932), 1, sym_based_literal, - STATE(2611), 1, + STATE(2245), 1, + sym__expression, + STATE(2644), 1, sym_bit_string_literal, - STATE(2630), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2151), 3, + STATE(569), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(569), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66167,7 +67022,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66176,74 +67031,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [24915] = 28, + [25333] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, - anon_sym_LPAREN, - ACTIONS(1221), 1, + ACTIONS(848), 1, sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(1285), 1, sym_bit_string_base, - STATE(569), 1, + STATE(435), 1, + sym_unary_operator, + STATE(436), 1, sym_sign, - STATE(878), 1, + STATE(814), 1, sym__direct_name, - STATE(1986), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(2320), 1, - sym__expression, - STATE(2330), 1, + STATE(1932), 1, sym_based_literal, - STATE(2611), 1, + STATE(2243), 1, + sym__expression, + STATE(2644), 1, sym_bit_string_literal, - STATE(2630), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2151), 3, + STATE(570), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(570), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66258,7 +67115,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66267,53 +67124,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25034] = 29, + [25456] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, - anon_sym_LPAREN, - ACTIONS(407), 1, + ACTIONS(848), 1, sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(1285), 1, sym_bit_string_base, - STATE(498), 1, - sym_sign, - STATE(503), 1, + STATE(435), 1, sym_unary_operator, - STATE(764), 1, + STATE(436), 1, + sym_sign, + STATE(814), 1, sym__direct_name, - STATE(1379), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(1415), 1, + STATE(1932), 1, sym_based_literal, - STATE(1535), 1, + STATE(2232), 1, sym__expression, - STATE(2446), 1, + STATE(2644), 1, sym_bit_string_literal, - STATE(2451), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -66321,21 +67180,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1281), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(2619), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66350,7 +67208,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66359,74 +67217,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25155] = 28, + [25579] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(1201), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(1203), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(1219), 1, sym_bit_string_base, - STATE(536), 1, + STATE(418), 1, sym_unary_operator, - STATE(880), 1, + STATE(419), 1, + sym_sign, + STATE(825), 1, sym__direct_name, - STATE(2033), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(2231), 1, - sym_based_literal, - STATE(2247), 1, + STATE(2034), 1, sym__expression, - STATE(2646), 1, - sym__primary, - STATE(2664), 1, + STATE(2167), 1, + sym_based_literal, + STATE(2628), 1, sym_bit_string_literal, + STATE(2631), 1, + sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1878), 3, + STATE(572), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(572), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66441,7 +67301,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66450,74 +67310,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25274] = 28, + [25702] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, - sym_condition_conversion, - ACTIONS(1401), 1, + ACTIONS(1331), 1, anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(1333), 1, + sym_condition_conversion, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(1351), 1, sym_bit_string_base, - STATE(563), 1, + STATE(469), 1, + sym_unary_operator, + STATE(470), 1, sym_sign, - STATE(809), 1, + STATE(813), 1, sym__direct_name, - STATE(1675), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(2101), 1, - sym_based_literal, - STATE(2108), 1, + STATE(2222), 1, sym__expression, - STATE(2543), 1, - sym__primary, - STATE(2548), 1, + STATE(2227), 1, + sym_based_literal, + STATE(2616), 1, sym_bit_string_literal, + STATE(2620), 1, + sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1770), 3, + STATE(573), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(573), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66532,7 +67394,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66541,53 +67403,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25393] = 29, + [25825] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(870), 1, + ACTIONS(998), 1, + sym_condition_conversion, + ACTIONS(1062), 1, anon_sym_LPAREN, - ACTIONS(874), 1, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(878), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(884), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(888), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(890), 1, + ACTIONS(1082), 1, sym_bit_string_base, - ACTIONS(1307), 1, - sym_condition_conversion, - STATE(539), 1, + STATE(491), 1, sym_unary_operator, - STATE(540), 1, + STATE(496), 1, sym_sign, - STATE(788), 1, + STATE(882), 1, sym__direct_name, - STATE(1609), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(1747), 1, + STATE(2335), 1, sym__expression, - STATE(1749), 1, + STATE(2342), 1, sym_based_literal, - STATE(2462), 1, - sym__primary, - STATE(2465), 1, + STATE(2699), 1, sym_bit_string_literal, + STATE(2703), 1, + sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(882), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1501), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -66595,21 +67459,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1496), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(876), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2467), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2485), 5, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66624,7 +67487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(880), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66633,53 +67496,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25514] = 29, + [25948] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, - anon_sym_LPAREN, - ACTIONS(407), 1, + ACTIONS(998), 1, sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(1062), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(1082), 1, sym_bit_string_base, - STATE(498), 1, - sym_sign, - STATE(503), 1, + STATE(491), 1, sym_unary_operator, - STATE(764), 1, + STATE(496), 1, + sym_sign, + STATE(882), 1, sym__direct_name, - STATE(1379), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(1415), 1, - sym_based_literal, - STATE(1539), 1, + STATE(2331), 1, sym__expression, - STATE(2446), 1, + STATE(2342), 1, + sym_based_literal, + STATE(2699), 1, sym_bit_string_literal, - STATE(2451), 1, + STATE(2703), 1, sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -66687,21 +67552,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1281), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66716,7 +67580,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66725,53 +67589,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25635] = 29, + [26071] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, + ACTIONS(1331), 1, anon_sym_LPAREN, - ACTIONS(407), 1, + ACTIONS(1333), 1, sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(1351), 1, sym_bit_string_base, - STATE(498), 1, - sym_sign, - STATE(503), 1, + STATE(469), 1, sym_unary_operator, - STATE(764), 1, + STATE(470), 1, + sym_sign, + STATE(813), 1, sym__direct_name, - STATE(1379), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(1415), 1, - sym_based_literal, - STATE(1542), 1, + STATE(2221), 1, sym__expression, - STATE(2446), 1, + STATE(2227), 1, + sym_based_literal, + STATE(2616), 1, sym_bit_string_literal, - STATE(2451), 1, + STATE(2620), 1, sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -66779,21 +67645,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1281), 3, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66808,7 +67673,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66817,53 +67682,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25756] = 29, + [26194] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(1331), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, + ACTIONS(1333), 1, + sym_condition_conversion, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(1351), 1, sym_bit_string_base, - STATE(449), 1, + STATE(469), 1, sym_unary_operator, - STATE(450), 1, + STATE(470), 1, sym_sign, - STATE(770), 1, + STATE(813), 1, sym__direct_name, - STATE(1330), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(1394), 1, + STATE(2220), 1, sym__expression, - STATE(1417), 1, + STATE(2227), 1, sym_based_literal, - STATE(2415), 1, + STATE(2616), 1, sym_bit_string_literal, - STATE(2434), 1, + STATE(2620), 1, sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -66871,21 +67738,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1384), 3, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66900,7 +67766,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -66909,53 +67775,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25877] = 29, + [26317] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, - sym_condition_conversion, - ACTIONS(1062), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(1038), 1, sym_bit_string_base, - STATE(477), 1, + ACTIONS(1401), 1, + sym_condition_conversion, + STATE(599), 1, sym_sign, - STATE(529), 1, + STATE(602), 1, sym_unary_operator, - STATE(865), 1, + STATE(753), 1, sym__direct_name, - STATE(2069), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(2290), 1, + STATE(1348), 1, sym_based_literal, - STATE(2298), 1, + STATE(1365), 1, sym__expression, - STATE(2618), 1, + STATE(2435), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2438), 1, sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -66963,21 +67831,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -66992,7 +67859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67001,53 +67868,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [25998] = 29, + [26440] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(1331), 1, + anon_sym_LPAREN, + ACTIONS(1333), 1, + sym_condition_conversion, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(1351), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - sym_condition_conversion, - STATE(530), 1, - sym_sign, - STATE(531), 1, + STATE(469), 1, sym_unary_operator, - STATE(772), 1, + STATE(470), 1, + sym_sign, + STATE(813), 1, sym__direct_name, - STATE(1277), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(1563), 1, + STATE(2188), 1, sym__expression, - STATE(1628), 1, + STATE(2227), 1, sym_based_literal, - STATE(2435), 1, - sym__primary, - STATE(2439), 1, + STATE(2616), 1, sym_bit_string_literal, + STATE(2620), 1, + sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67055,21 +67924,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1280), 3, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -67084,7 +67952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67093,55 +67961,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [26119] = 30, + [26563] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(998), 1, sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(1062), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(1082), 1, sym_bit_string_base, - STATE(421), 1, + STATE(491), 1, sym_unary_operator, - STATE(591), 1, + STATE(496), 1, sym_sign, - STATE(806), 1, + STATE(882), 1, sym__direct_name, - STATE(1862), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(2152), 1, - sym_based_literal, - STATE(2369), 1, + STATE(2330), 1, sym__expression, - STATE(2576), 1, - sym_simple_expression, - STATE(2582), 1, - sym__primary, - STATE(2589), 1, + STATE(2342), 1, + sym_based_literal, + STATE(2699), 1, sym_bit_string_literal, + STATE(2703), 1, + sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67149,25 +68017,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1733), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -67177,7 +68045,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67186,7 +68054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [26242] = 28, + [26686] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -67207,19 +68075,23 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(1112), 1, sym_bit_string_base, - STATE(582), 1, + STATE(629), 1, sym_sign, - STATE(732), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(955), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1020), 1, - sym_based_literal, - STATE(1082), 1, + STATE(1023), 1, sym__expression, - STATE(2091), 1, + STATE(1094), 1, + sym_based_literal, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2094), 1, + STATE(2053), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, @@ -67227,33 +68099,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(945), 2, sym__identifier, sym__external_name, ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(930), 3, + STATE(581), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(581), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -67277,74 +68147,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [26361] = 28, + [26809] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1241), 1, sym_bit_string_base, - STATE(581), 1, + STATE(421), 1, sym_unary_operator, - STATE(732), 1, + STATE(427), 1, + sym_sign, + STATE(871), 1, sym__direct_name, - STATE(955), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(1020), 1, - sym_based_literal, - STATE(1099), 1, + STATE(2382), 1, sym__expression, - STATE(2091), 1, - sym__primary, - STATE(2094), 1, + STATE(2391), 1, + sym_based_literal, + STATE(2691), 1, sym_bit_string_literal, + STATE(2726), 1, + sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(930), 3, + STATE(582), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(582), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -67359,7 +68231,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67368,53 +68240,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [26480] = 29, + [26932] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1241), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(421), 1, sym_unary_operator, - STATE(847), 1, + STATE(427), 1, + sym_sign, + STATE(871), 1, sym__direct_name, - STATE(2165), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(2303), 1, - sym_based_literal, - STATE(2308), 1, + STATE(2381), 1, sym__expression, - STATE(2615), 1, + STATE(2391), 1, + sym_based_literal, + STATE(2691), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2726), 1, sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67422,21 +68296,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -67451,7 +68324,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67460,53 +68333,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [26601] = 29, + [27055] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, + ACTIONS(954), 1, sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1381), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1399), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(501), 1, sym_unary_operator, - STATE(847), 1, + STATE(504), 1, + sym_sign, + STATE(821), 1, sym__direct_name, - STATE(2165), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(2266), 1, - sym__expression, - STATE(2303), 1, + STATE(2044), 1, sym_based_literal, - STATE(2615), 1, - sym_bit_string_literal, - STATE(2627), 1, + STATE(2141), 1, + sym__expression, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, + STATE(2657), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67514,21 +68389,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -67543,7 +68417,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67552,53 +68426,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [26722] = 29, + [27178] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, + ACTIONS(998), 1, sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1062), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1082), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(491), 1, sym_unary_operator, - STATE(847), 1, + STATE(496), 1, + sym_sign, + STATE(882), 1, sym__direct_name, - STATE(2165), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(2265), 1, - sym__expression, - STATE(2303), 1, + STATE(2342), 1, sym_based_literal, - STATE(2615), 1, + STATE(2375), 1, + sym__expression, + STATE(2699), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2703), 1, sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67606,21 +68482,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -67635,7 +68510,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67644,53 +68519,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [26843] = 29, + [27301] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, + ACTIONS(954), 1, sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1381), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1399), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(501), 1, sym_unary_operator, - STATE(847), 1, + STATE(504), 1, + sym_sign, + STATE(821), 1, sym__direct_name, - STATE(2165), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(2259), 1, - sym__expression, - STATE(2303), 1, + STATE(2044), 1, sym_based_literal, - STATE(2615), 1, - sym_bit_string_literal, - STATE(2627), 1, + STATE(2142), 1, + sym__expression, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, + STATE(2657), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67698,21 +68575,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -67727,7 +68603,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67736,53 +68612,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [26964] = 29, + [27424] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(1241), 1, sym_bit_string_base, - STATE(449), 1, + STATE(421), 1, sym_unary_operator, - STATE(450), 1, + STATE(427), 1, sym_sign, - STATE(770), 1, + STATE(871), 1, sym__direct_name, - STATE(1330), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(1411), 1, + STATE(2380), 1, sym__expression, - STATE(1417), 1, + STATE(2391), 1, sym_based_literal, - STATE(2415), 1, + STATE(2691), 1, sym_bit_string_literal, - STATE(2434), 1, + STATE(2726), 1, sym__primary, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67790,21 +68668,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1384), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -67819,7 +68696,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67828,55 +68705,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [27085] = 30, + [27547] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1223), 1, + sym_condition_conversion, + ACTIONS(1225), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1229), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1235), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1239), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1241), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(421), 1, sym_unary_operator, - STATE(847), 1, + STATE(427), 1, + sym_sign, + STATE(871), 1, sym__direct_name, - STATE(2165), 1, + STATE(2185), 1, sym__abstract_literal, - STATE(2303), 1, - sym_based_literal, - STATE(2363), 1, + STATE(2367), 1, sym__expression, - STATE(2615), 1, + STATE(2391), 1, + sym_based_literal, + STATE(2691), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2726), 1, sym__primary, - STATE(2666), 1, - sym_simple_expression, + STATE(2729), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1233), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(2040), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1237), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67884,25 +68761,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2727), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(2769), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -67912,7 +68789,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1231), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -67921,53 +68798,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [27208] = 29, + [27670] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1263), 1, + ACTIONS(397), 1, sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(423), 1, sym_bit_string_base, - STATE(453), 1, - sym_unary_operator, - STATE(472), 1, + STATE(608), 1, sym_sign, - STATE(827), 1, + STATE(619), 1, + sym_unary_operator, + STATE(775), 1, sym__direct_name, - STATE(1761), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(2128), 1, + STATE(1461), 1, sym__expression, - STATE(2141), 1, + STATE(1518), 1, sym_based_literal, - STATE(2533), 1, - sym_bit_string_literal, - STATE(2598), 1, + STATE(2488), 1, sym__primary, + STATE(2493), 1, + sym_bit_string_literal, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -67975,21 +68854,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1736), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68004,7 +68882,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68013,53 +68891,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [27329] = 29, + [27793] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, - anon_sym_LPAREN, - ACTIONS(1263), 1, + ACTIONS(954), 1, sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(1381), 1, + anon_sym_LPAREN, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(1399), 1, sym_bit_string_base, - STATE(453), 1, + STATE(501), 1, sym_unary_operator, - STATE(472), 1, + STATE(504), 1, sym_sign, - STATE(827), 1, + STATE(821), 1, sym__direct_name, - STATE(1761), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(2117), 1, - sym__expression, - STATE(2141), 1, + STATE(2044), 1, sym_based_literal, - STATE(2533), 1, - sym_bit_string_literal, - STATE(2598), 1, + STATE(2143), 1, + sym__expression, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, + STATE(2657), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -68067,21 +68947,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1736), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2672), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68096,7 +68975,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68105,74 +68984,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [27450] = 28, + [27916] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(1038), 1, sym_bit_string_base, - STATE(421), 1, + ACTIONS(1401), 1, + sym_condition_conversion, + STATE(599), 1, + sym_sign, + STATE(602), 1, sym_unary_operator, - STATE(806), 1, + STATE(753), 1, sym__direct_name, - STATE(1862), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(2152), 1, + STATE(1348), 1, sym_based_literal, - STATE(2164), 1, + STATE(1364), 1, sym__expression, - STATE(2582), 1, - sym__primary, - STATE(2589), 1, + STATE(2435), 1, sym_bit_string_literal, + STATE(2438), 1, + sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1733), 3, + STATE(591), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(591), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68187,7 +69068,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68196,53 +69077,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [27569] = 29, + [28039] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1155), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(1161), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(1167), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(1171), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(1173), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - sym_condition_conversion, - STATE(530), 1, + STATE(476), 1, sym_sign, - STATE(531), 1, + STATE(483), 1, sym_unary_operator, - STATE(772), 1, + STATE(769), 1, sym__direct_name, - STATE(1277), 1, + STATE(1334), 1, sym__abstract_literal, - STATE(1561), 1, - sym__expression, - STATE(1628), 1, + STATE(1438), 1, sym_based_literal, - STATE(2435), 1, + STATE(2463), 1, + sym__expression, + STATE(2509), 1, + sym__literal, + STATE(2523), 1, + sym_simple_expression, + STATE(2528), 1, sym__primary, - STATE(2439), 1, + STATE(2531), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(1165), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(1330), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(1169), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -68250,26 +69135,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1280), 3, + STATE(1328), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2513), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1159), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -68279,7 +69162,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(1163), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68288,75 +69171,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [27690] = 29, + [28164] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(870), 1, + anon_sym_LPAREN, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(890), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, + ACTIONS(1375), 1, sym_condition_conversion, - STATE(530), 1, - sym_sign, - STATE(531), 1, + STATE(598), 1, sym_unary_operator, - STATE(772), 1, + STATE(743), 1, sym__direct_name, - STATE(1277), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(1556), 1, - sym__expression, - STATE(1628), 1, + STATE(1128), 1, sym_based_literal, - STATE(2435), 1, + STATE(1152), 1, + sym__expression, + STATE(2310), 1, sym__primary, - STATE(2439), 1, + STATE(2351), 1, sym_bit_string_literal, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(593), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1280), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(593), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68371,7 +69254,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68380,53 +69263,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [27811] = 29, + [28285] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1179), 1, + sym_condition_conversion, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1197), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(416), 1, sym_sign, - STATE(732), 1, + STATE(417), 1, + sym_unary_operator, + STATE(817), 1, sym__direct_name, - STATE(955), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1926), 1, sym_based_literal, - STATE(2091), 1, + STATE(2004), 1, + sym__expression, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, - STATE(2094), 1, + STATE(2678), 1, sym_bit_string_literal, - STATE(2300), 1, - sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -68434,21 +69319,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68463,7 +69347,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68472,53 +69356,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [27932] = 29, + [28408] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(1263), 1, + ACTIONS(1179), 1, sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(1197), 1, sym_bit_string_base, - STATE(453), 1, - sym_unary_operator, - STATE(472), 1, + STATE(416), 1, sym_sign, - STATE(827), 1, + STATE(417), 1, + sym_unary_operator, + STATE(817), 1, sym__direct_name, - STATE(1761), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(2116), 1, - sym__expression, - STATE(2141), 1, + STATE(1926), 1, sym_based_literal, - STATE(2533), 1, - sym_bit_string_literal, - STATE(2598), 1, + STATE(1977), 1, + sym__expression, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, + STATE(2678), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -68526,21 +69412,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1736), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68555,7 +69440,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68564,53 +69449,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [28053] = 29, + [28531] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(1361), 1, + ACTIONS(1179), 1, sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(1197), 1, sym_bit_string_base, - STATE(548), 1, + STATE(416), 1, sym_sign, - STATE(549), 1, + STATE(417), 1, sym_unary_operator, - STATE(823), 1, + STATE(817), 1, sym__direct_name, - STATE(1738), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(1974), 1, + STATE(1926), 1, sym_based_literal, - STATE(2078), 1, + STATE(1962), 1, sym__expression, - STATE(2567), 1, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, - STATE(2577), 1, + STATE(2678), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -68618,21 +69505,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1861), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68647,7 +69533,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68656,53 +69542,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [28174] = 29, + [28654] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(1263), 1, + ACTIONS(1179), 1, sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(1197), 1, sym_bit_string_base, - STATE(453), 1, - sym_unary_operator, - STATE(472), 1, + STATE(416), 1, sym_sign, - STATE(827), 1, + STATE(417), 1, + sym_unary_operator, + STATE(817), 1, sym__direct_name, - STATE(1761), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(2115), 1, - sym__expression, - STATE(2141), 1, + STATE(1926), 1, sym_based_literal, - STATE(2533), 1, - sym_bit_string_literal, - STATE(2598), 1, + STATE(1941), 1, + sym__expression, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, + STATE(2678), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -68710,21 +69598,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1736), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68739,7 +69626,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68748,75 +69635,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [28295] = 29, + [28777] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, + ACTIONS(874), 1, anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(878), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(884), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(888), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(890), 1, sym_bit_string_base, - STATE(449), 1, - sym_unary_operator, - STATE(450), 1, + ACTIONS(1375), 1, + sym_condition_conversion, + STATE(593), 1, sym_sign, - STATE(770), 1, + STATE(743), 1, sym__direct_name, - STATE(1330), 1, + STATE(1104), 1, sym__abstract_literal, - STATE(1412), 1, - sym__expression, - STATE(1417), 1, + STATE(1128), 1, sym_based_literal, - STATE(2415), 1, - sym_bit_string_literal, - STATE(2434), 1, + STATE(1149), 1, + sym__expression, + STATE(2310), 1, sym__primary, + STATE(2351), 1, + sym_bit_string_literal, + STATE(2356), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(882), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(598), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1384), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(2355), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(598), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2386), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68831,7 +69718,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(880), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68840,75 +69727,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [28416] = 29, + [28898] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1004), 1, - sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(1038), 1, sym_bit_string_base, - STATE(449), 1, + ACTIONS(1401), 1, + sym_condition_conversion, + STATE(602), 1, sym_unary_operator, - STATE(450), 1, - sym_sign, - STATE(770), 1, + STATE(753), 1, sym__direct_name, - STATE(1330), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(1413), 1, - sym__expression, - STATE(1417), 1, + STATE(1348), 1, sym_based_literal, - STATE(2415), 1, + STATE(1362), 1, + sym__expression, + STATE(2435), 1, sym_bit_string_literal, - STATE(2434), 1, + STATE(2438), 1, sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(599), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1384), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2420), 5, + STATE(599), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -68923,7 +69810,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -68932,7 +69819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [28537] = 30, + [29019] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -68941,46 +69828,48 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1062), 1, - anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(1419), 1, sym_bit_string_base, - STATE(477), 1, + STATE(630), 1, sym_sign, - STATE(529), 1, + STATE(633), 1, sym_unary_operator, - STATE(865), 1, + STATE(802), 1, sym__direct_name, - STATE(2069), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(2290), 1, + STATE(1784), 1, sym_based_literal, - STATE(2374), 1, + STATE(2462), 1, sym__expression, - STATE(2618), 1, + STATE(2541), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2554), 1, sym__primary, - STATE(2669), 1, + STATE(2558), 1, sym_simple_expression, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -68988,25 +69877,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -69016,7 +69904,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69025,53 +69913,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [28660] = 29, + [29144] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(854), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(860), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(864), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(866), 1, + ACTIONS(1112), 1, sym_bit_string_base, - ACTIONS(978), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - sym_condition_conversion, - STATE(530), 1, + STATE(629), 1, sym_sign, - STATE(531), 1, + STATE(638), 1, sym_unary_operator, - STATE(772), 1, + STATE(734), 1, sym__direct_name, - STATE(1277), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1497), 1, - sym__expression, - STATE(1628), 1, + STATE(1094), 1, sym_based_literal, - STATE(2435), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2439), 1, + STATE(2053), 1, sym_bit_string_literal, + STATE(2376), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(858), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1283), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -69079,21 +69969,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1280), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(852), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2444), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2399), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69108,7 +69997,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(856), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69117,75 +70006,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [28781] = 29, + [29267] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1018), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1026), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1032), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1036), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1038), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + ACTIONS(1401), 1, + sym_condition_conversion, + STATE(599), 1, sym_sign, - STATE(732), 1, + STATE(753), 1, sym__direct_name, - STATE(955), 1, + STATE(1146), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1348), 1, sym_based_literal, - STATE(1055), 1, + STATE(1358), 1, sym__expression, - STATE(2091), 1, - sym__primary, - STATE(2094), 1, + STATE(2435), 1, sym_bit_string_literal, + STATE(2438), 1, + sym__primary, + STATE(2439), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1030), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(602), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(930), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2432), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(602), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2437), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69200,7 +70089,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1028), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69209,53 +70098,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [28902] = 29, + [29388] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(1331), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(1333), 1, + sym_condition_conversion, + ACTIONS(1335), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(1339), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(1345), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(1349), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(1351), 1, sym_bit_string_base, - ACTIONS(1211), 1, - sym_condition_conversion, - STATE(422), 1, + STATE(469), 1, sym_unary_operator, - STATE(423), 1, + STATE(470), 1, sym_sign, - STATE(741), 1, + STATE(813), 1, sym__direct_name, - STATE(1089), 1, + STATE(1904), 1, sym__abstract_literal, - STATE(1123), 1, - sym_based_literal, - STATE(1176), 1, + STATE(2140), 1, sym__expression, - STATE(2241), 1, - sym__primary, - STATE(2245), 1, + STATE(2227), 1, + sym_based_literal, + STATE(2616), 1, sym_bit_string_literal, + STATE(2620), 1, + sym__primary, + STATE(2659), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(1343), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -69263,21 +70154,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1029), 3, + STATE(1824), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2677), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1337), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2688), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69292,7 +70182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(1341), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69301,53 +70191,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29023] = 29, + [29511] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(581), 1, + STATE(425), 1, sym_unary_operator, - STATE(582), 1, + STATE(438), 1, sym_sign, - STATE(732), 1, + STATE(870), 1, sym__direct_name, - STATE(955), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(997), 1, + STATE(2295), 1, sym__expression, - STATE(1020), 1, + STATE(2304), 1, sym_based_literal, - STATE(2091), 1, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, - STATE(2094), 1, + STATE(2698), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -69355,21 +70247,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69384,7 +70275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69393,74 +70284,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29144] = 28, + [29634] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1243), 1, + anon_sym_LPAREN, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(626), 1, + STATE(425), 1, + sym_unary_operator, + STATE(438), 1, sym_sign, - STATE(780), 1, + STATE(870), 1, sym__direct_name, - STATE(1401), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(1663), 1, + STATE(2296), 1, sym__expression, - STATE(1836), 1, + STATE(2304), 1, sym_based_literal, - STATE(2463), 1, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, - STATE(2470), 1, + STATE(2698), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1585), 3, + STATE(605), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(605), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69475,7 +70368,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69484,53 +70377,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29263] = 29, + [29757] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(581), 1, + STATE(425), 1, sym_unary_operator, - STATE(582), 1, + STATE(438), 1, sym_sign, - STATE(732), 1, + STATE(870), 1, sym__direct_name, - STATE(955), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(998), 1, + STATE(2297), 1, sym__expression, - STATE(1020), 1, + STATE(2304), 1, sym_based_literal, - STATE(2091), 1, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, - STATE(2094), 1, + STATE(2698), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -69538,21 +70433,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69567,7 +70461,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69576,53 +70470,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29384] = 29, + [29880] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(976), 1, sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(581), 1, + STATE(425), 1, sym_unary_operator, - STATE(582), 1, + STATE(438), 1, sym_sign, - STATE(732), 1, + STATE(870), 1, sym__direct_name, - STATE(955), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(2302), 1, + sym__expression, + STATE(2304), 1, sym_based_literal, - STATE(2091), 1, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, - STATE(2094), 1, + STATE(2698), 1, sym_bit_string_literal, - STATE(2306), 1, - sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -69630,21 +70526,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2697), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69659,7 +70554,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69668,75 +70563,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29505] = 29, + [30003] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(397), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(423), 1, sym_bit_string_base, - STATE(536), 1, + STATE(619), 1, sym_unary_operator, - STATE(572), 1, - sym_sign, - STATE(880), 1, + STATE(775), 1, sym__direct_name, - STATE(2033), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(2231), 1, - sym_based_literal, - STATE(2304), 1, + STATE(1482), 1, sym__expression, - STATE(2646), 1, + STATE(1518), 1, + sym_based_literal, + STATE(2488), 1, sym__primary, - STATE(2664), 1, + STATE(2493), 1, sym_bit_string_literal, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(608), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1878), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(608), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69751,7 +70646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69760,74 +70655,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29626] = 28, + [30124] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, + ACTIONS(938), 1, sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(1419), 1, sym_bit_string_base, - STATE(610), 1, + STATE(630), 1, + sym_sign, + STATE(633), 1, sym_unary_operator, - STATE(879), 1, + STATE(802), 1, sym__direct_name, - STATE(2180), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(2313), 1, - sym__expression, - STATE(2342), 1, + STATE(1784), 1, sym_based_literal, - STATE(2619), 1, + STATE(1820), 1, + sym__expression, + STATE(2541), 1, sym_bit_string_literal, - STATE(2665), 1, + STATE(2554), 1, sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1895), 3, + STATE(609), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(609), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -69842,7 +70739,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69851,79 +70748,82 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29745] = 28, + [30247] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(609), 1, + STATE(680), 1, sym_sign, - STATE(879), 1, + STATE(683), 1, + sym_unary_operator, + STATE(762), 1, sym__direct_name, - STATE(2180), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(2314), 1, - sym__expression, - STATE(2342), 1, + STATE(1564), 1, sym_based_literal, - STATE(2619), 1, - sym_bit_string_literal, - STATE(2665), 1, + STATE(2433), 1, + sym__expression, + STATE(2477), 1, + sym_simple_expression, + STATE(2484), 1, sym__primary, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1895), 3, + STATE(610), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(610), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -69933,7 +70833,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -69942,50 +70842,52 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29864] = 29, + [30372] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(938), 1, sym_condition_conversion, - ACTIONS(1094), 1, - anon_sym_LPAREN, ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1419), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(630), 1, sym_sign, - STATE(732), 1, + STATE(633), 1, + sym_unary_operator, + STATE(802), 1, sym__direct_name, - STATE(955), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(999), 1, - sym__expression, - STATE(1020), 1, + STATE(1784), 1, sym_based_literal, - STATE(2091), 1, - sym__primary, - STATE(2094), 1, + STATE(1819), 1, + sym__expression, + STATE(2541), 1, sym_bit_string_literal, + STATE(2554), 1, + sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(945), 2, sym__identifier, sym__external_name, ACTIONS(1108), 3, @@ -69996,21 +70898,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70025,7 +70926,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70034,53 +70935,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [29985] = 29, + [30495] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1311), 1, + sym_condition_conversion, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(581), 1, + STATE(626), 1, sym_unary_operator, - STATE(582), 1, + STATE(627), 1, sym_sign, - STATE(732), 1, + STATE(865), 1, sym__direct_name, - STATE(955), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(1000), 1, + STATE(2313), 1, sym__expression, - STATE(1020), 1, + STATE(2326), 1, sym_based_literal, - STATE(2091), 1, - sym__primary, - STATE(2094), 1, + STATE(2756), 1, sym_bit_string_literal, + STATE(2759), 1, + sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -70088,21 +70991,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70117,7 +71019,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70126,53 +71028,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [30106] = 29, + [30618] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(1311), 1, + sym_condition_conversion, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(1329), 1, sym_bit_string_base, - ACTIONS(1443), 1, - sym_condition_conversion, - STATE(628), 1, - sym_sign, - STATE(629), 1, + STATE(626), 1, sym_unary_operator, - STATE(725), 1, + STATE(627), 1, + sym_sign, + STATE(865), 1, sym__direct_name, - STATE(839), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(893), 1, + STATE(2314), 1, sym__expression, - STATE(903), 1, + STATE(2326), 1, sym_based_literal, - STATE(1562), 1, + STATE(2756), 1, sym_bit_string_literal, - STATE(1584), 1, + STATE(2759), 1, sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -70180,21 +71084,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70209,7 +71112,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70218,53 +71121,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [30227] = 29, + [30741] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(912), 1, sym_bit_string_base, - ACTIONS(1443), 1, - sym_condition_conversion, - STATE(628), 1, + STATE(466), 1, sym_sign, - STATE(629), 1, + STATE(468), 1, sym_unary_operator, - STATE(725), 1, + STATE(845), 1, sym__direct_name, - STATE(839), 1, + STATE(2030), 1, + sym__expression, + STATE(2210), 1, sym__abstract_literal, - STATE(903), 1, + STATE(2431), 1, sym_based_literal, - STATE(916), 1, - sym__expression, - STATE(1562), 1, - sym_bit_string_literal, - STATE(1584), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, + STATE(2768), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -70272,21 +71177,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70301,7 +71205,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70310,53 +71214,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [30348] = 29, + [30864] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(1311), 1, + sym_condition_conversion, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(1329), 1, sym_bit_string_base, - ACTIONS(1443), 1, - sym_condition_conversion, - STATE(628), 1, - sym_sign, - STATE(629), 1, + STATE(626), 1, sym_unary_operator, - STATE(725), 1, + STATE(627), 1, + sym_sign, + STATE(865), 1, sym__direct_name, - STATE(839), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(903), 1, + STATE(2326), 1, sym_based_literal, - STATE(914), 1, + STATE(2377), 1, sym__expression, - STATE(1562), 1, + STATE(2756), 1, sym_bit_string_literal, - STATE(1584), 1, + STATE(2759), 1, sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -70364,21 +71270,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70393,7 +71298,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70402,55 +71307,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [30469] = 30, + [30987] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(1311), 1, + sym_condition_conversion, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(662), 1, - sym_sign, - STATE(672), 1, + STATE(626), 1, sym_unary_operator, - STATE(785), 1, + STATE(627), 1, + sym_sign, + STATE(865), 1, sym__direct_name, - STATE(1499), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(1735), 1, - sym_based_literal, - STATE(2375), 1, + STATE(2315), 1, sym__expression, - STATE(2475), 1, - sym__primary, - STATE(2489), 1, - sym_simple_expression, - STATE(2508), 1, + STATE(2326), 1, + sym_based_literal, + STATE(2756), 1, sym_bit_string_literal, + STATE(2759), 1, + sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -70458,25 +71363,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1624), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -70486,7 +71391,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70495,53 +71400,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [30592] = 29, + [31110] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1311), 1, + sym_condition_conversion, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(581), 1, + STATE(626), 1, sym_unary_operator, - STATE(582), 1, + STATE(627), 1, sym_sign, - STATE(732), 1, + STATE(865), 1, sym__direct_name, - STATE(955), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(1001), 1, + STATE(2320), 1, sym__expression, - STATE(1020), 1, + STATE(2326), 1, sym_based_literal, - STATE(2091), 1, - sym__primary, - STATE(2094), 1, + STATE(2756), 1, sym_bit_string_literal, + STATE(2759), 1, + sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -70549,21 +71456,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70578,7 +71484,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70587,53 +71493,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [30713] = 29, + [31233] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1153), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, + ACTIONS(938), 1, sym_condition_conversion, - ACTIONS(1157), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1161), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(1167), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(1171), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(1173), 1, + ACTIONS(1419), 1, sym_bit_string_base, - STATE(609), 1, + STATE(630), 1, sym_sign, - STATE(610), 1, + STATE(633), 1, sym_unary_operator, - STATE(879), 1, + STATE(802), 1, sym__direct_name, - STATE(2180), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(2323), 1, - sym__expression, - STATE(2342), 1, + STATE(1784), 1, sym_based_literal, - STATE(2619), 1, + STATE(1815), 1, + sym__expression, + STATE(2541), 1, sym_bit_string_literal, - STATE(2665), 1, + STATE(2554), 1, sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1165), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(1891), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -70641,21 +71549,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1895), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1159), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2606), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2657), 5, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70670,7 +71577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1163), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70679,75 +71586,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [30834] = 29, + [31356] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(397), 1, + sym_condition_conversion, + ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(423), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(608), 1, sym_sign, - STATE(732), 1, + STATE(775), 1, sym__direct_name, - STATE(955), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(1003), 1, + STATE(1484), 1, sym__expression, - STATE(1020), 1, + STATE(1518), 1, sym_based_literal, - STATE(2091), 1, + STATE(2488), 1, sym__primary, - STATE(2094), 1, + STATE(2493), 1, sym_bit_string_literal, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(619), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(930), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(619), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70762,7 +71669,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70771,53 +71678,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [30955] = 29, + [31477] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1062), 1, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1245), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(1249), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(1255), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(1259), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(1261), 1, sym_bit_string_base, - STATE(477), 1, - sym_sign, - STATE(529), 1, + STATE(425), 1, sym_unary_operator, - STATE(865), 1, + STATE(438), 1, + sym_sign, + STATE(870), 1, sym__direct_name, - STATE(2069), 1, + STATE(1922), 1, sym__abstract_literal, - STATE(2275), 1, - sym__expression, - STATE(2290), 1, + STATE(2304), 1, sym_based_literal, - STATE(2618), 1, - sym_bit_string_literal, - STATE(2623), 1, + STATE(2461), 1, + sym__expression, + STATE(2694), 1, + sym__literal, + STATE(2696), 1, sym__primary, + STATE(2698), 1, + sym_bit_string_literal, + STATE(2715), 1, + sym_simple_expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(1253), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -70825,26 +71736,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2695), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -70854,7 +71763,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(1251), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70863,75 +71772,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [31076] = 29, + [31602] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, - sym_condition_conversion, - ACTIONS(1062), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(1070), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(1076), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(1080), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(1082), 1, + ACTIONS(972), 1, sym_bit_string_base, - STATE(477), 1, + ACTIONS(1421), 1, + sym_condition_conversion, + STATE(628), 1, sym_sign, - STATE(529), 1, - sym_unary_operator, - STATE(865), 1, + STATE(777), 1, sym__direct_name, - STATE(2069), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(2258), 1, - sym__expression, - STATE(2290), 1, + STATE(1524), 1, sym_based_literal, - STATE(2618), 1, + STATE(1544), 1, + sym__expression, + STATE(2495), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2504), 1, sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1074), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(1078), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(621), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1910), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1068), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(621), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -70946,7 +71855,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1072), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -70955,14 +71864,14 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [31197] = 29, + [31723] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, + ACTIONS(998), 1, sym_condition_conversion, ACTIONS(1062), 1, anon_sym_LPAREN, @@ -70976,29 +71885,31 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(1082), 1, sym_bit_string_base, - STATE(477), 1, - sym_sign, - STATE(529), 1, + STATE(491), 1, sym_unary_operator, - STATE(865), 1, + STATE(496), 1, + sym_sign, + STATE(882), 1, sym__direct_name, - STATE(2069), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(2257), 1, + STATE(2332), 1, sym__expression, - STATE(2290), 1, + STATE(2342), 1, sym_based_literal, - STATE(2618), 1, + STATE(2699), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2703), 1, sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(1915), 2, sym__identifier, sym__external_name, ACTIONS(1078), 3, @@ -71009,21 +71920,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71047,14 +71957,14 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [31318] = 29, + [31846] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(894), 1, + ACTIONS(998), 1, sym_condition_conversion, ACTIONS(1062), 1, anon_sym_LPAREN, @@ -71068,29 +71978,31 @@ static const uint16_t ts_small_parse_table[] = { sym_bit_string_length, ACTIONS(1082), 1, sym_bit_string_base, - STATE(477), 1, - sym_sign, - STATE(529), 1, + STATE(491), 1, sym_unary_operator, - STATE(865), 1, + STATE(496), 1, + sym_sign, + STATE(882), 1, sym__direct_name, - STATE(2069), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(2256), 1, + STATE(2333), 1, sym__expression, - STATE(2290), 1, + STATE(2342), 1, sym_based_literal, - STATE(2618), 1, + STATE(2699), 1, sym_bit_string_literal, - STATE(2623), 1, + STATE(2703), 1, sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1914), 2, + STATE(1915), 2, sym__identifier, sym__external_name, ACTIONS(1078), 3, @@ -71101,21 +72013,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1910), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2624), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2620), 5, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71139,55 +72050,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [31439] = 30, + [31969] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(998), 1, sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(1062), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(1082), 1, sym_bit_string_base, - STATE(700), 1, - sym_sign, - STATE(701), 1, + STATE(491), 1, sym_unary_operator, - STATE(870), 1, + STATE(496), 1, + sym_sign, + STATE(882), 1, sym__direct_name, - STATE(2023), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(2270), 1, - sym_based_literal, - STATE(2381), 1, + STATE(2334), 1, sym__expression, - STATE(2638), 1, - sym__primary, - STATE(2648), 1, + STATE(2342), 1, + sym_based_literal, + STATE(2699), 1, sym_bit_string_literal, - STATE(2663), 1, - sym_simple_expression, + STATE(2703), 1, + sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -71195,25 +72106,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -71223,7 +72134,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71232,53 +72143,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [31562] = 29, + [32092] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, + ACTIONS(998), 1, sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(1062), 1, anon_sym_LPAREN, - ACTIONS(938), 1, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(1082), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + STATE(491), 1, sym_unary_operator, - STATE(847), 1, + STATE(496), 1, + sym_sign, + STATE(882), 1, sym__direct_name, - STATE(1445), 1, - sym__expression, - STATE(2165), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(2340), 1, + sym__expression, + STATE(2342), 1, sym_based_literal, - STATE(2615), 1, + STATE(2699), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(2703), 1, sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -71286,21 +72199,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71315,7 +72227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71324,74 +72236,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [31683] = 28, + [32215] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(1311), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(605), 1, - sym_unary_operator, - STATE(780), 1, + STATE(627), 1, + sym_sign, + STATE(865), 1, sym__direct_name, - STATE(1401), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(1662), 1, + STATE(2319), 1, sym__expression, - STATE(1836), 1, + STATE(2326), 1, sym_based_literal, - STATE(2463), 1, - sym__primary, - STATE(2470), 1, + STATE(2756), 1, sym_bit_string_literal, + STATE(2759), 1, + sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1585), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, STATE(626), 4, - sym_sign, + sym_unary_operator, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71406,7 +72319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71415,75 +72328,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [31802] = 29, + [32336] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(1311), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(536), 1, + STATE(626), 1, sym_unary_operator, - STATE(572), 1, - sym_sign, - STATE(880), 1, + STATE(865), 1, sym__direct_name, - STATE(2033), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(2231), 1, - sym_based_literal, - STATE(2261), 1, + STATE(2318), 1, sym__expression, - STATE(2646), 1, - sym__primary, - STATE(2664), 1, + STATE(2326), 1, + sym_based_literal, + STATE(2756), 1, sym_bit_string_literal, + STATE(2759), 1, + sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(627), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1878), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(627), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71498,7 +72411,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71507,59 +72420,65 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [31923] = 28, + [32457] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(972), 1, sym_bit_string_base, - ACTIONS(1443), 1, + ACTIONS(1421), 1, sym_condition_conversion, - STATE(629), 1, + STATE(621), 1, sym_unary_operator, - STATE(725), 1, + STATE(777), 1, sym__direct_name, - STATE(839), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(903), 1, + STATE(1524), 1, sym_based_literal, - STATE(921), 1, + STATE(1545), 1, sym__expression, - STATE(1562), 1, + STATE(2495), 1, sym_bit_string_literal, - STATE(1584), 1, + STATE(2504), 1, sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(869), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, @@ -71569,12 +72488,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71589,7 +72503,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71598,74 +72512,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [32042] = 28, + [32578] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(1112), 1, sym_bit_string_base, - ACTIONS(1443), 1, - sym_condition_conversion, - STATE(628), 1, - sym_sign, - STATE(725), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(839), 1, + STATE(971), 1, sym__abstract_literal, - STATE(903), 1, - sym_based_literal, - STATE(920), 1, + STATE(1000), 1, sym__expression, - STATE(1562), 1, - sym_bit_string_literal, - STATE(1584), 1, + STATE(1094), 1, + sym_based_literal, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(869), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, STATE(629), 4, - sym_unary_operator, + sym_sign, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71680,7 +72595,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71689,75 +72604,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [32161] = 29, + [32699] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(938), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(1419), 1, sym_bit_string_base, - STATE(536), 1, + STATE(633), 1, sym_unary_operator, - STATE(572), 1, - sym_sign, - STATE(880), 1, + STATE(802), 1, sym__direct_name, - STATE(2033), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(2231), 1, - sym_based_literal, - STATE(2252), 1, + STATE(1673), 1, sym__expression, - STATE(2646), 1, - sym__primary, - STATE(2664), 1, + STATE(1784), 1, + sym_based_literal, + STATE(2541), 1, sym_bit_string_literal, + STATE(2554), 1, + sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(630), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1878), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(630), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71772,7 +72687,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71781,53 +72696,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [32282] = 29, + [32820] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(1461), 1, sym_bit_string_base, - ACTIONS(1211), 1, - sym_condition_conversion, - STATE(422), 1, - sym_unary_operator, - STATE(423), 1, + STATE(701), 1, sym_sign, - STATE(741), 1, + STATE(705), 1, + sym_unary_operator, + STATE(791), 1, sym__direct_name, - STATE(1089), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(1123), 1, + STATE(1718), 1, sym_based_literal, - STATE(1189), 1, + STATE(2460), 1, sym__expression, - STATE(2241), 1, + STATE(2536), 1, sym__primary, - STATE(2245), 1, + STATE(2539), 1, + sym__literal, + STATE(2599), 1, + sym_simple_expression, + STATE(2602), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -71835,26 +72754,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1029), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -71864,7 +72781,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71873,53 +72790,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [32403] = 29, + [32945] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(998), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1062), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1082), 1, sym_bit_string_base, - STATE(605), 1, + STATE(491), 1, sym_unary_operator, - STATE(626), 1, + STATE(496), 1, sym_sign, - STATE(780), 1, + STATE(882), 1, sym__direct_name, - STATE(1376), 1, - sym__expression, - STATE(1401), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(1836), 1, + STATE(2342), 1, sym_based_literal, - STATE(2463), 1, - sym__primary, - STATE(2470), 1, + STATE(2390), 1, + sym__expression, + STATE(2699), 1, sym_bit_string_literal, + STATE(2703), 1, + sym__primary, + STATE(2705), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -71927,21 +72846,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1585), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(2701), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -71956,7 +72874,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -71965,75 +72883,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [32524] = 29, + [33068] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(938), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1415), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1417), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1419), 1, sym_bit_string_base, - STATE(605), 1, - sym_unary_operator, - STATE(626), 1, + STATE(630), 1, sym_sign, - STATE(780), 1, + STATE(802), 1, sym__direct_name, - STATE(1401), 1, + STATE(1520), 1, sym__abstract_literal, - STATE(1772), 1, - sym__expression, - STATE(1836), 1, + STATE(1784), 1, sym_based_literal, - STATE(2463), 1, - sym__primary, - STATE(2470), 1, + STATE(1789), 1, + sym__expression, + STATE(2541), 1, sym_bit_string_literal, + STATE(2554), 1, + sym__primary, + STATE(2560), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1413), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(633), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1585), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2555), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(633), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2570), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72048,7 +72966,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1411), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72057,53 +72975,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [32645] = 29, + [33189] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(605), 1, - sym_unary_operator, - STATE(626), 1, + STATE(629), 1, sym_sign, - STATE(780), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1401), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1773), 1, + STATE(1001), 1, sym__expression, - STATE(1836), 1, + STATE(1094), 1, sym_based_literal, - STATE(2463), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2470), 1, + STATE(2053), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -72111,21 +73031,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1585), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72140,7 +73059,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72149,53 +73068,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [32766] = 29, + [33312] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(605), 1, - sym_unary_operator, - STATE(626), 1, + STATE(629), 1, sym_sign, - STATE(780), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1401), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1774), 1, + STATE(1017), 1, sym__expression, - STATE(1836), 1, + STATE(1094), 1, sym_based_literal, - STATE(2463), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2470), 1, + STATE(2053), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -72203,21 +73124,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1585), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72232,7 +73152,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72241,53 +73161,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [32887] = 29, + [33435] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(605), 1, - sym_unary_operator, - STATE(626), 1, + STATE(629), 1, sym_sign, - STATE(780), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1401), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1779), 1, + STATE(1019), 1, sym__expression, - STATE(1836), 1, + STATE(1094), 1, sym_based_literal, - STATE(2463), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2470), 1, + STATE(2053), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -72295,21 +73217,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1585), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72324,7 +73245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72333,53 +73254,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33008] = 29, + [33558] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(605), 1, - sym_unary_operator, - STATE(626), 1, + STATE(629), 1, sym_sign, - STATE(780), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1401), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1780), 1, + STATE(1080), 1, sym__expression, - STATE(1836), 1, + STATE(1094), 1, sym_based_literal, - STATE(2463), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2470), 1, + STATE(2053), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -72387,21 +73310,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1585), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72416,7 +73338,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72425,75 +73347,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33129] = 29, + [33681] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(605), 1, - sym_unary_operator, - STATE(626), 1, + STATE(629), 1, sym_sign, - STATE(780), 1, + STATE(734), 1, sym__direct_name, - STATE(1401), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1781), 1, + STATE(1062), 1, sym__expression, - STATE(1836), 1, + STATE(1094), 1, sym_based_literal, - STATE(2463), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, - STATE(2470), 1, + STATE(2053), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(638), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1585), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(638), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72508,7 +73430,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72517,53 +73439,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33250] = 29, + [33802] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(1339), 1, - sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(972), 1, sym_bit_string_base, - STATE(536), 1, + ACTIONS(1421), 1, + sym_condition_conversion, + STATE(621), 1, sym_unary_operator, - STATE(572), 1, + STATE(628), 1, sym_sign, - STATE(880), 1, + STATE(777), 1, sym__direct_name, - STATE(2033), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(2231), 1, + STATE(1524), 1, sym_based_literal, - STATE(2251), 1, + STATE(1553), 1, sym__expression, - STATE(2646), 1, - sym__primary, - STATE(2664), 1, + STATE(2495), 1, sym_bit_string_literal, + STATE(2504), 1, + sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -72571,21 +73495,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1878), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72600,7 +73523,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72609,53 +73532,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33371] = 29, + [33925] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(1062), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(1070), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(1076), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(1080), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(1082), 1, sym_bit_string_base, - STATE(536), 1, + STATE(491), 1, sym_unary_operator, - STATE(572), 1, + STATE(496), 1, sym_sign, - STATE(880), 1, + STATE(882), 1, sym__direct_name, - STATE(2033), 1, + STATE(2008), 1, sym__abstract_literal, - STATE(2231), 1, + STATE(2342), 1, sym_based_literal, - STATE(2243), 1, + STATE(2455), 1, sym__expression, - STATE(2646), 1, - sym__primary, - STATE(2664), 1, + STATE(2699), 1, sym_bit_string_literal, + STATE(2703), 1, + sym__primary, + STATE(2705), 1, + sym__literal, + STATE(2724), 1, + sym_simple_expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(1074), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -72663,26 +73590,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1878), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2704), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -72692,7 +73617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(1072), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72701,53 +73626,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33492] = 29, + [34050] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(1016), 1, sym_bit_string_base, - ACTIONS(1211), 1, + ACTIONS(1403), 1, sym_condition_conversion, - STATE(422), 1, - sym_unary_operator, - STATE(423), 1, + STATE(676), 1, sym_sign, - STATE(741), 1, + STATE(678), 1, + sym_unary_operator, + STATE(788), 1, sym__direct_name, - STATE(1089), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(1123), 1, + STATE(1694), 1, sym_based_literal, - STATE(1194), 1, + STATE(1746), 1, sym__expression, - STATE(2241), 1, - sym__primary, - STATE(2245), 1, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, + STATE(2613), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -72755,21 +73682,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1029), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72784,7 +73710,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72793,53 +73719,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33613] = 29, + [34173] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1016), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + ACTIONS(1403), 1, + sym_condition_conversion, + STATE(676), 1, sym_sign, - STATE(732), 1, + STATE(678), 1, + sym_unary_operator, + STATE(788), 1, sym__direct_name, - STATE(955), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1694), 1, sym_based_literal, - STATE(2091), 1, - sym__primary, - STATE(2094), 1, - sym_bit_string_literal, - STATE(2268), 1, + STATE(1745), 1, sym__expression, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, + sym_bit_string_literal, + STATE(2613), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -72847,21 +73775,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72876,7 +73803,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72885,74 +73812,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33734] = 28, + [34296] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(1201), 1, + sym_condition_conversion, + ACTIONS(1203), 1, + anon_sym_LT_LT, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(1219), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(646), 1, + STATE(418), 1, + sym_unary_operator, + STATE(419), 1, sym_sign, - STATE(766), 1, + STATE(825), 1, sym__direct_name, - STATE(1131), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(1338), 1, - sym_based_literal, - STATE(1385), 1, + STATE(2100), 1, sym__expression, - STATE(2379), 1, + STATE(2167), 1, + sym_based_literal, + STATE(2628), 1, sym_bit_string_literal, - STATE(2382), 1, + STATE(2631), 1, sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(869), 3, + STATE(643), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(643), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -72967,7 +73896,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -72976,53 +73905,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33853] = 29, + [34419] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1261), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1263), 1, + ACTIONS(1201), 1, sym_condition_conversion, - ACTIONS(1265), 1, + ACTIONS(1203), 1, anon_sym_LT_LT, - ACTIONS(1269), 1, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(1275), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(1279), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(1281), 1, + ACTIONS(1219), 1, sym_bit_string_base, - STATE(453), 1, + STATE(418), 1, sym_unary_operator, - STATE(472), 1, + STATE(419), 1, sym_sign, - STATE(827), 1, + STATE(825), 1, sym__direct_name, - STATE(1761), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(1908), 1, + STATE(2101), 1, sym__expression, - STATE(2141), 1, + STATE(2167), 1, sym_based_literal, - STATE(2533), 1, + STATE(2628), 1, sym_bit_string_literal, - STATE(2598), 1, + STATE(2631), 1, sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1273), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(1740), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73030,21 +73961,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1736), 3, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1267), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2597), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2602), 5, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73059,7 +73989,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1271), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73068,53 +73998,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [33974] = 29, + [34542] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, - sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(1201), 1, + sym_condition_conversion, + ACTIONS(1203), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(1219), 1, sym_bit_string_base, - STATE(662), 1, - sym_sign, - STATE(672), 1, + STATE(418), 1, sym_unary_operator, - STATE(785), 1, + STATE(419), 1, + sym_sign, + STATE(825), 1, sym__direct_name, - STATE(1499), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(1693), 1, + STATE(2106), 1, sym__expression, - STATE(1735), 1, + STATE(2167), 1, sym_based_literal, - STATE(2475), 1, - sym__primary, - STATE(2508), 1, + STATE(2628), 1, sym_bit_string_literal, + STATE(2631), 1, + sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73122,21 +74054,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1624), 3, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73151,7 +74082,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73160,74 +74091,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [34095] = 28, + [34665] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(1201), 1, + sym_condition_conversion, + ACTIONS(1203), 1, + anon_sym_LT_LT, + ACTIONS(1207), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(1213), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(1217), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(1219), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(643), 1, + STATE(418), 1, sym_unary_operator, - STATE(766), 1, + STATE(419), 1, + sym_sign, + STATE(825), 1, sym__direct_name, - STATE(1131), 1, + STATE(1706), 1, sym__abstract_literal, - STATE(1338), 1, - sym_based_literal, - STATE(1387), 1, + STATE(2145), 1, sym__expression, - STATE(2379), 1, + STATE(2167), 1, + sym_based_literal, + STATE(2628), 1, sym_bit_string_literal, - STATE(2382), 1, + STATE(2631), 1, sym__primary, + STATE(2633), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(1211), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1840), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1215), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(869), 3, + STATE(646), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2632), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1205), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(646), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(2630), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73242,7 +74175,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(1209), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73251,55 +74184,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [34214] = 30, + [34788] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(1016), 1, sym_bit_string_base, - STATE(487), 1, + ACTIONS(1403), 1, + sym_condition_conversion, + STATE(676), 1, sym_sign, - STATE(489), 1, + STATE(678), 1, sym_unary_operator, - STATE(767), 1, + STATE(788), 1, sym__direct_name, - STATE(1239), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(1513), 1, + STATE(1694), 1, sym_based_literal, - STATE(2384), 1, + STATE(1736), 1, sym__expression, - STATE(2410), 1, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, - STATE(2438), 1, - sym_simple_expression, - STATE(2447), 1, + STATE(2613), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73307,25 +74240,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1222), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -73335,7 +74268,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73344,53 +74277,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [34337] = 29, + [34911] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1002), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1006), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1016), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1020), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1022), 1, + ACTIONS(912), 1, sym_bit_string_base, - ACTIONS(1211), 1, - sym_condition_conversion, - STATE(422), 1, - sym_unary_operator, - STATE(423), 1, + STATE(466), 1, sym_sign, - STATE(741), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(1089), 1, + STATE(1916), 1, + sym__expression, + STATE(2210), 1, sym__abstract_literal, - STATE(1123), 1, + STATE(2431), 1, sym_based_literal, - STATE(1200), 1, - sym__expression, - STATE(2241), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2245), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1014), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1024), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73398,21 +74333,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1029), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1008), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2236), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2319), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73427,7 +74361,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1012), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73436,53 +74370,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [34458] = 29, + [35034] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, - sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(972), 1, sym_bit_string_base, - STATE(700), 1, - sym_sign, - STATE(701), 1, + ACTIONS(1421), 1, + sym_condition_conversion, + STATE(621), 1, sym_unary_operator, - STATE(870), 1, + STATE(628), 1, + sym_sign, + STATE(777), 1, sym__direct_name, - STATE(2023), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(2270), 1, + STATE(1524), 1, sym_based_literal, - STATE(2287), 1, + STATE(1560), 1, sym__expression, - STATE(2638), 1, - sym__primary, - STATE(2648), 1, + STATE(2495), 1, sym_bit_string_literal, + STATE(2504), 1, + sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73490,21 +74426,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73519,7 +74454,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73528,53 +74463,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [34579] = 29, + [35157] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, - sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(960), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(966), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(970), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(972), 1, sym_bit_string_base, - STATE(487), 1, - sym_sign, - STATE(489), 1, + ACTIONS(1421), 1, + sym_condition_conversion, + STATE(621), 1, sym_unary_operator, - STATE(767), 1, + STATE(628), 1, + sym_sign, + STATE(777), 1, sym__direct_name, - STATE(1239), 1, + STATE(1289), 1, sym__abstract_literal, - STATE(1406), 1, - sym__expression, - STATE(1513), 1, + STATE(1524), 1, sym_based_literal, - STATE(2410), 1, + STATE(1563), 1, + sym__expression, + STATE(2495), 1, sym_bit_string_literal, - STATE(2447), 1, + STATE(2504), 1, sym__primary, + STATE(2512), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(964), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73582,21 +74519,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1222), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2510), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(2490), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73611,7 +74547,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(962), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73620,53 +74556,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [34700] = 29, + [35280] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(700), 1, + STATE(466), 1, sym_sign, - STATE(701), 1, + STATE(468), 1, sym_unary_operator, - STATE(870), 1, + STATE(845), 1, sym__direct_name, - STATE(2023), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(2270), 1, + STATE(2431), 1, sym_based_literal, - STATE(2309), 1, + STATE(2454), 1, sym__expression, - STATE(2638), 1, + STATE(2744), 1, + sym__literal, + STATE(2755), 1, + sym_simple_expression, + STATE(2764), 1, sym__primary, - STATE(2648), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73674,26 +74614,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -73703,7 +74641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73712,53 +74650,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [34821] = 29, + [35405] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, - sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(1311), 1, + sym_condition_conversion, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(700), 1, - sym_sign, - STATE(701), 1, + STATE(626), 1, sym_unary_operator, - STATE(870), 1, + STATE(627), 1, + sym_sign, + STATE(865), 1, sym__direct_name, - STATE(2023), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(2270), 1, - sym_based_literal, - STATE(2310), 1, + STATE(2311), 1, sym__expression, - STATE(2638), 1, - sym__primary, - STATE(2648), 1, + STATE(2326), 1, + sym_based_literal, + STATE(2756), 1, sym_bit_string_literal, + STATE(2759), 1, + sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73766,21 +74706,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73795,7 +74734,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73804,53 +74743,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [34942] = 29, + [35528] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(1423), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(662), 1, + STATE(680), 1, sym_sign, - STATE(672), 1, + STATE(683), 1, sym_unary_operator, - STATE(785), 1, + STATE(762), 1, sym__direct_name, - STATE(1499), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(1687), 1, + STATE(1536), 1, sym__expression, - STATE(1735), 1, + STATE(1564), 1, sym_based_literal, - STATE(2475), 1, + STATE(2484), 1, sym__primary, - STATE(2508), 1, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73858,21 +74799,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1624), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73887,7 +74827,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73896,53 +74836,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [35063] = 29, + [35651] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, - sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(662), 1, + STATE(466), 1, sym_sign, - STATE(672), 1, + STATE(468), 1, sym_unary_operator, - STATE(785), 1, + STATE(845), 1, sym__direct_name, - STATE(1499), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(1668), 1, + STATE(2407), 1, sym__expression, - STATE(1735), 1, + STATE(2431), 1, sym_based_literal, - STATE(2475), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2508), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -73950,21 +74892,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1624), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -73979,7 +74920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -73988,53 +74929,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [35184] = 29, + [35774] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(894), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(536), 1, - sym_unary_operator, - STATE(572), 1, + STATE(466), 1, sym_sign, - STATE(880), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(2033), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(2230), 1, + STATE(2408), 1, sym__expression, - STATE(2231), 1, + STATE(2431), 1, sym_based_literal, - STATE(2646), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2664), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74042,21 +74985,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1878), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74071,7 +75013,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74080,53 +75022,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [35305] = 29, + [35897] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(1423), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(700), 1, + STATE(680), 1, sym_sign, - STATE(701), 1, + STATE(683), 1, sym_unary_operator, - STATE(870), 1, + STATE(762), 1, sym__direct_name, - STATE(2023), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(2270), 1, - sym_based_literal, - STATE(2312), 1, + STATE(1537), 1, sym__expression, - STATE(2638), 1, + STATE(1564), 1, + sym_based_literal, + STATE(2484), 1, sym__primary, - STATE(2648), 1, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74134,21 +75078,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74163,7 +75106,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74172,53 +75115,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [35426] = 29, + [36020] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(407), 1, + ACTIONS(894), 1, sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(498), 1, + STATE(466), 1, sym_sign, - STATE(503), 1, + STATE(468), 1, sym_unary_operator, - STATE(764), 1, + STATE(845), 1, sym__direct_name, - STATE(1379), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(1415), 1, - sym_based_literal, - STATE(1549), 1, + STATE(2409), 1, sym__expression, - STATE(2446), 1, - sym_bit_string_literal, - STATE(2451), 1, + STATE(2431), 1, + sym_based_literal, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, + STATE(2768), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74226,21 +75171,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1281), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74255,7 +75199,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74264,53 +75208,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [35547] = 29, + [36143] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(894), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(536), 1, - sym_unary_operator, - STATE(572), 1, + STATE(466), 1, sym_sign, - STATE(880), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(2033), 1, + STATE(2210), 1, sym__abstract_literal, - STATE(2231), 1, - sym_based_literal, - STATE(2240), 1, + STATE(2419), 1, sym__expression, - STATE(2646), 1, + STATE(2431), 1, + sym_based_literal, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2664), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74318,21 +75264,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1878), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74347,7 +75292,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74356,53 +75301,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [35668] = 29, + [36266] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1423), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(511), 1, - sym_unary_operator, - STATE(512), 1, + STATE(680), 1, sym_sign, - STATE(749), 1, + STATE(683), 1, + sym_unary_operator, + STATE(762), 1, sym__direct_name, - STATE(1008), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(1204), 1, - sym_based_literal, - STATE(1550), 1, + STATE(1541), 1, sym__expression, - STATE(2344), 1, - sym_bit_string_literal, - STATE(2347), 1, + STATE(1564), 1, + sym_based_literal, + STATE(2484), 1, sym__primary, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74410,21 +75357,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74439,7 +75385,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74448,53 +75394,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [35789] = 29, + [36389] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1337), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1339), 1, + ACTIONS(1311), 1, sym_condition_conversion, - ACTIONS(1341), 1, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1345), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1351), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1355), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1357), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(536), 1, + STATE(626), 1, sym_unary_operator, - STATE(572), 1, + STATE(627), 1, sym_sign, - STATE(880), 1, + STATE(865), 1, sym__direct_name, - STATE(2033), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(2231), 1, - sym_based_literal, - STATE(2239), 1, + STATE(2316), 1, sym__expression, - STATE(2646), 1, - sym__primary, - STATE(2664), 1, + STATE(2326), 1, + sym_based_literal, + STATE(2756), 1, sym_bit_string_literal, + STATE(2759), 1, + sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1349), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(1879), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74502,21 +75450,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1878), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1343), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2644), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2661), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74531,7 +75478,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1347), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74540,53 +75487,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [35910] = 29, + [36512] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, - sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1311), 1, + sym_condition_conversion, + ACTIONS(1313), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(1317), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(1323), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(1327), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(1329), 1, sym_bit_string_base, - STATE(487), 1, - sym_sign, - STATE(489), 1, + STATE(626), 1, sym_unary_operator, - STATE(767), 1, + STATE(627), 1, + sym_sign, + STATE(865), 1, sym__direct_name, - STATE(1239), 1, + STATE(1950), 1, sym__abstract_literal, - STATE(1408), 1, + STATE(2312), 1, sym__expression, - STATE(1513), 1, + STATE(2326), 1, sym_based_literal, - STATE(2410), 1, + STATE(2756), 1, sym_bit_string_literal, - STATE(2447), 1, + STATE(2759), 1, sym__primary, + STATE(2761), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(1321), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74594,21 +75543,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1222), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2760), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(2757), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74623,7 +75571,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(1319), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74632,74 +75580,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36031] = 28, + [36635] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, - sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(672), 1, + ACTIONS(1463), 1, + sym_condition_conversion, + STATE(711), 1, sym_unary_operator, - STATE(785), 1, + STATE(713), 1, + sym_sign, + STATE(724), 1, sym__direct_name, - STATE(1499), 1, + STATE(841), 1, sym__abstract_literal, - STATE(1655), 1, + STATE(894), 1, sym__expression, - STATE(1735), 1, + STATE(900), 1, sym_based_literal, - STATE(2475), 1, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, - STATE(2508), 1, + STATE(1668), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1624), 3, + STATE(662), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(662), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74714,7 +75664,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74723,55 +75673,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36150] = 30, + [36758] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1096), 1, - anon_sym_LT_LT, - ACTIONS(1177), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(1179), 1, + ACTIONS(734), 1, + anon_sym_LT_LT, + ACTIONS(738), 1, sym_NEW, - ACTIONS(1185), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(1187), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(1189), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(471), 1, - sym_sign, - STATE(473), 1, + ACTIONS(1463), 1, + sym_condition_conversion, + STATE(711), 1, sym_unary_operator, - STATE(803), 1, + STATE(713), 1, + sym_sign, + STATE(724), 1, sym__direct_name, - STATE(1434), 1, + STATE(841), 1, sym__abstract_literal, - STATE(1767), 1, - sym_based_literal, - STATE(2385), 1, + STATE(889), 1, sym__expression, - STATE(2498), 1, - sym_simple_expression, - STATE(2513), 1, - sym_bit_string_literal, - STATE(2516), 1, + STATE(900), 1, + sym_based_literal, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, + STATE(1668), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1183), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74779,25 +75729,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2499), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -74807,7 +75757,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1181), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74816,53 +75766,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36273] = 29, + [36881] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, - anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(1381), 1, + anon_sym_LPAREN, + ACTIONS(1383), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(1387), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(1393), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(1397), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(1399), 1, sym_bit_string_base, - STATE(676), 1, - sym_sign, - STATE(677), 1, + STATE(501), 1, sym_unary_operator, - STATE(832), 1, + STATE(504), 1, + sym_sign, + STATE(821), 1, sym__direct_name, - STATE(1734), 1, + STATE(1783), 1, sym__abstract_literal, - STATE(2002), 1, - sym__expression, - STATE(2005), 1, + STATE(2044), 1, sym_based_literal, - STATE(2569), 1, + STATE(2451), 1, + sym__expression, + STATE(2645), 1, + sym__literal, + STATE(2651), 1, sym__primary, - STATE(2573), 1, + STATE(2657), 1, sym_bit_string_literal, + STATE(2689), 1, + sym_simple_expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(1391), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74870,26 +75824,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1755), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(2646), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -74899,7 +75851,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(1389), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -74908,53 +75860,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36394] = 29, + [37006] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, - sym_condition_conversion, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(257), 1, sym_bit_string_base, - STATE(676), 1, - sym_sign, - STATE(677), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, + sym_condition_conversion, + STATE(430), 1, sym_unary_operator, - STATE(832), 1, + STATE(431), 1, + sym_sign, + STATE(735), 1, sym__direct_name, - STATE(1734), 1, + STATE(937), 1, sym__abstract_literal, - STATE(1996), 1, - sym__expression, - STATE(2005), 1, + STATE(1018), 1, sym_based_literal, - STATE(2569), 1, - sym__primary, - STATE(2573), 1, + STATE(1112), 1, + sym__expression, + STATE(1945), 1, sym_bit_string_literal, + STATE(1951), 1, + sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -74962,21 +75916,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1755), 3, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -74991,7 +75944,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75000,53 +75953,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36515] = 29, + [37129] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, - anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(676), 1, - sym_sign, - STATE(677), 1, + STATE(669), 1, sym_unary_operator, - STATE(832), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(1734), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1992), 1, - sym__expression, - STATE(2005), 1, + STATE(1141), 1, sym_based_literal, - STATE(2569), 1, - sym__primary, - STATE(2573), 1, + STATE(1462), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, + STATE(2393), 1, + sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -75054,21 +76009,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1755), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75083,7 +76037,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75092,75 +76046,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36636] = 29, + [37252] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1355), 1, sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(1373), 1, sym_bit_string_base, - STATE(676), 1, - sym_sign, - STATE(677), 1, + STATE(668), 1, sym_unary_operator, - STATE(832), 1, + STATE(784), 1, sym__direct_name, - STATE(1734), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(1993), 1, - sym__expression, - STATE(2005), 1, + STATE(1699), 1, sym_based_literal, - STATE(2569), 1, - sym__primary, - STATE(2573), 1, + STATE(1874), 1, + sym__expression, + STATE(2543), 1, sym_bit_string_literal, + STATE(2548), 1, + sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(667), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1755), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(667), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75175,7 +76129,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75184,75 +76138,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36757] = 29, + [37373] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(1355), 1, + sym_condition_conversion, + ACTIONS(1357), 1, + anon_sym_LT_LT, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(1373), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(643), 1, - sym_unary_operator, - STATE(646), 1, + STATE(667), 1, sym_sign, - STATE(766), 1, + STATE(784), 1, sym__direct_name, - STATE(1131), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(1338), 1, + STATE(1699), 1, sym_based_literal, - STATE(1347), 1, + STATE(1790), 1, sym__expression, - STATE(2379), 1, + STATE(2543), 1, sym_bit_string_literal, - STATE(2382), 1, + STATE(2548), 1, sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(668), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(869), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(668), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75267,7 +76221,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75276,75 +76230,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36878] = 29, + [37494] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, - anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(676), 1, + STATE(675), 1, sym_sign, - STATE(677), 1, - sym_unary_operator, - STATE(832), 1, + STATE(749), 1, sym__direct_name, - STATE(1734), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1995), 1, + STATE(1121), 1, sym__expression, - STATE(2005), 1, + STATE(1141), 1, sym_based_literal, - STATE(2569), 1, - sym__primary, - STATE(2573), 1, + STATE(2387), 1, sym_bit_string_literal, + STATE(2393), 1, + sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(669), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1755), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(669), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75359,7 +76313,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75368,75 +76322,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [36999] = 29, + [37615] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, - anon_sym_LPAREN, - ACTIONS(1311), 1, - sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(950), 1, sym_bit_string_base, - STATE(676), 1, + ACTIONS(1379), 1, + sym_condition_conversion, + STATE(689), 1, sym_sign, - STATE(677), 1, - sym_unary_operator, - STATE(832), 1, + STATE(765), 1, sym__direct_name, - STATE(1734), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1997), 1, + STATE(1322), 1, sym__expression, - STATE(2005), 1, + STATE(1335), 1, sym_based_literal, - STATE(2569), 1, - sym__primary, - STATE(2573), 1, + STATE(2436), 1, sym_bit_string_literal, + STATE(2465), 1, + sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(670), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1755), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(670), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75451,7 +76405,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75460,53 +76414,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [37120] = 29, + [37736] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(397), 1, + sym_condition_conversion, + ACTIONS(399), 1, + anon_sym_LT_LT, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(423), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(643), 1, - sym_unary_operator, - STATE(646), 1, + STATE(608), 1, sym_sign, - STATE(766), 1, + STATE(619), 1, + sym_unary_operator, + STATE(775), 1, sym__direct_name, - STATE(1131), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(1338), 1, - sym_based_literal, - STATE(1346), 1, + STATE(1416), 1, sym__expression, - STATE(2379), 1, - sym_bit_string_literal, - STATE(2382), 1, + STATE(1518), 1, + sym_based_literal, + STATE(2488), 1, sym__primary, + STATE(2493), 1, + sym_bit_string_literal, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -75514,21 +76470,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75543,7 +76498,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75552,74 +76507,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [37241] = 28, + [37859] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, - sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(397), 1, + sym_condition_conversion, + ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(423), 1, sym_bit_string_base, - STATE(662), 1, + STATE(608), 1, sym_sign, - STATE(785), 1, + STATE(619), 1, + sym_unary_operator, + STATE(775), 1, sym__direct_name, - STATE(1499), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(1660), 1, + STATE(1457), 1, sym__expression, - STATE(1735), 1, + STATE(1518), 1, sym_based_literal, - STATE(2475), 1, + STATE(2488), 1, sym__primary, - STATE(2508), 1, + STATE(2493), 1, sym_bit_string_literal, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1624), 3, + STATE(672), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(672), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75634,7 +76591,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75643,53 +76600,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [37360] = 29, + [37982] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, - sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(397), 1, + sym_condition_conversion, + ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(423), 1, sym_bit_string_base, - STATE(487), 1, + STATE(608), 1, sym_sign, - STATE(489), 1, + STATE(619), 1, sym_unary_operator, - STATE(767), 1, + STATE(775), 1, sym__direct_name, - STATE(1239), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(1513), 1, - sym_based_literal, - STATE(1622), 1, + STATE(1460), 1, sym__expression, - STATE(2410), 1, - sym_bit_string_literal, - STATE(2447), 1, + STATE(1518), 1, + sym_based_literal, + STATE(2488), 1, sym__primary, + STATE(2493), 1, + sym_bit_string_literal, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -75697,21 +76656,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1222), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75726,7 +76684,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75735,53 +76693,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [37481] = 29, + [38105] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, - sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(395), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(397), 1, + sym_condition_conversion, + ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(407), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(417), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(421), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(423), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(608), 1, sym_sign, - STATE(732), 1, + STATE(619), 1, + sym_unary_operator, + STATE(775), 1, sym__direct_name, - STATE(955), 1, + STATE(1309), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1489), 1, + sym__expression, + STATE(1518), 1, sym_based_literal, - STATE(2091), 1, + STATE(2488), 1, sym__primary, - STATE(2094), 1, + STATE(2493), 1, sym_bit_string_literal, - STATE(2333), 1, - sym__expression, + STATE(2503), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(415), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -75789,21 +76749,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(930), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2487), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(2492), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75818,7 +76777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(409), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75827,75 +76786,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [37602] = 29, + [38228] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, - anon_sym_LPAREN, - ACTIONS(407), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(498), 1, - sym_sign, - STATE(503), 1, + STATE(669), 1, sym_unary_operator, - STATE(764), 1, + STATE(749), 1, sym__direct_name, - STATE(1379), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1415), 1, - sym_based_literal, - STATE(1546), 1, + STATE(1122), 1, sym__expression, - STATE(2446), 1, + STATE(1141), 1, + sym_based_literal, + STATE(2387), 1, sym_bit_string_literal, - STATE(2451), 1, + STATE(2393), 1, sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(675), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1281), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(675), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -75910,7 +76869,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -75919,59 +76878,65 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [37723] = 28, + [38349] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, - sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(1016), 1, sym_bit_string_base, - STATE(677), 1, + ACTIONS(1403), 1, + sym_condition_conversion, + STATE(678), 1, sym_unary_operator, - STATE(832), 1, + STATE(788), 1, sym__direct_name, - STATE(1734), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(2000), 1, - sym__expression, - STATE(2005), 1, + STATE(1694), 1, sym_based_literal, - STATE(2569), 1, - sym__primary, - STATE(2573), 1, + STATE(1727), 1, + sym__expression, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, + STATE(2613), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1755), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, @@ -75981,12 +76946,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76001,7 +76961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76010,74 +76970,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [37842] = 28, + [38470] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1179), 1, sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(1197), 1, sym_bit_string_base, - STATE(676), 1, + STATE(416), 1, sym_sign, - STATE(832), 1, + STATE(417), 1, + sym_unary_operator, + STATE(817), 1, sym__direct_name, - STATE(1734), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(2001), 1, - sym__expression, - STATE(2005), 1, + STATE(1926), 1, sym_based_literal, - STATE(2569), 1, + STATE(2007), 1, + sym__expression, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, - STATE(2573), 1, + STATE(2678), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1755), 3, + STATE(677), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(677), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76092,7 +77054,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76101,75 +77063,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [37961] = 29, + [38593] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1026), 1, - sym_condition_conversion, - ACTIONS(1285), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - ACTIONS(1291), 1, + ACTIONS(1004), 1, sym_NEW, - ACTIONS(1297), 1, + ACTIONS(1010), 1, sym_based_base, - ACTIONS(1301), 1, + ACTIONS(1014), 1, sym_bit_string_length, - ACTIONS(1303), 1, + ACTIONS(1016), 1, sym_bit_string_base, - STATE(487), 1, + ACTIONS(1403), 1, + sym_condition_conversion, + STATE(676), 1, sym_sign, - STATE(489), 1, - sym_unary_operator, - STATE(767), 1, + STATE(788), 1, sym__direct_name, - STATE(1239), 1, + STATE(1604), 1, sym__abstract_literal, - STATE(1395), 1, - sym__expression, - STATE(1513), 1, + STATE(1694), 1, sym_based_literal, - STATE(2410), 1, + STATE(1726), 1, + sym__expression, + STATE(2540), 1, + sym__literal, + STATE(2607), 1, sym_bit_string_literal, - STATE(2447), 1, + STATE(2613), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1295), 2, + ACTIONS(1008), 2, sym_decimal_integer, sym_decimal_float, - STATE(1224), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(678), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1222), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1289), 4, + STATE(2537), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2450), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2418), 5, + STATE(678), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2610), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76184,7 +77146,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1293), 8, + ACTIONS(1006), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76193,53 +77155,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [38082] = 29, + [38714] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1309), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, - sym_condition_conversion, - ACTIONS(1313), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1317), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(1323), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(1327), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(1329), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(676), 1, - sym_sign, - STATE(677), 1, + ACTIONS(1463), 1, + sym_condition_conversion, + STATE(711), 1, sym_unary_operator, - STATE(832), 1, + STATE(713), 1, + sym_sign, + STATE(724), 1, sym__direct_name, - STATE(1734), 1, + STATE(841), 1, sym__abstract_literal, - STATE(1994), 1, - sym__expression, - STATE(2005), 1, + STATE(900), 1, sym_based_literal, - STATE(2569), 1, + STATE(916), 1, + sym__expression, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, - STATE(2573), 1, + STATE(1668), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1321), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1751), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -76247,21 +77211,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1755), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1315), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2568), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2572), 5, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76276,7 +77239,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1319), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76285,75 +77248,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [38203] = 29, + [38837] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(405), 1, - anon_sym_LPAREN, - ACTIONS(407), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(409), 1, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(417), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(427), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(431), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(433), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(498), 1, - sym_sign, - STATE(503), 1, + STATE(683), 1, sym_unary_operator, - STATE(764), 1, + STATE(762), 1, sym__direct_name, - STATE(1379), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(1415), 1, - sym_based_literal, - STATE(1530), 1, + STATE(1547), 1, sym__expression, - STATE(2446), 1, - sym_bit_string_literal, - STATE(2451), 1, + STATE(1564), 1, + sym_based_literal, + STATE(2484), 1, sym__primary, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(425), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(1274), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(680), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1281), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(411), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2453), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2449), 5, + STATE(680), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76368,7 +77331,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(419), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76377,7 +77340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [38324] = 30, + [38958] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -76386,46 +77349,46 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1241), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1243), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - ACTIONS(1247), 1, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1253), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1257), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1259), 1, + ACTIONS(1112), 1, sym_bit_string_base, - STATE(449), 1, - sym_unary_operator, - STATE(450), 1, + STATE(629), 1, sym_sign, - STATE(770), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1330), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1417), 1, + STATE(1094), 1, sym_based_literal, - STATE(2373), 1, - sym__expression, - STATE(2407), 1, - sym_simple_expression, - STATE(2415), 1, - sym_bit_string_literal, - STATE(2434), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2384), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(1383), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -76433,25 +77396,25 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1384), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1245), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2093), 4, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - STATE(2411), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, + sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -76461,7 +77424,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1249), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76470,53 +77433,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [38447] = 29, + [39081] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1221), 1, + ACTIONS(1355), 1, sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(1373), 1, sym_bit_string_base, - STATE(569), 1, + STATE(667), 1, sym_sign, - STATE(570), 1, + STATE(668), 1, sym_unary_operator, - STATE(878), 1, + STATE(784), 1, sym__direct_name, - STATE(1986), 1, + STATE(1605), 1, sym__abstract_literal, - STATE(2330), 1, + STATE(1699), 1, sym_based_literal, - STATE(2337), 1, + STATE(1766), 1, sym__expression, - STATE(2611), 1, + STATE(2543), 1, sym_bit_string_literal, - STATE(2630), 1, + STATE(2548), 1, sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -76524,21 +77489,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2151), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76553,7 +77517,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76562,75 +77526,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [38568] = 29, + [39204] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(732), 1, + ACTIONS(916), 1, sym_condition_conversion, - ACTIONS(1094), 1, + ACTIONS(1423), 1, anon_sym_LPAREN, - ACTIONS(1096), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1100), 1, + ACTIONS(1429), 1, sym_NEW, - ACTIONS(1106), 1, + ACTIONS(1435), 1, sym_based_base, - ACTIONS(1110), 1, + ACTIONS(1439), 1, sym_bit_string_length, - ACTIONS(1112), 1, + ACTIONS(1441), 1, sym_bit_string_base, - STATE(581), 1, - sym_unary_operator, - STATE(582), 1, + STATE(680), 1, sym_sign, - STATE(732), 1, + STATE(762), 1, sym__direct_name, - STATE(955), 1, + STATE(1255), 1, sym__abstract_literal, - STATE(1020), 1, + STATE(1548), 1, + sym__expression, + STATE(1564), 1, sym_based_literal, - STATE(2091), 1, + STATE(2484), 1, sym__primary, - STATE(2094), 1, + STATE(2505), 1, + sym__literal, + STATE(2532), 1, sym_bit_string_literal, - STATE(2335), 1, - sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1104), 2, + ACTIONS(1433), 2, sym_decimal_integer, sym_decimal_float, - STATE(929), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(683), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(930), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1098), 4, + STATE(2514), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2090), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2093), 5, + STATE(683), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2500), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76645,7 +77609,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1102), 8, + ACTIONS(1431), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76654,53 +77618,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [38689] = 29, + [39325] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, - anon_sym_LPAREN, - ACTIONS(1221), 1, + ACTIONS(732), 1, sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(1273), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(1279), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(1283), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(1285), 1, sym_bit_string_base, - STATE(569), 1, - sym_sign, - STATE(570), 1, + STATE(435), 1, sym_unary_operator, - STATE(878), 1, + STATE(436), 1, + sym_sign, + STATE(814), 1, sym__direct_name, - STATE(1986), 1, + STATE(1861), 1, sym__abstract_literal, - STATE(2330), 1, + STATE(1932), 1, sym_based_literal, - STATE(2345), 1, + STATE(2448), 1, sym__expression, - STATE(2611), 1, + STATE(2644), 1, sym_bit_string_literal, - STATE(2630), 1, + STATE(2647), 1, sym__primary, + STATE(2649), 1, + sym__literal, + STATE(2655), 1, + sym_simple_expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(1277), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -76708,26 +77676,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2151), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2648), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(2052), 4, sym_condition_expression, sym_logical_expression, sym_relational_expression, sym_shift_expression, - sym_simple_expression, ACTIONS(239), 8, sym__ABS, sym__AND, @@ -76737,7 +77703,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(1275), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76746,53 +77712,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [38810] = 29, + [39450] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - ACTIONS(1046), 1, + ACTIONS(732), 1, + sym_condition_conversion, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1050), 1, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1100), 1, sym_NEW, - ACTIONS(1056), 1, + ACTIONS(1106), 1, sym_based_base, - ACTIONS(1058), 1, + ACTIONS(1110), 1, sym_bit_string_length, - ACTIONS(1060), 1, + ACTIONS(1112), 1, sym_bit_string_base, - ACTIONS(1335), 1, - sym_condition_conversion, - STATE(643), 1, - sym_unary_operator, - STATE(646), 1, + STATE(629), 1, sym_sign, - STATE(766), 1, + STATE(638), 1, + sym_unary_operator, + STATE(734), 1, sym__direct_name, - STATE(1131), 1, + STATE(971), 1, sym__abstract_literal, - STATE(1338), 1, + STATE(1094), 1, sym_based_literal, - STATE(1355), 1, - sym__expression, - STATE(2379), 1, - sym_bit_string_literal, - STATE(2382), 1, + STATE(2048), 1, + sym__literal, + STATE(2050), 1, sym__primary, + STATE(2053), 1, + sym_bit_string_literal, + STATE(2378), 1, + sym__expression, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1054), 2, + ACTIONS(1104), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -76800,21 +77768,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2049), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2388), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2366), 5, + STATE(2052), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76829,7 +77796,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1052), 8, + ACTIONS(1102), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76838,75 +77805,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [38931] = 29, + [39573] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(1221), 1, - sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(1060), 1, sym_bit_string_base, - STATE(569), 1, + ACTIONS(1405), 1, + sym_condition_conversion, + STATE(687), 1, sym_sign, - STATE(570), 1, - sym_unary_operator, - STATE(878), 1, + STATE(780), 1, sym__direct_name, - STATE(1986), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(2330), 1, - sym_based_literal, - STATE(2346), 1, + STATE(1716), 1, sym__expression, - STATE(2611), 1, + STATE(1773), 1, + sym_based_literal, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, - STATE(2630), 1, + STATE(2612), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(686), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2151), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(686), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -76921,7 +77888,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -76930,75 +77897,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [39052] = 29, + [39694] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1219), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(1221), 1, - sym_condition_conversion, - ACTIONS(1223), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(1227), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(1233), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(1237), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(1239), 1, + ACTIONS(1060), 1, sym_bit_string_base, - STATE(569), 1, - sym_sign, - STATE(570), 1, + ACTIONS(1405), 1, + sym_condition_conversion, + STATE(686), 1, sym_unary_operator, - STATE(878), 1, + STATE(780), 1, sym__direct_name, - STATE(1986), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(2225), 1, + STATE(1714), 1, sym__expression, - STATE(2330), 1, + STATE(1773), 1, sym_based_literal, - STATE(2611), 1, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, - STATE(2630), 1, + STATE(2612), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1231), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(2147), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(687), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2151), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1225), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2633), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2626), 5, + STATE(687), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77013,7 +77980,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1229), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77022,53 +77989,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [39173] = 29, + [39815] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(662), 1, + STATE(701), 1, sym_sign, - STATE(672), 1, + STATE(705), 1, sym_unary_operator, - STATE(785), 1, + STATE(791), 1, sym__direct_name, - STATE(1499), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(1735), 1, + STATE(1718), 1, sym_based_literal, - STATE(1806), 1, + STATE(1763), 1, sym__expression, - STATE(2475), 1, + STATE(2536), 1, sym__primary, - STATE(2508), 1, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77076,21 +78045,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1624), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77105,7 +78073,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77114,75 +78082,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [39294] = 29, + [39938] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, - anon_sym_LPAREN, - ACTIONS(1361), 1, - sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(950), 1, sym_bit_string_base, - STATE(548), 1, - sym_sign, - STATE(549), 1, + ACTIONS(1379), 1, + sym_condition_conversion, + STATE(670), 1, sym_unary_operator, - STATE(823), 1, + STATE(765), 1, sym__direct_name, - STATE(1738), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1974), 1, - sym_based_literal, - STATE(1985), 1, + STATE(1319), 1, sym__expression, - STATE(2567), 1, - sym__primary, - STATE(2577), 1, + STATE(1335), 1, + sym_based_literal, + STATE(2436), 1, sym_bit_string_literal, + STATE(2465), 1, + sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(689), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1861), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(689), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77197,7 +78165,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77206,53 +78174,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [39415] = 29, + [40059] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1361), 1, + ACTIONS(1355), 1, sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(1357), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(1361), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(1367), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(1371), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(1373), 1, sym_bit_string_base, - STATE(548), 1, + STATE(667), 1, sym_sign, - STATE(549), 1, + STATE(668), 1, sym_unary_operator, - STATE(823), 1, + STATE(784), 1, sym__direct_name, - STATE(1738), 1, + STATE(1235), 1, + sym__expression, + STATE(1605), 1, sym__abstract_literal, - STATE(1974), 1, + STATE(1699), 1, sym_based_literal, - STATE(1982), 1, - sym__expression, - STATE(2567), 1, - sym__primary, - STATE(2577), 1, + STATE(2543), 1, sym_bit_string_literal, + STATE(2548), 1, + sym__primary, + STATE(2551), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(1365), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77260,21 +78230,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1861), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2549), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2544), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77289,7 +78258,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(1363), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77298,53 +78267,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [39536] = 29, + [40182] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, - anon_sym_LPAREN, - ACTIONS(1361), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(548), 1, + STATE(701), 1, sym_sign, - STATE(549), 1, + STATE(705), 1, sym_unary_operator, - STATE(823), 1, + STATE(791), 1, sym__direct_name, - STATE(1738), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(1974), 1, + STATE(1718), 1, sym_based_literal, - STATE(1981), 1, + STATE(1762), 1, sym__expression, - STATE(2567), 1, + STATE(2536), 1, sym__primary, - STATE(2577), 1, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77352,21 +78323,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1861), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77381,7 +78351,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77390,53 +78360,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [39657] = 29, + [40305] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1359), 1, - anon_sym_LPAREN, - ACTIONS(1361), 1, + ACTIONS(231), 1, sym_condition_conversion, - ACTIONS(1363), 1, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1367), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1373), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1377), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1379), 1, + ACTIONS(774), 1, sym_bit_string_base, - STATE(548), 1, - sym_sign, - STATE(549), 1, + STATE(669), 1, sym_unary_operator, - STATE(823), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(1738), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1974), 1, + STATE(1141), 1, sym_based_literal, - STATE(1977), 1, + STATE(1156), 1, sym__expression, - STATE(2567), 1, - sym__primary, - STATE(2577), 1, + STATE(2387), 1, sym_bit_string_literal, + STATE(2393), 1, + sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1371), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1863), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77444,21 +78416,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1861), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1365), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2562), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2592), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77473,7 +78444,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1369), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77482,53 +78453,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [39778] = 29, + [40428] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1421), 1, - anon_sym_LPAREN, - ACTIONS(1423), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1425), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1429), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1435), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1439), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1441), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(605), 1, - sym_unary_operator, - STATE(626), 1, + STATE(701), 1, sym_sign, - STATE(780), 1, + STATE(705), 1, + sym_unary_operator, + STATE(791), 1, sym__direct_name, - STATE(1401), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(1680), 1, - sym__expression, - STATE(1836), 1, + STATE(1718), 1, sym_based_literal, - STATE(2463), 1, + STATE(1741), 1, + sym__expression, + STATE(2536), 1, sym__primary, - STATE(2470), 1, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1433), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1577), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77536,21 +78509,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1585), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1427), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2472), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2464), 5, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77565,7 +78537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1431), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77574,53 +78546,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [39899] = 29, + [40551] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, - sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, - anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(257), 1, sym_bit_string_base, - STATE(700), 1, - sym_sign, - STATE(701), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, + sym_condition_conversion, + STATE(430), 1, sym_unary_operator, - STATE(870), 1, + STATE(431), 1, + sym_sign, + STATE(735), 1, sym__direct_name, - STATE(2023), 1, + STATE(937), 1, sym__abstract_literal, - STATE(2270), 1, + STATE(1018), 1, sym_based_literal, - STATE(2317), 1, + STATE(1057), 1, sym__expression, - STATE(2638), 1, - sym__primary, - STATE(2648), 1, + STATE(1945), 1, sym_bit_string_literal, + STATE(1951), 1, + sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77628,21 +78602,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77657,7 +78630,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77666,53 +78639,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40020] = 29, + [40674] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, - sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(1060), 1, sym_bit_string_base, - STATE(700), 1, - sym_sign, - STATE(701), 1, + ACTIONS(1405), 1, + sym_condition_conversion, + STATE(686), 1, sym_unary_operator, - STATE(870), 1, + STATE(687), 1, + sym_sign, + STATE(780), 1, sym__direct_name, - STATE(2023), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(2270), 1, - sym_based_literal, - STATE(2316), 1, + STATE(1696), 1, sym__expression, - STATE(2638), 1, - sym__primary, - STATE(2648), 1, + STATE(1773), 1, + sym_based_literal, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, + STATE(2612), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77720,21 +78695,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77749,7 +78723,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77758,53 +78732,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40141] = 29, + [40797] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(916), 1, - sym_condition_conversion, - ACTIONS(936), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(938), 1, - anon_sym_LT_LT, - ACTIONS(942), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(948), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(952), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(954), 1, + ACTIONS(257), 1, sym_bit_string_base, - STATE(534), 1, - sym_sign, - STATE(537), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, + sym_condition_conversion, + STATE(430), 1, sym_unary_operator, - STATE(847), 1, + STATE(431), 1, + sym_sign, + STATE(735), 1, sym__direct_name, - STATE(1923), 1, - sym__expression, - STATE(2165), 1, + STATE(937), 1, sym__abstract_literal, - STATE(2303), 1, + STATE(1018), 1, sym_based_literal, - STATE(2615), 1, + STATE(1050), 1, + sym__expression, + STATE(1945), 1, sym_bit_string_literal, - STATE(2627), 1, + STATE(1951), 1, sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(946), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(2072), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77812,21 +78788,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2071), 3, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1213), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2635), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2617), 5, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77841,7 +78816,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(944), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77850,53 +78825,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40262] = 29, + [40920] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, - sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, - anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(241), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(251), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(255), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(257), 1, sym_bit_string_base, - STATE(700), 1, - sym_sign, - STATE(701), 1, + ACTIONS(427), 1, + anon_sym_LT_LT, + ACTIONS(1265), 1, + sym_condition_conversion, + STATE(430), 1, sym_unary_operator, - STATE(870), 1, + STATE(431), 1, + sym_sign, + STATE(735), 1, sym__direct_name, - STATE(2023), 1, + STATE(937), 1, sym__abstract_literal, - STATE(2270), 1, + STATE(1018), 1, sym_based_literal, - STATE(2305), 1, + STATE(1031), 1, sym__expression, - STATE(2638), 1, - sym__primary, - STATE(2648), 1, + STATE(1945), 1, sym_bit_string_literal, + STATE(1951), 1, + sym__primary, + STATE(1953), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(249), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -77904,21 +78881,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1915), 3, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(1952), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2182), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -77933,7 +78909,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(243), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -77942,74 +78918,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40383] = 28, + [41043] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(231), 1, + sym_condition_conversion, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(774), 1, sym_bit_string_base, - ACTIONS(1331), 1, - sym_condition_conversion, - STATE(699), 1, + STATE(669), 1, + sym_unary_operator, + STATE(675), 1, sym_sign, - STATE(748), 1, + STATE(749), 1, sym__direct_name, - STATE(1037), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1110), 1, - sym__expression, - STATE(1135), 1, + STATE(1141), 1, sym_based_literal, - STATE(2277), 1, - sym__primary, - STATE(2299), 1, + STATE(1192), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, + STATE(2393), 1, + sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1026), 3, + STATE(698), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(698), 4, - sym_unary_operator, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78024,7 +79002,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78033,74 +79011,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40502] = 28, + [41166] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(231), 1, + sym_condition_conversion, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(774), 1, sym_bit_string_base, - ACTIONS(1331), 1, - sym_condition_conversion, - STATE(698), 1, + STATE(669), 1, sym_unary_operator, - STATE(748), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(1037), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(1111), 1, - sym__expression, - STATE(1135), 1, + STATE(1141), 1, sym_based_literal, - STATE(2277), 1, - sym__primary, - STATE(2299), 1, + STATE(1194), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, + STATE(2393), 1, + sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1026), 3, + STATE(699), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(699), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78115,7 +79095,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78124,74 +79104,76 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40621] = 28, + [41289] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, - sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(1060), 1, sym_bit_string_base, - STATE(701), 1, + ACTIONS(1405), 1, + sym_condition_conversion, + STATE(686), 1, sym_unary_operator, - STATE(870), 1, + STATE(687), 1, + sym_sign, + STATE(780), 1, sym__direct_name, - STATE(2023), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(2270), 1, - sym_based_literal, - STATE(2293), 1, + STATE(1687), 1, sym__expression, - STATE(2638), 1, - sym__primary, - STATE(2648), 1, + STATE(1773), 1, + sym_based_literal, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, + STATE(2612), 1, + sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1915), 3, + STATE(700), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(700), 4, - sym_sign, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78206,7 +79188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78215,74 +79197,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40740] = 28, + [41412] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(872), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1381), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1383), 1, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1387), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1393), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1397), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1399), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(700), 1, - sym_sign, - STATE(870), 1, + STATE(705), 1, + sym_unary_operator, + STATE(791), 1, sym__direct_name, - STATE(2023), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(2270), 1, + STATE(1718), 1, sym_based_literal, - STATE(2291), 1, + STATE(1731), 1, sym__expression, - STATE(2638), 1, + STATE(2536), 1, sym__primary, - STATE(2648), 1, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1391), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1913), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1915), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1385), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, STATE(701), 4, - sym_unary_operator, + sym_sign, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2637), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2645), 5, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78297,7 +79280,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1389), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78306,53 +79289,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40859] = 29, + [41533] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, - sym_condition_conversion, - ACTIONS(1401), 1, - anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(950), 1, sym_bit_string_base, - STATE(563), 1, - sym_sign, - STATE(573), 1, + ACTIONS(1379), 1, + sym_condition_conversion, + STATE(670), 1, sym_unary_operator, - STATE(809), 1, + STATE(689), 1, + sym_sign, + STATE(765), 1, sym__direct_name, - STATE(1675), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1971), 1, + STATE(1263), 1, sym__expression, - STATE(2101), 1, + STATE(1335), 1, sym_based_literal, - STATE(2543), 1, - sym__primary, - STATE(2548), 1, + STATE(2436), 1, sym_bit_string_literal, + STATE(2465), 1, + sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -78360,21 +79345,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1770), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78389,7 +79373,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78398,53 +79382,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [40980] = 29, + [41656] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, - sym_condition_conversion, - ACTIONS(1401), 1, - anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(950), 1, sym_bit_string_base, - STATE(563), 1, - sym_sign, - STATE(573), 1, + ACTIONS(1379), 1, + sym_condition_conversion, + STATE(670), 1, sym_unary_operator, - STATE(809), 1, + STATE(689), 1, + sym_sign, + STATE(765), 1, sym__direct_name, - STATE(1675), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1967), 1, + STATE(1254), 1, sym__expression, - STATE(2101), 1, + STATE(1335), 1, sym_based_literal, - STATE(2543), 1, - sym__primary, - STATE(2548), 1, + STATE(2436), 1, sym_bit_string_literal, + STATE(2465), 1, + sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -78452,21 +79438,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1770), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78481,7 +79466,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78490,53 +79475,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [41101] = 29, + [41779] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, - sym_condition_conversion, - ACTIONS(1401), 1, - anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(936), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(946), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(948), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(950), 1, sym_bit_string_base, - STATE(563), 1, - sym_sign, - STATE(573), 1, + ACTIONS(1379), 1, + sym_condition_conversion, + STATE(670), 1, sym_unary_operator, - STATE(809), 1, + STATE(689), 1, + sym_sign, + STATE(765), 1, sym__direct_name, - STATE(1675), 1, + STATE(1134), 1, sym__abstract_literal, - STATE(1966), 1, + STATE(1253), 1, sym__expression, - STATE(2101), 1, + STATE(1335), 1, sym_based_literal, - STATE(2543), 1, - sym__primary, - STATE(2548), 1, + STATE(2436), 1, sym_bit_string_literal, + STATE(2465), 1, + sym__primary, + STATE(2466), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(944), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -78544,21 +79531,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1770), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2464), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(2442), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78573,7 +79559,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(942), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78582,75 +79568,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [41222] = 29, + [41902] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(848), 1, + ACTIONS(1020), 1, sym_condition_conversion, - ACTIONS(1401), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1403), 1, + ACTIONS(1445), 1, anon_sym_LT_LT, - ACTIONS(1407), 1, + ACTIONS(1449), 1, sym_NEW, - ACTIONS(1413), 1, + ACTIONS(1455), 1, sym_based_base, - ACTIONS(1417), 1, + ACTIONS(1459), 1, sym_bit_string_length, - ACTIONS(1419), 1, + ACTIONS(1461), 1, sym_bit_string_base, - STATE(563), 1, + STATE(701), 1, sym_sign, - STATE(573), 1, - sym_unary_operator, - STATE(809), 1, + STATE(791), 1, sym__direct_name, - STATE(1675), 1, + STATE(1597), 1, sym__abstract_literal, - STATE(1965), 1, - sym__expression, - STATE(2101), 1, + STATE(1718), 1, sym_based_literal, - STATE(2543), 1, + STATE(1730), 1, + sym__expression, + STATE(2536), 1, sym__primary, - STATE(2548), 1, + STATE(2539), 1, + sym__literal, + STATE(2602), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(1453), 2, sym_decimal_integer, sym_decimal_float, - STATE(1857), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(705), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1770), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1405), 4, + STATE(2593), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2542), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2574), 5, + STATE(705), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2568), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78665,7 +79651,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1409), 8, + ACTIONS(1451), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78674,53 +79660,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [41343] = 29, + [42023] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(231), 1, - sym_condition_conversion, - ACTIONS(752), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(754), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - ACTIONS(760), 1, + ACTIONS(1048), 1, sym_NEW, - ACTIONS(768), 1, + ACTIONS(1054), 1, sym_based_base, - ACTIONS(772), 1, + ACTIONS(1058), 1, sym_bit_string_length, - ACTIONS(774), 1, + ACTIONS(1060), 1, sym_bit_string_base, - STATE(511), 1, + ACTIONS(1405), 1, + sym_condition_conversion, + STATE(686), 1, sym_unary_operator, - STATE(512), 1, + STATE(687), 1, sym_sign, - STATE(749), 1, + STATE(780), 1, sym__direct_name, - STATE(1008), 1, + STATE(1581), 1, sym__abstract_literal, - STATE(1204), 1, - sym_based_literal, - STATE(1707), 1, + STATE(1686), 1, sym__expression, - STATE(2344), 1, + STATE(1773), 1, + sym_based_literal, + STATE(2577), 1, + sym__literal, + STATE(2588), 1, sym_bit_string_literal, - STATE(2347), 1, + STATE(2612), 1, sym__primary, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(766), 2, + ACTIONS(1052), 2, sym_decimal_integer, sym_decimal_float, - STATE(1016), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -78728,21 +79716,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(995), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(756), 4, + STATE(2567), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2350), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2253), 5, + STATE(2557), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78757,7 +79744,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(762), 8, + ACTIONS(1050), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78766,53 +79753,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [41464] = 29, + [42146] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, - sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(1307), 1, sym_bit_string_base, - STATE(662), 1, - sym_sign, - STATE(672), 1, + STATE(710), 1, sym_unary_operator, - STATE(785), 1, + STATE(719), 1, + sym_sign, + STATE(864), 1, sym__direct_name, - STATE(1499), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(1735), 1, + STATE(2397), 1, sym_based_literal, - STATE(1805), 1, + STATE(2423), 1, sym__expression, - STATE(2475), 1, - sym__primary, - STATE(2508), 1, + STATE(2725), 1, sym_bit_string_literal, + STATE(2740), 1, + sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -78820,21 +79809,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1624), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78849,7 +79837,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78858,53 +79846,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [41585] = 29, + [42269] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(892), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(894), 1, + sym_condition_conversion, + ACTIONS(896), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(900), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(906), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(910), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(912), 1, sym_bit_string_base, - STATE(421), 1, - sym_unary_operator, - STATE(591), 1, + STATE(466), 1, sym_sign, - STATE(806), 1, + STATE(468), 1, + sym_unary_operator, + STATE(845), 1, sym__direct_name, - STATE(1862), 1, - sym__abstract_literal, - STATE(1940), 1, + STATE(1450), 1, sym__expression, - STATE(2152), 1, + STATE(2210), 1, + sym__abstract_literal, + STATE(2431), 1, sym_based_literal, - STATE(2582), 1, + STATE(2744), 1, + sym__literal, + STATE(2764), 1, sym__primary, - STATE(2589), 1, + STATE(2768), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(904), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -78912,21 +79902,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1733), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2753), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(2766), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -78941,7 +79930,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(902), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -78950,53 +79939,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [41706] = 29, + [42392] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(1307), 1, sym_bit_string_base, - STATE(421), 1, + STATE(710), 1, sym_unary_operator, - STATE(591), 1, + STATE(719), 1, sym_sign, - STATE(806), 1, + STATE(864), 1, sym__direct_name, - STATE(1862), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(1936), 1, + STATE(2396), 1, sym__expression, - STATE(2152), 1, + STATE(2397), 1, sym_based_literal, - STATE(2582), 1, - sym__primary, - STATE(2589), 1, + STATE(2725), 1, sym_bit_string_literal, + STATE(2740), 1, + sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -79004,21 +79995,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1733), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79033,7 +80023,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79042,75 +80032,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [41827] = 29, + [42515] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(1307), 1, sym_bit_string_base, - STATE(421), 1, - sym_unary_operator, - STATE(591), 1, + STATE(719), 1, sym_sign, - STATE(806), 1, + STATE(864), 1, sym__direct_name, - STATE(1862), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(1935), 1, - sym__expression, - STATE(2152), 1, + STATE(2397), 1, sym_based_literal, - STATE(2582), 1, - sym__primary, - STATE(2589), 1, + STATE(2424), 1, + sym__expression, + STATE(2725), 1, sym_bit_string_literal, + STATE(2740), 1, + sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(710), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1733), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(710), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79125,7 +80115,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79134,75 +80124,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [41948] = 29, + [42636] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, - sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(662), 1, + ACTIONS(1463), 1, + sym_condition_conversion, + STATE(713), 1, sym_sign, - STATE(672), 1, - sym_unary_operator, - STATE(785), 1, + STATE(724), 1, sym__direct_name, - STATE(1499), 1, + STATE(841), 1, sym__abstract_literal, - STATE(1735), 1, - sym_based_literal, - STATE(1804), 1, + STATE(899), 1, sym__expression, - STATE(2475), 1, + STATE(900), 1, + sym_based_literal, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, - STATE(2508), 1, + STATE(1668), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(711), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1624), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(711), 4, + sym_unary_operator, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79217,7 +80207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79226,53 +80216,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [42069] = 29, + [42757] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(982), 1, - sym_condition_conversion, - ACTIONS(1191), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(1197), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(1203), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(1207), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(1209), 1, + ACTIONS(1307), 1, sym_bit_string_base, - STATE(421), 1, + STATE(710), 1, sym_unary_operator, - STATE(591), 1, + STATE(719), 1, sym_sign, - STATE(806), 1, + STATE(864), 1, sym__direct_name, - STATE(1862), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(1934), 1, - sym__expression, - STATE(2152), 1, + STATE(2397), 1, sym_based_literal, - STATE(2582), 1, - sym__primary, - STATE(2589), 1, + STATE(2399), 1, + sym__expression, + STATE(2725), 1, sym_bit_string_literal, + STATE(2740), 1, + sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1201), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(1634), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -79280,21 +80272,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1733), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1195), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2581), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2599), 5, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79309,7 +80300,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1199), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79318,75 +80309,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [42190] = 29, + [42880] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(958), 1, - sym_condition_conversion, - ACTIONS(1445), 1, + ACTIONS(730), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - ACTIONS(1451), 1, + ACTIONS(738), 1, sym_NEW, - ACTIONS(1457), 1, + ACTIONS(744), 1, sym_based_base, - ACTIONS(1461), 1, + ACTIONS(748), 1, sym_bit_string_length, - ACTIONS(1463), 1, + ACTIONS(750), 1, sym_bit_string_base, - STATE(662), 1, - sym_sign, - STATE(672), 1, + ACTIONS(1463), 1, + sym_condition_conversion, + STATE(711), 1, sym_unary_operator, - STATE(785), 1, + STATE(724), 1, sym__direct_name, - STATE(1499), 1, + STATE(841), 1, sym__abstract_literal, - STATE(1735), 1, - sym_based_literal, - STATE(1793), 1, + STATE(898), 1, sym__expression, - STATE(2475), 1, + STATE(900), 1, + sym_based_literal, + STATE(1651), 1, + sym__literal, + STATE(1657), 1, sym__primary, - STATE(2508), 1, + STATE(1668), 1, sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1455), 2, + ACTIONS(742), 2, sym_decimal_integer, sym_decimal_float, - STATE(1630), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(713), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1624), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1449), 4, + STATE(1653), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2469), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2476), 5, + STATE(713), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1525), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79401,7 +80392,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1453), 8, + ACTIONS(740), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79410,53 +80401,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [42311] = 29, + [43001] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(231), 1, + sym_condition_conversion, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(754), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(760), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(768), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(772), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(774), 1, sym_bit_string_base, - ACTIONS(1443), 1, - sym_condition_conversion, - STATE(628), 1, - sym_sign, - STATE(629), 1, + STATE(669), 1, sym_unary_operator, - STATE(725), 1, + STATE(675), 1, + sym_sign, + STATE(749), 1, sym__direct_name, - STATE(839), 1, + STATE(1102), 1, sym__abstract_literal, - STATE(902), 1, - sym__expression, - STATE(903), 1, + STATE(1141), 1, sym_based_literal, - STATE(1562), 1, + STATE(1903), 1, + sym__expression, + STATE(2387), 1, sym_bit_string_literal, - STATE(1584), 1, + STATE(2393), 1, sym__primary, + STATE(2395), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(766), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -79464,21 +80457,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2394), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2324), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79493,7 +80485,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(762), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79502,53 +80494,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [42432] = 29, + [43124] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(1307), 1, sym_bit_string_base, - ACTIONS(1443), 1, - sym_condition_conversion, - STATE(628), 1, - sym_sign, - STATE(629), 1, + STATE(710), 1, sym_unary_operator, - STATE(725), 1, + STATE(719), 1, + sym_sign, + STATE(864), 1, sym__direct_name, - STATE(839), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(894), 1, - sym__expression, - STATE(903), 1, + STATE(2397), 1, sym_based_literal, - STATE(1562), 1, + STATE(2400), 1, + sym__expression, + STATE(2725), 1, sym_bit_string_literal, - STATE(1584), 1, + STATE(2740), 1, sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -79556,21 +80550,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79585,7 +80578,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79594,53 +80587,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [42553] = 29, + [43247] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(1307), 1, sym_bit_string_base, - ACTIONS(1443), 1, - sym_condition_conversion, - STATE(628), 1, - sym_sign, - STATE(629), 1, + STATE(710), 1, sym_unary_operator, - STATE(725), 1, + STATE(719), 1, + sym_sign, + STATE(864), 1, sym__direct_name, - STATE(839), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(896), 1, - sym__expression, - STATE(903), 1, + STATE(2397), 1, sym_based_literal, - STATE(1562), 1, + STATE(2401), 1, + sym__expression, + STATE(2725), 1, sym_bit_string_literal, - STATE(1584), 1, + STATE(2740), 1, sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -79648,21 +80643,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79677,7 +80671,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79686,53 +80680,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [42674] = 29, + [43370] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(1307), 1, sym_bit_string_base, - ACTIONS(1331), 1, - sym_condition_conversion, - STATE(698), 1, + STATE(710), 1, sym_unary_operator, - STATE(699), 1, + STATE(719), 1, sym_sign, - STATE(748), 1, + STATE(864), 1, sym__direct_name, - STATE(1037), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(1112), 1, - sym__expression, - STATE(1135), 1, + STATE(2397), 1, sym_based_literal, - STATE(2277), 1, - sym__primary, - STATE(2299), 1, + STATE(2403), 1, + sym__expression, + STATE(2725), 1, sym_bit_string_literal, + STATE(2740), 1, + sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -79740,21 +80736,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1026), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79769,7 +80764,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79778,53 +80773,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [42795] = 29, + [43493] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(1307), 1, sym_bit_string_base, - ACTIONS(1331), 1, - sym_condition_conversion, - STATE(698), 1, + STATE(710), 1, sym_unary_operator, - STATE(699), 1, + STATE(719), 1, sym_sign, - STATE(748), 1, + STATE(864), 1, sym__direct_name, - STATE(1037), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(1113), 1, - sym__expression, - STATE(1135), 1, + STATE(2397), 1, sym_based_literal, - STATE(2277), 1, - sym__primary, - STATE(2299), 1, + STATE(2404), 1, + sym__expression, + STATE(2725), 1, sym_bit_string_literal, + STATE(2740), 1, + sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -79832,21 +80829,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1026), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79861,7 +80857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79870,75 +80866,75 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [42916] = 29, + [43616] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1024), 1, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(1028), 1, + ACTIONS(1289), 1, + sym_condition_conversion, + ACTIONS(1291), 1, anon_sym_LT_LT, - ACTIONS(1032), 1, + ACTIONS(1295), 1, sym_NEW, - ACTIONS(1038), 1, + ACTIONS(1301), 1, sym_based_base, - ACTIONS(1042), 1, + ACTIONS(1305), 1, sym_bit_string_length, - ACTIONS(1044), 1, + ACTIONS(1307), 1, sym_bit_string_base, - ACTIONS(1331), 1, - sym_condition_conversion, - STATE(698), 1, + STATE(710), 1, sym_unary_operator, - STATE(699), 1, - sym_sign, - STATE(748), 1, + STATE(864), 1, sym__direct_name, - STATE(1037), 1, + STATE(2239), 1, sym__abstract_literal, - STATE(1115), 1, - sym__expression, - STATE(1135), 1, + STATE(2397), 1, sym_based_literal, - STATE(2277), 1, - sym__primary, - STATE(2299), 1, + STATE(2426), 1, + sym__expression, + STATE(2725), 1, sym_bit_string_literal, + STATE(2740), 1, + sym__primary, + STATE(2762), 1, + sym__literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1036), 2, + ACTIONS(1299), 2, sym_decimal_integer, sym_decimal_float, - STATE(1023), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(719), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1026), 3, + STATE(1943), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(1030), 4, + STATE(2763), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1293), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2274), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(2327), 5, + STATE(719), 4, + sym_sign, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2692), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -79953,7 +80949,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(1034), 8, + ACTIONS(1297), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -79962,53 +80958,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [43037] = 29, + [43737] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(730), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(734), 1, + ACTIONS(1179), 1, + sym_condition_conversion, + ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(738), 1, + ACTIONS(1185), 1, sym_NEW, - ACTIONS(744), 1, + ACTIONS(1191), 1, sym_based_base, - ACTIONS(748), 1, + ACTIONS(1195), 1, sym_bit_string_length, - ACTIONS(750), 1, + ACTIONS(1197), 1, sym_bit_string_base, - ACTIONS(1443), 1, - sym_condition_conversion, - STATE(628), 1, + STATE(416), 1, sym_sign, - STATE(629), 1, + STATE(417), 1, sym_unary_operator, - STATE(725), 1, + STATE(817), 1, sym__direct_name, - STATE(839), 1, + STATE(1690), 1, sym__abstract_literal, - STATE(898), 1, - sym__expression, - STATE(903), 1, + STATE(1926), 1, sym_based_literal, - STATE(1562), 1, - sym_bit_string_literal, - STATE(1584), 1, + STATE(2009), 1, + sym__expression, + STATE(2668), 1, + sym__literal, + STATE(2670), 1, sym__primary, + STATE(2678), 1, + sym_bit_string_literal, ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(742), 2, + ACTIONS(1189), 2, sym_decimal_integer, sym_decimal_float, - STATE(840), 2, + STATE(1831), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(1193), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, @@ -80016,21 +81014,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(869), 3, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(800), 4, + STATE(2669), 3, + sym_name, + sym_allocator, + sym_parenthesis_expression, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1587), 4, - sym_name, - sym__literal, - sym_allocator, - sym_parenthesis_expression, - STATE(1534), 5, + STATE(2684), 5, sym_condition_expression, sym_logical_expression, sym_relational_expression, @@ -80045,7 +81042,7 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym__XNOR, sym__XOR, - ACTIONS(740), 8, + ACTIONS(1187), 8, sym_NULL, sym_string_literal, sym_string_literal_std_logic, @@ -80054,7 +81051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant_debug, sym_library_constant_env, sym_library_constant_standard, - [43158] = 36, + [43860] = 36, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -80105,31 +81102,31 @@ static const uint16_t ts_small_parse_table[] = { sym_IS, ACTIONS(1092), 1, sym_PORT, - STATE(745), 1, + STATE(739), 1, sym_generic_clause, - STATE(758), 1, + STATE(766), 1, sym_port_clause, - STATE(798), 1, + STATE(823), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(6098), 1, + STATE(6358), 1, sym_block_head, - STATE(6378), 1, + STATE(6359), 1, sym_concurrent_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(721), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -80152,7 +81149,84 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [43292] = 36, + [43994] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1467), 1, + anon_sym_DOT, + ACTIONS(1470), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_SQUOTE, + ACTIONS(1478), 1, + anon_sym_LBRACK, + ACTIONS(1481), 1, + sym_GENERIC, + ACTIONS(1484), 1, + sym_PARAMETER, + STATE(796), 1, + sym_generic_map_aspect, + STATE(872), 1, + sym__name_selector, + STATE(722), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_name_repeat1, + STATE(886), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1473), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1465), 34, + sym__AND, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_GT_GT, + anon_sym_PIPE, + [44086] = 36, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -80203,129 +81277,31 @@ static const uint16_t ts_small_parse_table[] = { sym_IS, ACTIONS(1092), 1, sym_PORT, - STATE(745), 1, - sym_generic_clause, - STATE(758), 1, - sym_port_clause, - STATE(798), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - STATE(6110), 1, - sym_block_head, - STATE(6129), 1, - sym_concurrent_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(722), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [43426] = 36, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(1086), 1, - sym_BEGIN, - ACTIONS(1088), 1, - sym_GENERIC, - ACTIONS(1090), 1, - sym_IS, - ACTIONS(1092), 1, - sym_PORT, - STATE(745), 1, + STATE(739), 1, sym_generic_clause, - STATE(758), 1, + STATE(766), 1, sym_port_clause, - STATE(798), 1, + STATE(823), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(6059), 1, + STATE(6228), 1, sym_block_head, - STATE(6311), 1, + STATE(6448), 1, sym_concurrent_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(723), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -80348,41 +81324,42 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [43560] = 15, + [44220] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1467), 1, + ACTIONS(1489), 1, anon_sym_DOT, - ACTIONS(1470), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1495), 1, anon_sym_SQUOTE, - ACTIONS(1478), 1, + ACTIONS(1497), 1, anon_sym_LBRACK, - ACTIONS(1481), 1, + ACTIONS(1499), 1, sym_GENERIC, - ACTIONS(1484), 1, + ACTIONS(1501), 1, sym_PARAMETER, - STATE(815), 1, + STATE(725), 1, + aux_sym_name_repeat1, + STATE(796), 1, sym_generic_map_aspect, - STATE(860), 1, - sym_name_selector, - STATE(724), 4, + STATE(872), 1, + sym__name_selector, + STATE(724), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(853), 5, + STATE(886), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 7, + ACTIONS(1493), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80390,7 +81367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 34, + ACTIONS(1487), 34, sym__AND, sym_DOWNTO, sym__MOD, @@ -80425,7 +81402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_GT_GT, anon_sym_PIPE, - [43652] = 16, + [44314] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -80444,23 +81421,23 @@ static const uint16_t ts_small_parse_table[] = { sym_GENERIC, ACTIONS(1501), 1, sym_PARAMETER, - STATE(726), 1, + STATE(722), 1, aux_sym_name_repeat1, - STATE(815), 1, + STATE(796), 1, sym_generic_map_aspect, - STATE(860), 1, - sym_name_selector, + STATE(872), 1, + sym__name_selector, STATE(725), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(853), 5, + STATE(886), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 7, + ACTIONS(1505), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80468,7 +81445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 34, + ACTIONS(1503), 34, sym__AND, sym_DOWNTO, sym__MOD, @@ -80503,85 +81480,105 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_GT_GT, anon_sym_PIPE, - [43746] = 16, + [44408] = 36, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1489), 1, - anon_sym_DOT, - ACTIONS(1491), 1, - anon_sym_LPAREN, - ACTIONS(1495), 1, - anon_sym_SQUOTE, - ACTIONS(1497), 1, - anon_sym_LBRACK, - ACTIONS(1499), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, + sym_ALIAS, + ACTIONS(177), 1, + sym_ATTRIBUTE, + ACTIONS(181), 1, + sym_COMPONENT, + ACTIONS(183), 1, + sym_CONSTANT, + ACTIONS(185), 1, + sym_DISCONNECT, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(1086), 1, + sym_BEGIN, + ACTIONS(1088), 1, sym_GENERIC, - ACTIONS(1501), 1, - sym_PARAMETER, - STATE(724), 1, - aux_sym_name_repeat1, - STATE(815), 1, - sym_generic_map_aspect, - STATE(860), 1, - sym_name_selector, + ACTIONS(1090), 1, + sym_IS, + ACTIONS(1092), 1, + sym_PORT, + STATE(739), 1, + sym_generic_clause, + STATE(766), 1, + sym_port_clause, + STATE(823), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + STATE(6300), 1, + sym_block_head, + STATE(6573), 1, + sym_concurrent_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, STATE(726), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(853), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1505), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1503), 34, - sym__AND, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [43840] = 36, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [44542] = 36, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -80632,31 +81629,31 @@ static const uint16_t ts_small_parse_table[] = { sym_IS, ACTIONS(1092), 1, sym_PORT, - STATE(745), 1, + STATE(739), 1, sym_generic_clause, - STATE(758), 1, + STATE(766), 1, sym_port_clause, - STATE(798), 1, + STATE(823), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(6032), 1, + STATE(6259), 1, sym_block_head, - STATE(6256), 1, + STATE(6502), 1, sym_concurrent_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(727), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -80679,7 +81676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [43974] = 16, + [44676] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -80700,21 +81697,21 @@ static const uint16_t ts_small_parse_table[] = { sym_PARAMETER, STATE(730), 1, aux_sym_name_repeat1, - STATE(849), 1, + STATE(855), 1, sym_generic_map_aspect, - STATE(889), 1, - sym_name_selector, + STATE(924), 1, + sym__name_selector, STATE(728), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(908), 5, + STATE(925), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 7, + ACTIONS(1505), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80722,7 +81719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 33, + ACTIONS(1503), 33, sym__AND, sym_DOWNTO, sym__MOD, @@ -80756,41 +81753,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [44067] = 15, + [44769] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1519), 1, + ACTIONS(1507), 1, anon_sym_DOT, - ACTIONS(1522), 1, + ACTIONS(1509), 1, anon_sym_LPAREN, - ACTIONS(1525), 1, + ACTIONS(1511), 1, anon_sym_SQUOTE, - ACTIONS(1528), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1515), 1, sym_GENERIC, - ACTIONS(1534), 1, + ACTIONS(1517), 1, sym_PARAMETER, - STATE(849), 1, + STATE(728), 1, + aux_sym_name_repeat1, + STATE(855), 1, sym_generic_map_aspect, - STATE(889), 1, - sym_name_selector, - STATE(729), 4, + STATE(924), 1, + sym__name_selector, + STATE(729), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(908), 5, + STATE(925), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 7, + ACTIONS(1493), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80798,7 +81796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 33, + ACTIONS(1487), 33, sym__AND, sym_DOWNTO, sym__MOD, @@ -80832,42 +81830,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [44158] = 16, + [44862] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1507), 1, + ACTIONS(1519), 1, anon_sym_DOT, - ACTIONS(1509), 1, + ACTIONS(1522), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1525), 1, anon_sym_SQUOTE, - ACTIONS(1513), 1, + ACTIONS(1528), 1, anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1531), 1, sym_GENERIC, - ACTIONS(1517), 1, + ACTIONS(1534), 1, sym_PARAMETER, - STATE(729), 1, - aux_sym_name_repeat1, - STATE(849), 1, + STATE(855), 1, sym_generic_map_aspect, - STATE(889), 1, - sym_name_selector, - STATE(730), 3, + STATE(924), 1, + sym__name_selector, + STATE(730), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(908), 5, + aux_sym_name_repeat1, + STATE(925), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 7, + ACTIONS(1473), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80875,7 +81872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 33, + ACTIONS(1465), 33, sym__AND, sym_DOWNTO, sym__MOD, @@ -80909,7 +81906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [44251] = 16, + [44953] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -80928,17 +81925,17 @@ static const uint16_t ts_small_parse_table[] = { sym_GENERIC, ACTIONS(1547), 1, sym_PARAMETER, - STATE(734), 1, + STATE(736), 1, aux_sym_name_repeat1, - STATE(915), 1, + STATE(904), 1, sym_generic_map_aspect, - STATE(932), 1, - sym_name_selector, + STATE(989), 1, + sym__name_selector, STATE(731), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(933), 5, + STATE(980), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -80985,42 +81982,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_GT_GT, anon_sym_PIPE, - [44343] = 16, + [45045] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1537), 1, + ACTIONS(1549), 1, anon_sym_DOT, - ACTIONS(1539), 1, + ACTIONS(1552), 1, anon_sym_LPAREN, - ACTIONS(1541), 1, + ACTIONS(1555), 1, anon_sym_SQUOTE, - ACTIONS(1543), 1, + ACTIONS(1558), 1, anon_sym_LBRACK, - ACTIONS(1545), 1, + ACTIONS(1561), 1, sym_GENERIC, - ACTIONS(1547), 1, + ACTIONS(1564), 1, sym_PARAMETER, - STATE(731), 1, - aux_sym_name_repeat1, - STATE(915), 1, + STATE(927), 1, sym_generic_map_aspect, - STATE(932), 1, - sym_name_selector, - STATE(732), 3, + STATE(943), 1, + sym__name_selector, + STATE(732), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(933), 5, + aux_sym_name_repeat1, + STATE(965), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 7, + ACTIONS(1473), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81028,8 +82024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 32, + ACTIONS(1465), 32, sym__AND, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -81041,14 +82038,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -81059,38 +82056,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_PIPE, - [44435] = 16, + [45135] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1549), 1, + ACTIONS(1567), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1569), 1, anon_sym_LPAREN, - ACTIONS(1553), 1, + ACTIONS(1571), 1, anon_sym_SQUOTE, - ACTIONS(1555), 1, + ACTIONS(1573), 1, anon_sym_LBRACK, - ACTIONS(1557), 1, + ACTIONS(1575), 1, sym_GENERIC, - ACTIONS(1559), 1, + ACTIONS(1577), 1, sym_PARAMETER, - STATE(735), 1, + STATE(732), 1, aux_sym_name_repeat1, - STATE(888), 1, + STATE(927), 1, sym_generic_map_aspect, - STATE(986), 1, - sym_name_selector, + STATE(943), 1, + sym__name_selector, STATE(733), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(983), 5, + STATE(965), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -81137,41 +82133,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [44527] = 15, + [45227] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1561), 1, + ACTIONS(1537), 1, anon_sym_DOT, - ACTIONS(1564), 1, + ACTIONS(1539), 1, anon_sym_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1541), 1, anon_sym_SQUOTE, - ACTIONS(1570), 1, + ACTIONS(1543), 1, anon_sym_LBRACK, - ACTIONS(1573), 1, + ACTIONS(1545), 1, sym_GENERIC, - ACTIONS(1576), 1, + ACTIONS(1547), 1, sym_PARAMETER, - STATE(915), 1, + STATE(731), 1, + aux_sym_name_repeat1, + STATE(904), 1, sym_generic_map_aspect, - STATE(932), 1, - sym_name_selector, - STATE(734), 4, + STATE(989), 1, + sym__name_selector, + STATE(734), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(933), 5, + STATE(980), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 7, + ACTIONS(1493), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81179,7 +82176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 32, + ACTIONS(1487), 32, sym__AND, sym__MOD, sym__NAND, @@ -81212,41 +82209,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_GT_GT, anon_sym_PIPE, - [44617] = 15, + [45319] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1579), 1, + ACTIONS(1567), 1, anon_sym_DOT, - ACTIONS(1582), 1, + ACTIONS(1569), 1, anon_sym_LPAREN, - ACTIONS(1585), 1, + ACTIONS(1571), 1, anon_sym_SQUOTE, - ACTIONS(1588), 1, + ACTIONS(1573), 1, anon_sym_LBRACK, - ACTIONS(1591), 1, + ACTIONS(1575), 1, sym_GENERIC, - ACTIONS(1594), 1, + ACTIONS(1577), 1, sym_PARAMETER, - STATE(888), 1, + STATE(733), 1, + aux_sym_name_repeat1, + STATE(927), 1, sym_generic_map_aspect, - STATE(986), 1, - sym_name_selector, - STATE(735), 4, + STATE(943), 1, + sym__name_selector, + STATE(735), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(983), 5, + STATE(965), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 7, + ACTIONS(1493), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81254,7 +82252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 32, + ACTIONS(1487), 32, sym__AND, sym_DOWNTO, sym__MOD, @@ -81287,42 +82285,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [44707] = 16, + [45411] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1549), 1, + ACTIONS(1579), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1582), 1, anon_sym_LPAREN, - ACTIONS(1553), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(1555), 1, + ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(1557), 1, + ACTIONS(1591), 1, sym_GENERIC, - ACTIONS(1559), 1, + ACTIONS(1594), 1, sym_PARAMETER, - STATE(733), 1, - aux_sym_name_repeat1, - STATE(888), 1, + STATE(904), 1, sym_generic_map_aspect, - STATE(986), 1, - sym_name_selector, - STATE(736), 3, + STATE(989), 1, + sym__name_selector, + STATE(736), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(983), 5, + aux_sym_name_repeat1, + STATE(980), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 7, + ACTIONS(1473), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81330,9 +82327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 32, + ACTIONS(1465), 32, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -81344,14 +82340,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -81362,8 +82358,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_PIPE, - [44799] = 16, + [45501] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -81372,40 +82369,39 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(1597), 1, anon_sym_DOT, - ACTIONS(1599), 1, + ACTIONS(1600), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, - anon_sym_SQUOTE, ACTIONS(1603), 1, + anon_sym_SQUOTE, + ACTIONS(1606), 1, anon_sym_LBRACK, - ACTIONS(1605), 1, + ACTIONS(1609), 1, sym_GENERIC, - ACTIONS(1607), 1, + ACTIONS(1612), 1, sym_PARAMETER, - STATE(742), 1, - aux_sym_name_repeat1, - STATE(926), 1, + STATE(954), 1, sym_generic_map_aspect, - STATE(1030), 1, - sym_name_selector, - STATE(737), 3, + STATE(1016), 1, + sym__name_selector, + STATE(737), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1031), 5, + aux_sym_name_repeat1, + STATE(1005), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 32, + ACTIONS(1465), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -81438,42 +82434,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [44890] = 16, + [45590] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1609), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1611), 1, + ACTIONS(1618), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1621), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1624), 1, anon_sym_LBRACK, - ACTIONS(1617), 1, + ACTIONS(1627), 1, sym_GENERIC, - ACTIONS(1619), 1, + ACTIONS(1630), 1, sym_PARAMETER, - STATE(743), 1, - aux_sym_name_repeat1, - STATE(927), 1, + STATE(979), 1, sym_generic_map_aspect, - STATE(1006), 1, - sym_name_selector, - STATE(738), 3, + STATE(1091), 1, + sym__name_selector, + STATE(738), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1010), 5, + aux_sym_name_repeat1, + STATE(1097), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 7, + ACTIONS(1473), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81481,7 +82476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 31, + ACTIONS(1465), 31, sym__AND, sym__MOD, sym__NAND, @@ -81513,83 +82508,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [44981] = 17, + [45679] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(17), 1, - sym_ARCHITECTURE, - ACTIONS(25), 1, - sym_CONFIGURATION, - ACTIONS(29), 1, - sym_CONTEXT, - ACTIONS(33), 1, - sym_ENTITY, - ACTIONS(45), 1, - sym_LIBRARY, - ACTIONS(47), 1, - sym_PACKAGE, - ACTIONS(63), 1, - sym_USE, - STATE(1021), 1, - aux_sym_design_unit_repeat1, - STATE(2008), 1, - sym__library_unit, - STATE(2133), 1, - sym__context_item, - STATE(739), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(2131), 3, - sym_library_clause, - sym_use_clause, - sym_context_reference, - STATE(2121), 7, - sym_entity_declaration, - sym_configuration_declaration, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_context_declaration, - sym_architecture_definition, - sym_package_definition, - ACTIONS(551), 32, - sym_identifier, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, sym_ALIAS, - sym_ASSERT, + ACTIONS(177), 1, sym_ATTRIBUTE, + ACTIONS(181), 1, sym_COMPONENT, + ACTIONS(183), 1, sym_CONSTANT, + ACTIONS(185), 1, sym_DISCONNECT, + ACTIONS(189), 1, sym_FILE, + ACTIONS(191), 1, sym_FOR, + ACTIONS(193), 1, sym_FUNCTION, + ACTIONS(195), 1, sym_GROUP, - sym_IMPURE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, sym_SIGNAL, + ACTIONS(205), 1, sym_SHARED, + ACTIONS(207), 1, sym_SUBTYPE, + ACTIONS(209), 1, sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, sym_VARIABLE, + ACTIONS(215), 1, sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [45074] = 33, + ACTIONS(1092), 1, + sym_PORT, + ACTIONS(1633), 1, + sym_BEGIN, + ACTIONS(1635), 1, + sym_GENERIC, + STATE(760), 1, + sym_port_clause, + STATE(810), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + STATE(7558), 1, + sym_generic_map_aspect, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(739), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [45804] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -81634,31 +82645,31 @@ static const uint16_t ts_small_parse_table[] = { sym_VIEW, ACTIONS(1092), 1, sym_PORT, - ACTIONS(1621), 1, - sym_BEGIN, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - STATE(763), 1, + ACTIONS(1637), 1, + sym_BEGIN, + STATE(764), 1, sym_port_clause, - STATE(812), 1, + STATE(831), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(7796), 1, + STATE(7868), 1, sym_generic_map_aspect, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(740), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -81681,49 +82692,124 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [45199] = 16, + [45929] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1597), 1, + ACTIONS(17), 1, + sym_ARCHITECTURE, + ACTIONS(25), 1, + sym_CONFIGURATION, + ACTIONS(29), 1, + sym_CONTEXT, + ACTIONS(33), 1, + sym_ENTITY, + ACTIONS(45), 1, + sym_LIBRARY, + ACTIONS(47), 1, + sym_PACKAGE, + ACTIONS(63), 1, + sym_USE, + STATE(1088), 1, + aux_sym_design_unit_repeat1, + STATE(1924), 1, + sym__context_item, + STATE(1976), 1, + sym__library_unit, + STATE(741), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1925), 3, + sym_library_clause, + sym_use_clause, + sym_context_reference, + STATE(1929), 7, + sym_entity_declaration, + sym_configuration_declaration, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_context_declaration, + sym_architecture_definition, + sym_package_definition, + ACTIONS(393), 32, + sym_identifier, + sym_ALIAS, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [46022] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1639), 1, anon_sym_DOT, - ACTIONS(1599), 1, + ACTIONS(1642), 1, anon_sym_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(1603), 1, + ACTIONS(1648), 1, anon_sym_LBRACK, - ACTIONS(1605), 1, + ACTIONS(1651), 1, sym_GENERIC, - ACTIONS(1607), 1, + ACTIONS(1654), 1, sym_PARAMETER, - STATE(737), 1, - aux_sym_name_repeat1, - STATE(926), 1, + STATE(944), 1, sym_generic_map_aspect, - STATE(1030), 1, - sym_name_selector, - STATE(741), 3, + STATE(999), 1, + sym__name_selector, + STATE(742), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1031), 5, + aux_sym_name_repeat1, + STATE(1049), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 32, + ACTIONS(1465), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -81731,6 +82817,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -81742,7 +82829,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -81756,48 +82842,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [45290] = 15, + [46111] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1625), 1, + ACTIONS(1657), 1, anon_sym_DOT, - ACTIONS(1628), 1, + ACTIONS(1659), 1, anon_sym_LPAREN, - ACTIONS(1631), 1, + ACTIONS(1661), 1, anon_sym_SQUOTE, - ACTIONS(1634), 1, + ACTIONS(1663), 1, anon_sym_LBRACK, - ACTIONS(1637), 1, + ACTIONS(1665), 1, sym_GENERIC, - ACTIONS(1640), 1, + ACTIONS(1667), 1, sym_PARAMETER, - STATE(926), 1, + STATE(744), 1, + aux_sym_name_repeat1, + STATE(954), 1, sym_generic_map_aspect, - STATE(1030), 1, - sym_name_selector, - STATE(742), 4, + STATE(1016), 1, + sym__name_selector, + STATE(743), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1031), 5, + STATE(1005), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 32, + ACTIONS(1487), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -81830,50 +82917,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [45379] = 15, + [46202] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1643), 1, + ACTIONS(1657), 1, anon_sym_DOT, - ACTIONS(1646), 1, + ACTIONS(1659), 1, anon_sym_LPAREN, - ACTIONS(1649), 1, + ACTIONS(1661), 1, anon_sym_SQUOTE, - ACTIONS(1652), 1, + ACTIONS(1663), 1, anon_sym_LBRACK, - ACTIONS(1655), 1, + ACTIONS(1665), 1, sym_GENERIC, - ACTIONS(1658), 1, + ACTIONS(1667), 1, sym_PARAMETER, - STATE(927), 1, + STATE(737), 1, + aux_sym_name_repeat1, + STATE(954), 1, sym_generic_map_aspect, - STATE(1006), 1, - sym_name_selector, - STATE(743), 4, + STATE(1016), 1, + sym__name_selector, + STATE(744), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1010), 5, + STATE(1005), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 7, - anon_sym_EQ, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 31, + ACTIONS(1503), 32, sym__AND, + sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -81885,14 +82974,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -81903,50 +82992,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [45468] = 16, + [46293] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1661), 1, + ACTIONS(1669), 1, anon_sym_DOT, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1665), 1, + ACTIONS(1673), 1, anon_sym_SQUOTE, - ACTIONS(1667), 1, + ACTIONS(1675), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, + ACTIONS(1677), 1, sym_GENERIC, - ACTIONS(1671), 1, + ACTIONS(1679), 1, sym_PARAMETER, - STATE(747), 1, + STATE(746), 1, aux_sym_name_repeat1, - STATE(942), 1, + STATE(944), 1, sym_generic_map_aspect, - STATE(1105), 1, - sym_name_selector, - STATE(744), 3, + STATE(999), 1, + sym__name_selector, + STATE(745), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1034), 5, + STATE(1049), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 32, + ACTIONS(1487), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -81979,232 +83067,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [45559] = 33, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(1092), 1, - sym_PORT, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(1673), 1, - sym_BEGIN, - STATE(759), 1, - sym_port_clause, - STATE(836), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - STATE(7481), 1, - sym_generic_map_aspect, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(745), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [45684] = 33, + [46384] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(1088), 1, - sym_GENERIC, - ACTIONS(1092), 1, - sym_PORT, - ACTIONS(1673), 1, - sym_BEGIN, - STATE(740), 1, - sym_generic_clause, - STATE(759), 1, - sym_port_clause, - STATE(836), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(746), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [45809] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1675), 1, + ACTIONS(1669), 1, anon_sym_DOT, - ACTIONS(1678), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1673), 1, anon_sym_SQUOTE, - ACTIONS(1684), 1, + ACTIONS(1675), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1677), 1, sym_GENERIC, - ACTIONS(1690), 1, + ACTIONS(1679), 1, sym_PARAMETER, - STATE(942), 1, + STATE(742), 1, + aux_sym_name_repeat1, + STATE(944), 1, sym_generic_map_aspect, - STATE(1105), 1, - sym_name_selector, - STATE(747), 4, + STATE(999), 1, + sym__name_selector, + STATE(746), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1034), 5, + STATE(1049), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 32, + ACTIONS(1503), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -82237,57 +83142,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [45898] = 16, + [46475] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1661), 1, + ACTIONS(1681), 1, anon_sym_DOT, - ACTIONS(1663), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1665), 1, + ACTIONS(1685), 1, anon_sym_SQUOTE, - ACTIONS(1667), 1, + ACTIONS(1687), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, + ACTIONS(1689), 1, sym_GENERIC, - ACTIONS(1671), 1, + ACTIONS(1691), 1, sym_PARAMETER, - STATE(744), 1, + STATE(738), 1, aux_sym_name_repeat1, - STATE(942), 1, + STATE(979), 1, sym_generic_map_aspect, - STATE(1105), 1, - sym_name_selector, - STATE(748), 3, + STATE(1091), 1, + sym__name_selector, + STATE(747), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1034), 5, + STATE(1097), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1505), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 32, + ACTIONS(1503), 31, sym__AND, - sym_BUS, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -82295,13 +83198,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -82312,36 +83216,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [45989] = 16, + anon_sym_PIPE, + [46566] = 33, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1609), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, + sym_ALIAS, + ACTIONS(177), 1, + sym_ATTRIBUTE, + ACTIONS(181), 1, + sym_COMPONENT, + ACTIONS(183), 1, + sym_CONSTANT, + ACTIONS(185), 1, + sym_DISCONNECT, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(1088), 1, + sym_GENERIC, + ACTIONS(1092), 1, + sym_PORT, + ACTIONS(1633), 1, + sym_BEGIN, + STATE(740), 1, + sym_generic_clause, + STATE(760), 1, + sym_port_clause, + STATE(810), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(748), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [46691] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1681), 1, anon_sym_DOT, - ACTIONS(1611), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1685), 1, anon_sym_SQUOTE, - ACTIONS(1615), 1, + ACTIONS(1687), 1, anon_sym_LBRACK, - ACTIONS(1617), 1, + ACTIONS(1689), 1, sym_GENERIC, - ACTIONS(1619), 1, + ACTIONS(1691), 1, sym_PARAMETER, - STATE(738), 1, + STATE(747), 1, aux_sym_name_repeat1, - STATE(927), 1, + STATE(979), 1, sym_generic_map_aspect, - STATE(1006), 1, - sym_name_selector, + STATE(1091), 1, + sym__name_selector, STATE(749), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1010), 5, + STATE(1097), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -82387,7 +83384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [46080] = 15, + [46782] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -82406,16 +83403,16 @@ static const uint16_t ts_small_parse_table[] = { sym_GENERIC, ACTIONS(1708), 1, sym_PARAMETER, - STATE(1088), 1, + STATE(1028), 1, sym_generic_map_aspect, - STATE(1140), 1, - sym_name_selector, + STATE(1186), 1, + sym__name_selector, STATE(750), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(1106), 5, + STATE(1189), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -82431,11 +83428,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1465), 31, sym__AND, sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -82446,8 +83444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -82460,7 +83457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [46168] = 16, + [46870] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -82479,17 +83476,17 @@ static const uint16_t ts_small_parse_table[] = { sym_GENERIC, ACTIONS(1721), 1, sym_PARAMETER, - STATE(753), 1, + STATE(754), 1, aux_sym_name_repeat1, - STATE(1088), 1, + STATE(1026), 1, sym_generic_map_aspect, - STATE(1140), 1, - sym_name_selector, + STATE(1188), 1, + sym__name_selector, STATE(751), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1106), 5, + STATE(1191), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -82534,7 +83531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [46258] = 16, + [46960] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -82553,17 +83550,17 @@ static const uint16_t ts_small_parse_table[] = { sym_GENERIC, ACTIONS(1733), 1, sym_PARAMETER, - STATE(754), 1, + STATE(750), 1, aux_sym_name_repeat1, - STATE(1014), 1, + STATE(1028), 1, sym_generic_map_aspect, - STATE(1183), 1, - sym_name_selector, + STATE(1186), 1, + sym__name_selector, STATE(752), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1182), 5, + STATE(1189), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -82608,56 +83605,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [46348] = 16, + [47050] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1711), 1, + ACTIONS(1723), 1, anon_sym_DOT, - ACTIONS(1713), 1, + ACTIONS(1725), 1, anon_sym_LPAREN, - ACTIONS(1715), 1, + ACTIONS(1727), 1, anon_sym_SQUOTE, - ACTIONS(1717), 1, + ACTIONS(1729), 1, anon_sym_LBRACK, - ACTIONS(1719), 1, + ACTIONS(1731), 1, sym_GENERIC, - ACTIONS(1721), 1, + ACTIONS(1733), 1, sym_PARAMETER, - STATE(750), 1, + STATE(752), 1, aux_sym_name_repeat1, - STATE(1088), 1, + STATE(1028), 1, sym_generic_map_aspect, - STATE(1140), 1, - sym_name_selector, + STATE(1186), 1, + sym__name_selector, STATE(753), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1106), 5, + STATE(1189), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 31, + ACTIONS(1487), 31, sym__AND, sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -82668,8 +83666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -82682,56 +83679,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [46438] = 15, + [47140] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1735), 1, + ACTIONS(1711), 1, anon_sym_DOT, - ACTIONS(1738), 1, + ACTIONS(1713), 1, anon_sym_LPAREN, - ACTIONS(1741), 1, + ACTIONS(1715), 1, anon_sym_SQUOTE, - ACTIONS(1744), 1, + ACTIONS(1717), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1719), 1, sym_GENERIC, - ACTIONS(1750), 1, + ACTIONS(1721), 1, sym_PARAMETER, - STATE(1014), 1, + STATE(755), 1, + aux_sym_name_repeat1, + STATE(1026), 1, sym_generic_map_aspect, - STATE(1183), 1, - sym_name_selector, - STATE(754), 4, + STATE(1188), 1, + sym__name_selector, + STATE(754), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1182), 5, + STATE(1191), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 31, + ACTIONS(1503), 31, sym__AND, sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -82742,7 +83739,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -82755,57 +83753,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [46526] = 16, + [47230] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1723), 1, + ACTIONS(1735), 1, anon_sym_DOT, - ACTIONS(1725), 1, + ACTIONS(1738), 1, anon_sym_LPAREN, - ACTIONS(1727), 1, + ACTIONS(1741), 1, anon_sym_SQUOTE, - ACTIONS(1729), 1, + ACTIONS(1744), 1, anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1747), 1, sym_GENERIC, - ACTIONS(1733), 1, + ACTIONS(1750), 1, sym_PARAMETER, - STATE(752), 1, - aux_sym_name_repeat1, - STATE(1014), 1, + STATE(1026), 1, sym_generic_map_aspect, - STATE(1183), 1, - sym_name_selector, - STATE(755), 3, + STATE(1188), 1, + sym__name_selector, + STATE(755), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1182), 5, + aux_sym_name_repeat1, + STATE(1191), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 31, + ACTIONS(1465), 31, sym__AND, sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -82816,7 +83812,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -82829,7 +83826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [46616] = 31, + [47318] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -82872,29 +83869,29 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1092), 1, - sym_PORT, ACTIONS(1753), 1, sym_BEGIN, - STATE(773), 1, - sym_port_clause, - STATE(805), 1, + ACTIONS(1755), 1, + sym_PORT, + STATE(832), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, + STATE(8197), 1, + sym_port_map_aspect, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(756), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -82917,315 +83914,50 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [46735] = 31, + [47437] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(1092), 1, - sym_PORT, - ACTIONS(1755), 1, - sym_BEGIN, - STATE(775), 1, - sym_port_clause, - STATE(814), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(757), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [46854] = 31, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(1673), 1, - sym_BEGIN, - ACTIONS(1757), 1, - sym_PORT, - STATE(836), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - STATE(7077), 1, - sym_port_map_aspect, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(758), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [46973] = 31, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(1621), 1, - sym_BEGIN, ACTIONS(1757), 1, - sym_PORT, - STATE(812), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - STATE(7795), 1, - sym_port_map_aspect, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(759), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [47092] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1759), 1, anon_sym_DOT, - ACTIONS(1761), 1, + ACTIONS(1760), 1, anon_sym_LPAREN, ACTIONS(1763), 1, anon_sym_SQUOTE, - ACTIONS(1765), 1, + ACTIONS(1766), 1, anon_sym_LBRACK, - ACTIONS(1767), 1, - sym_GENERIC, ACTIONS(1769), 1, + sym_GENERIC, + ACTIONS(1772), 1, sym_PARAMETER, - STATE(771), 1, - aux_sym_name_repeat1, - STATE(1207), 1, + STATE(1148), 1, sym_generic_map_aspect, - STATE(1244), 1, - sym_name_selector, - STATE(760), 3, + STATE(1349), 1, + sym__name_selector, + STATE(757), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1245), 5, + aux_sym_name_repeat1, + STATE(1356), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 30, + ACTIONS(1465), 30, + sym_AFTER, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -83237,11 +83969,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -83254,7 +83986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [47181] = 15, + [47524] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -83271,17 +84003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1501), 1, sym_PARAMETER, - STATE(724), 1, + STATE(722), 1, aux_sym_name_repeat1, - STATE(815), 1, + STATE(796), 1, sym_generic_map_aspect, - STATE(860), 1, - sym_name_selector, - STATE(761), 3, + STATE(872), 1, + sym__name_selector, + STATE(758), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(853), 5, + STATE(886), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -83326,50 +84058,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [47268] = 15, + [47611] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1771), 1, + ACTIONS(1775), 1, anon_sym_DOT, - ACTIONS(1774), 1, - anon_sym_LPAREN, ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(1779), 1, anon_sym_SQUOTE, - ACTIONS(1780), 1, + ACTIONS(1781), 1, anon_sym_LBRACK, ACTIONS(1783), 1, sym_GENERIC, - ACTIONS(1786), 1, + ACTIONS(1785), 1, sym_PARAMETER, - STATE(1129), 1, + STATE(757), 1, + aux_sym_name_repeat1, + STATE(1148), 1, sym_generic_map_aspect, - STATE(1374), 1, - sym_name_selector, - STATE(762), 4, + STATE(1349), 1, + sym__name_selector, + STATE(759), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1367), 5, + STATE(1356), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 30, + ACTIONS(1503), 30, + sym_AFTER, sym__AND, - sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -83381,12 +84114,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -83398,7 +84131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [47355] = 31, + [47700] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -83441,29 +84174,29 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1755), 1, + ACTIONS(1637), 1, sym_BEGIN, - ACTIONS(1757), 1, + ACTIONS(1755), 1, sym_PORT, - STATE(814), 1, + STATE(831), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(7921), 1, + STATE(7857), 1, sym_port_map_aspect, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(763), 3, + STATE(760), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -83486,55 +84219,56 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [47474] = 16, + [47819] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1789), 1, + ACTIONS(1787), 1, anon_sym_DOT, - ACTIONS(1791), 1, + ACTIONS(1789), 1, anon_sym_LPAREN, - ACTIONS(1793), 1, + ACTIONS(1791), 1, anon_sym_SQUOTE, - ACTIONS(1795), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1797), 1, + ACTIONS(1795), 1, sym_GENERIC, - ACTIONS(1799), 1, + ACTIONS(1797), 1, sym_PARAMETER, - STATE(774), 1, + STATE(778), 1, aux_sym_name_repeat1, - STATE(1195), 1, + STATE(1208), 1, sym_generic_map_aspect, - STATE(1289), 1, - sym_name_selector, - STATE(764), 3, + STATE(1304), 1, + sym__name_selector, + STATE(761), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1297), 5, + STATE(1300), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 30, - sym_AFTER, + ACTIONS(1503), 30, sym__AND, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -83542,12 +84276,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -83559,36 +84292,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [47563] = 16, + [47908] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1759), 1, + ACTIONS(1787), 1, anon_sym_DOT, - ACTIONS(1761), 1, + ACTIONS(1789), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1791), 1, anon_sym_SQUOTE, - ACTIONS(1765), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1767), 1, + ACTIONS(1795), 1, sym_GENERIC, - ACTIONS(1769), 1, + ACTIONS(1797), 1, sym_PARAMETER, - STATE(760), 1, + STATE(761), 1, aux_sym_name_repeat1, - STATE(1207), 1, + STATE(1208), 1, sym_generic_map_aspect, - STATE(1244), 1, - sym_name_selector, - STATE(765), 3, + STATE(1304), 1, + sym__name_selector, + STATE(762), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1245), 5, + STATE(1300), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -83603,11 +84336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1487), 30, sym__AND, - sym_DOWNTO, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -83615,12 +84349,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -83632,53 +84365,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [47652] = 15, + [47997] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1489), 1, + ACTIONS(1799), 1, anon_sym_DOT, - ACTIONS(1491), 1, + ACTIONS(1802), 1, anon_sym_LPAREN, - ACTIONS(1495), 1, + ACTIONS(1805), 1, anon_sym_SQUOTE, - ACTIONS(1497), 1, + ACTIONS(1808), 1, anon_sym_LBRACK, - ACTIONS(1501), 1, + ACTIONS(1811), 1, + sym_GENERIC, + ACTIONS(1814), 1, sym_PARAMETER, - STATE(761), 1, - aux_sym_name_repeat1, - STATE(815), 1, + STATE(1176), 1, sym_generic_map_aspect, - STATE(860), 1, - sym_name_selector, - STATE(766), 3, + STATE(1399), 1, + sym__name_selector, + STATE(763), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(853), 5, + aux_sym_name_repeat1, + STATE(1398), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 31, + ACTIONS(1465), 30, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -83690,9 +84424,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -83704,36 +84437,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [47739] = 16, + [48084] = 31, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, + sym_ALIAS, + ACTIONS(177), 1, + sym_ATTRIBUTE, + ACTIONS(181), 1, + sym_COMPONENT, + ACTIONS(183), 1, + sym_CONSTANT, + ACTIONS(185), 1, + sym_DISCONNECT, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(1817), 1, + sym_BEGIN, + STATE(806), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + STATE(8131), 1, + sym_port_map_aspect, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(764), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [48203] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1801), 1, + ACTIONS(1489), 1, anon_sym_DOT, - ACTIONS(1803), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, + ACTIONS(1495), 1, anon_sym_SQUOTE, - ACTIONS(1807), 1, + ACTIONS(1497), 1, anon_sym_LBRACK, - ACTIONS(1809), 1, - sym_GENERIC, - ACTIONS(1811), 1, + ACTIONS(1501), 1, sym_PARAMETER, - STATE(779), 1, + STATE(758), 1, aux_sym_name_repeat1, - STATE(1212), 1, + STATE(796), 1, sym_generic_map_aspect, - STATE(1221), 1, - sym_name_selector, - STATE(767), 3, + STATE(872), 1, + sym__name_selector, + STATE(765), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1220), 5, + STATE(886), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -83746,14 +84565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 30, + ACTIONS(1487), 31, sym__AND, - sym_BUS, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -83761,6 +84580,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -83777,55 +84597,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [47828] = 16, + [48290] = 31, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, + sym_ALIAS, + ACTIONS(177), 1, + sym_ATTRIBUTE, + ACTIONS(181), 1, + sym_COMPONENT, + ACTIONS(183), 1, + sym_CONSTANT, + ACTIONS(185), 1, + sym_DISCONNECT, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(1633), 1, + sym_BEGIN, + ACTIONS(1755), 1, + sym_PORT, + STATE(810), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + STATE(7551), 1, + sym_port_map_aspect, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(766), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [48409] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1813), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1815), 1, + ACTIONS(1822), 1, anon_sym_LPAREN, - ACTIONS(1817), 1, + ACTIONS(1825), 1, anon_sym_SQUOTE, - ACTIONS(1819), 1, + ACTIONS(1828), 1, anon_sym_LBRACK, - ACTIONS(1821), 1, + ACTIONS(1831), 1, sym_GENERIC, - ACTIONS(1823), 1, + ACTIONS(1834), 1, sym_PARAMETER, - STATE(777), 1, - aux_sym_name_repeat1, - STATE(1211), 1, + STATE(1150), 1, sym_generic_map_aspect, - STATE(1242), 1, - sym_name_selector, - STATE(768), 3, + STATE(1360), 1, + sym__name_selector, + STATE(767), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1257), 5, + aux_sym_name_repeat1, + STATE(1359), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 30, + ACTIONS(1465), 30, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -83835,9 +84741,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -83850,36 +84757,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [47917] = 16, + [48496] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1825), 1, + ACTIONS(1837), 1, anon_sym_DOT, - ACTIONS(1827), 1, + ACTIONS(1839), 1, anon_sym_LPAREN, - ACTIONS(1829), 1, + ACTIONS(1841), 1, anon_sym_SQUOTE, - ACTIONS(1831), 1, + ACTIONS(1843), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1845), 1, sym_GENERIC, - ACTIONS(1835), 1, + ACTIONS(1847), 1, sym_PARAMETER, - STATE(762), 1, + STATE(770), 1, aux_sym_name_repeat1, - STATE(1129), 1, + STATE(1125), 1, sym_generic_map_aspect, - STATE(1374), 1, - sym_name_selector, - STATE(769), 3, + STATE(1323), 1, + sym__name_selector, + STATE(768), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1367), 5, + STATE(1320), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -83923,36 +84830,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [48006] = 16, + [48585] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1825), 1, + ACTIONS(1837), 1, anon_sym_DOT, - ACTIONS(1827), 1, + ACTIONS(1839), 1, anon_sym_LPAREN, - ACTIONS(1829), 1, + ACTIONS(1841), 1, anon_sym_SQUOTE, - ACTIONS(1831), 1, + ACTIONS(1843), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1845), 1, sym_GENERIC, - ACTIONS(1835), 1, + ACTIONS(1847), 1, sym_PARAMETER, - STATE(769), 1, + STATE(768), 1, aux_sym_name_repeat1, - STATE(1129), 1, + STATE(1125), 1, sym_generic_map_aspect, - STATE(1374), 1, - sym_name_selector, - STATE(770), 3, + STATE(1323), 1, + sym__name_selector, + STATE(769), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1367), 5, + STATE(1320), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -83996,35 +84903,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [48095] = 15, + [48674] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1837), 1, + ACTIONS(1849), 1, anon_sym_DOT, - ACTIONS(1840), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1843), 1, + ACTIONS(1855), 1, anon_sym_SQUOTE, - ACTIONS(1846), 1, + ACTIONS(1858), 1, anon_sym_LBRACK, - ACTIONS(1849), 1, + ACTIONS(1861), 1, sym_GENERIC, - ACTIONS(1852), 1, + ACTIONS(1864), 1, sym_PARAMETER, - STATE(1207), 1, + STATE(1125), 1, sym_generic_map_aspect, - STATE(1244), 1, - sym_name_selector, - STATE(771), 4, + STATE(1323), 1, + sym__name_selector, + STATE(770), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(1245), 5, + STATE(1320), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -84039,7 +84946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1465), 30, sym__AND, - sym_DOWNTO, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -84051,12 +84958,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -84068,80 +84975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [48182] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1813), 1, - anon_sym_DOT, - ACTIONS(1815), 1, - anon_sym_LPAREN, - ACTIONS(1817), 1, - anon_sym_SQUOTE, - ACTIONS(1819), 1, - anon_sym_LBRACK, - ACTIONS(1821), 1, - sym_GENERIC, - ACTIONS(1823), 1, - sym_PARAMETER, - STATE(768), 1, - aux_sym_name_repeat1, - STATE(1211), 1, - sym_generic_map_aspect, - STATE(1242), 1, - sym_name_selector, - STATE(772), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1257), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1493), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1487), 30, - sym__AND, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym_OF, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [48271] = 31, + [48761] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -84184,29 +85018,29 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1757), 1, + ACTIONS(1755), 1, sym_PORT, - ACTIONS(1855), 1, + ACTIONS(1867), 1, sym_BEGIN, - STATE(822), 1, + STATE(818), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(8015), 1, + STATE(8236), 1, sym_port_map_aspect, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(773), 3, + STATE(771), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -84229,80 +85063,95 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [48390] = 16, + [48880] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1789), 1, - anon_sym_DOT, - ACTIONS(1791), 1, - anon_sym_LPAREN, - ACTIONS(1793), 1, - anon_sym_SQUOTE, - ACTIONS(1795), 1, - anon_sym_LBRACK, - ACTIONS(1797), 1, - sym_GENERIC, - ACTIONS(1799), 1, - sym_PARAMETER, - STATE(778), 1, - aux_sym_name_repeat1, - STATE(1195), 1, - sym_generic_map_aspect, - STATE(1289), 1, - sym_name_selector, - STATE(774), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, + sym_ALIAS, + ACTIONS(177), 1, + sym_ATTRIBUTE, + ACTIONS(181), 1, + sym_COMPONENT, + ACTIONS(183), 1, + sym_CONSTANT, + ACTIONS(185), 1, + sym_DISCONNECT, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(1092), 1, + sym_PORT, + ACTIONS(1753), 1, + sym_BEGIN, + STATE(771), 1, + sym_port_clause, + STATE(832), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(772), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1297), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1505), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1503), 30, - sym_AFTER, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [48479] = 31, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [48999] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -84345,29 +85194,29 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1753), 1, - sym_BEGIN, - ACTIONS(1757), 1, + ACTIONS(1092), 1, sym_PORT, - STATE(805), 1, + ACTIONS(1817), 1, + sym_BEGIN, + STATE(756), 1, + sym_port_clause, + STATE(806), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, - STATE(7984), 1, - sym_port_map_aspect, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(775), 3, + STATE(773), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -84390,55 +85239,56 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [48598] = 15, + [49118] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1857), 1, + ACTIONS(1869), 1, anon_sym_DOT, - ACTIONS(1860), 1, + ACTIONS(1871), 1, anon_sym_LPAREN, - ACTIONS(1863), 1, + ACTIONS(1873), 1, anon_sym_SQUOTE, - ACTIONS(1866), 1, + ACTIONS(1875), 1, anon_sym_LBRACK, - ACTIONS(1869), 1, + ACTIONS(1877), 1, sym_GENERIC, - ACTIONS(1872), 1, + ACTIONS(1879), 1, sym_PARAMETER, - STATE(1212), 1, + STATE(776), 1, + aux_sym_name_repeat1, + STATE(1176), 1, sym_generic_map_aspect, - STATE(1221), 1, - sym_name_selector, - STATE(776), 4, + STATE(1399), 1, + sym__name_selector, + STATE(774), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1220), 5, + STATE(1398), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 30, + ACTIONS(1487), 30, sym__AND, - sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -84446,11 +85296,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -84462,54 +85312,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [48685] = 15, + [49207] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1875), 1, + ACTIONS(1775), 1, anon_sym_DOT, - ACTIONS(1878), 1, + ACTIONS(1777), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(1779), 1, anon_sym_SQUOTE, - ACTIONS(1884), 1, + ACTIONS(1781), 1, anon_sym_LBRACK, - ACTIONS(1887), 1, + ACTIONS(1783), 1, sym_GENERIC, - ACTIONS(1890), 1, + ACTIONS(1785), 1, sym_PARAMETER, - STATE(1211), 1, + STATE(759), 1, + aux_sym_name_repeat1, + STATE(1148), 1, sym_generic_map_aspect, - STATE(1242), 1, - sym_name_selector, - STATE(777), 4, + STATE(1349), 1, + sym__name_selector, + STATE(775), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1257), 5, + STATE(1356), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 30, + ACTIONS(1487), 30, + sym_AFTER, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -84518,9 +85368,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, @@ -84534,53 +85385,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [48772] = 15, + [49296] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1893), 1, + ACTIONS(1869), 1, anon_sym_DOT, - ACTIONS(1896), 1, + ACTIONS(1871), 1, anon_sym_LPAREN, - ACTIONS(1899), 1, + ACTIONS(1873), 1, anon_sym_SQUOTE, - ACTIONS(1902), 1, + ACTIONS(1875), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1877), 1, sym_GENERIC, - ACTIONS(1908), 1, + ACTIONS(1879), 1, sym_PARAMETER, - STATE(1195), 1, + STATE(763), 1, + aux_sym_name_repeat1, + STATE(1176), 1, sym_generic_map_aspect, - STATE(1289), 1, - sym_name_selector, - STATE(778), 4, + STATE(1399), 1, + sym__name_selector, + STATE(776), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1297), 5, + STATE(1398), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 30, - sym_AFTER, + ACTIONS(1503), 30, sym__AND, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -84589,10 +85442,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, @@ -84606,56 +85458,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [48859] = 16, + [49385] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1801), 1, + ACTIONS(1881), 1, anon_sym_DOT, - ACTIONS(1803), 1, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, + ACTIONS(1885), 1, anon_sym_SQUOTE, - ACTIONS(1807), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1809), 1, + ACTIONS(1889), 1, sym_GENERIC, - ACTIONS(1811), 1, + ACTIONS(1891), 1, sym_PARAMETER, - STATE(776), 1, + STATE(779), 1, aux_sym_name_repeat1, - STATE(1212), 1, + STATE(1150), 1, sym_generic_map_aspect, - STATE(1221), 1, - sym_name_selector, - STATE(779), 3, + STATE(1360), 1, + sym__name_selector, + STATE(777), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1220), 5, + STATE(1359), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 30, + ACTIONS(1487), 30, sym__AND, - sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -84663,11 +85514,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -84679,59 +85531,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [48948] = 16, + [49474] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1911), 1, + ACTIONS(1893), 1, anon_sym_DOT, - ACTIONS(1913), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1915), 1, + ACTIONS(1899), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1919), 1, + ACTIONS(1905), 1, sym_GENERIC, - ACTIONS(1921), 1, + ACTIONS(1908), 1, sym_PARAMETER, - STATE(787), 1, - aux_sym_name_repeat1, - STATE(1290), 1, + STATE(1208), 1, sym_generic_map_aspect, - STATE(1605), 1, - sym_name_selector, - STATE(780), 3, + STATE(1304), 1, + sym__name_selector, + STATE(778), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1606), 5, + aux_sym_name_repeat1, + STATE(1300), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 29, + ACTIONS(1465), 30, sym__AND, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -84740,6 +85591,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -84751,51 +85603,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49036] = 15, + [49561] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1923), 1, + ACTIONS(1881), 1, anon_sym_DOT, - ACTIONS(1926), 1, + ACTIONS(1883), 1, anon_sym_LPAREN, - ACTIONS(1929), 1, + ACTIONS(1885), 1, anon_sym_SQUOTE, - ACTIONS(1932), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1935), 1, + ACTIONS(1889), 1, sym_GENERIC, - ACTIONS(1938), 1, + ACTIONS(1891), 1, sym_PARAMETER, - STATE(1301), 1, + STATE(767), 1, + aux_sym_name_repeat1, + STATE(1150), 1, sym_generic_map_aspect, - STATE(1582), 1, - sym_name_selector, - STATE(781), 4, + STATE(1360), 1, + sym__name_selector, + STATE(779), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1579), 5, + STATE(1359), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 29, + ACTIONS(1503), 30, sym__AND, sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -84808,8 +85660,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -84822,48 +85676,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49122] = 15, + [49650] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1941), 1, + ACTIONS(1911), 1, anon_sym_DOT, - ACTIONS(1944), 1, + ACTIONS(1913), 1, anon_sym_LPAREN, - ACTIONS(1947), 1, + ACTIONS(1915), 1, anon_sym_SQUOTE, - ACTIONS(1950), 1, + ACTIONS(1917), 1, anon_sym_LBRACK, - ACTIONS(1953), 1, + ACTIONS(1919), 1, sym_GENERIC, - ACTIONS(1956), 1, + ACTIONS(1921), 1, sym_PARAMETER, - STATE(1272), 1, + STATE(795), 1, + aux_sym_name_repeat1, + STATE(1329), 1, sym_generic_map_aspect, - STATE(1576), 1, - sym_name_selector, - STATE(782), 4, + STATE(1486), 1, + sym__name_selector, + STATE(780), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1580), 5, + STATE(1487), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 29, + ACTIONS(1487), 29, sym__AND, sym_DOWNTO, sym_GENERATE, @@ -84893,66 +85748,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49208] = 16, + [49738] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1959), 1, + ACTIONS(1923), 1, anon_sym_DOT, - ACTIONS(1961), 1, + ACTIONS(1926), 1, anon_sym_LPAREN, - ACTIONS(1963), 1, + ACTIONS(1929), 1, anon_sym_SQUOTE, - ACTIONS(1965), 1, + ACTIONS(1932), 1, anon_sym_LBRACK, - ACTIONS(1967), 1, + ACTIONS(1935), 1, sym_GENERIC, - ACTIONS(1969), 1, + ACTIONS(1938), 1, sym_PARAMETER, - STATE(782), 1, - aux_sym_name_repeat1, - STATE(1272), 1, + STATE(1266), 1, sym_generic_map_aspect, - STATE(1576), 1, - sym_name_selector, - STATE(783), 3, + STATE(1637), 1, + sym__name_selector, + STATE(781), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1580), 5, + aux_sym_name_repeat1, + STATE(1638), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 29, + ACTIONS(1465), 29, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -84965,55 +85819,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49296] = 16, + [49824] = 31, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1971), 1, - anon_sym_DOT, - ACTIONS(1973), 1, - anon_sym_LPAREN, - ACTIONS(1975), 1, - anon_sym_SQUOTE, - ACTIONS(1977), 1, - anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(1941), 1, + sym_ALIAS, + ACTIONS(1943), 1, + sym_ATTRIBUTE, + ACTIONS(1947), 1, + sym_CONSTANT, + ACTIONS(1949), 1, + sym_DISCONNECT, + ACTIONS(1951), 1, + sym_FILE, + ACTIONS(1953), 1, + sym_FUNCTION, + ACTIONS(1955), 1, sym_GENERIC, + ACTIONS(1957), 1, + sym_GROUP, + ACTIONS(1959), 1, + sym_PACKAGE, + ACTIONS(1961), 1, + sym_PORT, + ACTIONS(1963), 1, + sym_SIGNAL, + ACTIONS(1965), 1, + sym_SHARED, + ACTIONS(1967), 1, + sym_SUBTYPE, + ACTIONS(1969), 1, + sym_TYPE, + ACTIONS(1971), 1, + sym_USE, + ACTIONS(1973), 1, + sym_VARIABLE, + ACTIONS(1975), 1, + sym_VIEW, + STATE(842), 1, + sym_generic_clause, + STATE(939), 1, + aux_sym_entity_head_repeat1, + STATE(996), 1, + sym_port_clause, + STATE(3269), 1, + sym__entity_declarative_item, + STATE(5593), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + ACTIONS(1945), 2, + sym_BEGIN, + sym_END, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(782), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3236), 20, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [49942] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1977), 1, + anon_sym_DOT, + ACTIONS(1979), 1, + anon_sym_LPAREN, ACTIONS(1981), 1, + anon_sym_SQUOTE, + ACTIONS(1983), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + sym_GENERIC, + ACTIONS(1987), 1, sym_PARAMETER, STATE(790), 1, aux_sym_name_repeat1, - STATE(1275), 1, + STATE(1248), 1, sym_generic_map_aspect, - STATE(1619), 1, - sym_name_selector, - STATE(784), 3, + STATE(1611), 1, + sym__name_selector, + STATE(783), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1611), 5, + STATE(1615), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 29, + ACTIONS(1487), 29, sym__AND, - sym_IS, + sym_DOWNTO, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -85022,9 +85963,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -85037,36 +85978,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49384] = 16, + [50030] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1971), 1, + ACTIONS(1989), 1, anon_sym_DOT, - ACTIONS(1973), 1, + ACTIONS(1991), 1, anon_sym_LPAREN, - ACTIONS(1975), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(1977), 1, + ACTIONS(1995), 1, anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1997), 1, sym_GENERIC, - ACTIONS(1981), 1, + ACTIONS(1999), 1, sym_PARAMETER, - STATE(784), 1, + STATE(794), 1, aux_sym_name_repeat1, - STATE(1275), 1, + STATE(1266), 1, sym_generic_map_aspect, - STATE(1619), 1, - sym_name_selector, - STATE(785), 3, + STATE(1637), 1, + sym__name_selector, + STATE(784), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1611), 5, + STATE(1638), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -85081,15 +86022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1487), 29, sym__AND, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -85109,123 +86050,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49472] = 31, + [50118] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(1983), 1, - sym_ALIAS, - ACTIONS(1985), 1, - sym_ATTRIBUTE, - ACTIONS(1989), 1, - sym_CONSTANT, - ACTIONS(1991), 1, - sym_DISCONNECT, - ACTIONS(1993), 1, - sym_FILE, - ACTIONS(1995), 1, - sym_FUNCTION, - ACTIONS(1997), 1, - sym_GENERIC, - ACTIONS(1999), 1, - sym_GROUP, ACTIONS(2001), 1, - sym_PACKAGE, - ACTIONS(2003), 1, - sym_PORT, - ACTIONS(2005), 1, - sym_SIGNAL, - ACTIONS(2007), 1, - sym_SHARED, - ACTIONS(2009), 1, - sym_SUBTYPE, - ACTIONS(2011), 1, - sym_TYPE, - ACTIONS(2013), 1, - sym_USE, - ACTIONS(2015), 1, - sym_VARIABLE, - ACTIONS(2017), 1, - sym_VIEW, - STATE(881), 1, - sym_generic_clause, - STATE(982), 1, - aux_sym_entity_head_repeat1, - STATE(987), 1, - sym_port_clause, - STATE(3154), 1, - sym__entity_declarative_item, - STATE(5694), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - ACTIONS(1987), 2, - sym_BEGIN, - sym_END, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(786), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3152), 20, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [49590] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1911), 1, anon_sym_DOT, - ACTIONS(1913), 1, + ACTIONS(2003), 1, anon_sym_LPAREN, - ACTIONS(1915), 1, + ACTIONS(2005), 1, anon_sym_SQUOTE, - ACTIONS(1917), 1, + ACTIONS(2007), 1, anon_sym_LBRACK, - ACTIONS(1919), 1, + ACTIONS(2009), 1, sym_GENERIC, - ACTIONS(1921), 1, + ACTIONS(2011), 1, sym_PARAMETER, - STATE(793), 1, + STATE(792), 1, aux_sym_name_repeat1, - STATE(1290), 1, + STATE(1294), 1, sym_generic_map_aspect, - STATE(1605), 1, - sym_name_selector, - STATE(787), 3, + STATE(1521), 1, + sym__name_selector, + STATE(785), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1606), 5, + STATE(1522), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -85240,22 +86094,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1503), 29, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -85268,55 +86122,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49678] = 16, + [50206] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2019), 1, + ACTIONS(2013), 1, anon_sym_DOT, - ACTIONS(2021), 1, + ACTIONS(2015), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2017), 1, anon_sym_SQUOTE, - ACTIONS(2025), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(2027), 1, + ACTIONS(2021), 1, sym_GENERIC, - ACTIONS(2029), 1, + ACTIONS(2023), 1, sym_PARAMETER, - STATE(789), 1, + STATE(787), 1, aux_sym_name_repeat1, - STATE(1334), 1, + STATE(1415), 1, sym_generic_map_aspect, - STATE(1495), 1, - sym_name_selector, - STATE(788), 3, + STATE(1432), 1, + sym__name_selector, + STATE(786), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1491), 5, + STATE(1435), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 29, + ACTIONS(1503), 29, sym__AND, - sym_DOWNTO, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -85325,9 +86179,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -85340,55 +86194,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49766] = 16, + [50294] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2019), 1, + ACTIONS(2025), 1, anon_sym_DOT, - ACTIONS(2021), 1, + ACTIONS(2028), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2031), 1, anon_sym_SQUOTE, - ACTIONS(2025), 1, + ACTIONS(2034), 1, anon_sym_LBRACK, - ACTIONS(2027), 1, + ACTIONS(2037), 1, sym_GENERIC, - ACTIONS(2029), 1, + ACTIONS(2040), 1, sym_PARAMETER, - STATE(791), 1, - aux_sym_name_repeat1, - STATE(1334), 1, + STATE(1415), 1, sym_generic_map_aspect, - STATE(1495), 1, - sym_name_selector, - STATE(789), 3, + STATE(1432), 1, + sym__name_selector, + STATE(787), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1491), 5, + aux_sym_name_repeat1, + STATE(1435), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 29, + ACTIONS(1465), 29, sym__AND, - sym_DOWNTO, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -85397,9 +86250,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -85412,54 +86265,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49854] = 15, + [50380] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2031), 1, + ACTIONS(2001), 1, anon_sym_DOT, - ACTIONS(2034), 1, + ACTIONS(2003), 1, anon_sym_LPAREN, - ACTIONS(2037), 1, + ACTIONS(2005), 1, anon_sym_SQUOTE, - ACTIONS(2040), 1, + ACTIONS(2007), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(2009), 1, sym_GENERIC, - ACTIONS(2046), 1, + ACTIONS(2011), 1, sym_PARAMETER, - STATE(1275), 1, + STATE(785), 1, + aux_sym_name_repeat1, + STATE(1294), 1, sym_generic_map_aspect, - STATE(1619), 1, - sym_name_selector, - STATE(790), 4, + STATE(1521), 1, + sym__name_selector, + STATE(788), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1611), 5, + STATE(1522), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 29, + ACTIONS(1487), 29, sym__AND, + sym_DOWNTO, sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -85468,9 +86322,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -85483,35 +86337,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [49940] = 15, + [50468] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2049), 1, + ACTIONS(2043), 1, anon_sym_DOT, - ACTIONS(2052), 1, + ACTIONS(2046), 1, anon_sym_LPAREN, - ACTIONS(2055), 1, + ACTIONS(2049), 1, anon_sym_SQUOTE, - ACTIONS(2058), 1, + ACTIONS(2052), 1, anon_sym_LBRACK, - ACTIONS(2061), 1, + ACTIONS(2055), 1, sym_GENERIC, - ACTIONS(2064), 1, + ACTIONS(2058), 1, sym_PARAMETER, - STATE(1334), 1, + STATE(1329), 1, sym_generic_map_aspect, - STATE(1495), 1, - sym_name_selector, - STATE(791), 4, + STATE(1486), 1, + sym__name_selector, + STATE(789), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(1491), 5, + STATE(1487), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -85527,7 +86381,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1465), 29, sym__AND, sym_DOWNTO, - sym_LOOP, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -85554,52 +86408,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [50026] = 16, + [50554] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1959), 1, + ACTIONS(1977), 1, anon_sym_DOT, - ACTIONS(1961), 1, + ACTIONS(1979), 1, anon_sym_LPAREN, - ACTIONS(1963), 1, + ACTIONS(1981), 1, anon_sym_SQUOTE, - ACTIONS(1965), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1967), 1, + ACTIONS(1985), 1, sym_GENERIC, - ACTIONS(1969), 1, + ACTIONS(1987), 1, sym_PARAMETER, - STATE(783), 1, + STATE(793), 1, aux_sym_name_repeat1, - STATE(1272), 1, + STATE(1248), 1, sym_generic_map_aspect, - STATE(1576), 1, - sym_name_selector, - STATE(792), 3, + STATE(1611), 1, + sym__name_selector, + STATE(790), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1580), 5, + STATE(1615), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 29, + ACTIONS(1503), 29, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -85626,58 +86480,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [50114] = 15, + [50642] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2067), 1, + ACTIONS(2013), 1, anon_sym_DOT, - ACTIONS(2070), 1, + ACTIONS(2015), 1, anon_sym_LPAREN, - ACTIONS(2073), 1, + ACTIONS(2017), 1, anon_sym_SQUOTE, - ACTIONS(2076), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(2079), 1, + ACTIONS(2021), 1, sym_GENERIC, - ACTIONS(2082), 1, + ACTIONS(2023), 1, sym_PARAMETER, - STATE(1290), 1, + STATE(786), 1, + aux_sym_name_repeat1, + STATE(1415), 1, sym_generic_map_aspect, - STATE(1605), 1, - sym_name_selector, - STATE(793), 4, + STATE(1432), 1, + sym__name_selector, + STATE(791), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1606), 5, + STATE(1435), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 29, + ACTIONS(1487), 29, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -85697,49 +86552,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [50200] = 16, + [50730] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2085), 1, + ACTIONS(2061), 1, anon_sym_DOT, - ACTIONS(2087), 1, + ACTIONS(2064), 1, anon_sym_LPAREN, - ACTIONS(2089), 1, + ACTIONS(2067), 1, anon_sym_SQUOTE, - ACTIONS(2091), 1, + ACTIONS(2070), 1, anon_sym_LBRACK, - ACTIONS(2093), 1, + ACTIONS(2073), 1, sym_GENERIC, - ACTIONS(2095), 1, + ACTIONS(2076), 1, sym_PARAMETER, - STATE(781), 1, - aux_sym_name_repeat1, - STATE(1301), 1, + STATE(1294), 1, sym_generic_map_aspect, - STATE(1582), 1, - sym_name_selector, - STATE(794), 3, + STATE(1521), 1, + sym__name_selector, + STATE(792), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1579), 5, + aux_sym_name_repeat1, + STATE(1522), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 29, + ACTIONS(1465), 29, sym__AND, sym_DOWNTO, sym_IS, @@ -85769,52 +86623,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [50288] = 16, + [50816] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2085), 1, + ACTIONS(2079), 1, anon_sym_DOT, - ACTIONS(2087), 1, + ACTIONS(2082), 1, anon_sym_LPAREN, - ACTIONS(2089), 1, + ACTIONS(2085), 1, anon_sym_SQUOTE, - ACTIONS(2091), 1, + ACTIONS(2088), 1, anon_sym_LBRACK, - ACTIONS(2093), 1, + ACTIONS(2091), 1, sym_GENERIC, - ACTIONS(2095), 1, + ACTIONS(2094), 1, sym_PARAMETER, - STATE(794), 1, - aux_sym_name_repeat1, - STATE(1301), 1, + STATE(1248), 1, sym_generic_map_aspect, - STATE(1582), 1, - sym_name_selector, - STATE(795), 3, + STATE(1611), 1, + sym__name_selector, + STATE(793), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1579), 5, + aux_sym_name_repeat1, + STATE(1615), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 29, + ACTIONS(1465), 29, sym__AND, sym_DOWNTO, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -85841,312 +86694,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [50376] = 32, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2097), 1, - sym_ALIAS, - ACTIONS(2099), 1, - sym_ATTRIBUTE, - ACTIONS(2101), 1, - sym_COMPONENT, - ACTIONS(2103), 1, - sym_CONSTANT, - ACTIONS(2105), 1, - sym_DISCONNECT, - ACTIONS(2107), 1, - sym_END, - ACTIONS(2109), 1, - sym_FILE, - ACTIONS(2111), 1, - sym_FUNCTION, - ACTIONS(2113), 1, - sym_GENERIC, - ACTIONS(2115), 1, - sym_GROUP, - ACTIONS(2119), 1, - sym_NEW, - ACTIONS(2121), 1, - sym_PACKAGE, - ACTIONS(2123), 1, - sym_PROCEDURE, - ACTIONS(2125), 1, - sym_SIGNAL, - ACTIONS(2127), 1, - sym_SHARED, - ACTIONS(2129), 1, - sym_SUBTYPE, - ACTIONS(2131), 1, - sym_TYPE, - ACTIONS(2133), 1, - sym_USE, - ACTIONS(2135), 1, - sym_VARIABLE, - ACTIONS(2137), 1, - sym_VIEW, - STATE(991), 1, - aux_sym_package_declaration_body_repeat1, - STATE(1048), 1, - sym_package_header, - STATE(2923), 1, - sym_generic_clause, - STATE(3226), 1, - sym__package_declarative_item, - STATE(6666), 1, - sym__subprogram_specification, - ACTIONS(2117), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(796), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3219), 19, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [50495] = 29, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(2139), 1, - sym_BEGIN, - STATE(818), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(797), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [50608] = 29, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, - ACTIONS(1673), 1, - sym_BEGIN, - STATE(818), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(798), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [50721] = 15, + [50902] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2141), 1, + ACTIONS(1989), 1, anon_sym_DOT, - ACTIONS(2144), 1, + ACTIONS(1991), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(2150), 1, + ACTIONS(1995), 1, anon_sym_LBRACK, - ACTIONS(2153), 1, + ACTIONS(1997), 1, sym_GENERIC, - ACTIONS(2156), 1, + ACTIONS(1999), 1, sym_PARAMETER, - STATE(1393), 1, + STATE(781), 1, + aux_sym_name_repeat1, + STATE(1266), 1, sym_generic_map_aspect, - STATE(1856), 1, - sym_name_selector, - STATE(799), 4, + STATE(1637), 1, + sym__name_selector, + STATE(794), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1855), 5, + STATE(1638), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 28, + ACTIONS(1503), 29, sym__AND, - sym_FOR, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -86166,123 +86766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [50806] = 32, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2097), 1, - sym_ALIAS, - ACTIONS(2099), 1, - sym_ATTRIBUTE, - ACTIONS(2101), 1, - sym_COMPONENT, - ACTIONS(2103), 1, - sym_CONSTANT, - ACTIONS(2105), 1, - sym_DISCONNECT, - ACTIONS(2107), 1, - sym_END, - ACTIONS(2109), 1, - sym_FILE, - ACTIONS(2111), 1, - sym_FUNCTION, - ACTIONS(2113), 1, - sym_GENERIC, - ACTIONS(2115), 1, - sym_GROUP, - ACTIONS(2121), 1, - sym_PACKAGE, - ACTIONS(2123), 1, - sym_PROCEDURE, - ACTIONS(2125), 1, - sym_SIGNAL, - ACTIONS(2127), 1, - sym_SHARED, - ACTIONS(2129), 1, - sym_SUBTYPE, - ACTIONS(2131), 1, - sym_TYPE, - ACTIONS(2133), 1, - sym_USE, - ACTIONS(2135), 1, - sym_VARIABLE, - ACTIONS(2137), 1, - sym_VIEW, - ACTIONS(2159), 1, - sym_NEW, - STATE(991), 1, - aux_sym_package_declaration_body_repeat1, - STATE(1048), 1, - sym_package_header, - STATE(2923), 1, - sym_generic_clause, - STATE(3226), 1, - sym__package_declarative_item, - STATE(6666), 1, - sym__subprogram_specification, - ACTIONS(2117), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(800), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3219), 19, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [50925] = 16, + [50990] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2161), 1, + ACTIONS(1911), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(1913), 1, anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(1915), 1, anon_sym_SQUOTE, - ACTIONS(2167), 1, + ACTIONS(1917), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(1919), 1, sym_GENERIC, - ACTIONS(2171), 1, + ACTIONS(1921), 1, sym_PARAMETER, - STATE(824), 1, + STATE(789), 1, aux_sym_name_repeat1, - STATE(1490), 1, + STATE(1329), 1, sym_generic_map_aspect, - STATE(1729), 1, - sym_name_selector, - STATE(801), 3, + STATE(1486), 1, + sym__name_selector, + STATE(795), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1723), 5, + STATE(1487), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -86295,8 +86808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 28, + ACTIONS(1503), 29, sym__AND, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -86308,10 +86823,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -86324,7 +86838,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [51012] = 29, + [51078] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(2101), 1, + sym_PARAMETER, + STATE(868), 1, + sym_parenthesis_group, + STATE(796), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2099), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2097), 38, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [51151] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -86367,25 +86945,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(2173), 1, + ACTIONS(2103), 1, sym_BEGIN, - STATE(818), 1, + STATE(800), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(802), 3, + STATE(797), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -86408,147 +86986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [51125] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1537), 1, - anon_sym_DOT, - ACTIONS(1539), 1, - anon_sym_LPAREN, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - sym_PARAMETER, - STATE(804), 1, - aux_sym_name_repeat1, - STATE(915), 1, - sym_generic_map_aspect, - STATE(932), 1, - sym_name_selector, - STATE(803), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(933), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1493), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1487), 29, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [51210] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1537), 1, - anon_sym_DOT, - ACTIONS(1539), 1, - anon_sym_LPAREN, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - sym_PARAMETER, - STATE(734), 1, - aux_sym_name_repeat1, - STATE(915), 1, - sym_generic_map_aspect, - STATE(932), 1, - sym_name_selector, - STATE(804), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(933), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1505), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1503), 29, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [51295] = 29, + [51264] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -86591,25 +87029,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1855), 1, + ACTIONS(2105), 1, sym_BEGIN, - STATE(818), 1, + STATE(804), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(805), 3, + STATE(798), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -86632,50 +87070,50 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [51408] = 16, + [51377] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2161), 1, + ACTIONS(2107), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2110), 1, anon_sym_LPAREN, - ACTIONS(2165), 1, + ACTIONS(2113), 1, anon_sym_SQUOTE, - ACTIONS(2167), 1, + ACTIONS(2116), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2119), 1, sym_GENERIC, - ACTIONS(2171), 1, + ACTIONS(2122), 1, sym_PARAMETER, - STATE(801), 1, - aux_sym_name_repeat1, - STATE(1490), 1, + STATE(1433), 1, sym_generic_map_aspect, - STATE(1729), 1, - sym_name_selector, - STATE(806), 3, + STATE(1674), 1, + sym__name_selector, + STATE(799), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1723), 5, + aux_sym_name_repeat1, + STATE(1875), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 28, + ACTIONS(1465), 28, sym__AND, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -86687,7 +87125,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -86703,7 +87140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [51495] = 29, + [51462] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -86746,25 +87183,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1855), 1, + ACTIONS(2105), 1, sym_BEGIN, - STATE(822), 1, + STATE(809), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(807), 3, + STATE(800), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -86787,36 +87224,36 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [51608] = 16, + [51575] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2175), 1, + ACTIONS(2125), 1, anon_sym_DOT, - ACTIONS(2177), 1, + ACTIONS(2127), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(2129), 1, anon_sym_SQUOTE, - ACTIONS(2181), 1, + ACTIONS(2131), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + ACTIONS(2133), 1, sym_GENERIC, - ACTIONS(2185), 1, + ACTIONS(2135), 1, sym_PARAMETER, - STATE(825), 1, + STATE(834), 1, aux_sym_name_repeat1, - STATE(1419), 1, + STATE(1497), 1, sym_generic_map_aspect, - STATE(1785), 1, - sym_name_selector, - STATE(808), 3, + STATE(1799), 1, + sym__name_selector, + STATE(801), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1786), 5, + STATE(1814), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -86834,7 +87271,6 @@ static const uint16_t ts_small_parse_table[] = { sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -86843,9 +87279,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -86858,36 +87295,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [51695] = 16, + [51662] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2175), 1, + ACTIONS(1537), 1, anon_sym_DOT, - ACTIONS(2177), 1, + ACTIONS(1539), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(1541), 1, anon_sym_SQUOTE, - ACTIONS(2181), 1, + ACTIONS(1543), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, - sym_GENERIC, - ACTIONS(2185), 1, + ACTIONS(1547), 1, sym_PARAMETER, - STATE(808), 1, + STATE(822), 1, aux_sym_name_repeat1, - STATE(1419), 1, + STATE(904), 1, sym_generic_map_aspect, - STATE(1785), 1, - sym_name_selector, - STATE(809), 3, + STATE(989), 1, + sym__name_selector, + STATE(802), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1786), 5, + STATE(980), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -86900,7 +87335,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 28, + ACTIONS(1487), 29, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [51747] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2137), 1, + anon_sym_DOT, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_SQUOTE, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2145), 1, + sym_GENERIC, + ACTIONS(2147), 1, + sym_PARAMETER, + STATE(824), 1, + aux_sym_name_repeat1, + STATE(1594), 1, + sym_generic_map_aspect, + STATE(1713), 1, + sym__name_selector, + STATE(803), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1717), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1505), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1503), 28, sym__AND, sym__MOD, sym__NAND, @@ -86929,7 +87436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [51782] = 29, + [51834] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -86972,25 +87479,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(2187), 1, + ACTIONS(2149), 1, sym_BEGIN, - STATE(802), 1, + STATE(809), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(810), 3, + STATE(804), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -87013,7 +87520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [51895] = 29, + [51947] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -87056,25 +87563,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1755), 1, + ACTIONS(1753), 1, sym_BEGIN, - STATE(814), 1, + STATE(832), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(811), 3, + STATE(805), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -87097,7 +87604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [52008] = 29, + [52060] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -87140,25 +87647,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1755), 1, + ACTIONS(1753), 1, sym_BEGIN, - STATE(818), 1, + STATE(809), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(812), 3, + STATE(806), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -87181,7 +87688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [52121] = 29, + [52173] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -87224,25 +87731,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1753), 1, + ACTIONS(2151), 1, sym_BEGIN, - STATE(805), 1, + STATE(829), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(813), 3, + STATE(807), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -87265,74 +87772,78 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [52234] = 29, + [52286] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, + ACTIONS(2153), 1, sym_ALIAS, - ACTIONS(177), 1, + ACTIONS(2155), 1, sym_ATTRIBUTE, - ACTIONS(181), 1, + ACTIONS(2157), 1, sym_COMPONENT, - ACTIONS(183), 1, + ACTIONS(2159), 1, sym_CONSTANT, - ACTIONS(185), 1, + ACTIONS(2161), 1, sym_DISCONNECT, - ACTIONS(189), 1, + ACTIONS(2163), 1, + sym_END, + ACTIONS(2165), 1, sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, + ACTIONS(2167), 1, sym_FUNCTION, - ACTIONS(195), 1, + ACTIONS(2169), 1, + sym_GENERIC, + ACTIONS(2171), 1, sym_GROUP, - ACTIONS(197), 1, + ACTIONS(2175), 1, + sym_NEW, + ACTIONS(2177), 1, sym_PACKAGE, - ACTIONS(203), 1, + ACTIONS(2179), 1, + sym_PROCEDURE, + ACTIONS(2181), 1, sym_SIGNAL, - ACTIONS(205), 1, + ACTIONS(2183), 1, sym_SHARED, - ACTIONS(207), 1, + ACTIONS(2185), 1, sym_SUBTYPE, - ACTIONS(209), 1, + ACTIONS(2187), 1, sym_TYPE, - ACTIONS(211), 1, + ACTIONS(2189), 1, sym_USE, - ACTIONS(213), 1, + ACTIONS(2191), 1, sym_VARIABLE, - ACTIONS(215), 1, + ACTIONS(2193), 1, sym_VIEW, - ACTIONS(1753), 1, - sym_BEGIN, - STATE(818), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, + STATE(1069), 1, + sym_package_header, + STATE(1070), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3014), 1, + sym_generic_clause, + STATE(3253), 1, + sym__package_declarative_item, + STATE(6924), 1, sym__subprogram_specification, - ACTIONS(43), 2, + ACTIONS(2173), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(8303), 2, sym_procedure_specification, sym_function_specification, - STATE(814), 3, + STATE(808), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3252), 19, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, - sym_package_definition, sym_subprogram_declaration, - sym_subprogram_definition, sym_subprogram_instantiation_declaration, sym_type_declaration, sym_subtype_declaration, @@ -87348,143 +87859,73 @@ static const uint16_t ts_small_parse_table[] = { sym_disconnection_specification, sym_group_template_declaration, sym_group_declaration, - sym_configuration_specification, - [52347] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1491), 1, - anon_sym_LPAREN, - ACTIONS(2193), 1, - sym_PARAMETER, - STATE(861), 1, - sym_parenthesis_group, - STATE(815), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2191), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 38, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [52420] = 32, + [52405] = 28, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2097), 1, + ACTIONS(509), 1, + sym_BEGIN, + ACTIONS(544), 1, + sym_PROCEDURE, + ACTIONS(2195), 1, sym_ALIAS, - ACTIONS(2099), 1, + ACTIONS(2198), 1, sym_ATTRIBUTE, - ACTIONS(2101), 1, + ACTIONS(2201), 1, sym_COMPONENT, - ACTIONS(2103), 1, + ACTIONS(2204), 1, sym_CONSTANT, - ACTIONS(2105), 1, + ACTIONS(2207), 1, sym_DISCONNECT, - ACTIONS(2107), 1, - sym_END, - ACTIONS(2109), 1, + ACTIONS(2210), 1, sym_FILE, - ACTIONS(2111), 1, + ACTIONS(2213), 1, + sym_FOR, + ACTIONS(2216), 1, sym_FUNCTION, - ACTIONS(2113), 1, - sym_GENERIC, - ACTIONS(2115), 1, + ACTIONS(2219), 1, sym_GROUP, - ACTIONS(2121), 1, + ACTIONS(2222), 1, sym_PACKAGE, - ACTIONS(2123), 1, - sym_PROCEDURE, - ACTIONS(2125), 1, + ACTIONS(2225), 1, sym_SIGNAL, - ACTIONS(2127), 1, + ACTIONS(2228), 1, sym_SHARED, - ACTIONS(2129), 1, + ACTIONS(2231), 1, sym_SUBTYPE, - ACTIONS(2131), 1, + ACTIONS(2234), 1, sym_TYPE, - ACTIONS(2133), 1, + ACTIONS(2237), 1, sym_USE, - ACTIONS(2135), 1, + ACTIONS(2240), 1, sym_VARIABLE, - ACTIONS(2137), 1, + ACTIONS(2243), 1, sym_VIEW, - ACTIONS(2195), 1, - sym_NEW, - STATE(991), 1, - aux_sym_package_declaration_body_repeat1, - STATE(1048), 1, - sym_package_header, - STATE(2923), 1, - sym_generic_clause, - STATE(3226), 1, - sym__package_declarative_item, - STATE(6666), 1, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, sym__subprogram_specification, - ACTIONS(2117), 2, + ACTIONS(538), 2, sym_IMPURE, sym_PURE, - STATE(8082), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(816), 3, + STATE(809), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3219), 19, + aux_sym_design_unit_repeat2, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, + sym_package_definition, sym_subprogram_declaration, + sym_subprogram_definition, sym_subprogram_instantiation_declaration, sym_type_declaration, sym_subtype_declaration, @@ -87500,7 +87941,8 @@ static const uint16_t ts_small_parse_table[] = { sym_disconnection_specification, sym_group_template_declaration, sym_group_declaration, - [52539] = 29, + sym_configuration_specification, + [52516] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -87543,25 +87985,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(2197), 1, + ACTIONS(1637), 1, sym_BEGIN, - STATE(818), 1, + STATE(809), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(817), 3, + STATE(810), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -87584,73 +88026,78 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [52652] = 28, + [52629] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(567), 1, - sym_BEGIN, - ACTIONS(602), 1, - sym_PROCEDURE, - ACTIONS(2199), 1, + ACTIONS(2153), 1, sym_ALIAS, - ACTIONS(2202), 1, + ACTIONS(2155), 1, sym_ATTRIBUTE, - ACTIONS(2205), 1, + ACTIONS(2157), 1, sym_COMPONENT, - ACTIONS(2208), 1, + ACTIONS(2159), 1, sym_CONSTANT, - ACTIONS(2211), 1, + ACTIONS(2161), 1, sym_DISCONNECT, - ACTIONS(2214), 1, + ACTIONS(2163), 1, + sym_END, + ACTIONS(2165), 1, sym_FILE, - ACTIONS(2217), 1, - sym_FOR, - ACTIONS(2220), 1, + ACTIONS(2167), 1, sym_FUNCTION, - ACTIONS(2223), 1, + ACTIONS(2169), 1, + sym_GENERIC, + ACTIONS(2171), 1, sym_GROUP, - ACTIONS(2226), 1, + ACTIONS(2177), 1, sym_PACKAGE, - ACTIONS(2229), 1, + ACTIONS(2179), 1, + sym_PROCEDURE, + ACTIONS(2181), 1, sym_SIGNAL, - ACTIONS(2232), 1, + ACTIONS(2183), 1, sym_SHARED, - ACTIONS(2235), 1, + ACTIONS(2185), 1, sym_SUBTYPE, - ACTIONS(2238), 1, + ACTIONS(2187), 1, sym_TYPE, - ACTIONS(2241), 1, + ACTIONS(2189), 1, sym_USE, - ACTIONS(2244), 1, + ACTIONS(2191), 1, sym_VARIABLE, - ACTIONS(2247), 1, + ACTIONS(2193), 1, sym_VIEW, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, + ACTIONS(2246), 1, + sym_NEW, + STATE(1069), 1, + sym_package_header, + STATE(1070), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3014), 1, + sym_generic_clause, + STATE(3253), 1, + sym__package_declarative_item, + STATE(6924), 1, sym__subprogram_specification, - ACTIONS(596), 2, + ACTIONS(2173), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(8303), 2, sym_procedure_specification, sym_function_specification, - STATE(818), 4, + STATE(811), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_design_unit_repeat2, - STATE(3074), 22, + STATE(3252), 19, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, - sym_package_definition, sym_subprogram_declaration, - sym_subprogram_definition, sym_subprogram_instantiation_declaration, sym_type_declaration, sym_subtype_declaration, @@ -87666,120 +88113,248 @@ static const uint16_t ts_small_parse_table[] = { sym_disconnection_specification, sym_group_template_declaration, sym_group_declaration, - sym_configuration_specification, - [52763] = 29, + [52748] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(175), 1, - sym_ALIAS, - ACTIONS(177), 1, - sym_ATTRIBUTE, - ACTIONS(181), 1, - sym_COMPONENT, - ACTIONS(183), 1, - sym_CONSTANT, - ACTIONS(185), 1, - sym_DISCONNECT, - ACTIONS(189), 1, - sym_FILE, - ACTIONS(191), 1, - sym_FOR, - ACTIONS(193), 1, - sym_FUNCTION, - ACTIONS(195), 1, - sym_GROUP, - ACTIONS(197), 1, - sym_PACKAGE, - ACTIONS(203), 1, - sym_SIGNAL, - ACTIONS(205), 1, - sym_SHARED, - ACTIONS(207), 1, - sym_SUBTYPE, - ACTIONS(209), 1, - sym_TYPE, - ACTIONS(211), 1, - sym_USE, - ACTIONS(213), 1, - sym_VARIABLE, - ACTIONS(215), 1, - sym_VIEW, + ACTIONS(2248), 1, + anon_sym_DOT, ACTIONS(2250), 1, - sym_BEGIN, - STATE(797), 1, - aux_sym_design_unit_repeat2, - STATE(3015), 1, - sym__block_declarative_item, - STATE(5415), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(819), 3, + anon_sym_LPAREN, + ACTIONS(2252), 1, + anon_sym_SQUOTE, + ACTIONS(2254), 1, + anon_sym_LBRACK, + ACTIONS(2256), 1, + sym_GENERIC, + ACTIONS(2258), 1, + sym_PARAMETER, + STATE(837), 1, + aux_sym_name_repeat1, + STATE(1479), 1, + sym_generic_map_aspect, + STATE(1830), 1, + sym__name_selector, + STATE(812), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - sym_configuration_specification, - [52876] = 15, + STATE(1837), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1505), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1503), 28, + sym__AND, + sym_FOR, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [52835] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2252), 1, + ACTIONS(2248), 1, anon_sym_DOT, - ACTIONS(2255), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, + ACTIONS(2252), 1, + anon_sym_SQUOTE, + ACTIONS(2254), 1, + anon_sym_LBRACK, + ACTIONS(2256), 1, + sym_GENERIC, ACTIONS(2258), 1, + sym_PARAMETER, + STATE(812), 1, + aux_sym_name_repeat1, + STATE(1479), 1, + sym_generic_map_aspect, + STATE(1830), 1, + sym__name_selector, + STATE(813), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1837), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1493), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1487), 28, + sym__AND, + sym_FOR, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [52922] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2137), 1, + anon_sym_DOT, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, anon_sym_SQUOTE, - ACTIONS(2261), 1, + ACTIONS(2143), 1, anon_sym_LBRACK, - ACTIONS(2264), 1, + ACTIONS(2145), 1, sym_GENERIC, - ACTIONS(2267), 1, + ACTIONS(2147), 1, sym_PARAMETER, - STATE(1441), 1, + STATE(803), 1, + aux_sym_name_repeat1, + STATE(1594), 1, sym_generic_map_aspect, - STATE(1758), 1, - sym_name_selector, - STATE(820), 4, + STATE(1713), 1, + sym__name_selector, + STATE(814), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1717), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1493), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1487), 28, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [53009] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2260), 1, + anon_sym_DOT, + ACTIONS(2263), 1, + anon_sym_LPAREN, + ACTIONS(2266), 1, + anon_sym_SQUOTE, + ACTIONS(2269), 1, + anon_sym_LBRACK, + ACTIONS(2272), 1, + sym_GENERIC, + ACTIONS(2275), 1, + sym_PARAMETER, + STATE(1656), 1, + sym_generic_map_aspect, + STATE(1678), 1, + sym__name_selector, + STATE(815), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(1759), 5, + STATE(1785), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -87794,7 +88369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1465), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -87802,6 +88376,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -87821,7 +88396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [52961] = 29, + [53094] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -87864,25 +88439,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(2250), 1, + ACTIONS(2278), 1, sym_BEGIN, - STATE(818), 1, + STATE(809), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(821), 3, + STATE(816), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -87905,7 +88480,78 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [53074] = 29, + [53207] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2280), 1, + anon_sym_DOT, + ACTIONS(2282), 1, + anon_sym_LPAREN, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + sym_GENERIC, + ACTIONS(2290), 1, + sym_PARAMETER, + STATE(819), 1, + aux_sym_name_repeat1, + STATE(1433), 1, + sym_generic_map_aspect, + STATE(1674), 1, + sym__name_selector, + STATE(817), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(1875), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1493), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1487), 28, + sym__AND, + sym_ELSE, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [53294] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -87948,25 +88594,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(2270), 1, + ACTIONS(2103), 1, sym_BEGIN, - STATE(818), 1, + STATE(809), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(822), 3, + STATE(818), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -87989,51 +88635,51 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [53187] = 16, + [53407] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2272), 1, + ACTIONS(2280), 1, anon_sym_DOT, - ACTIONS(2274), 1, + ACTIONS(2282), 1, anon_sym_LPAREN, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(2278), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2280), 1, + ACTIONS(2288), 1, sym_GENERIC, - ACTIONS(2282), 1, + ACTIONS(2290), 1, sym_PARAMETER, - STATE(826), 1, + STATE(799), 1, aux_sym_name_repeat1, - STATE(1393), 1, + STATE(1433), 1, sym_generic_map_aspect, - STATE(1856), 1, - sym_name_selector, - STATE(823), 3, + STATE(1674), 1, + sym__name_selector, + STATE(819), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1855), 5, + STATE(1875), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1493), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 28, + ACTIONS(1503), 28, sym__AND, - sym_FOR, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -88060,48 +88706,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [53274] = 15, + [53494] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2284), 1, + ACTIONS(2153), 1, + sym_ALIAS, + ACTIONS(2155), 1, + sym_ATTRIBUTE, + ACTIONS(2157), 1, + sym_COMPONENT, + ACTIONS(2159), 1, + sym_CONSTANT, + ACTIONS(2161), 1, + sym_DISCONNECT, + ACTIONS(2163), 1, + sym_END, + ACTIONS(2165), 1, + sym_FILE, + ACTIONS(2167), 1, + sym_FUNCTION, + ACTIONS(2169), 1, + sym_GENERIC, + ACTIONS(2171), 1, + sym_GROUP, + ACTIONS(2177), 1, + sym_PACKAGE, + ACTIONS(2179), 1, + sym_PROCEDURE, + ACTIONS(2181), 1, + sym_SIGNAL, + ACTIONS(2183), 1, + sym_SHARED, + ACTIONS(2185), 1, + sym_SUBTYPE, + ACTIONS(2187), 1, + sym_TYPE, + ACTIONS(2189), 1, + sym_USE, + ACTIONS(2191), 1, + sym_VARIABLE, + ACTIONS(2193), 1, + sym_VIEW, + ACTIONS(2292), 1, + sym_NEW, + STATE(1069), 1, + sym_package_header, + STATE(1070), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3014), 1, + sym_generic_clause, + STATE(3253), 1, + sym__package_declarative_item, + STATE(6924), 1, + sym__subprogram_specification, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(820), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3252), 19, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [53613] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2125), 1, anon_sym_DOT, - ACTIONS(2287), 1, + ACTIONS(2127), 1, anon_sym_LPAREN, - ACTIONS(2290), 1, + ACTIONS(2129), 1, anon_sym_SQUOTE, - ACTIONS(2293), 1, + ACTIONS(2131), 1, anon_sym_LBRACK, - ACTIONS(2296), 1, + ACTIONS(2133), 1, sym_GENERIC, - ACTIONS(2299), 1, + ACTIONS(2135), 1, sym_PARAMETER, - STATE(1490), 1, + STATE(801), 1, + aux_sym_name_repeat1, + STATE(1497), 1, sym_generic_map_aspect, - STATE(1729), 1, - sym_name_selector, - STATE(824), 4, + STATE(1799), 1, + sym__name_selector, + STATE(821), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1723), 5, + STATE(1814), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 28, + ACTIONS(1487), 28, sym__AND, sym__MOD, sym__NAND, @@ -88130,53 +88864,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [53359] = 15, + [53700] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2302), 1, + ACTIONS(1537), 1, anon_sym_DOT, - ACTIONS(2305), 1, + ACTIONS(1539), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(1541), 1, anon_sym_SQUOTE, - ACTIONS(2311), 1, + ACTIONS(1543), 1, anon_sym_LBRACK, - ACTIONS(2314), 1, - sym_GENERIC, - ACTIONS(2317), 1, + ACTIONS(1547), 1, sym_PARAMETER, - STATE(1419), 1, + STATE(736), 1, + aux_sym_name_repeat1, + STATE(904), 1, sym_generic_map_aspect, - STATE(1785), 1, - sym_name_selector, - STATE(825), 4, + STATE(989), 1, + sym__name_selector, + STATE(822), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1786), 5, + STATE(980), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 28, + ACTIONS(1503), 29, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -88187,8 +88920,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -88200,54 +88934,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [53444] = 16, + [53785] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2272), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, + sym_ALIAS, + ACTIONS(177), 1, + sym_ATTRIBUTE, + ACTIONS(181), 1, + sym_COMPONENT, + ACTIONS(183), 1, + sym_CONSTANT, + ACTIONS(185), 1, + sym_DISCONNECT, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(1633), 1, + sym_BEGIN, + STATE(809), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(823), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [53898] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2294), 1, anon_sym_DOT, - ACTIONS(2274), 1, + ACTIONS(2297), 1, anon_sym_LPAREN, - ACTIONS(2276), 1, + ACTIONS(2300), 1, anon_sym_SQUOTE, - ACTIONS(2278), 1, + ACTIONS(2303), 1, anon_sym_LBRACK, - ACTIONS(2280), 1, + ACTIONS(2306), 1, sym_GENERIC, - ACTIONS(2282), 1, + ACTIONS(2309), 1, sym_PARAMETER, - STATE(799), 1, - aux_sym_name_repeat1, - STATE(1393), 1, + STATE(1594), 1, sym_generic_map_aspect, - STATE(1856), 1, - sym_name_selector, - STATE(826), 3, + STATE(1713), 1, + sym__name_selector, + STATE(824), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1855), 5, + aux_sym_name_repeat1, + STATE(1717), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 28, + ACTIONS(1465), 28, sym__AND, - sym_FOR, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -88258,7 +89075,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -88271,36 +89088,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [53531] = 16, + [53983] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2320), 1, + ACTIONS(2312), 1, anon_sym_DOT, - ACTIONS(2322), 1, + ACTIONS(2314), 1, anon_sym_LPAREN, - ACTIONS(2324), 1, + ACTIONS(2316), 1, anon_sym_SQUOTE, - ACTIONS(2326), 1, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2328), 1, + ACTIONS(2320), 1, sym_GENERIC, - ACTIONS(2330), 1, + ACTIONS(2322), 1, sym_PARAMETER, - STATE(837), 1, + STATE(828), 1, aux_sym_name_repeat1, - STATE(1481), 1, + STATE(1656), 1, sym_generic_map_aspect, - STATE(1730), 1, - sym_name_selector, - STATE(827), 3, + STATE(1678), 1, + sym__name_selector, + STATE(825), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1831), 5, + STATE(1785), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -88342,36 +89159,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [53618] = 16, + [54070] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2332), 1, + ACTIONS(2153), 1, + sym_ALIAS, + ACTIONS(2155), 1, + sym_ATTRIBUTE, + ACTIONS(2157), 1, + sym_COMPONENT, + ACTIONS(2159), 1, + sym_CONSTANT, + ACTIONS(2161), 1, + sym_DISCONNECT, + ACTIONS(2163), 1, + sym_END, + ACTIONS(2165), 1, + sym_FILE, + ACTIONS(2167), 1, + sym_FUNCTION, + ACTIONS(2169), 1, + sym_GENERIC, + ACTIONS(2171), 1, + sym_GROUP, + ACTIONS(2177), 1, + sym_PACKAGE, + ACTIONS(2179), 1, + sym_PROCEDURE, + ACTIONS(2181), 1, + sym_SIGNAL, + ACTIONS(2183), 1, + sym_SHARED, + ACTIONS(2185), 1, + sym_SUBTYPE, + ACTIONS(2187), 1, + sym_TYPE, + ACTIONS(2189), 1, + sym_USE, + ACTIONS(2191), 1, + sym_VARIABLE, + ACTIONS(2193), 1, + sym_VIEW, + ACTIONS(2324), 1, + sym_NEW, + STATE(1069), 1, + sym_package_header, + STATE(1070), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3014), 1, + sym_generic_clause, + STATE(3253), 1, + sym__package_declarative_item, + STATE(6924), 1, + sym__subprogram_specification, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(826), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3252), 19, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [54189] = 29, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, + sym_ALIAS, + ACTIONS(177), 1, + sym_ATTRIBUTE, + ACTIONS(181), 1, + sym_COMPONENT, + ACTIONS(183), 1, + sym_CONSTANT, + ACTIONS(185), 1, + sym_DISCONNECT, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(2326), 1, + sym_BEGIN, + STATE(809), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(827), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [54302] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2312), 1, anon_sym_DOT, - ACTIONS(2334), 1, + ACTIONS(2314), 1, anon_sym_LPAREN, - ACTIONS(2336), 1, + ACTIONS(2316), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2340), 1, + ACTIONS(2320), 1, sym_GENERIC, - ACTIONS(2342), 1, + ACTIONS(2322), 1, sym_PARAMETER, - STATE(820), 1, + STATE(815), 1, aux_sym_name_repeat1, - STATE(1441), 1, + STATE(1656), 1, sym_generic_map_aspect, - STATE(1758), 1, - sym_name_selector, + STATE(1678), 1, + sym__name_selector, STATE(828), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1759), 5, + STATE(1785), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -88386,7 +89374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1503), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -88394,6 +89381,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -88413,74 +89401,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [53705] = 32, + [54389] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2097), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, sym_ALIAS, - ACTIONS(2099), 1, + ACTIONS(177), 1, sym_ATTRIBUTE, - ACTIONS(2101), 1, + ACTIONS(181), 1, sym_COMPONENT, - ACTIONS(2103), 1, + ACTIONS(183), 1, sym_CONSTANT, - ACTIONS(2105), 1, + ACTIONS(185), 1, sym_DISCONNECT, - ACTIONS(2107), 1, + ACTIONS(189), 1, + sym_FILE, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, + sym_FUNCTION, + ACTIONS(195), 1, + sym_GROUP, + ACTIONS(197), 1, + sym_PACKAGE, + ACTIONS(203), 1, + sym_SIGNAL, + ACTIONS(205), 1, + sym_SHARED, + ACTIONS(207), 1, + sym_SUBTYPE, + ACTIONS(209), 1, + sym_TYPE, + ACTIONS(211), 1, + sym_USE, + ACTIONS(213), 1, + sym_VARIABLE, + ACTIONS(215), 1, + sym_VIEW, + ACTIONS(2328), 1, + sym_BEGIN, + STATE(809), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(829), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3161), 22, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + sym_configuration_specification, + [54502] = 32, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2153), 1, + sym_ALIAS, + ACTIONS(2155), 1, + sym_ATTRIBUTE, + ACTIONS(2157), 1, + sym_COMPONENT, + ACTIONS(2159), 1, + sym_CONSTANT, + ACTIONS(2161), 1, + sym_DISCONNECT, + ACTIONS(2163), 1, sym_END, - ACTIONS(2109), 1, + ACTIONS(2165), 1, sym_FILE, - ACTIONS(2111), 1, + ACTIONS(2167), 1, sym_FUNCTION, - ACTIONS(2113), 1, + ACTIONS(2169), 1, sym_GENERIC, - ACTIONS(2115), 1, + ACTIONS(2171), 1, sym_GROUP, - ACTIONS(2121), 1, + ACTIONS(2177), 1, sym_PACKAGE, - ACTIONS(2123), 1, + ACTIONS(2179), 1, sym_PROCEDURE, - ACTIONS(2125), 1, + ACTIONS(2181), 1, sym_SIGNAL, - ACTIONS(2127), 1, + ACTIONS(2183), 1, sym_SHARED, - ACTIONS(2129), 1, + ACTIONS(2185), 1, sym_SUBTYPE, - ACTIONS(2131), 1, + ACTIONS(2187), 1, sym_TYPE, - ACTIONS(2133), 1, + ACTIONS(2189), 1, sym_USE, - ACTIONS(2135), 1, + ACTIONS(2191), 1, sym_VARIABLE, - ACTIONS(2137), 1, + ACTIONS(2193), 1, sym_VIEW, - ACTIONS(2344), 1, + ACTIONS(2330), 1, sym_NEW, - STATE(991), 1, - aux_sym_package_declaration_body_repeat1, - STATE(1048), 1, + STATE(1069), 1, sym_package_header, - STATE(2923), 1, + STATE(1070), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3014), 1, sym_generic_clause, - STATE(3226), 1, + STATE(3253), 1, sym__package_declarative_item, - STATE(6666), 1, + STATE(6924), 1, sym__subprogram_specification, - ACTIONS(2117), 2, + ACTIONS(2173), 2, sym_IMPURE, sym_PURE, - STATE(8082), 2, + STATE(8303), 2, sym_procedure_specification, sym_function_specification, - STATE(829), 3, + STATE(830), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3219), 19, + STATE(3252), 19, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -88500,7 +89572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_disconnection_specification, sym_group_template_declaration, sym_group_declaration, - [53824] = 29, + [54621] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -88543,25 +89615,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(2270), 1, + ACTIONS(1817), 1, sym_BEGIN, - STATE(821), 1, + STATE(809), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(830), 3, + STATE(831), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -88584,78 +89656,74 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [53937] = 32, + [54734] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2097), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(175), 1, sym_ALIAS, - ACTIONS(2099), 1, + ACTIONS(177), 1, sym_ATTRIBUTE, - ACTIONS(2101), 1, + ACTIONS(181), 1, sym_COMPONENT, - ACTIONS(2103), 1, + ACTIONS(183), 1, sym_CONSTANT, - ACTIONS(2105), 1, + ACTIONS(185), 1, sym_DISCONNECT, - ACTIONS(2107), 1, - sym_END, - ACTIONS(2109), 1, + ACTIONS(189), 1, sym_FILE, - ACTIONS(2111), 1, + ACTIONS(191), 1, + sym_FOR, + ACTIONS(193), 1, sym_FUNCTION, - ACTIONS(2113), 1, - sym_GENERIC, - ACTIONS(2115), 1, + ACTIONS(195), 1, sym_GROUP, - ACTIONS(2121), 1, + ACTIONS(197), 1, sym_PACKAGE, - ACTIONS(2123), 1, - sym_PROCEDURE, - ACTIONS(2125), 1, + ACTIONS(203), 1, sym_SIGNAL, - ACTIONS(2127), 1, + ACTIONS(205), 1, sym_SHARED, - ACTIONS(2129), 1, + ACTIONS(207), 1, sym_SUBTYPE, - ACTIONS(2131), 1, + ACTIONS(209), 1, sym_TYPE, - ACTIONS(2133), 1, + ACTIONS(211), 1, sym_USE, - ACTIONS(2135), 1, + ACTIONS(213), 1, sym_VARIABLE, - ACTIONS(2137), 1, + ACTIONS(215), 1, sym_VIEW, - ACTIONS(2346), 1, - sym_NEW, - STATE(991), 1, - aux_sym_package_declaration_body_repeat1, - STATE(1048), 1, - sym_package_header, - STATE(2923), 1, - sym_generic_clause, - STATE(3226), 1, - sym__package_declarative_item, - STATE(6666), 1, + ACTIONS(1867), 1, + sym_BEGIN, + STATE(809), 1, + aux_sym_design_unit_repeat2, + STATE(3158), 1, + sym__block_declarative_item, + STATE(5644), 1, sym__subprogram_specification, - ACTIONS(2117), 2, + ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(8082), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(831), 3, + STATE(832), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3219), 19, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, + sym_package_definition, sym_subprogram_declaration, + sym_subprogram_definition, sym_subprogram_instantiation_declaration, sym_type_declaration, sym_subtype_declaration, @@ -88671,78 +89739,8 @@ static const uint16_t ts_small_parse_table[] = { sym_disconnection_specification, sym_group_template_declaration, sym_group_declaration, - [54056] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2332), 1, - anon_sym_DOT, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(2336), 1, - anon_sym_SQUOTE, - ACTIONS(2338), 1, - anon_sym_LBRACK, - ACTIONS(2340), 1, - sym_GENERIC, - ACTIONS(2342), 1, - sym_PARAMETER, - STATE(828), 1, - aux_sym_name_repeat1, - STATE(1441), 1, - sym_generic_map_aspect, - STATE(1758), 1, - sym_name_selector, - STATE(832), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(1759), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1493), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1487), 28, - sym__AND, - sym_ELSE, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [54143] = 29, + sym_configuration_specification, + [54847] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -88785,25 +89783,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(2348), 1, + ACTIONS(1817), 1, sym_BEGIN, - STATE(818), 1, + STATE(806), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(833), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -88826,35 +89824,35 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [54256] = 15, + [54960] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2350), 1, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2353), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2356), 1, + ACTIONS(2338), 1, anon_sym_SQUOTE, - ACTIONS(2359), 1, + ACTIONS(2341), 1, anon_sym_LBRACK, - ACTIONS(2362), 1, + ACTIONS(2344), 1, sym_GENERIC, - ACTIONS(2365), 1, + ACTIONS(2347), 1, sym_PARAMETER, - STATE(1481), 1, + STATE(1497), 1, sym_generic_map_aspect, - STATE(1730), 1, - sym_name_selector, + STATE(1799), 1, + sym__name_selector, STATE(834), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(1831), 5, + STATE(1814), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -88876,11 +89874,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -88896,74 +89894,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [54341] = 32, + [55045] = 32, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2097), 1, + ACTIONS(2153), 1, sym_ALIAS, - ACTIONS(2099), 1, + ACTIONS(2155), 1, sym_ATTRIBUTE, - ACTIONS(2101), 1, + ACTIONS(2157), 1, sym_COMPONENT, - ACTIONS(2103), 1, + ACTIONS(2159), 1, sym_CONSTANT, - ACTIONS(2105), 1, + ACTIONS(2161), 1, sym_DISCONNECT, - ACTIONS(2107), 1, + ACTIONS(2163), 1, sym_END, - ACTIONS(2109), 1, + ACTIONS(2165), 1, sym_FILE, - ACTIONS(2111), 1, + ACTIONS(2167), 1, sym_FUNCTION, - ACTIONS(2113), 1, + ACTIONS(2169), 1, sym_GENERIC, - ACTIONS(2115), 1, + ACTIONS(2171), 1, sym_GROUP, - ACTIONS(2121), 1, + ACTIONS(2177), 1, sym_PACKAGE, - ACTIONS(2123), 1, + ACTIONS(2179), 1, sym_PROCEDURE, - ACTIONS(2125), 1, + ACTIONS(2181), 1, sym_SIGNAL, - ACTIONS(2127), 1, + ACTIONS(2183), 1, sym_SHARED, - ACTIONS(2129), 1, + ACTIONS(2185), 1, sym_SUBTYPE, - ACTIONS(2131), 1, + ACTIONS(2187), 1, sym_TYPE, - ACTIONS(2133), 1, + ACTIONS(2189), 1, sym_USE, - ACTIONS(2135), 1, + ACTIONS(2191), 1, sym_VARIABLE, - ACTIONS(2137), 1, + ACTIONS(2193), 1, sym_VIEW, - ACTIONS(2368), 1, + ACTIONS(2350), 1, sym_NEW, - STATE(991), 1, - aux_sym_package_declaration_body_repeat1, - STATE(1048), 1, + STATE(1069), 1, sym_package_header, - STATE(2923), 1, + STATE(1070), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3014), 1, sym_generic_clause, - STATE(3226), 1, + STATE(3253), 1, sym__package_declarative_item, - STATE(6666), 1, + STATE(6924), 1, sym__subprogram_specification, - ACTIONS(2117), 2, + ACTIONS(2173), 2, sym_IMPURE, sym_PURE, - STATE(8082), 2, + STATE(8303), 2, sym_procedure_specification, sym_function_specification, STATE(835), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3219), 19, + STATE(3252), 19, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -88983,7 +89981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_disconnection_specification, sym_group_template_declaration, sym_group_declaration, - [54460] = 29, + [55164] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -89026,25 +90024,25 @@ static const uint16_t ts_small_parse_table[] = { sym_VARIABLE, ACTIONS(215), 1, sym_VIEW, - ACTIONS(1621), 1, + ACTIONS(1867), 1, sym_BEGIN, STATE(818), 1, aux_sym_design_unit_repeat2, - STATE(3015), 1, + STATE(3158), 1, sym__block_declarative_item, - STATE(5415), 1, + STATE(5644), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(836), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3074), 22, + STATE(3161), 22, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -89067,50 +90065,50 @@ static const uint16_t ts_small_parse_table[] = { sym_group_template_declaration, sym_group_declaration, sym_configuration_specification, - [54573] = 16, + [55277] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2320), 1, + ACTIONS(2352), 1, anon_sym_DOT, - ACTIONS(2322), 1, + ACTIONS(2355), 1, anon_sym_LPAREN, - ACTIONS(2324), 1, + ACTIONS(2358), 1, anon_sym_SQUOTE, - ACTIONS(2326), 1, + ACTIONS(2361), 1, anon_sym_LBRACK, - ACTIONS(2328), 1, + ACTIONS(2364), 1, sym_GENERIC, - ACTIONS(2330), 1, + ACTIONS(2367), 1, sym_PARAMETER, - STATE(834), 1, - aux_sym_name_repeat1, - STATE(1481), 1, + STATE(1479), 1, sym_generic_map_aspect, - STATE(1730), 1, - sym_name_selector, - STATE(837), 3, + STATE(1830), 1, + sym__name_selector, + STATE(837), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1831), 5, + aux_sym_name_repeat1, + STATE(1837), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 28, + ACTIONS(1465), 28, sym__AND, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, @@ -89118,7 +90116,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -89138,54 +90135,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [54660] = 15, + [55362] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2370), 1, - anon_sym_DOT, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2376), 1, - anon_sym_SQUOTE, - ACTIONS(2379), 1, - anon_sym_LBRACK, - ACTIONS(2382), 1, - sym_GENERIC, - ACTIONS(2385), 1, - sym_PARAMETER, - STATE(1860), 1, - sym_generic_map_aspect, - STATE(2156), 1, - sym_name_selector, - STATE(838), 4, + STATE(838), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(2157), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1473), 6, + ACTIONS(2372), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 27, + ACTIONS(2370), 40, sym__AND, - sym_INERTIAL, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -89193,10 +90170,17 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -89207,27 +90191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [54744] = 9, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [55428] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2394), 1, - sym_library_constant_unit, - STATE(1601), 1, - sym__unit, STATE(839), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2392), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 7, + ACTIONS(2376), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89235,13 +90214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 34, + ACTIONS(2374), 40, sym__AND, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -89254,6 +90235,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -89269,8 +90252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [54816] = 6, + [55494] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -89281,7 +90266,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 7, + ACTIONS(2380), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89289,7 +90274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 40, + ACTIONS(2378), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -89330,18 +90315,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [54882] = 6, + [55560] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2388), 1, + sym_library_constant_unit, + STATE(1468), 1, + sym__unit, STATE(841), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, + ACTIONS(2386), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89349,15 +90343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 40, + ACTIONS(2382), 34, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -89370,8 +90362,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -89387,37 +90377,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, anon_sym_PIPE, - [54948] = 6, + [55632] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(1941), 1, + sym_ALIAS, + ACTIONS(1943), 1, + sym_ATTRIBUTE, + ACTIONS(1947), 1, + sym_CONSTANT, + ACTIONS(1949), 1, + sym_DISCONNECT, + ACTIONS(1951), 1, + sym_FILE, + ACTIONS(1953), 1, + sym_FUNCTION, + ACTIONS(1957), 1, + sym_GROUP, + ACTIONS(1959), 1, + sym_PACKAGE, + ACTIONS(1961), 1, + sym_PORT, + ACTIONS(1963), 1, + sym_SIGNAL, + ACTIONS(1965), 1, + sym_SHARED, + ACTIONS(1967), 1, + sym_SUBTYPE, + ACTIONS(1969), 1, + sym_TYPE, + ACTIONS(1971), 1, + sym_USE, + ACTIONS(1973), 1, + sym_VARIABLE, + ACTIONS(1975), 1, + sym_VIEW, + STATE(947), 1, + aux_sym_entity_head_repeat1, + STATE(951), 1, + sym_port_clause, + STATE(3269), 1, + sym__entity_declarative_item, + STATE(5593), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + ACTIONS(2390), 2, + sym_BEGIN, + sym_END, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, STATE(842), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, - anon_sym_EQ, + STATE(3236), 20, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [55744] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2392), 1, + anon_sym_DOT, + ACTIONS(2394), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_SQUOTE, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(2400), 1, + sym_GENERIC, + ACTIONS(2402), 1, + sym_PARAMETER, + STATE(874), 1, + aux_sym_name_repeat1, + STATE(1719), 1, + sym_generic_map_aspect, + STATE(2170), 1, + sym__name_selector, + STATE(843), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2169), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 40, + ACTIONS(1503), 27, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -89425,17 +90516,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_THEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -89446,22 +90531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [55014] = 6, + [55830] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(843), 3, + STATE(844), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2406), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89469,7 +90550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 40, + ACTIONS(2404), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -89510,49 +90591,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [55080] = 15, + [55896] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2412), 1, + ACTIONS(2408), 1, anon_sym_DOT, - ACTIONS(2415), 1, + ACTIONS(2410), 1, anon_sym_LPAREN, - ACTIONS(2418), 1, + ACTIONS(2412), 1, anon_sym_SQUOTE, - ACTIONS(2421), 1, + ACTIONS(2414), 1, anon_sym_LBRACK, - ACTIONS(2424), 1, + ACTIONS(2416), 1, sym_GENERIC, - ACTIONS(2427), 1, + ACTIONS(2418), 1, sym_PARAMETER, - STATE(1837), 1, + STATE(859), 1, + aux_sym_name_repeat1, + STATE(1771), 1, sym_generic_map_aspect, - STATE(1876), 1, - sym_name_selector, - STATE(844), 4, + STATE(2006), 1, + sym__name_selector, + STATE(845), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1875), 5, + STATE(2005), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 27, + ACTIONS(1487), 27, sym__AND, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -89564,7 +90647,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -89579,18 +90661,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [55164] = 6, + [55982] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(845), 3, + STATE(846), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(2422), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89598,7 +90680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 40, + ACTIONS(2420), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -89639,18 +90721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [55230] = 6, + [56048] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(846), 3, + STATE(847), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2426), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89658,7 +90740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 40, + ACTIONS(2424), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -89699,55 +90781,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [55296] = 16, + [56114] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2442), 1, - anon_sym_SQUOTE, - ACTIONS(2444), 1, - anon_sym_LBRACK, - ACTIONS(2446), 1, - sym_GENERIC, - ACTIONS(2448), 1, - sym_PARAMETER, - STATE(864), 1, - aux_sym_name_repeat1, - STATE(1830), 1, - sym_generic_map_aspect, - STATE(2067), 1, - sym_name_selector, - STATE(847), 3, + STATE(848), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2066), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1493), 6, + ACTIONS(2430), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 27, + ACTIONS(2428), 40, sym__AND, - sym_GENERATE, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -89755,10 +90816,17 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -89769,34 +90837,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [55382] = 6, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [56180] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(848), 3, + ACTIONS(2432), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2438), 1, + anon_sym_SQUOTE, + ACTIONS(2441), 1, + anon_sym_LBRACK, + ACTIONS(2444), 1, + sym_GENERIC, + ACTIONS(2447), 1, + sym_PARAMETER, + STATE(1740), 1, + sym_generic_map_aspect, + STATE(2282), 1, + sym__name_selector, + STATE(849), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, - anon_sym_EQ, + aux_sym_name_repeat1, + STATE(2281), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 40, + ACTIONS(1465), 27, sym__AND, - sym_DOWNTO, - sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -89804,17 +90896,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -89825,28 +90910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [55448] = 9, + [56264] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1509), 1, - anon_sym_LPAREN, - ACTIONS(2454), 1, - sym_PARAMETER, - STATE(899), 1, - sym_parenthesis_group, - STATE(849), 3, + STATE(850), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, + ACTIONS(2452), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89854,7 +90929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 37, + ACTIONS(2450), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -89862,7 +90937,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_RANGE, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -89871,14 +90946,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -89889,39 +90966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [55520] = 16, + [56330] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2456), 1, + ACTIONS(2454), 1, anon_sym_DOT, - ACTIONS(2458), 1, + ACTIONS(2456), 1, anon_sym_LPAREN, - ACTIONS(2460), 1, + ACTIONS(2458), 1, anon_sym_SQUOTE, - ACTIONS(2462), 1, + ACTIONS(2460), 1, anon_sym_LBRACK, - ACTIONS(2464), 1, + ACTIONS(2462), 1, sym_GENERIC, - ACTIONS(2466), 1, + ACTIONS(2464), 1, sym_PARAMETER, - STATE(859), 1, + STATE(856), 1, aux_sym_name_repeat1, - STATE(1828), 1, + STATE(1756), 1, sym_generic_map_aspect, - STATE(1911), 1, - sym_name_selector, - STATE(850), 3, + STATE(2113), 1, + sym__name_selector, + STATE(851), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1912), 5, + STATE(2112), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -89936,6 +91014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1503), 27, sym__AND, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -89943,7 +91022,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -89962,18 +91040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [55606] = 6, + [56416] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(851), 3, + STATE(852), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2468), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89981,7 +91059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 40, + ACTIONS(2466), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90022,54 +91100,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [55672] = 15, + [56482] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2472), 1, - anon_sym_DOT, - ACTIONS(2475), 1, - anon_sym_LPAREN, - ACTIONS(2478), 1, - anon_sym_SQUOTE, - ACTIONS(2481), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - sym_GENERIC, - ACTIONS(2487), 1, - sym_PARAMETER, - STATE(1790), 1, - sym_generic_map_aspect, - STATE(1906), 1, - sym_name_selector, - STATE(852), 4, + STATE(853), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1905), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1473), 6, + ACTIONS(2472), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 27, + ACTIONS(2470), 40, sym__AND, - sym_IS, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -90077,10 +91135,17 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -90091,18 +91156,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [55756] = 6, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [56548] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(853), 3, + STATE(854), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2476), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90110,7 +91179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 40, + ACTIONS(2474), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90151,18 +91220,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [55822] = 6, + [56614] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(854), 3, + ACTIONS(1509), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + sym_PARAMETER, + STATE(919), 1, + sym_parenthesis_group, + STATE(855), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2099), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90170,7 +91245,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 40, + ACTIONS(2097), 37, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_RANGE, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [56686] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2480), 1, + anon_sym_DOT, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2486), 1, + anon_sym_SQUOTE, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2492), 1, + sym_GENERIC, + ACTIONS(2495), 1, + sym_PARAMETER, + STATE(1756), 1, + sym_generic_map_aspect, + STATE(2113), 1, + sym__name_selector, + STATE(856), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_name_repeat1, + STATE(2112), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1473), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1465), 27, + sym__AND, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [56770] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(857), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2500), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2498), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90211,18 +91412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [55888] = 6, + [56836] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(855), 3, + STATE(858), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2504), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90230,7 +91431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 40, + ACTIONS(2502), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90271,36 +91472,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [55954] = 16, + [56902] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2502), 1, + ACTIONS(2408), 1, anon_sym_DOT, - ACTIONS(2504), 1, + ACTIONS(2410), 1, anon_sym_LPAREN, - ACTIONS(2506), 1, + ACTIONS(2412), 1, anon_sym_SQUOTE, - ACTIONS(2508), 1, + ACTIONS(2414), 1, anon_sym_LBRACK, - ACTIONS(2510), 1, + ACTIONS(2416), 1, sym_GENERIC, - ACTIONS(2512), 1, + ACTIONS(2418), 1, sym_PARAMETER, - STATE(883), 1, + STATE(861), 1, aux_sym_name_repeat1, - STATE(1732), 1, + STATE(1771), 1, sym_generic_map_aspect, - STATE(1918), 1, - sym_name_selector, - STATE(856), 3, + STATE(2006), 1, + sym__name_selector, + STATE(859), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1920), 5, + STATE(2005), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -90315,7 +91516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1503), 27, sym__AND, - sym_LOOP, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -90341,18 +91542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [56040] = 6, + [56988] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(857), 3, + STATE(860), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(2508), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90360,7 +91561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 40, + ACTIONS(2506), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90401,18 +91602,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [56106] = 6, + [57054] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(858), 3, + ACTIONS(2510), 1, + anon_sym_DOT, + ACTIONS(2513), 1, + anon_sym_LPAREN, + ACTIONS(2516), 1, + anon_sym_SQUOTE, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2522), 1, + sym_GENERIC, + ACTIONS(2525), 1, + sym_PARAMETER, + STATE(1771), 1, + sym_generic_map_aspect, + STATE(2006), 1, + sym__name_selector, + STATE(861), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + aux_sym_name_repeat1, + STATE(2005), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1473), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1465), 27, + sym__AND, + sym_GENERATE, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [57138] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(862), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2530), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90420,7 +91690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 40, + ACTIONS(2528), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90461,49 +91731,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [56172] = 15, + [57204] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2522), 1, + ACTIONS(2532), 1, anon_sym_DOT, - ACTIONS(2525), 1, + ACTIONS(2534), 1, anon_sym_LPAREN, - ACTIONS(2528), 1, + ACTIONS(2536), 1, anon_sym_SQUOTE, - ACTIONS(2531), 1, + ACTIONS(2538), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2540), 1, sym_GENERIC, - ACTIONS(2537), 1, + ACTIONS(2542), 1, sym_PARAMETER, - STATE(1828), 1, + STATE(849), 1, + aux_sym_name_repeat1, + STATE(1740), 1, sym_generic_map_aspect, - STATE(1911), 1, - sym_name_selector, - STATE(859), 4, + STATE(2282), 1, + sym__name_selector, + STATE(863), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1912), 5, + STATE(2281), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1473), 6, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 27, + ACTIONS(1503), 27, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -90511,7 +91783,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -90530,52 +91801,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [56256] = 6, + [57290] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(860), 3, + ACTIONS(2544), 1, + anon_sym_DOT, + ACTIONS(2546), 1, + anon_sym_LPAREN, + ACTIONS(2548), 1, + anon_sym_SQUOTE, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + sym_GENERIC, + ACTIONS(2554), 1, + sym_PARAMETER, + STATE(873), 1, + aux_sym_name_repeat1, + STATE(1872), 1, + sym_generic_map_aspect, + STATE(1960), 1, + sym__name_selector, + STATE(864), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, - anon_sym_EQ, + STATE(1961), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 40, + ACTIONS(1487), 27, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -90586,22 +91871,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, + [57376] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2392), 1, + anon_sym_DOT, + ACTIONS(2394), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, anon_sym_SQUOTE, + ACTIONS(2398), 1, anon_sym_LBRACK, - anon_sym_PIPE, - [56322] = 6, + ACTIONS(2400), 1, + sym_GENERIC, + ACTIONS(2402), 1, + sym_PARAMETER, + STATE(843), 1, + aux_sym_name_repeat1, + STATE(1719), 1, + sym_generic_map_aspect, + STATE(2170), 1, + sym__name_selector, + STATE(865), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(2169), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1493), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1487), 27, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [57462] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(861), 3, + STATE(866), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 7, + ACTIONS(2558), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90609,7 +91960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 40, + ACTIONS(2556), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90650,18 +92001,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [56388] = 6, + [57528] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(862), 3, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2562), 1, + anon_sym_LPAREN, + ACTIONS(2564), 1, + anon_sym_SQUOTE, + ACTIONS(2566), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + sym_GENERIC, + ACTIONS(2570), 1, + sym_PARAMETER, + STATE(883), 1, + aux_sym_name_repeat1, + STATE(1779), 1, + sym_generic_map_aspect, + STATE(2055), 1, + sym__name_selector, + STATE(867), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 7, + STATE(2057), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1505), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1503), 27, + sym__AND, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [57614] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(868), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2574), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90669,7 +92090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 40, + ACTIONS(2572), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90710,18 +92131,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [56454] = 6, + [57680] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(863), 3, + STATE(869), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, + ACTIONS(2578), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90729,7 +92150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 40, + ACTIONS(2576), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90770,51 +92191,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [56520] = 16, + [57746] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2438), 1, + ACTIONS(2454), 1, anon_sym_DOT, - ACTIONS(2440), 1, + ACTIONS(2456), 1, anon_sym_LPAREN, - ACTIONS(2442), 1, + ACTIONS(2458), 1, anon_sym_SQUOTE, - ACTIONS(2444), 1, + ACTIONS(2460), 1, anon_sym_LBRACK, - ACTIONS(2446), 1, + ACTIONS(2462), 1, sym_GENERIC, - ACTIONS(2448), 1, + ACTIONS(2464), 1, sym_PARAMETER, - STATE(868), 1, + STATE(851), 1, aux_sym_name_repeat1, - STATE(1830), 1, + STATE(1756), 1, sym_generic_map_aspect, - STATE(2067), 1, - sym_name_selector, - STATE(864), 3, + STATE(2113), 1, + sym__name_selector, + STATE(870), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2066), 5, + STATE(2112), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 27, + ACTIONS(1487), 27, sym__AND, - sym_GENERATE, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -90840,36 +92261,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [56606] = 16, + [57832] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2556), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2558), 1, + ACTIONS(2562), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2564), 1, anon_sym_SQUOTE, - ACTIONS(2562), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2564), 1, + ACTIONS(2568), 1, sym_GENERIC, - ACTIONS(2566), 1, + ACTIONS(2570), 1, sym_PARAMETER, - STATE(876), 1, + STATE(867), 1, aux_sym_name_repeat1, - STATE(1790), 1, + STATE(1779), 1, sym_generic_map_aspect, - STATE(1906), 1, - sym_name_selector, - STATE(865), 3, + STATE(2055), 1, + sym__name_selector, + STATE(871), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1905), 5, + STATE(2057), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -90884,7 +92305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1487), 27, sym__AND, - sym_IS, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -90910,18 +92331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [56692] = 6, + [57918] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(866), 3, + STATE(872), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 7, + ACTIONS(2582), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90929,7 +92350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 40, + ACTIONS(2580), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -90970,52 +92391,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [56758] = 6, + [57984] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(867), 3, + ACTIONS(2544), 1, + anon_sym_DOT, + ACTIONS(2546), 1, + anon_sym_LPAREN, + ACTIONS(2548), 1, + anon_sym_SQUOTE, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + sym_GENERIC, + ACTIONS(2554), 1, + sym_PARAMETER, + STATE(879), 1, + aux_sym_name_repeat1, + STATE(1872), 1, + sym_generic_map_aspect, + STATE(1960), 1, + sym__name_selector, + STATE(873), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, - anon_sym_EQ, + STATE(1961), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1505), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 40, + ACTIONS(1503), 27, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -91026,39 +92461,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [56824] = 15, + [58070] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2576), 1, + ACTIONS(2584), 1, anon_sym_DOT, - ACTIONS(2579), 1, + ACTIONS(2587), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_SQUOTE, - ACTIONS(2585), 1, + ACTIONS(2593), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2596), 1, sym_GENERIC, - ACTIONS(2591), 1, + ACTIONS(2599), 1, sym_PARAMETER, - STATE(1830), 1, + STATE(1719), 1, sym_generic_map_aspect, - STATE(2067), 1, - sym_name_selector, - STATE(868), 4, + STATE(2170), 1, + sym__name_selector, + STATE(874), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(2066), 5, + STATE(2169), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -91073,7 +92504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1465), 27, sym__AND, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -91085,6 +92515,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -91099,18 +92530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [56908] = 6, + [58154] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(869), 3, + STATE(875), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2604), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91118,7 +92549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 40, + ACTIONS(2602), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -91159,55 +92590,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [56974] = 16, + [58220] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2502), 1, - anon_sym_DOT, - ACTIONS(2504), 1, - anon_sym_LPAREN, - ACTIONS(2506), 1, - anon_sym_SQUOTE, - ACTIONS(2508), 1, - anon_sym_LBRACK, - ACTIONS(2510), 1, - sym_GENERIC, - ACTIONS(2512), 1, - sym_PARAMETER, - STATE(856), 1, - aux_sym_name_repeat1, - STATE(1732), 1, - sym_generic_map_aspect, - STATE(1918), 1, - sym_name_selector, - STATE(870), 3, + STATE(876), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1920), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1493), 6, + ACTIONS(2608), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 27, + ACTIONS(2606), 40, sym__AND, - sym_LOOP, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -91215,10 +92625,17 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -91229,54 +92646,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [57060] = 16, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [58286] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2598), 1, - anon_sym_DOT, - ACTIONS(2600), 1, - anon_sym_LPAREN, - ACTIONS(2602), 1, - anon_sym_SQUOTE, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - sym_GENERIC, - ACTIONS(2608), 1, - sym_PARAMETER, - STATE(844), 1, - aux_sym_name_repeat1, - STATE(1837), 1, - sym_generic_map_aspect, - STATE(1876), 1, - sym_name_selector, - STATE(871), 3, + STATE(877), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1875), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1505), 6, + ACTIONS(2612), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 27, + ACTIONS(2610), 40, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -91284,11 +92685,17 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -91299,18 +92706,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [57146] = 6, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [58352] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(872), 3, + STATE(878), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(2616), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91318,7 +92729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 40, + ACTIONS(2614), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -91359,52 +92770,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [57212] = 6, + [58418] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(873), 3, + ACTIONS(2618), 1, + anon_sym_DOT, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2627), 1, + anon_sym_LBRACK, + ACTIONS(2630), 1, + sym_GENERIC, + ACTIONS(2633), 1, + sym_PARAMETER, + STATE(1872), 1, + sym_generic_map_aspect, + STATE(1960), 1, + sym__name_selector, + STATE(879), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, - anon_sym_EQ, + aux_sym_name_repeat1, + STATE(1961), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 40, + ACTIONS(1465), 27, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -91415,22 +92839,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [57278] = 6, + [58502] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(874), 3, + STATE(880), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 7, + ACTIONS(2638), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91438,7 +92858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 40, + ACTIONS(2636), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -91479,18 +92899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [57344] = 6, + [58568] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(875), 3, + STATE(881), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(2642), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91498,7 +92918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 40, + ACTIONS(2640), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -91539,49 +92959,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [57410] = 16, + [58634] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2556), 1, + ACTIONS(2532), 1, anon_sym_DOT, - ACTIONS(2558), 1, + ACTIONS(2534), 1, anon_sym_LPAREN, - ACTIONS(2560), 1, + ACTIONS(2536), 1, anon_sym_SQUOTE, - ACTIONS(2562), 1, + ACTIONS(2538), 1, anon_sym_LBRACK, - ACTIONS(2564), 1, + ACTIONS(2540), 1, sym_GENERIC, - ACTIONS(2566), 1, + ACTIONS(2542), 1, sym_PARAMETER, - STATE(852), 1, + STATE(863), 1, aux_sym_name_repeat1, - STATE(1790), 1, + STATE(1740), 1, sym_generic_map_aspect, - STATE(1906), 1, - sym_name_selector, - STATE(876), 3, + STATE(2282), 1, + sym__name_selector, + STATE(882), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1905), 5, + STATE(2281), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1493), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 27, + ACTIONS(1487), 27, sym__AND, sym_IS, sym__MOD, @@ -91609,49 +93029,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [57496] = 16, + [58720] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, anon_sym_DOT, - ACTIONS(2628), 1, + ACTIONS(2647), 1, anon_sym_LPAREN, - ACTIONS(2630), 1, + ACTIONS(2650), 1, anon_sym_SQUOTE, - ACTIONS(2632), 1, + ACTIONS(2653), 1, anon_sym_LBRACK, - ACTIONS(2634), 1, + ACTIONS(2656), 1, sym_GENERIC, - ACTIONS(2636), 1, + ACTIONS(2659), 1, sym_PARAMETER, - STATE(838), 1, - aux_sym_name_repeat1, - STATE(1860), 1, + STATE(1779), 1, sym_generic_map_aspect, - STATE(2156), 1, - sym_name_selector, - STATE(877), 3, + STATE(2055), 1, + sym__name_selector, + STATE(883), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2157), 5, + aux_sym_name_repeat1, + STATE(2057), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1505), 6, + ACTIONS(1473), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1503), 27, + ACTIONS(1465), 27, sym__AND, sym_INERTIAL, sym__MOD, @@ -91679,55 +93098,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [57582] = 16, + [58804] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2626), 1, - anon_sym_DOT, - ACTIONS(2628), 1, - anon_sym_LPAREN, - ACTIONS(2630), 1, - anon_sym_SQUOTE, - ACTIONS(2632), 1, - anon_sym_LBRACK, - ACTIONS(2634), 1, - sym_GENERIC, - ACTIONS(2636), 1, - sym_PARAMETER, - STATE(877), 1, - aux_sym_name_repeat1, - STATE(1860), 1, - sym_generic_map_aspect, - STATE(2156), 1, - sym_name_selector, - STATE(878), 3, + STATE(884), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(2157), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1493), 6, + ACTIONS(2664), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 27, + ACTIONS(2662), 40, sym__AND, - sym_INERTIAL, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -91735,10 +93133,17 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -91749,66 +93154,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [57668] = 16, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [58870] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2456), 1, - anon_sym_DOT, - ACTIONS(2458), 1, - anon_sym_LPAREN, - ACTIONS(2460), 1, - anon_sym_SQUOTE, - ACTIONS(2462), 1, - anon_sym_LBRACK, - ACTIONS(2464), 1, - sym_GENERIC, - ACTIONS(2466), 1, - sym_PARAMETER, - STATE(850), 1, - aux_sym_name_repeat1, - STATE(1828), 1, - sym_generic_map_aspect, - STATE(1911), 1, - sym_name_selector, - STATE(879), 3, + STATE(885), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1912), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1493), 6, + ACTIONS(2668), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 27, + ACTIONS(2666), 40, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -91819,54 +93214,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [57754] = 16, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [58936] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2598), 1, - anon_sym_DOT, - ACTIONS(2600), 1, - anon_sym_LPAREN, - ACTIONS(2602), 1, - anon_sym_SQUOTE, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - sym_GENERIC, - ACTIONS(2608), 1, - sym_PARAMETER, - STATE(871), 1, - aux_sym_name_repeat1, - STATE(1837), 1, - sym_generic_map_aspect, - STATE(1876), 1, - sym_name_selector, - STATE(880), 3, + STATE(886), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(1875), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1493), 6, + ACTIONS(2672), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1487), 27, + ACTIONS(2670), 40, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -91874,11 +93253,17 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -91889,101 +93274,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [57840] = 29, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(1983), 1, - sym_ALIAS, - ACTIONS(1985), 1, - sym_ATTRIBUTE, - ACTIONS(1989), 1, - sym_CONSTANT, - ACTIONS(1991), 1, - sym_DISCONNECT, - ACTIONS(1993), 1, - sym_FILE, - ACTIONS(1995), 1, - sym_FUNCTION, - ACTIONS(1999), 1, - sym_GROUP, - ACTIONS(2001), 1, - sym_PACKAGE, - ACTIONS(2003), 1, - sym_PORT, - ACTIONS(2005), 1, - sym_SIGNAL, - ACTIONS(2007), 1, - sym_SHARED, - ACTIONS(2009), 1, - sym_SUBTYPE, - ACTIONS(2011), 1, - sym_TYPE, - ACTIONS(2013), 1, - sym_USE, - ACTIONS(2015), 1, - sym_VARIABLE, - ACTIONS(2017), 1, - sym_VIEW, - STATE(931), 1, - aux_sym_entity_head_repeat1, - STATE(959), 1, - sym_port_clause, - STATE(3154), 1, - sym__entity_declarative_item, - STATE(5694), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - ACTIONS(2638), 2, - sym_BEGIN, - sym_END, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(881), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3152), 20, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [57952] = 6, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [59002] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(882), 3, + STATE(887), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + ACTIONS(2676), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91991,7 +93297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 40, + ACTIONS(2674), 40, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92032,54 +93338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [58018] = 15, + [59068] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2644), 1, - anon_sym_DOT, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2650), 1, - anon_sym_SQUOTE, - ACTIONS(2653), 1, - anon_sym_LBRACK, - ACTIONS(2656), 1, - sym_GENERIC, - ACTIONS(2659), 1, - sym_PARAMETER, - STATE(1732), 1, - sym_generic_map_aspect, - STATE(1918), 1, - sym_name_selector, - STATE(883), 4, + STATE(888), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(1920), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1473), 6, + ACTIONS(2452), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1465), 27, + ACTIONS(2450), 39, sym__AND, - sym_LOOP, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -92087,10 +93374,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -92101,35 +93394,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [58102] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [59133] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(884), 3, + ACTIONS(2684), 1, + sym_exponentiate, + STATE(555), 1, + sym_shift_operator, + STATE(556), 1, + sym_relational_operator, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(889), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, + ACTIONS(2680), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2662), 40, + ACTIONS(2678), 31, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -92141,8 +93449,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -92156,23 +93462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, anon_sym_PIPE, - [58168] = 6, + [59214] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(885), 3, + STATE(890), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(2604), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92180,7 +93483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 40, + ACTIONS(2602), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92189,6 +93492,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -92197,16 +93501,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -92217,22 +93520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [58234] = 6, + [59279] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(886), 3, + STATE(891), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2642), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92240,7 +93542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 39, + ACTIONS(2640), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92280,18 +93582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [58299] = 6, + [59344] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(887), 3, + STATE(892), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 7, + ACTIONS(2376), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92299,7 +93601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 39, + ACTIONS(2374), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92339,24 +93641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [58364] = 9, + [59409] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1551), 1, - anon_sym_LPAREN, - ACTIONS(2670), 1, - sym_PARAMETER, - STATE(951), 1, - sym_parenthesis_group, - STATE(888), 3, + STATE(893), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, + ACTIONS(2406), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92364,7 +93660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 36, + ACTIONS(2404), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92372,6 +93668,8 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -92385,6 +93683,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -92401,18 +93700,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [58435] = 6, + [59474] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(889), 3, + ACTIONS(2684), 1, + sym_exponentiate, + STATE(555), 1, + sym_shift_operator, + STATE(556), 1, + sym_relational_operator, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + STATE(894), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2680), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92420,16 +93731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 39, + ACTIONS(2678), 33, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -92438,15 +93746,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -92456,22 +93763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, + anon_sym_GT_GT, anon_sym_PIPE, - [58500] = 6, + [59551] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(890), 3, + STATE(895), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + ACTIONS(2676), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92479,7 +93784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 39, + ACTIONS(2674), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92519,18 +93824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [58565] = 6, + [59616] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(891), 3, + STATE(896), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, + ACTIONS(2664), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92538,7 +93843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 39, + ACTIONS(2662), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92578,18 +93883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [58630] = 6, + [59681] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(892), 3, + STATE(897), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(2616), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92597,7 +93902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 39, + ACTIONS(2614), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92637,45 +93942,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [58695] = 12, + [59746] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2676), 1, + ACTIONS(2684), 1, sym_exponentiate, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, + STATE(555), 1, sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, + STATE(556), 1, sym_relational_operator, - STATE(893), 3, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(898), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, + ACTIONS(2690), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 33, + ACTIONS(2688), 31, sym__AND, sym_DOWNTO, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -92702,89 +94009,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_PIPE, - [58772] = 18, + [59827] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2676), 1, - sym_exponentiate, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, + STATE(555), 1, sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, + STATE(556), 1, sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(894), 3, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + STATE(899), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 5, + ACTIONS(2690), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 34, sym__AND, + sym_DOWNTO, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 7, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2678), 9, - sym_DOWNTO, - sym_TO, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - sym_variable_assignment, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, anon_sym_GT_GT, anon_sym_PIPE, - [58861] = 6, + [59902] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(895), 3, + STATE(900), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, + ACTIONS(2694), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92792,16 +94092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 39, + ACTIONS(2692), 39, + sym_identifier, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -92810,15 +94108,18 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -92829,91 +94130,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [58926] = 17, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2676), 1, - sym_exponentiate, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, - sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, - sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(896), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 7, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 15, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym__OR, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - sym_variable_assignment, anon_sym_GT_GT, anon_sym_PIPE, - [59013] = 6, + [59967] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(897), 3, + STATE(901), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2422), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92921,7 +94151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 39, + ACTIONS(2420), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -92961,87 +94191,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59078] = 16, + [60032] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2676), 1, + ACTIONS(2684), 1, sym_exponentiate, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, + STATE(555), 1, sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, + STATE(556), 1, sym_relational_operator, - ACTIONS(2686), 2, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(898), 3, + STATE(902), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 5, + ACTIONS(2700), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 22, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, sym__NAND, sym__NOR, sym__OR, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 7, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, + ACTIONS(2696), 9, + sym_DOWNTO, + sym_TO, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + sym_variable_assignment, anon_sym_GT_GT, anon_sym_PIPE, - [59163] = 6, + [60121] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(899), 3, + STATE(903), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 7, + ACTIONS(2426), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93049,7 +94281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 39, + ACTIONS(2424), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93089,18 +94321,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59228] = 6, + [60186] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(900), 3, + ACTIONS(1539), 1, + anon_sym_LPAREN, + ACTIONS(2708), 1, + sym_PARAMETER, + STATE(946), 1, + sym_parenthesis_group, + STATE(904), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(2099), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93108,16 +94346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 39, + ACTIONS(2097), 36, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -93125,16 +94360,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -93145,21 +94379,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59293] = 6, + [60257] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(901), 3, + ACTIONS(2684), 1, + sym_exponentiate, + STATE(555), 1, + sym_shift_operator, + STATE(556), 1, + sym_relational_operator, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(905), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(2700), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 7, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 15, + sym__AND, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_PIPE, + [60344] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(906), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2472), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93167,7 +94472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 39, + ACTIONS(2470), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93207,51 +94512,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59358] = 15, + [60409] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2676), 1, - sym_exponentiate, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, - sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, - sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(902), 3, + STATE(907), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 5, + ACTIONS(2430), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 28, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 39, sym__AND, sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -93259,34 +94549,40 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [59441] = 6, + [60474] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(903), 3, + STATE(908), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 7, + ACTIONS(2380), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93294,14 +94590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 39, - sym_identifier, + ACTIONS(2378), 39, sym__AND, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -93310,18 +94608,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -93332,20 +94627,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [59506] = 6, + [60539] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(904), 3, + STATE(909), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2468), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93353,7 +94649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 39, + ACTIONS(2466), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93393,18 +94689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59571] = 6, + [60604] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(905), 3, + STATE(910), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(2476), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93412,7 +94708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 39, + ACTIONS(2474), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93452,18 +94748,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59636] = 6, + [60669] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(906), 3, + ACTIONS(2684), 1, + sym_exponentiate, + STATE(555), 1, + sym_shift_operator, + STATE(556), 1, + sym_relational_operator, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(911), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(2714), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 22, + sym__AND, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE, + [60754] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(912), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2500), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93471,7 +94836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 39, + ACTIONS(2498), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93511,18 +94876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59701] = 6, + [60819] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(907), 3, + STATE(913), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2530), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93530,7 +94895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 39, + ACTIONS(2528), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93570,36 +94935,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59766] = 6, + [60884] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(908), 3, + ACTIONS(2684), 1, + sym_exponentiate, + STATE(555), 1, + sym_shift_operator, + STATE(556), 1, + sym_relational_operator, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(914), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2718), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2490), 39, + ACTIONS(2716), 28, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -93607,40 +94987,34 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, + anon_sym_GT_GT, anon_sym_PIPE, - [59831] = 6, + [60967] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(909), 3, + STATE(915), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(2504), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93648,7 +95022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 39, + ACTIONS(2502), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93688,18 +95062,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [59896] = 6, + [61032] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(910), 3, + STATE(555), 1, + sym_shift_operator, + STATE(556), 1, + sym_relational_operator, + STATE(557), 1, + sym_logical_operator, + STATE(662), 1, + sym_multiplying_operator, + STATE(663), 1, + sym_adding_operator, + STATE(916), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(2680), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93707,16 +95091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 39, + ACTIONS(2678), 34, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -93725,15 +95106,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -93744,21 +95124,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, + anon_sym_GT_GT, anon_sym_PIPE, - [59961] = 6, + [61107] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(911), 3, + STATE(917), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(2372), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93766,7 +95145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 39, + ACTIONS(2370), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93806,18 +95185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60026] = 6, + [61172] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(912), 3, + STATE(918), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2508), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93825,7 +95204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 39, + ACTIONS(2506), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93865,18 +95244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60091] = 6, + [61237] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(913), 3, + STATE(919), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(2574), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93884,7 +95263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 39, + ACTIONS(2572), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -93924,28 +95303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60156] = 11, + [61302] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, - sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, - sym_relational_operator, - STATE(914), 3, + STATE(920), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, + ACTIONS(2578), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93953,13 +95322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 34, + ACTIONS(2576), 39, sym__AND, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -93968,14 +95340,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -93986,26 +95359,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [60231] = 9, + [61367] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1539), 1, - anon_sym_LPAREN, - ACTIONS(2708), 1, - sym_PARAMETER, - STATE(947), 1, - sym_parenthesis_group, - STATE(915), 3, + STATE(921), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, + ACTIONS(2612), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94013,13 +95381,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 36, + ACTIONS(2610), 39, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -94027,15 +95398,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -94046,89 +95418,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60302] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2676), 1, - sym_exponentiate, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, - sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, - sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(916), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2674), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2672), 31, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym__OR, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PIPE, - [60383] = 6, + [61432] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(917), 3, + STATE(922), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, + ACTIONS(2638), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94136,14 +95440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 39, - sym_identifier, + ACTIONS(2636), 39, sym__AND, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -94152,18 +95458,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -94174,20 +95477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [60448] = 6, + [61497] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(918), 3, + STATE(923), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 7, + ACTIONS(2608), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94195,7 +95499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 39, + ACTIONS(2606), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -94235,18 +95539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60513] = 6, + [61562] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(919), 3, + STATE(924), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 7, + ACTIONS(2582), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94254,7 +95558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 39, + ACTIONS(2580), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -94294,28 +95598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60578] = 11, + [61627] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, - sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, - sym_relational_operator, - STATE(920), 3, + STATE(925), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, + ACTIONS(2672), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94323,13 +95617,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 34, + ACTIONS(2670), 39, sym__AND, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -94338,14 +95635,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -94356,87 +95654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [60653] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2676), 1, - sym_exponentiate, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - STATE(714), 1, - sym_shift_operator, - STATE(716), 1, - sym_logical_operator, - STATE(720), 1, - sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(921), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2716), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2714), 31, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym__OR, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [60734] = 6, + [61692] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(922), 3, + STATE(926), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2668), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94444,7 +95676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 39, + ACTIONS(2666), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -94484,18 +95716,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60799] = 6, + [61757] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(923), 3, + ACTIONS(1569), 1, + anon_sym_LPAREN, + ACTIONS(2720), 1, + sym_PARAMETER, + STATE(998), 1, + sym_parenthesis_group, + STATE(927), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, + ACTIONS(2099), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94503,7 +95741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 39, + ACTIONS(2097), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -94511,8 +95749,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -94526,7 +95762,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -94543,18 +95778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60864] = 6, + [61828] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(924), 3, + STATE(928), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 7, + ACTIONS(2724), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94562,16 +95797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 39, + ACTIONS(2722), 39, + sym_identifier, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -94580,15 +95813,18 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -94599,21 +95835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, + anon_sym_GT_GT, anon_sym_PIPE, - [60929] = 6, + [61893] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(925), 3, + STATE(929), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2558), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94621,7 +95856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 39, + ACTIONS(2556), 39, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -94661,39 +95896,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [60994] = 9, + [61958] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1599), 1, - anon_sym_LPAREN, - ACTIONS(2718), 1, - sym_PARAMETER, - STATE(992), 1, - sym_parenthesis_group, - STATE(926), 3, + STATE(930), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2642), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 36, + ACTIONS(2640), 38, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -94701,15 +95930,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -94720,26 +95950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [61064] = 9, + anon_sym_PIPE, + [62022] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1611), 1, - anon_sym_LPAREN, - ACTIONS(2720), 1, - sym_PARAMETER, - STATE(1076), 1, - sym_parenthesis_group, - STATE(927), 3, + STATE(931), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, + ACTIONS(2604), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94747,13 +95973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 35, + ACTIONS(2602), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -94761,12 +95989,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -94783,18 +96012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [61134] = 6, + [62086] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(928), 3, + STATE(932), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, + ACTIONS(2638), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94802,9 +96031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 38, + ACTIONS(2636), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -94818,16 +96046,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -94838,21 +96066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [61198] = 6, + [62150] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(929), 3, + STATE(933), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 7, + ACTIONS(2668), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94860,7 +96089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 38, + ACTIONS(2666), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -94899,18 +96128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [61262] = 6, + [62214] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(930), 3, + STATE(934), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2406), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94918,7 +96147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 38, + ACTIONS(2404), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -94957,97 +96186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [61326] = 27, + [62278] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(1983), 1, - sym_ALIAS, - ACTIONS(1985), 1, - sym_ATTRIBUTE, - ACTIONS(1989), 1, - sym_CONSTANT, - ACTIONS(1991), 1, - sym_DISCONNECT, - ACTIONS(1993), 1, - sym_FILE, - ACTIONS(1995), 1, - sym_FUNCTION, - ACTIONS(1999), 1, - sym_GROUP, - ACTIONS(2001), 1, - sym_PACKAGE, - ACTIONS(2005), 1, - sym_SIGNAL, - ACTIONS(2007), 1, - sym_SHARED, - ACTIONS(2009), 1, - sym_SUBTYPE, - ACTIONS(2011), 1, - sym_TYPE, - ACTIONS(2013), 1, - sym_USE, - ACTIONS(2015), 1, - sym_VARIABLE, - ACTIONS(2017), 1, - sym_VIEW, - STATE(990), 1, - aux_sym_entity_head_repeat1, - STATE(3154), 1, - sym__entity_declarative_item, - STATE(5694), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - ACTIONS(2722), 2, - sym_BEGIN, - sym_END, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(931), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3152), 20, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [61432] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(932), 3, + STATE(935), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2500), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95055,8 +96205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 38, + ACTIONS(2498), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -95070,16 +96221,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -95090,22 +96241,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [61496] = 6, + [62342] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(933), 3, + STATE(936), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2472), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95113,7 +96263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 38, + ACTIONS(2470), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -95152,18 +96302,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [61560] = 6, + [62406] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(934), 3, + ACTIONS(2728), 1, + sym_library_constant_unit, + STATE(1982), 1, + sym__unit, + STATE(937), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(2726), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95171,15 +96330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 38, + ACTIONS(2382), 32, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -95192,8 +96349,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -95207,30 +96362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, anon_sym_PIPE, - [61624] = 9, + [62476] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2726), 1, - sym_library_constant_unit, - STATE(1933), 1, - sym__unit, - STATE(935), 3, + STATE(938), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2724), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 7, + ACTIONS(2476), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95238,13 +96382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 32, + ACTIONS(2474), 38, sym__AND, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -95257,6 +96403,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -95270,19 +96418,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [61694] = 6, + [62540] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(936), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(1941), 1, + sym_ALIAS, + ACTIONS(1943), 1, + sym_ATTRIBUTE, + ACTIONS(1947), 1, + sym_CONSTANT, + ACTIONS(1949), 1, + sym_DISCONNECT, + ACTIONS(1951), 1, + sym_FILE, + ACTIONS(1953), 1, + sym_FUNCTION, + ACTIONS(1957), 1, + sym_GROUP, + ACTIONS(1959), 1, + sym_PACKAGE, + ACTIONS(1963), 1, + sym_SIGNAL, + ACTIONS(1965), 1, + sym_SHARED, + ACTIONS(1967), 1, + sym_SUBTYPE, + ACTIONS(1969), 1, + sym_TYPE, + ACTIONS(1971), 1, + sym_USE, + ACTIONS(1973), 1, + sym_VARIABLE, + ACTIONS(1975), 1, + sym_VIEW, + STATE(952), 1, + aux_sym_entity_head_repeat1, + STATE(3269), 1, + sym__entity_declarative_item, + STATE(5593), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + ACTIONS(2390), 2, + sym_BEGIN, + sym_END, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(939), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3236), 20, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [62646] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(940), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(2608), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95290,9 +96519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 38, + ACTIONS(2606), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -95306,16 +96534,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -95326,21 +96554,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [61758] = 6, + [62710] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(937), 3, + STATE(941), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, + ACTIONS(2468), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95348,7 +96577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 38, + ACTIONS(2466), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -95387,155 +96616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [61822] = 27, + [62774] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(1983), 1, - sym_ALIAS, - ACTIONS(1985), 1, - sym_ATTRIBUTE, - ACTIONS(1989), 1, - sym_CONSTANT, - ACTIONS(1991), 1, - sym_DISCONNECT, - ACTIONS(1993), 1, - sym_FILE, - ACTIONS(1995), 1, - sym_FUNCTION, - ACTIONS(1999), 1, - sym_GROUP, - ACTIONS(2001), 1, - sym_PACKAGE, - ACTIONS(2005), 1, - sym_SIGNAL, - ACTIONS(2007), 1, - sym_SHARED, - ACTIONS(2009), 1, - sym_SUBTYPE, - ACTIONS(2011), 1, - sym_TYPE, - ACTIONS(2013), 1, - sym_USE, - ACTIONS(2015), 1, - sym_VARIABLE, - ACTIONS(2017), 1, - sym_VIEW, - STATE(990), 1, - aux_sym_entity_head_repeat1, - STATE(3154), 1, - sym__entity_declarative_item, - STATE(5694), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - ACTIONS(2728), 2, - sym_BEGIN, - sym_END, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(938), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3152), 20, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [61928] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(939), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2612), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2610), 38, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [61992] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(940), 3, + STATE(942), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(2642), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95543,8 +96635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 38, + ACTIONS(2640), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -95558,16 +96651,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -95578,22 +96671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62056] = 6, + [62838] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(941), 3, + STATE(943), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 7, + ACTIONS(2582), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95601,7 +96693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 38, + ACTIONS(2580), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -95640,31 +96732,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62120] = 9, + [62902] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, ACTIONS(2730), 1, sym_PARAMETER, - STATE(1064), 1, + STATE(1066), 1, sym_parenthesis_group, - STATE(942), 3, + STATE(944), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 36, + ACTIONS(2097), 36, sym__AND, sym_BUS, sym_DOWNTO, @@ -95701,18 +96793,18 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [62190] = 6, + [62972] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(943), 3, + STATE(945), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 7, + ACTIONS(2452), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95720,7 +96812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 38, + ACTIONS(2450), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -95759,18 +96851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62254] = 6, + [63036] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(944), 3, + STATE(946), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2574), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95778,7 +96870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 38, + ACTIONS(2572), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -95817,18 +96909,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62318] = 6, + [63100] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(945), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(1941), 1, + sym_ALIAS, + ACTIONS(1943), 1, + sym_ATTRIBUTE, + ACTIONS(1947), 1, + sym_CONSTANT, + ACTIONS(1949), 1, + sym_DISCONNECT, + ACTIONS(1951), 1, + sym_FILE, + ACTIONS(1953), 1, + sym_FUNCTION, + ACTIONS(1957), 1, + sym_GROUP, + ACTIONS(1959), 1, + sym_PACKAGE, + ACTIONS(1963), 1, + sym_SIGNAL, + ACTIONS(1965), 1, + sym_SHARED, + ACTIONS(1967), 1, + sym_SUBTYPE, + ACTIONS(1969), 1, + sym_TYPE, + ACTIONS(1971), 1, + sym_USE, + ACTIONS(1973), 1, + sym_VARIABLE, + ACTIONS(1975), 1, + sym_VIEW, + STATE(952), 1, + aux_sym_entity_head_repeat1, + STATE(3269), 1, + sym__entity_declarative_item, + STATE(5593), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + ACTIONS(2732), 2, + sym_BEGIN, + sym_END, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(947), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + STATE(3236), 20, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [63206] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(948), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2504), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95836,8 +97007,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 38, + ACTIONS(2502), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -95851,16 +97023,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -95871,22 +97043,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62382] = 6, + [63270] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(946), 3, + STATE(949), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(2376), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95894,8 +97065,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 38, + ACTIONS(2374), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -95909,16 +97081,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -95929,22 +97101,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62446] = 6, + [63334] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(947), 3, + STATE(950), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 7, + ACTIONS(2676), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -95952,8 +97123,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 38, + ACTIONS(2674), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -95967,16 +97139,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -95987,22 +97159,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62510] = 6, + [63398] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(948), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(1941), 1, + sym_ALIAS, + ACTIONS(1943), 1, + sym_ATTRIBUTE, + ACTIONS(1947), 1, + sym_CONSTANT, + ACTIONS(1949), 1, + sym_DISCONNECT, + ACTIONS(1951), 1, + sym_FILE, + ACTIONS(1953), 1, + sym_FUNCTION, + ACTIONS(1957), 1, + sym_GROUP, + ACTIONS(1959), 1, + sym_PACKAGE, + ACTIONS(1963), 1, + sym_SIGNAL, + ACTIONS(1965), 1, + sym_SHARED, + ACTIONS(1967), 1, + sym_SUBTYPE, + ACTIONS(1969), 1, + sym_TYPE, + ACTIONS(1971), 1, + sym_USE, + ACTIONS(1973), 1, + sym_VARIABLE, + ACTIONS(1975), 1, + sym_VIEW, + STATE(962), 1, + aux_sym_entity_head_repeat1, + STATE(3269), 1, + sym__entity_declarative_item, + STATE(5593), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + ACTIONS(2732), 2, + sym_BEGIN, + sym_END, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(951), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 7, + STATE(3236), 20, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [63504] = 26, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2734), 1, + sym_ALIAS, + ACTIONS(2737), 1, + sym_ATTRIBUTE, + ACTIONS(2742), 1, + sym_CONSTANT, + ACTIONS(2745), 1, + sym_DISCONNECT, + ACTIONS(2748), 1, + sym_FILE, + ACTIONS(2751), 1, + sym_FUNCTION, + ACTIONS(2754), 1, + sym_GROUP, + ACTIONS(2760), 1, + sym_PACKAGE, + ACTIONS(2763), 1, + sym_PROCEDURE, + ACTIONS(2766), 1, + sym_SIGNAL, + ACTIONS(2769), 1, + sym_SHARED, + ACTIONS(2772), 1, + sym_SUBTYPE, + ACTIONS(2775), 1, + sym_TYPE, + ACTIONS(2778), 1, + sym_USE, + ACTIONS(2781), 1, + sym_VARIABLE, + ACTIONS(2784), 1, + sym_VIEW, + STATE(3269), 1, + sym__entity_declarative_item, + STATE(5593), 1, + sym__subprogram_specification, + ACTIONS(2740), 2, + sym_BEGIN, + sym_END, + ACTIONS(2757), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(952), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_entity_head_repeat1, + STATE(3236), 20, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [63608] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(953), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2558), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96010,8 +97338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 38, + ACTIONS(2556), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -96025,16 +97354,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -96045,38 +97374,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62574] = 6, + [63672] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(949), 3, + ACTIONS(1659), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_PARAMETER, + STATE(1095), 1, + sym_parenthesis_group, + STATE(954), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, - anon_sym_EQ, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 38, + ACTIONS(2097), 36, sym__AND, + sym_BUS, sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -96085,15 +97418,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -96106,19 +97438,18 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [62638] = 6, + [63742] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(950), 3, + STATE(955), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 7, + ACTIONS(2668), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96126,7 +97457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 38, + ACTIONS(2666), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -96165,18 +97496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62702] = 6, + [63806] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(951), 3, + STATE(956), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 7, + ACTIONS(2422), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96184,9 +97515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 38, + ACTIONS(2420), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -96200,16 +97530,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -96220,21 +97550,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62766] = 6, + [63870] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(952), 3, + STATE(957), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(2426), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96242,7 +97573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 38, + ACTIONS(2424), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -96281,76 +97612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62830] = 6, + [63934] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(953), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2516), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2514), 38, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [62894] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(954), 3, + STATE(958), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2406), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96358,8 +97631,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 38, + ACTIONS(2404), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -96373,16 +97647,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -96393,83 +97667,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [62958] = 9, + [63998] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2734), 1, - sym_library_constant_unit, - STATE(2082), 1, - sym__unit, - STATE(955), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2732), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 32, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [63028] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(956), 3, + STATE(959), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(2604), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96477,7 +97689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 38, + ACTIONS(2602), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -96516,18 +97728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63092] = 6, + [64062] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(957), 3, + STATE(960), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(2422), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96535,7 +97747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 38, + ACTIONS(2420), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -96574,18 +97786,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63156] = 6, + [64126] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(958), 3, + STATE(961), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2608), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96593,7 +97805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 38, + ACTIONS(2606), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -96632,7 +97844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63220] = 27, + [64190] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -96641,56 +97853,56 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(1983), 1, + ACTIONS(1941), 1, sym_ALIAS, - ACTIONS(1985), 1, + ACTIONS(1943), 1, sym_ATTRIBUTE, - ACTIONS(1989), 1, + ACTIONS(1947), 1, sym_CONSTANT, - ACTIONS(1991), 1, + ACTIONS(1949), 1, sym_DISCONNECT, - ACTIONS(1993), 1, + ACTIONS(1951), 1, sym_FILE, - ACTIONS(1995), 1, + ACTIONS(1953), 1, sym_FUNCTION, - ACTIONS(1999), 1, + ACTIONS(1957), 1, sym_GROUP, - ACTIONS(2001), 1, + ACTIONS(1959), 1, sym_PACKAGE, - ACTIONS(2005), 1, + ACTIONS(1963), 1, sym_SIGNAL, - ACTIONS(2007), 1, + ACTIONS(1965), 1, sym_SHARED, - ACTIONS(2009), 1, + ACTIONS(1967), 1, sym_SUBTYPE, - ACTIONS(2011), 1, + ACTIONS(1969), 1, sym_TYPE, - ACTIONS(2013), 1, + ACTIONS(1971), 1, sym_USE, - ACTIONS(2015), 1, + ACTIONS(1973), 1, sym_VARIABLE, - ACTIONS(2017), 1, + ACTIONS(1975), 1, sym_VIEW, - STATE(938), 1, + STATE(952), 1, aux_sym_entity_head_repeat1, - STATE(3154), 1, + STATE(3269), 1, sym__entity_declarative_item, - STATE(5694), 1, + STATE(5593), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - ACTIONS(2722), 2, + ACTIONS(2789), 2, sym_BEGIN, sym_END, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(959), 3, + STATE(962), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3152), 20, + STATE(3236), 20, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -96711,18 +97923,18 @@ static const uint16_t ts_small_parse_table[] = { sym_disconnection_specification, sym_group_template_declaration, sym_group_declaration, - [63326] = 6, + [64296] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(960), 3, + STATE(963), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2638), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96730,8 +97942,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 38, + ACTIONS(2636), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -96745,16 +97958,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -96765,22 +97978,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63390] = 6, + [64360] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(961), 3, + STATE(964), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2380), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96788,7 +98000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 38, + ACTIONS(2378), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -96827,18 +98039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63454] = 6, + [64424] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(962), 3, + STATE(965), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2672), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96846,8 +98058,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 38, + ACTIONS(2670), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -96861,16 +98074,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -96881,22 +98094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63518] = 6, + [64488] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(963), 3, + STATE(966), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2452), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96904,8 +98116,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 38, + ACTIONS(2450), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -96919,16 +98132,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -96939,22 +98152,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63582] = 6, + [64552] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(964), 3, + STATE(967), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + ACTIONS(2472), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -96962,7 +98174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 38, + ACTIONS(2470), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -97001,18 +98213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63646] = 6, + [64616] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(965), 3, + STATE(968), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 7, + ACTIONS(2664), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97020,8 +98232,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 38, + ACTIONS(2662), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97035,16 +98248,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97055,22 +98268,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63710] = 6, + [64680] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(966), 3, + STATE(969), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, + ACTIONS(2616), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97078,7 +98290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 38, + ACTIONS(2614), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -97117,18 +98329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63774] = 6, + [64744] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(967), 3, + STATE(970), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 7, + ACTIONS(2430), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97136,7 +98348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 38, + ACTIONS(2428), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -97175,18 +98387,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63838] = 6, + [64808] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(968), 3, + ACTIONS(2793), 1, + sym_library_constant_unit, + STATE(2036), 1, + sym__unit, + STATE(971), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(2791), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97194,14 +98415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 38, + ACTIONS(2382), 32, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -97213,8 +98432,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -97230,21 +98447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, anon_sym_PIPE, - [63902] = 6, + [64878] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(969), 3, + STATE(972), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, + ACTIONS(2612), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97252,8 +98467,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 38, + ACTIONS(2610), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97267,16 +98483,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97287,22 +98503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [63966] = 6, + [64942] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(970), 3, + STATE(973), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(2468), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97310,9 +98525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 38, + ACTIONS(2466), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97326,16 +98540,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97346,21 +98560,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64030] = 6, + [65006] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(971), 3, + STATE(974), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2530), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97368,9 +98583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 38, + ACTIONS(2528), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97384,16 +98598,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97404,21 +98618,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64094] = 6, + [65070] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(972), 3, + STATE(975), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(2476), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97426,7 +98641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 38, + ACTIONS(2474), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -97465,18 +98680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64158] = 6, + [65134] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(973), 3, + STATE(976), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 7, + ACTIONS(2578), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97484,9 +98699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 38, + ACTIONS(2576), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97500,16 +98714,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97520,21 +98734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64222] = 6, + [65198] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(974), 3, + STATE(977), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2612), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97542,9 +98757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 38, + ACTIONS(2610), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97558,16 +98772,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97578,21 +98792,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64286] = 6, + [65262] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(975), 3, + STATE(978), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(2500), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97600,9 +98815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 38, + ACTIONS(2498), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97616,16 +98830,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97636,21 +98850,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64350] = 6, + [65326] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(976), 3, + ACTIONS(1683), 1, + anon_sym_LPAREN, + ACTIONS(2795), 1, + sym_PARAMETER, + STATE(1025), 1, + sym_parenthesis_group, + STATE(979), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(2099), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97658,15 +98879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 38, + ACTIONS(2097), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -97674,13 +98893,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -97697,18 +98915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64414] = 6, + [65396] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(977), 3, + STATE(980), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(2672), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97716,9 +98934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 38, + ACTIONS(2670), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97732,16 +98949,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97752,21 +98969,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64478] = 6, + [65460] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(978), 3, + STATE(981), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(2430), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97774,9 +98992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 38, + ACTIONS(2428), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97790,16 +99007,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97810,21 +99027,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64542] = 6, + [65524] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(979), 3, + STATE(982), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2504), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97832,9 +99050,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 38, + ACTIONS(2502), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97848,16 +99065,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97868,21 +99085,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64606] = 6, + [65588] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(980), 3, + STATE(983), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2530), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97890,7 +99108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 38, + ACTIONS(2528), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -97929,18 +99147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64670] = 6, + [65652] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(981), 3, + STATE(984), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2508), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -97948,9 +99166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 38, + ACTIONS(2506), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -97964,16 +99181,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -97984,100 +99201,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64734] = 27, + [65716] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(1983), 1, - sym_ALIAS, - ACTIONS(1985), 1, - sym_ATTRIBUTE, - ACTIONS(1989), 1, - sym_CONSTANT, - ACTIONS(1991), 1, - sym_DISCONNECT, - ACTIONS(1993), 1, - sym_FILE, - ACTIONS(1995), 1, - sym_FUNCTION, - ACTIONS(1999), 1, - sym_GROUP, - ACTIONS(2001), 1, - sym_PACKAGE, - ACTIONS(2005), 1, - sym_SIGNAL, - ACTIONS(2007), 1, - sym_SHARED, - ACTIONS(2009), 1, - sym_SUBTYPE, - ACTIONS(2011), 1, - sym_TYPE, - ACTIONS(2013), 1, - sym_USE, - ACTIONS(2015), 1, - sym_VARIABLE, - ACTIONS(2017), 1, - sym_VIEW, - STATE(990), 1, - aux_sym_entity_head_repeat1, - STATE(3154), 1, - sym__entity_declarative_item, - STATE(5694), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - ACTIONS(2638), 2, - sym_BEGIN, - sym_END, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(982), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3152), 20, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [64840] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(983), 3, + STATE(985), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2578), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98085,7 +99224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 38, + ACTIONS(2576), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -98124,18 +99263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64904] = 6, + [65780] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(984), 3, + STATE(986), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(2616), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98143,8 +99282,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 38, + ACTIONS(2614), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -98158,16 +99298,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -98178,22 +99318,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [64968] = 6, + [65844] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(985), 3, + STATE(987), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2380), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98201,7 +99340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 38, + ACTIONS(2378), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -98240,18 +99379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [65032] = 6, + [65908] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(986), 3, + STATE(988), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2376), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98259,9 +99398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 38, + ACTIONS(2374), 38, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -98275,16 +99413,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -98295,100 +99433,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [65096] = 27, + [65972] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(1983), 1, - sym_ALIAS, - ACTIONS(1985), 1, - sym_ATTRIBUTE, - ACTIONS(1989), 1, - sym_CONSTANT, - ACTIONS(1991), 1, - sym_DISCONNECT, - ACTIONS(1993), 1, - sym_FILE, - ACTIONS(1995), 1, - sym_FUNCTION, - ACTIONS(1999), 1, - sym_GROUP, - ACTIONS(2001), 1, - sym_PACKAGE, - ACTIONS(2005), 1, - sym_SIGNAL, - ACTIONS(2007), 1, - sym_SHARED, - ACTIONS(2009), 1, - sym_SUBTYPE, - ACTIONS(2011), 1, - sym_TYPE, - ACTIONS(2013), 1, - sym_USE, - ACTIONS(2015), 1, - sym_VARIABLE, - ACTIONS(2017), 1, - sym_VIEW, - STATE(931), 1, - aux_sym_entity_head_repeat1, - STATE(3154), 1, - sym__entity_declarative_item, - STATE(5694), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - ACTIONS(2638), 2, - sym_BEGIN, - sym_END, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(987), 3, + STATE(989), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3152), 20, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [65202] = 6, + ACTIONS(2582), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2580), 38, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_PIPE, + [66036] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(988), 3, + STATE(990), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, + ACTIONS(2372), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98396,7 +99514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 38, + ACTIONS(2370), 38, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -98435,18 +99553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [65266] = 6, + [66100] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(989), 3, + STATE(991), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, + ACTIONS(2508), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98454,8 +99572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 38, + ACTIONS(2506), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -98469,16 +99588,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -98489,168 +99608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [65330] = 26, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2736), 1, - sym_ALIAS, - ACTIONS(2739), 1, - sym_ATTRIBUTE, - ACTIONS(2744), 1, - sym_CONSTANT, - ACTIONS(2747), 1, - sym_DISCONNECT, - ACTIONS(2750), 1, - sym_FILE, - ACTIONS(2753), 1, - sym_FUNCTION, - ACTIONS(2756), 1, - sym_GROUP, - ACTIONS(2762), 1, - sym_PACKAGE, - ACTIONS(2765), 1, - sym_PROCEDURE, - ACTIONS(2768), 1, - sym_SIGNAL, - ACTIONS(2771), 1, - sym_SHARED, - ACTIONS(2774), 1, - sym_SUBTYPE, - ACTIONS(2777), 1, - sym_TYPE, - ACTIONS(2780), 1, - sym_USE, - ACTIONS(2783), 1, - sym_VARIABLE, - ACTIONS(2786), 1, - sym_VIEW, - STATE(3154), 1, - sym__entity_declarative_item, - STATE(5694), 1, - sym__subprogram_specification, - ACTIONS(2742), 2, - sym_BEGIN, - sym_END, - ACTIONS(2759), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(990), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_entity_head_repeat1, - STATE(3152), 20, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [65434] = 28, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2097), 1, - sym_ALIAS, - ACTIONS(2099), 1, - sym_ATTRIBUTE, - ACTIONS(2101), 1, - sym_COMPONENT, - ACTIONS(2103), 1, - sym_CONSTANT, - ACTIONS(2105), 1, - sym_DISCONNECT, - ACTIONS(2109), 1, - sym_FILE, - ACTIONS(2111), 1, - sym_FUNCTION, - ACTIONS(2115), 1, - sym_GROUP, - ACTIONS(2121), 1, - sym_PACKAGE, - ACTIONS(2123), 1, - sym_PROCEDURE, - ACTIONS(2125), 1, - sym_SIGNAL, - ACTIONS(2127), 1, - sym_SHARED, - ACTIONS(2129), 1, - sym_SUBTYPE, - ACTIONS(2131), 1, - sym_TYPE, - ACTIONS(2133), 1, - sym_USE, - ACTIONS(2135), 1, - sym_VARIABLE, - ACTIONS(2137), 1, - sym_VIEW, - ACTIONS(2789), 1, - sym_END, - STATE(1027), 1, - aux_sym_package_declaration_body_repeat1, - STATE(3226), 1, - sym__package_declarative_item, - STATE(6666), 1, - sym__subprogram_specification, - ACTIONS(2117), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(991), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3219), 19, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [65541] = 6, + [66164] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -98661,17 +99622,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2676), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 38, + ACTIONS(2674), 38, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -98685,16 +99645,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -98705,9 +99665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [65604] = 6, + anon_sym_PIPE, + [66228] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -98718,7 +99680,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(2426), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98726,8 +99688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 37, + ACTIONS(2424), 38, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -98741,10 +99704,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, @@ -98764,7 +99727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [65667] = 6, + [66292] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -98775,24 +99738,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2558), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 38, + ACTIONS(2556), 38, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -98800,15 +99761,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -98819,9 +99781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [65730] = 6, + anon_sym_PIPE, + [66356] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -98832,7 +99796,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2372), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98840,7 +99804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 37, + ACTIONS(2370), 38, sym__AND, sym_GENERIC, sym__MOD, @@ -98855,7 +99819,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -98865,6 +99828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -98875,31 +99839,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [65793] = 6, + [66420] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(1941), 1, + sym_ALIAS, + ACTIONS(1943), 1, + sym_ATTRIBUTE, + ACTIONS(1947), 1, + sym_CONSTANT, + ACTIONS(1949), 1, + sym_DISCONNECT, + ACTIONS(1951), 1, + sym_FILE, + ACTIONS(1953), 1, + sym_FUNCTION, + ACTIONS(1957), 1, + sym_GROUP, + ACTIONS(1959), 1, + sym_PACKAGE, + ACTIONS(1963), 1, + sym_SIGNAL, + ACTIONS(1965), 1, + sym_SHARED, + ACTIONS(1967), 1, + sym_SUBTYPE, + ACTIONS(1969), 1, + sym_TYPE, + ACTIONS(1971), 1, + sym_USE, + ACTIONS(1973), 1, + sym_VARIABLE, + ACTIONS(1975), 1, + sym_VIEW, + STATE(947), 1, + aux_sym_entity_head_repeat1, + STATE(3269), 1, + sym__entity_declarative_item, + STATE(5593), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + ACTIONS(2390), 2, + sym_BEGIN, + sym_END, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, STATE(996), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + STATE(3236), 20, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [66526] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(997), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2664), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 38, + ACTIONS(2662), 38, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -98913,16 +99956,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -98933,30 +99976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [65856] = 11, + anon_sym_PIPE, + [66590] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - STATE(997), 3, + STATE(998), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, + ACTIONS(2574), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -98964,12 +99999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 32, + ACTIONS(2572), 38, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -98977,14 +100015,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -98995,183 +100035,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [65929] = 17, + [66654] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, - sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(998), 3, + STATE(999), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 5, - anon_sym_EQ, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 7, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 13, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2580), 38, sym__AND, + sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_PIPE, - [66014] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2791), 1, - sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, + sym_PARAMETER, + sym_REGISTER, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(999), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2698), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 20, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_GT_GT, - anon_sym_PIPE, - [66097] = 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [66717] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(2797), 1, sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, + STATE(532), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1000), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 5, + ACTIONS(2690), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 26, + ACTIONS(2688), 29, sym__AND, sym__NAND, sym__NOR, @@ -99196,44 +100155,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, anon_sym_GT_GT, anon_sym_PIPE, - [66178] = 14, + [66796] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(2797), 1, sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, + STATE(532), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1001), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 5, + ACTIONS(2718), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 29, + ACTIONS(2716), 26, sym__AND, sym__NAND, sym__NOR, @@ -99258,65 +100224,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, anon_sym_GT_GT, anon_sym_PIPE, - [66257] = 18, + [66877] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2676), 1, - sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(613), 1, - sym_multiplying_operator, - STATE(614), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1002), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 5, + ACTIONS(2472), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 37, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 7, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -99324,51 +100276,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2793), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - sym_variable_assignment, - anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [66344] = 12, + [66940] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, - sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, STATE(1003), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, - anon_sym_EQ, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 31, + ACTIONS(2556), 38, sym__AND, + sym_BUS, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -99376,14 +100318,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -99393,9 +100337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PIPE, - [66419] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [67003] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -99406,14 +100351,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 38, + ACTIONS(2424), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -99452,76 +100397,64 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [66482] = 18, + [67066] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2795), 1, - sym_exponentiate, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1005), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 5, - anon_sym_EQ, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 38, sym__AND, + sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2678), 7, - sym_DOWNTO, sym_TO, - sym_WHEN, - anon_sym_COMMA, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2680), 7, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [66569] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [67129] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -99532,7 +100465,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2612), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99540,7 +100473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 37, + ACTIONS(2610), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -99578,7 +100511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [66632] = 6, + [67192] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -99589,14 +100522,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 38, + ACTIONS(2470), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -99606,7 +100539,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -99620,6 +100552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -99635,40 +100568,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [66695] = 9, + [67255] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2799), 1, - sym_library_constant_unit, - STATE(2285), 1, - sym__unit, STATE(1008), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2797), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 7, - anon_sym_EQ, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 31, + ACTIONS(2420), 38, sym__AND, + sym_BUS, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -99676,14 +100604,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -99694,8 +100623,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [66764] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [67318] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -99706,24 +100636,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2578), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 38, + ACTIONS(2576), 37, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -99731,15 +100659,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -99752,7 +100681,8 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [66827] = 6, + anon_sym_PIPE, + [67381] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -99763,16 +100693,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, - anon_sym_EQ, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 37, + ACTIONS(2404), 38, sym__AND, + sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -99786,16 +100717,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -99808,8 +100739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [66890] = 6, + [67444] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -99820,14 +100750,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 38, + ACTIONS(2420), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -99866,7 +100796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [66953] = 6, + [67507] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -99877,14 +100807,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 38, + ACTIONS(2404), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -99923,7 +100853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [67016] = 6, + [67570] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -99934,7 +100864,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, + ACTIONS(2604), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -99942,7 +100872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 37, + ACTIONS(2602), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -99980,40 +100910,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [67079] = 9, + [67633] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1725), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, - sym_PARAMETER, - STATE(1177), 1, - sym_parenthesis_group, STATE(1014), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 35, + ACTIONS(2424), 38, sym__AND, + sym_BUS, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -100026,7 +100950,10 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -100040,51 +100967,60 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [67148] = 6, + [67696] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2797), 1, + sym_exponentiate, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, STATE(1015), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2680), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2572), 38, + ACTIONS(2678), 29, sym__AND, - sym_BUS, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -100094,10 +101030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [67211] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [67775] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -100108,16 +101043,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 7, - anon_sym_EQ, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 37, + ACTIONS(2580), 38, sym__AND, + sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -100131,16 +101067,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -100153,65 +101089,74 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [67274] = 6, + [67838] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2797), 1, + sym_exponentiate, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1017), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2714), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2494), 38, - sym__AND, - sym_BUS, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym_REGISTER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, + ACTIONS(2712), 20, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [67337] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [67921] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -100222,7 +101167,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 7, + ACTIONS(2694), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100230,14 +101175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 37, + ACTIONS(2692), 37, + sym_identifier, sym__AND, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -100245,13 +101190,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -100265,28 +101212,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, anon_sym_PIPE, - [67400] = 6, + [67984] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2797), 1, + sym_exponentiate, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1019), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2700), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 7, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 13, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_PIPE, + [68069] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1020), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 38, + ACTIONS(2602), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -100296,7 +101309,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -100310,6 +101322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -100325,18 +101338,18 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [67463] = 6, + [68132] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1020), 3, + STATE(1021), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 7, + ACTIONS(2616), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100344,13 +101357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 37, - sym_identifier, + ACTIONS(2614), 37, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -100358,18 +101372,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -100380,70 +101392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [67526] = 10, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2805), 1, - sym_CONTEXT, - ACTIONS(2808), 1, - sym_LIBRARY, - ACTIONS(2811), 1, - sym_USE, - STATE(2133), 1, - sym__context_item, - STATE(2131), 3, - sym_library_clause, - sym_use_clause, - sym_context_reference, - STATE(1021), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_design_unit_repeat1, - ACTIONS(2803), 36, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [67597] = 6, + [68195] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -100454,16 +101406,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, - anon_sym_EQ, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 37, + ACTIONS(2640), 38, sym__AND, + sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -100477,16 +101430,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -100499,36 +101452,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [67660] = 6, + [68258] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, STATE(1023), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2680), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 38, + ACTIONS(2678), 32, sym__AND, - sym_BUS, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -100536,15 +101494,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -100555,36 +101512,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [67723] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [68331] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2801), 1, + sym_library_constant_unit, + STATE(2305), 1, + sym__unit, STATE(1024), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2799), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 38, + ACTIONS(2382), 32, sym__AND, sym_BUS, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -100596,9 +101561,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -100612,9 +101574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [67786] = 6, + [68400] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -100625,7 +101585,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, + ACTIONS(2574), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -100633,7 +101593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 37, + ACTIONS(2572), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -100671,35 +101631,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [67849] = 6, + [68463] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(1713), 1, + anon_sym_LPAREN, + ACTIONS(2803), 1, + sym_PARAMETER, + STATE(1165), 1, + sym_parenthesis_group, STATE(1026), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 38, + ACTIONS(2097), 35, sym__AND, - sym_BUS, sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -100710,11 +101674,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -100728,113 +101691,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [67912] = 27, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2814), 1, - sym_ALIAS, - ACTIONS(2817), 1, - sym_ATTRIBUTE, - ACTIONS(2820), 1, - sym_COMPONENT, - ACTIONS(2823), 1, - sym_CONSTANT, - ACTIONS(2826), 1, - sym_DISCONNECT, - ACTIONS(2829), 1, - sym_END, - ACTIONS(2831), 1, - sym_FILE, - ACTIONS(2834), 1, - sym_FUNCTION, - ACTIONS(2837), 1, - sym_GROUP, - ACTIONS(2843), 1, - sym_PACKAGE, - ACTIONS(2846), 1, - sym_PROCEDURE, - ACTIONS(2849), 1, - sym_SIGNAL, - ACTIONS(2852), 1, - sym_SHARED, - ACTIONS(2855), 1, - sym_SUBTYPE, - ACTIONS(2858), 1, - sym_TYPE, - ACTIONS(2861), 1, - sym_USE, - ACTIONS(2864), 1, - sym_VARIABLE, - ACTIONS(2867), 1, - sym_VIEW, - STATE(3226), 1, - sym__package_declarative_item, - STATE(6666), 1, - sym__subprogram_specification, - ACTIONS(2840), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1027), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_package_declaration_body_repeat1, - STATE(3219), 19, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [68017] = 6, + [68532] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1028), 3, + STATE(1027), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2724), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 38, + ACTIONS(2722), 37, + sym_identifier, sym__AND, - sym_BUS, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -100843,14 +101726,17 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -100861,36 +101747,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [68080] = 6, + anon_sym_PIPE, + [68595] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1029), 3, + ACTIONS(1725), 1, + anon_sym_LPAREN, + ACTIONS(2805), 1, + sym_PARAMETER, + STATE(1234), 1, + sym_parenthesis_group, + STATE(1028), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 38, + ACTIONS(2097), 35, sym__AND, - sym_BUS, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -100903,10 +101794,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -100920,25 +101808,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [68143] = 6, + [68664] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1030), 3, + STATE(1029), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 38, + ACTIONS(2606), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -100977,35 +101865,130 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [68206] = 6, + [68727] = 28, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2153), 1, + sym_ALIAS, + ACTIONS(2155), 1, + sym_ATTRIBUTE, + ACTIONS(2157), 1, + sym_COMPONENT, + ACTIONS(2159), 1, + sym_CONSTANT, + ACTIONS(2161), 1, + sym_DISCONNECT, + ACTIONS(2165), 1, + sym_FILE, + ACTIONS(2167), 1, + sym_FUNCTION, + ACTIONS(2171), 1, + sym_GROUP, + ACTIONS(2177), 1, + sym_PACKAGE, + ACTIONS(2179), 1, + sym_PROCEDURE, + ACTIONS(2181), 1, + sym_SIGNAL, + ACTIONS(2183), 1, + sym_SHARED, + ACTIONS(2185), 1, + sym_SUBTYPE, + ACTIONS(2187), 1, + sym_TYPE, + ACTIONS(2189), 1, + sym_USE, + ACTIONS(2191), 1, + sym_VARIABLE, + ACTIONS(2193), 1, + sym_VIEW, + ACTIONS(2807), 1, + sym_END, + STATE(1032), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3253), 1, + sym__package_declarative_item, + STATE(6924), 1, + sym__subprogram_specification, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1030), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3252), 19, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [68834] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2809), 1, + sym_exponentiate, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, + sym_logical_operator, + STATE(696), 1, + sym_relational_operator, + STATE(697), 1, + sym_shift_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1031), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2718), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2490), 38, + ACTIONS(2716), 26, sym__AND, - sym_BUS, sym_DOWNTO, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -101013,87 +101996,79 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [68269] = 28, + anon_sym_PIPE, + [68915] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2097), 1, + ACTIONS(2811), 1, sym_ALIAS, - ACTIONS(2099), 1, + ACTIONS(2814), 1, sym_ATTRIBUTE, - ACTIONS(2101), 1, + ACTIONS(2817), 1, sym_COMPONENT, - ACTIONS(2103), 1, + ACTIONS(2820), 1, sym_CONSTANT, - ACTIONS(2105), 1, + ACTIONS(2823), 1, sym_DISCONNECT, - ACTIONS(2109), 1, + ACTIONS(2826), 1, + sym_END, + ACTIONS(2828), 1, sym_FILE, - ACTIONS(2111), 1, + ACTIONS(2831), 1, sym_FUNCTION, - ACTIONS(2115), 1, + ACTIONS(2834), 1, sym_GROUP, - ACTIONS(2121), 1, + ACTIONS(2840), 1, sym_PACKAGE, - ACTIONS(2123), 1, + ACTIONS(2843), 1, sym_PROCEDURE, - ACTIONS(2125), 1, + ACTIONS(2846), 1, sym_SIGNAL, - ACTIONS(2127), 1, + ACTIONS(2849), 1, sym_SHARED, - ACTIONS(2129), 1, + ACTIONS(2852), 1, sym_SUBTYPE, - ACTIONS(2131), 1, + ACTIONS(2855), 1, sym_TYPE, - ACTIONS(2133), 1, + ACTIONS(2858), 1, sym_USE, - ACTIONS(2135), 1, + ACTIONS(2861), 1, sym_VARIABLE, - ACTIONS(2137), 1, + ACTIONS(2864), 1, sym_VIEW, - ACTIONS(2870), 1, - sym_END, - STATE(1027), 1, - aux_sym_package_declaration_body_repeat1, - STATE(3226), 1, + STATE(3253), 1, sym__package_declarative_item, - STATE(6666), 1, + STATE(6924), 1, sym__subprogram_specification, - ACTIONS(2117), 2, + ACTIONS(2837), 2, sym_IMPURE, sym_PURE, - STATE(8082), 2, + STATE(8303), 2, sym_procedure_specification, sym_function_specification, - STATE(1032), 3, + STATE(1032), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3219), 19, + aux_sym_package_declaration_body_repeat1, + STATE(3252), 19, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -101113,7 +102088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_disconnection_specification, sym_group_template_declaration, sym_group_declaration, - [68376] = 6, + [69020] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -101124,14 +102099,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 38, + ACTIONS(2666), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -101141,7 +102116,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -101155,6 +102129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -101170,7 +102145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [68439] = 6, + [69083] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -101181,14 +102156,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 38, + ACTIONS(2636), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -101198,7 +102173,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -101212,6 +102186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -101227,7 +102202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [68502] = 6, + [69146] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -101238,14 +102213,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 38, + ACTIONS(2450), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -101255,7 +102230,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -101269,6 +102243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -101284,7 +102259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [68565] = 6, + [69209] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -101295,7 +102270,64 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, + ACTIONS(2380), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2378), 38, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [69272] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1037), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2638), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101303,13 +102335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 37, - sym_identifier, + ACTIONS(2636), 37, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -101317,18 +102350,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -101339,44 +102370,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [68628] = 9, + [69335] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2874), 1, - sym_library_constant_unit, - STATE(2234), 1, - sym__unit, - STATE(1037), 3, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, + sym_logical_operator, + STATE(696), 1, + sym_relational_operator, + STATE(697), 1, + sym_shift_operator, + STATE(1038), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2872), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2690), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 32, + ACTIONS(2688), 32, sym__AND, - sym_BUS, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -101385,12 +102417,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -101401,14 +102434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [68697] = 6, + anon_sym_PIPE, + [69408] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1038), 3, + STATE(1039), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -101458,28 +102492,92 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [68760] = 6, + [69471] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1039), 3, + ACTIONS(2809), 1, + sym_exponentiate, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, + sym_logical_operator, + STATE(696), 1, + sym_relational_operator, + STATE(697), 1, + sym_shift_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1040), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2690), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2688), 29, + sym__AND, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + [69550] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1041), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2422), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 38, + ACTIONS(2420), 37, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -101493,16 +102591,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -101515,30 +102613,19 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [68823] = 12, + anon_sym_PIPE, + [69613] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2795), 1, - sym_exponentiate, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - STATE(1040), 3, + STATE(1042), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, + ACTIONS(2668), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101546,13 +102633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 31, + ACTIONS(2666), 37, sym__AND, - sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -101560,11 +102648,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -101577,26 +102667,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [68898] = 6, + [69676] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1041), 3, + STATE(1043), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 38, + ACTIONS(2450), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -101606,6 +102699,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -101619,7 +102713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -101635,25 +102728,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [68961] = 6, + [69739] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1042), 3, + STATE(1044), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 38, + ACTIONS(2606), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -101663,6 +102756,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -101676,7 +102770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -101692,25 +102785,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [69024] = 6, + [69802] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1043), 3, + STATE(1045), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 38, + ACTIONS(2374), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -101749,58 +102842,47 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [69087] = 14, + [69865] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2795), 1, - sym_exponentiate, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1044), 3, + STATE(1046), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 5, + ACTIONS(2426), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 29, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2424), 37, sym__AND, - sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -101813,29 +102895,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [69166] = 11, + [69928] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - STATE(1045), 3, + STATE(1047), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, + ACTIONS(2406), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101843,13 +102918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 32, + ACTIONS(2404), 37, sym__AND, - sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -101857,11 +102933,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -101875,35 +102953,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [69239] = 6, + [69991] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1046), 3, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, + sym_logical_operator, + STATE(696), 1, + sym_relational_operator, + STATE(697), 1, + sym_shift_operator, + STATE(1048), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2680), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 38, + ACTIONS(2678), 32, sym__AND, - sym_BUS, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -101912,15 +103000,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -101931,27 +103017,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [69302] = 6, + anon_sym_PIPE, + [70064] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1047), 3, + STATE(1049), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 38, + ACTIONS(2670), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -101961,6 +103046,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -101974,7 +103060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -101990,104 +103075,92 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [69365] = 28, + [70127] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2097), 1, - sym_ALIAS, - ACTIONS(2099), 1, - sym_ATTRIBUTE, - ACTIONS(2101), 1, - sym_COMPONENT, - ACTIONS(2103), 1, - sym_CONSTANT, - ACTIONS(2105), 1, - sym_DISCONNECT, - ACTIONS(2109), 1, - sym_FILE, - ACTIONS(2111), 1, - sym_FUNCTION, - ACTIONS(2115), 1, - sym_GROUP, - ACTIONS(2121), 1, - sym_PACKAGE, - ACTIONS(2123), 1, - sym_PROCEDURE, - ACTIONS(2125), 1, - sym_SIGNAL, - ACTIONS(2127), 1, - sym_SHARED, - ACTIONS(2129), 1, - sym_SUBTYPE, - ACTIONS(2131), 1, - sym_TYPE, - ACTIONS(2133), 1, - sym_USE, - ACTIONS(2135), 1, - sym_VARIABLE, - ACTIONS(2137), 1, - sym_VIEW, - ACTIONS(2789), 1, - sym_END, - STATE(1032), 1, - aux_sym_package_declaration_body_repeat1, - STATE(3226), 1, - sym__package_declarative_item, - STATE(6666), 1, - sym__subprogram_specification, - ACTIONS(2117), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1048), 3, + ACTIONS(2809), 1, + sym_exponentiate, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, + sym_logical_operator, + STATE(696), 1, + sym_relational_operator, + STATE(697), 1, + sym_shift_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1050), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3219), 19, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_mode_view_declaration, - sym_constant_declaration, - sym_signal_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_component_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_disconnection_specification, - sym_group_template_declaration, - sym_group_declaration, - [69472] = 6, + ACTIONS(2714), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 20, + sym__AND, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PIPE, + [70210] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1049), 3, + STATE(1051), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 38, + ACTIONS(2674), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -102097,7 +103170,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -102111,6 +103183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -102126,25 +103199,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [69535] = 6, + [70273] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1050), 3, + STATE(1052), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 38, + ACTIONS(2556), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -102183,47 +103256,58 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [69598] = 6, + [70336] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1051), 3, + ACTIONS(2809), 1, + sym_exponentiate, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, + sym_logical_operator, + STATE(696), 1, + sym_relational_operator, + STATE(697), 1, + sym_shift_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1053), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(2680), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2610), 37, + ACTIONS(2678), 29, sym__AND, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -102236,38 +103320,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, anon_sym_PIPE, - [69661] = 6, + [70415] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1052), 3, + ACTIONS(2809), 1, + sym_exponentiate, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, + sym_logical_operator, + STATE(696), 1, + sym_relational_operator, + STATE(697), 1, + sym_shift_operator, + STATE(1054), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2680), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 38, + ACTIONS(2678), 31, sym__AND, - sym_BUS, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -102276,15 +103367,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -102294,50 +103383,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [69724] = 14, + anon_sym_PIPE, + [70490] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2795), 1, - sym_exponentiate, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1053), 3, + STATE(1055), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 5, - anon_sym_EQ, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 29, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2666), 38, sym__AND, + sym_BUS, sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -102345,13 +103421,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -102361,19 +103438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - anon_sym_PIPE, - [69803] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [70553] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1054), 3, + STATE(1056), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(2430), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102381,7 +103460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 37, + ACTIONS(2428), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -102419,68 +103498,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [69866] = 18, + [70616] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(2809), 1, sym_exponentiate, - STATE(606), 1, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, sym_logical_operator, - STATE(611), 1, + STATE(696), 1, sym_relational_operator, - STATE(612), 1, + STATE(697), 1, sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1055), 3, + STATE(1057), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 5, + ACTIONS(2700), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2678), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_PIPE, - ACTIONS(2680), 7, + ACTIONS(2698), 7, anon_sym_LT_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -102488,25 +103552,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [69953] = 6, + ACTIONS(2710), 13, + sym__AND, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + [70701] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1056), 3, + STATE(1058), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 38, + ACTIONS(2636), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -102516,6 +103594,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -102529,7 +103608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -102545,25 +103623,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70016] = 6, + [70764] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1057), 3, + STATE(1059), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 38, + ACTIONS(2610), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -102573,6 +103651,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -102586,7 +103665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -102602,25 +103680,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70079] = 6, + [70827] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1058), 3, + STATE(1060), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 38, + ACTIONS(2470), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -102659,34 +103737,43 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70142] = 6, + [70890] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1059), 3, + ACTIONS(2797), 1, + sym_exponentiate, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + STATE(1061), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2680), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 38, + ACTIONS(2678), 31, sym__AND, - sym_BUS, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -102694,16 +103781,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -102713,38 +103798,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [70205] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [70965] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1060), 3, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + STATE(1062), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2690), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 38, + ACTIONS(2688), 32, sym__AND, - sym_BUS, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -102752,15 +103842,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -102771,27 +103860,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [70268] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [71038] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1061), 3, + STATE(1063), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 38, + ACTIONS(2602), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -102801,6 +103890,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -102814,7 +103904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -102830,25 +103919,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70331] = 6, + [71101] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1062), 3, + STATE(1064), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 38, + ACTIONS(2640), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -102858,6 +103947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -102871,7 +103961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -102887,33 +103976,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70394] = 6, + [71164] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1063), 3, + STATE(1065), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 7, - anon_sym_EQ, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 37, + ACTIONS(2576), 38, sym__AND, + sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -102921,16 +104012,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -102943,26 +104033,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [70457] = 6, + [71227] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1064), 3, + STATE(1066), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 38, + ACTIONS(2572), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -103001,28 +104090,18 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70520] = 11, + [71290] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - STATE(1065), 3, + STATE(1067), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, + ACTIONS(2558), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103030,13 +104109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 32, + ACTIONS(2556), 37, sym__AND, - sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -103044,11 +104124,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -103062,28 +104144,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [70593] = 6, + [71353] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1066), 3, + STATE(1068), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, - anon_sym_EQ, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 37, + ACTIONS(2576), 38, sym__AND, + sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -103097,16 +104182,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -103119,34 +104204,193 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [70656] = 6, + [71416] = 28, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1067), 3, + ACTIONS(2153), 1, + sym_ALIAS, + ACTIONS(2155), 1, + sym_ATTRIBUTE, + ACTIONS(2157), 1, + sym_COMPONENT, + ACTIONS(2159), 1, + sym_CONSTANT, + ACTIONS(2161), 1, + sym_DISCONNECT, + ACTIONS(2165), 1, + sym_FILE, + ACTIONS(2167), 1, + sym_FUNCTION, + ACTIONS(2171), 1, + sym_GROUP, + ACTIONS(2177), 1, + sym_PACKAGE, + ACTIONS(2179), 1, + sym_PROCEDURE, + ACTIONS(2181), 1, + sym_SIGNAL, + ACTIONS(2183), 1, + sym_SHARED, + ACTIONS(2185), 1, + sym_SUBTYPE, + ACTIONS(2187), 1, + sym_TYPE, + ACTIONS(2189), 1, + sym_USE, + ACTIONS(2191), 1, + sym_VARIABLE, + ACTIONS(2193), 1, + sym_VIEW, + ACTIONS(2867), 1, + sym_END, + STATE(1030), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3253), 1, + sym__package_declarative_item, + STATE(6924), 1, + sym__subprogram_specification, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1069), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, - anon_sym_EQ, + STATE(3252), 19, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [71523] = 28, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2153), 1, + sym_ALIAS, + ACTIONS(2155), 1, + sym_ATTRIBUTE, + ACTIONS(2157), 1, + sym_COMPONENT, + ACTIONS(2159), 1, + sym_CONSTANT, + ACTIONS(2161), 1, + sym_DISCONNECT, + ACTIONS(2165), 1, + sym_FILE, + ACTIONS(2167), 1, + sym_FUNCTION, + ACTIONS(2171), 1, + sym_GROUP, + ACTIONS(2177), 1, + sym_PACKAGE, + ACTIONS(2179), 1, + sym_PROCEDURE, + ACTIONS(2181), 1, + sym_SIGNAL, + ACTIONS(2183), 1, + sym_SHARED, + ACTIONS(2185), 1, + sym_SUBTYPE, + ACTIONS(2187), 1, + sym_TYPE, + ACTIONS(2189), 1, + sym_USE, + ACTIONS(2191), 1, + sym_VARIABLE, + ACTIONS(2193), 1, + sym_VIEW, + ACTIONS(2867), 1, + sym_END, + STATE(1032), 1, + aux_sym_package_declaration_body_repeat1, + STATE(3253), 1, + sym__package_declarative_item, + STATE(6924), 1, + sym__subprogram_specification, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1070), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3252), 19, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_mode_view_declaration, + sym_constant_declaration, + sym_signal_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_component_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_disconnection_specification, + sym_group_template_declaration, + sym_group_declaration, + [71630] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1071), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 37, + ACTIONS(2374), 38, sym__AND, + sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -103154,16 +104398,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -103176,54 +104419,49 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [70719] = 17, + [71693] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2795), 1, - sym_exponentiate, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1068), 3, + STATE(1072), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 5, + ACTIONS(2642), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2640), 37, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 7, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -103231,39 +104469,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 13, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym__OR, - sym_TO, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [70804] = 6, + [71756] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1069), 3, + STATE(1073), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 38, + ACTIONS(2674), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -103302,25 +104533,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70867] = 6, + [71819] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1070), 3, + STATE(1074), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 38, + ACTIONS(2506), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -103330,6 +104561,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -103343,7 +104575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -103359,28 +104590,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70930] = 6, + [71882] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1071), 3, + STATE(1075), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2468), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 38, + ACTIONS(2466), 37, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -103394,16 +104624,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -103416,33 +104646,36 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [70993] = 6, + anon_sym_PIPE, + [71945] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1072), 3, + STATE(1076), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, - anon_sym_EQ, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 37, + ACTIONS(2662), 38, sym__AND, + sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -103450,16 +104683,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -103472,19 +104704,18 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [71056] = 6, + [72008] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1073), 3, + STATE(1077), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(2476), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103492,7 +104723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 37, + ACTIONS(2474), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -103530,18 +104761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [71119] = 6, + [72071] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1074), 3, + STATE(1078), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, + ACTIONS(2500), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103549,14 +104780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 37, - sym_identifier, + ACTIONS(2498), 37, sym__AND, - sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -103564,15 +104795,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -103586,26 +104815,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [71182] = 6, + [72134] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1075), 3, + STATE(1079), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 38, + ACTIONS(2370), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -103644,49 +104875,68 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [71245] = 6, + [72197] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1076), 3, + ACTIONS(2797), 1, + sym_exponentiate, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1080), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 7, + ACTIONS(2700), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2544), 37, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, + ACTIONS(2696), 7, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_PIPE, + ACTIONS(2698), 7, anon_sym_LT_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -103694,41 +104944,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [71308] = 6, + [72284] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1077), 3, + STATE(1081), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2724), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 38, + ACTIONS(2722), 37, + sym_identifier, sym__AND, - sym_BUS, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -103736,16 +104977,18 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -103756,35 +104999,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [71371] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [72347] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1078), 3, + STATE(1082), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, - anon_sym_EQ, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 37, + ACTIONS(2502), 38, sym__AND, + sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -103792,16 +105037,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -103814,29 +105058,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_PIPE, - [71434] = 6, + [72410] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1079), 3, + STATE(1083), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2452), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 38, + ACTIONS(2450), 37, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -103850,16 +105092,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -103872,100 +105114,36 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [71497] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2795), 1, - sym_exponentiate, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1080), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2698), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 20, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym__OR, - sym_TO, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, anon_sym_PIPE, - [71580] = 6, + [72473] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1081), 3, + STATE(1084), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 7, - anon_sym_EQ, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 37, - sym_identifier, + ACTIONS(2498), 38, sym__AND, + sym_BUS, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -103974,17 +105152,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -103995,42 +105170,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [71643] = 11, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [72536] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - STATE(1082), 3, + STATE(1085), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, - anon_sym_EQ, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 32, + ACTIONS(2614), 38, sym__AND, + sym_BUS, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -104038,14 +105208,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -104056,64 +105227,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [71716] = 15, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [72599] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2795), 1, - sym_exponentiate, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(528), 1, - sym_logical_operator, - STATE(532), 1, - sym_relational_operator, - STATE(535), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1083), 3, + STATE(1086), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 5, + ACTIONS(2608), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 26, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2606), 37, sym__AND, - sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -104123,26 +105279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, anon_sym_PIPE, - [71797] = 6, + [72662] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1084), 3, + STATE(1087), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 38, + ACTIONS(2474), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -104152,6 +105314,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -104165,7 +105328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -104181,82 +105343,86 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [71860] = 6, + [72725] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1085), 3, + ACTIONS(2871), 1, + sym_CONTEXT, + ACTIONS(2874), 1, + sym_LIBRARY, + ACTIONS(2877), 1, + sym_USE, + STATE(1924), 1, + sym__context_item, + STATE(1925), 3, + sym_library_clause, + sym_use_clause, + sym_context_reference, + STATE(1088), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2498), 38, - sym__AND, - sym_BUS, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym_REGISTER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, + aux_sym_design_unit_repeat1, + ACTIONS(2869), 36, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, anon_sym_LPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [71923] = 6, + anon_sym_LT_LT, + [72796] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1086), 3, + STATE(1089), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 38, + ACTIONS(2466), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -104266,6 +105432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -104279,7 +105446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -104295,25 +105461,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [71986] = 6, + [72859] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1087), 3, + STATE(1090), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 38, + ACTIONS(2528), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -104323,7 +105489,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -104337,6 +105502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -104352,39 +105518,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [72049] = 9, + [72922] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(2876), 1, - sym_PARAMETER, - STATE(1124), 1, - sym_parenthesis_group, - STATE(1088), 3, + STATE(1091), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2582), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 35, + ACTIONS(2580), 37, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_RANGE, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -104392,14 +105552,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -104412,78 +105574,19 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [72118] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2880), 1, - sym_library_constant_unit, - STATE(2235), 1, - sym__unit, - STATE(1089), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2878), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 32, - sym__AND, - sym_BUS, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [72187] = 6, + anon_sym_PIPE, + [72985] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1090), 3, + STATE(1092), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(2530), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104491,7 +105594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 37, + ACTIONS(2528), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -104529,49 +105632,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [72250] = 6, + [73048] = 22, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1091), 3, + ACTIONS(2809), 1, + sym_exponentiate, + ACTIONS(2884), 1, + sym_WHEN, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(5107), 1, + aux_sym_conditional_expression_repeat1, + STATE(6505), 1, + sym_when_expression, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2880), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2882), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1093), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(2700), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2514), 37, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(2698), 7, anon_sym_LT_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -104579,25 +105705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [72313] = 6, + [73143] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1092), 3, + STATE(1094), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2694), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104605,14 +105724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 37, + ACTIONS(2692), 37, + sym_identifier, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -104620,16 +105738,18 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -104640,28 +105760,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, + anon_sym_GT_GT, anon_sym_PIPE, - [72376] = 6, + [73206] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1093), 3, + STATE(1095), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 38, + ACTIONS(2572), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -104700,35 +105819,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [72439] = 6, + [73269] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1094), 3, + STATE(1096), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2508), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 38, + ACTIONS(2506), 37, sym__AND, - sym_BUS, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -104736,15 +105853,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -104757,18 +105875,19 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [72502] = 6, + anon_sym_PIPE, + [73332] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1095), 3, + STATE(1097), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(2672), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104776,7 +105895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 37, + ACTIONS(2670), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -104814,18 +105933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [72565] = 6, + [73395] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1096), 3, + STATE(1098), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2372), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104833,7 +105952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 37, + ACTIONS(2370), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -104871,25 +105990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [72628] = 6, + [73458] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1097), 3, + STATE(1099), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 38, + ACTIONS(2662), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -104899,7 +106018,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -104913,6 +106031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -104928,140 +106047,87 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [72691] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1098), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2550), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2548), 37, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_PIPE, - [72754] = 14, + [73521] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(2684), 1, sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, + STATE(634), 1, sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + STATE(662), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(663), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(1099), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1100), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 5, + ACTIONS(2700), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 29, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(2698), 7, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, + ACTIONS(2882), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + sym_variable_assignment, anon_sym_GT_GT, anon_sym_PIPE, - [72833] = 6, + [73608] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1100), 3, + STATE(1101), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2504), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105069,7 +106135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 37, + ACTIONS(2502), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -105107,18 +106173,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [72896] = 6, + [73671] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1101), 3, + ACTIONS(2888), 1, + sym_library_constant_unit, + STATE(2429), 1, + sym__unit, + STATE(1102), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2886), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105126,14 +106201,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 37, + ACTIONS(2382), 31, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -105146,8 +106219,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, @@ -105161,21 +106232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, anon_sym_PIPE, - [72959] = 6, + [73740] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1102), 3, + STATE(1103), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2376), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105183,7 +106252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 37, + ACTIONS(2374), 37, sym__AND, sym_GENERIC, sym__MOD, @@ -105221,35 +106290,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [73022] = 6, + [73803] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1103), 3, + ACTIONS(2892), 1, + sym_library_constant_unit, + STATE(2379), 1, + sym__unit, + STATE(1104), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2890), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 38, + ACTIONS(2382), 32, sym__AND, sym_BUS, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -105261,8 +106336,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -105276,82 +106350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [73085] = 22, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2795), 1, - sym_exponentiate, - ACTIONS(2884), 1, - sym_WHEN, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(448), 1, - sym_adding_operator, - STATE(451), 1, - sym_multiplying_operator, - STATE(4974), 1, - aux_sym_conditional_expression_repeat1, - STATE(6186), 1, - sym_when_expression, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2793), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2882), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1104), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 7, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [73180] = 6, + [73872] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -105362,14 +106361,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 38, + ACTIONS(2466), 38, sym__AND, sym_BUS, sym_DOWNTO, @@ -105379,7 +106378,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -105393,6 +106391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -105408,7 +106407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [73243] = 6, + [73935] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -105419,15 +106418,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 37, + ACTIONS(2378), 38, sym__AND, + sym_BUS, sym_DOWNTO, sym_GENERIC, sym__MOD, @@ -105435,7 +106435,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_RANGE, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -105446,11 +106446,11 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -105464,52 +106464,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [73305] = 15, + [73998] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2886), 1, - sym_exponentiate, - STATE(518), 1, - sym_logical_operator, - STATE(521), 1, - sym_relational_operator, - STATE(523), 1, - sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1107), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 26, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 38, sym__AND, sym_BUS, sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -105520,6 +106503,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -105529,7 +106515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [73385] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [74061] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -105540,23 +106532,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2664), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 37, + ACTIONS(2662), 37, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -105564,15 +106555,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -105585,20 +106577,19 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [73447] = 7, + anon_sym_PIPE, + [74124] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2888), 1, - anon_sym_COLON, STATE(1109), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 7, + ACTIONS(2380), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105606,9 +106597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 35, + ACTIONS(2378), 37, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -105622,11 +106612,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LT_EQ, anon_sym_SLASH_EQ, @@ -105642,43 +106635,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_PIPE, - [73511] = 11, + [74187] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(518), 1, - sym_logical_operator, - STATE(521), 1, - sym_relational_operator, - STATE(523), 1, - sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, STATE(1110), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 32, + ACTIONS(2614), 38, sym__AND, sym_BUS, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -105690,6 +106674,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -105703,48 +106690,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [73583] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [74250] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2886), 1, - sym_exponentiate, - STATE(518), 1, - sym_logical_operator, - STATE(521), 1, - sym_relational_operator, - STATE(523), 1, - sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, STATE(1111), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 29, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2528), 38, sym__AND, sym_BUS, sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -105755,6 +106732,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -105767,109 +106746,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [73661] = 11, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [74313] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(518), 1, + ACTIONS(2809), 1, + sym_exponentiate, + STATE(449), 1, + sym_adding_operator, + STATE(450), 1, + sym_multiplying_operator, + STATE(694), 1, sym_logical_operator, - STATE(521), 1, + STATE(696), 1, sym_relational_operator, - STATE(523), 1, + STATE(697), 1, sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1112), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2700), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 32, + ACTIONS(2704), 6, sym__AND, - sym_BUS, - sym_DOWNTO, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2696), 7, + sym_DOWNTO, sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, + sym_WHEN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(2698), 7, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [73733] = 14, + [74400] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2886), 1, - sym_exponentiate, - STATE(518), 1, - sym_logical_operator, - STATE(521), 1, - sym_relational_operator, - STATE(523), 1, - sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, STATE(1113), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 29, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2506), 38, sym__AND, sym_BUS, sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -105880,6 +106857,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -105892,7 +106872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [73811] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [74463] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -105903,15 +106886,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 37, + ACTIONS(2370), 38, sym__AND, + sym_BUS, sym_DOWNTO, sym_GENERIC, sym__MOD, @@ -105919,7 +106903,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -105930,11 +106913,12 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -105948,45 +106932,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [73873] = 12, + [74526] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2886), 1, - sym_exponentiate, - STATE(518), 1, - sym_logical_operator, - STATE(521), 1, - sym_relational_operator, - STATE(523), 1, - sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, STATE(1115), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 31, + ACTIONS(2502), 38, sym__AND, sym_BUS, sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -105998,6 +106971,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -106010,7 +106986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [73947] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [74589] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -106021,15 +107000,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 37, + ACTIONS(2498), 38, sym__AND, + sym_BUS, sym_DOWNTO, sym_GENERIC, sym__MOD, @@ -106037,7 +107017,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -106048,11 +107027,12 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -106066,7 +107046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [74009] = 6, + [74652] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -106077,23 +107057,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2676), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 37, + ACTIONS(2674), 37, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -106101,15 +107080,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -106122,86 +107102,65 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [74071] = 29, + anon_sym_PIPE, + [74715] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2890), 1, - anon_sym_LPAREN, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(1455), 1, - sym_sensitivity_specification, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6124), 1, - sym_process_head, - STATE(6424), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, STATE(1118), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [74179] = 6, + ACTIONS(2430), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 38, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym_REGISTER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [74778] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -106212,15 +107171,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 37, + ACTIONS(2474), 38, sym__AND, + sym_BUS, sym_DOWNTO, sym_GENERIC, sym__MOD, @@ -106228,7 +107188,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -106239,11 +107198,12 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -106257,7 +107217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [74241] = 6, + [74841] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -106268,14 +107228,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 37, + ACTIONS(2378), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -106313,34 +107273,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [74303] = 6, + [74903] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, STATE(1121), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2690), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 37, + ACTIONS(2688), 31, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -106348,15 +107315,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -106367,9 +107333,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [74365] = 29, + anon_sym_PIPE, + [74975] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2894), 1, + sym_exponentiate, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1122), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2688), 28, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + [75053] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -106378,59 +107407,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1457), 1, + STATE(1593), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6112), 1, + STATE(6209), 1, sym_process_head, - STATE(6413), 1, + STATE(6433), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1122), 3, + STATE(1123), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -106448,33 +107477,35 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [74473] = 6, + [75161] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1123), 3, + STATE(1124), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 37, - sym_identifier, + ACTIONS(2428), 37, sym__AND, - sym_BUS, sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -106485,11 +107516,66 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [75223] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1839), 1, + anon_sym_LPAREN, + ACTIONS(2926), 1, + sym_PARAMETER, + STATE(1291), 1, + sym_parenthesis_group, + STATE(1125), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2099), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2097), 34, + sym__AND, + sym_BUS, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, @@ -106504,25 +107590,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [74535] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [75291] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1124), 3, + STATE(1126), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 37, + ACTIONS(2528), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -106560,104 +107648,86 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [74597] = 29, + [75353] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2890), 1, - anon_sym_LPAREN, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(1485), 1, - sym_sensitivity_specification, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6015), 1, - sym_process_head, - STATE(6232), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1125), 3, + STATE(415), 1, + sym_multiplying_operator, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, + sym_shift_operator, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + STATE(1127), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [74705] = 6, + ACTIONS(2690), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 32, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [75425] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1126), 3, + STATE(1128), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 37, + ACTIONS(2692), 37, sym_identifier, sym__AND, sym_BUS, @@ -106666,7 +107736,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -106682,6 +107751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -106695,34 +107765,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [74767] = 6, + [75487] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1127), 3, + STATE(1129), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 37, + ACTIONS(2528), 37, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -106733,10 +107804,9 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -106751,33 +107821,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [74829] = 6, + [75549] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1128), 3, + STATE(1130), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 37, - sym_identifier, + ACTIONS(2576), 37, sym__AND, - sym_BUS, sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -106788,14 +107860,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -106807,38 +107875,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [74891] = 9, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [75611] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1827), 1, - anon_sym_LPAREN, - ACTIONS(2920), 1, - sym_PARAMETER, - STATE(1351), 1, - sym_parenthesis_group, - STATE(1129), 3, + STATE(1131), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 34, + ACTIONS(2470), 37, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -106846,13 +107912,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -106866,7 +107933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [74959] = 29, + [75673] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -106875,59 +107942,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1623), 1, + STATE(1672), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6178), 1, - sym_sequential_block, - STATE(6179), 1, + STATE(6322), 1, sym_process_head, + STATE(6604), 1, + sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1130), 3, + STATE(1132), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -106945,34 +108012,113 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [75067] = 9, + [75781] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, ACTIONS(2924), 1, + sym_VARIABLE, + STATE(1663), 1, + sym_sensitivity_specification, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6326), 1, + sym_process_head, + STATE(6616), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1133), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [75889] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2930), 1, sym_library_constant_unit, - STATE(2396), 1, + STATE(2457), 1, sym__unit, - STATE(1131), 3, + STATE(1134), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2922), 4, + ACTIONS(2928), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 31, + ACTIONS(2382), 31, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -107004,34 +108150,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [75135] = 6, + [75957] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1132), 3, + STATE(1135), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2724), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 37, + ACTIONS(2722), 36, + sym_identifier, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -107039,15 +108183,18 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -107058,27 +108205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [75197] = 6, + anon_sym_PIPE, + [76019] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1133), 3, + STATE(1136), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 37, + ACTIONS(2428), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -107116,91 +108262,52 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [75259] = 6, + [76081] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1134), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2612), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(2932), 1, + sym_exponentiate, + STATE(415), 1, + sym_multiplying_operator, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, + sym_shift_operator, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 37, - sym__AND, - sym_DOWNTO, - sym_GENERIC, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [75321] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1135), 3, + STATE(1137), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2704), 37, - sym_identifier, + ACTIONS(2716), 26, sym__AND, sym_BUS, sym_DOWNTO, - sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_REGISTER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -107210,10 +108317,6 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, anon_sym_LT_EQ, sym_variable_assignment, @@ -107224,67 +108327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [75383] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1136), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2410), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2408), 37, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym_RANGE, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [75445] = 29, + [76161] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -107293,59 +108336,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1422), 1, + STATE(1463), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6308), 1, + STATE(6471), 1, sym_sequential_block, - STATE(6312), 1, + STATE(6472), 1, sym_process_head, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1137), 3, + STATE(1138), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -107363,35 +108406,26 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [75553] = 11, + [76269] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(631), 1, - sym_logical_operator, - STATE(641), 1, - sym_relational_operator, - STATE(648), 1, - sym_shift_operator, - STATE(1138), 3, + STATE(1139), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 32, + ACTIONS(2722), 37, + sym_identifier, sym__AND, sym_BUS, sym_DOWNTO, @@ -107409,6 +108443,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT_EQ, @@ -107424,58 +108462,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [75625] = 14, + [76331] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2926), 1, + ACTIONS(2932), 1, sym_exponentiate, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, + STATE(415), 1, sym_multiplying_operator, - STATE(631), 1, - sym_logical_operator, - STATE(641), 1, - sym_relational_operator, - STATE(648), 1, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(1139), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1140), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 29, - sym__AND, - sym_BUS, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym__OR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 20, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -107485,37 +108528,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [75703] = 6, + [76413] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1140), 3, + STATE(1141), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2694), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 37, + ACTIONS(2692), 36, + sym_identifier, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -107523,15 +108561,18 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -107542,106 +108583,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [75765] = 6, + anon_sym_PIPE, + [76475] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1141), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2554), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(2894), 1, + sym_exponentiate, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + STATE(5107), 1, + aux_sym_conditional_expression_repeat1, + STATE(6505), 1, + sym_when_expression, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 37, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, - sym_PARAMETER, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [75827] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, + ACTIONS(2880), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1142), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2666), 37, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -107650,13 +108655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [75889] = 6, + [76567] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -107667,24 +108666,23 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 37, + ACTIONS(2466), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -107695,9 +108693,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -107712,7 +108711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [75951] = 6, + [76629] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -107723,24 +108722,23 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 37, + ACTIONS(2474), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -107751,9 +108749,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -107768,7 +108767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [76013] = 6, + [76691] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -107779,24 +108778,23 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 37, + ACTIONS(2450), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -107807,9 +108805,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -107824,35 +108823,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [76075] = 6, + [76753] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2936), 1, + sym_library_constant_unit, + STATE(2446), 1, + sym__unit, STATE(1146), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2934), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 37, + ACTIONS(2382), 31, sym__AND, sym_DOWNTO, - sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -107864,8 +108870,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -107878,9 +108882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [76137] = 6, + [76821] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -107891,14 +108893,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 37, + ACTIONS(2498), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -107936,35 +108938,38 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [76199] = 6, + [76883] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(1777), 1, + anon_sym_LPAREN, + ACTIONS(2938), 1, + sym_PARAMETER, + STATE(1409), 1, + sym_parenthesis_group, STATE(1148), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 37, + ACTIONS(2097), 34, + sym_AFTER, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -107972,12 +108977,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -107992,114 +108997,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [76261] = 29, + [76951] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2890), 1, - anon_sym_LPAREN, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(1446), 1, - sym_sensitivity_specification, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6016), 1, - sym_process_head, - STATE(6236), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, + STATE(479), 1, + sym_shift_operator, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, STATE(1149), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [76369] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1150), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 37, + ACTIONS(2688), 32, sym__AND, + sym_BUS, sym_DOWNTO, - sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -108111,9 +109044,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -108125,27 +109058,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [76431] = 6, + [77023] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1151), 3, + ACTIONS(1883), 1, + anon_sym_LPAREN, + ACTIONS(2940), 1, + sym_PARAMETER, + STATE(1347), 1, + sym_parenthesis_group, + STATE(1150), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 37, + ACTIONS(2097), 34, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -108153,8 +109090,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -108163,12 +109098,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -108183,49 +109117,127 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [76493] = 6, + [77091] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1152), 3, + ACTIONS(2932), 1, + sym_exponentiate, + STATE(415), 1, + sym_multiplying_operator, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, + sym_shift_operator, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1151), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2396), 37, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym_RANGE, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 12, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + sym_variable_assignment, + [77175] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2942), 1, + sym_exponentiate, + STATE(479), 1, + sym_shift_operator, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1152), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2688), 29, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -108236,10 +109248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [76555] = 29, + [77253] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -108248,59 +109257,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1428), 1, + STATE(1434), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6048), 1, + STATE(6230), 1, sym_process_head, - STATE(6276), 1, + STATE(6449), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(1153), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -108318,106 +109327,34 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [76663] = 21, + [77361] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - STATE(4974), 1, - aux_sym_conditional_expression_repeat1, - STATE(6186), 1, - sym_when_expression, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - ACTIONS(2882), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, STATE(1154), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [76755] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1155), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 37, + ACTIONS(2502), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -108428,9 +109365,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -108445,114 +109383,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [76817] = 29, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2890), 1, - anon_sym_LPAREN, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(1433), 1, - sym_sensitivity_specification, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6043), 1, - sym_process_head, - STATE(6274), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1156), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [76925] = 11, + [77423] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(631), 1, - sym_logical_operator, - STATE(641), 1, - sym_relational_operator, - STATE(648), 1, + STATE(479), 1, sym_shift_operator, - STATE(1157), 3, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, + STATE(1155), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 32, + ACTIONS(2678), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -108585,35 +109444,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [76997] = 6, + [77495] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1158), 3, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + STATE(1156), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2680), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 37, + ACTIONS(2678), 31, sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -108621,14 +109486,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -108639,43 +109504,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [77059] = 14, + anon_sym_PIPE, + [77567] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2926), 1, + ACTIONS(2942), 1, sym_exponentiate, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(631), 1, - sym_logical_operator, - STATE(641), 1, - sym_relational_operator, - STATE(648), 1, + STATE(479), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(1159), 3, + STATE(1157), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 29, + ACTIONS(2678), 29, sym__AND, sym_BUS, sym_DOWNTO, @@ -108705,37 +109569,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [77137] = 12, + [77645] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2926), 1, + ACTIONS(2942), 1, sym_exponentiate, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(631), 1, - sym_logical_operator, - STATE(641), 1, - sym_relational_operator, - STATE(648), 1, + STATE(479), 1, sym_shift_operator, - STATE(1160), 3, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, + STATE(1158), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 31, + ACTIONS(2678), 31, sym__AND, sym_BUS, sym_DOWNTO, @@ -108767,103 +109631,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [77211] = 18, + [77719] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1161), 3, + STATE(1159), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 5, - anon_sym_EQ, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2678), 6, - sym_WHEN, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2370), 37, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym_RANGE, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 7, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [77297] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [77781] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1162), 3, + STATE(1160), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 37, + ACTIONS(2506), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -108874,9 +109725,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -108891,88 +109743,242 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [77359] = 6, + [77843] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1163), 3, + ACTIONS(2894), 1, + sym_exponentiate, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1161), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2718), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2450), 37, + ACTIONS(2716), 25, sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, + anon_sym_PIPE, + [77923] = 29, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(1429), 1, + sym_sensitivity_specification, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6220), 1, + sym_process_head, + STATE(6439), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1162), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [78031] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2894), 1, + sym_exponentiate, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [77421] = 17, + STATE(1163), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2714), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 19, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PIPE, + [78113] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, + ACTIONS(2894), 1, sym_exponentiate, - STATE(444), 1, + STATE(441), 1, sym_logical_operator, - STATE(445), 1, + STATE(442), 1, sym_relational_operator, - STATE(447), 1, + STATE(448), 1, sym_shift_operator, - STATE(538), 1, + STATE(698), 1, sym_adding_operator, - STATE(545), 1, + STATE(699), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, @@ -108980,20 +109986,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 5, + ACTIONS(2700), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 7, + ACTIONS(2698), 7, anon_sym_LT_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -109001,7 +110007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 12, + ACTIONS(2710), 12, sym__AND, sym__NAND, sym__NOR, @@ -109014,7 +110020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_PIPE, - [77505] = 6, + [78197] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109025,14 +110031,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 37, + ACTIONS(2572), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -109070,7 +110076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [77567] = 29, + [78259] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109079,59 +110085,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1554), 1, + STATE(1471), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6104), 1, + STATE(6212), 1, sym_process_head, - STATE(6392), 1, + STATE(6437), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, STATE(1166), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -109149,7 +110155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [77675] = 6, + [78367] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109160,24 +110166,23 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 37, + ACTIONS(2606), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -109188,9 +110193,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -109205,7 +110211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [77737] = 6, + [78429] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109216,14 +110222,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 37, + ACTIONS(2576), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -109261,7 +110267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [77799] = 6, + [78491] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109272,14 +110278,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 37, + ACTIONS(2602), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -109317,32 +110323,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [77861] = 16, + [78553] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, + ACTIONS(2932), 1, sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, + STATE(415), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, + sym_shift_operator, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, @@ -109350,132 +110356,69 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 5, - anon_sym_EQ, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 19, + ACTIONS(2696), 6, + sym_BUS, + sym_DOWNTO, + sym_REGISTER, + sym_TO, + anon_sym_SEMI, + sym_variable_assignment, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PIPE, - [77943] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1171), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2702), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2700), 25, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(2698), 8, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PIPE, - [78023] = 6, + [78639] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1172), 3, + STATE(1171), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 37, + ACTIONS(2692), 37, + sym_identifier, sym__AND, + sym_BUS, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_RANGE, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -109486,11 +110429,13 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -109502,27 +110447,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [78085] = 6, + [78701] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1173), 3, + STATE(1172), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 37, + ACTIONS(2424), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -109560,7 +110503,86 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78147] = 6, + [78763] = 29, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(1625), 1, + sym_sensitivity_specification, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6268), 1, + sym_process_head, + STATE(6512), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1173), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [78871] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109571,14 +110593,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 37, + ACTIONS(2640), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -109616,7 +110638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78209] = 6, + [78933] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109627,14 +110649,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 37, + ACTIONS(2610), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -109672,66 +110694,51 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78271] = 18, + [78995] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2926), 1, - sym_exponentiate, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(631), 1, - sym_logical_operator, - STATE(641), 1, - sym_relational_operator, - STATE(648), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, + ACTIONS(1871), 1, + anon_sym_LPAREN, + ACTIONS(2944), 1, + sym_PARAMETER, + STATE(1387), 1, + sym_parenthesis_group, STATE(1176), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2678), 6, - sym_BUS, - sym_DOWNTO, - sym_TO, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2097), 34, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -109740,7 +110747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [78357] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [79063] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109751,14 +110764,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 37, + ACTIONS(2420), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -109796,36 +110809,51 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78419] = 6, + [79125] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2942), 1, + sym_exponentiate, + STATE(479), 1, + sym_shift_operator, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1178), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2640), 37, + ACTIONS(2716), 26, sym__AND, + sym_BUS, sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -109836,9 +110864,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -109846,55 +110874,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [78481] = 6, + [79205] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2942), 1, + sym_exponentiate, + STATE(479), 1, + sym_shift_operator, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1179), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2618), 37, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 20, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -109902,13 +110940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [78543] = 6, + [79287] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109919,14 +110951,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 37, + ACTIONS(2450), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -109964,7 +110996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78605] = 6, + [79349] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -109975,14 +111007,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 37, + ACTIONS(2606), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -110020,7 +111052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78667] = 6, + [79411] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -110031,14 +111063,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 37, + ACTIONS(2374), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -110076,7 +111108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78729] = 6, + [79473] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -110087,14 +111119,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 37, + ACTIONS(2674), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -110132,42 +111164,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78791] = 9, + [79535] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2932), 1, - sym_library_constant_unit, - STATE(2376), 1, - sym__unit, STATE(1184), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2930), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 31, + ACTIONS(2662), 37, sym__AND, sym_DOWNTO, + sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -110179,6 +111204,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -110191,48 +111218,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [78859] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [79597] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2942), 1, + sym_exponentiate, + STATE(479), 1, + sym_shift_operator, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1185), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2622), 37, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym_RANGE, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -110241,13 +111274,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [78921] = 6, + ACTIONS(2710), 12, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [79681] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -110258,23 +111298,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 37, + ACTIONS(2580), 37, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -110285,10 +111326,9 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -110303,7 +111343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [78983] = 6, + [79743] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -110314,23 +111354,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 37, + ACTIONS(2404), 37, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -110341,10 +111382,9 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -110359,7 +111399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [79045] = 6, + [79805] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -110370,24 +111410,23 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 37, + ACTIONS(2580), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -110398,9 +111437,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -110415,52 +111455,48 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [79107] = 17, + [79867] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2926), 1, - sym_exponentiate, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(631), 1, - sym_logical_operator, - STATE(641), 1, - sym_relational_operator, - STATE(648), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1189), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 37, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -110469,48 +111505,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [79929] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1190), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2616), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2614), 37, sym__AND, - sym_BUS, sym_DOWNTO, + sym_GENERIC, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [79191] = 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [79991] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1190), 3, + STATE(1191), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 37, + ACTIONS(2670), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -110521,9 +111605,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -110538,7 +111623,71 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [79253] = 29, + [80053] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2894), 1, + sym_exponentiate, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1192), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2678), 28, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + [80131] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -110547,59 +111696,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1489), 1, + STATE(1654), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6086), 1, + STATE(6279), 1, sym_process_head, - STATE(6345), 1, + STATE(6530), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1191), 3, + STATE(1193), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -110617,7 +111766,69 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [79361] = 29, + [80239] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2894), 1, + sym_exponentiate, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + STATE(1194), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 30, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + [80313] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -110626,59 +111837,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1414), 1, + STATE(1591), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6145), 1, + STATE(6374), 1, sym_sequential_block, - STATE(6146), 1, + STATE(6378), 1, sym_process_head, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1192), 3, + STATE(1195), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -110696,7 +111907,119 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [79469] = 29, + [80421] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1196), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2558), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2556), 37, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [80483] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1197), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2668), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2666), 37, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [80545] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -110705,59 +112028,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1602), 1, + STATE(1552), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6079), 1, + STATE(6244), 1, sym_process_head, - STATE(6337), 1, + STATE(6469), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1193), 3, + STATE(1198), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -110775,104 +112098,158 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [79577] = 16, + [80653] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2926), 1, + STATE(1199), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2426), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2424), 37, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym_RANGE, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, sym_exponentiate, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(631), 1, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [80715] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2894), 1, + sym_exponentiate, + STATE(441), 1, sym_logical_operator, - STATE(641), 1, + STATE(442), 1, sym_relational_operator, - STATE(648), 1, + STATE(448), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1194), 3, + STATE(1200), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2700), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 20, + ACTIONS(2696), 6, + sym_WHEN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(2704), 6, sym__AND, - sym_BUS, - sym_DOWNTO, sym__NAND, sym__NOR, sym__OR, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 7, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [79659] = 9, + [80801] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1791), 1, - anon_sym_LPAREN, - ACTIONS(2934), 1, - sym_PARAMETER, - STATE(1345), 1, - sym_parenthesis_group, - STATE(1195), 3, + STATE(1201), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 34, - sym_AFTER, + ACTIONS(2556), 37, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -110880,12 +112257,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -110900,43 +112278,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [79727] = 12, + [80863] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - STATE(1196), 3, + STATE(1202), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, - anon_sym_EQ, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 30, + ACTIONS(2666), 37, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -110944,14 +112313,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -110961,61 +112331,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - anon_sym_PIPE, - [79801] = 14, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [80925] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1197), 3, + STATE(1203), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 5, - anon_sym_EQ, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 28, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2636), 37, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -111025,42 +112387,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - anon_sym_PIPE, - [79879] = 11, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [80987] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - STATE(1198), 3, + STATE(1204), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, - anon_sym_EQ, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 31, + ACTIONS(2420), 37, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -111068,14 +112425,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -111086,61 +112444,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [79951] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [81049] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1199), 3, + STATE(1205), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 5, - anon_sym_EQ, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 28, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2404), 37, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -111150,65 +112499,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - anon_sym_PIPE, - [80029] = 15, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [81111] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2926), 1, + ACTIONS(2942), 1, sym_exponentiate, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(631), 1, - sym_logical_operator, - STATE(641), 1, - sym_relational_operator, - STATE(648), 1, + STATE(479), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(480), 1, + sym_relational_operator, + STATE(481), 1, + sym_logical_operator, + STATE(509), 1, + sym_multiplying_operator, + STATE(510), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1200), 3, + STATE(1206), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 26, - sym__AND, + ACTIONS(2696), 6, sym_BUS, sym_DOWNTO, + sym_TO, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + ACTIONS(2704), 6, + sym__AND, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -111216,41 +112570,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [80109] = 11, + [81197] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - STATE(1201), 3, + STATE(1207), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, - anon_sym_EQ, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 31, + ACTIONS(2636), 37, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -111258,14 +112605,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -111276,112 +112624,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [80181] = 29, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [81259] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(1789), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(1405), 1, - sym_sensitivity_specification, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6065), 1, - sym_process_head, - STATE(6327), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1202), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [80289] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1203), 3, + ACTIONS(2946), 1, + sym_PARAMETER, + STATE(1297), 1, + sym_parenthesis_group, + STATE(1208), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, - anon_sym_EQ, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 36, - sym_identifier, + ACTIONS(2097), 34, sym__AND, + sym_BUS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -111389,18 +112666,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -111411,33 +112683,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [80351] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [81327] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1204), 3, + STATE(1209), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 7, - anon_sym_EQ, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 36, - sym_identifier, + ACTIONS(2610), 37, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -111445,18 +112721,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -111467,26 +112739,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [80413] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [81389] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1205), 3, + ACTIONS(2948), 1, + anon_sym_COLON, + STATE(1210), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2530), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 37, + ACTIONS(2528), 35, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -111495,7 +112771,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -111506,12 +112781,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -111524,7 +112797,8 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [80475] = 29, + anon_sym_PIPE, + [81453] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -111533,59 +112807,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1515), 1, + STATE(1549), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6035), 1, + STATE(6239), 1, sym_process_head, - STATE(6264), 1, + STATE(6462), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1206), 3, + STATE(1211), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -111603,31 +112877,104 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [80583] = 9, + [81561] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1761), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2936), 1, - sym_PARAMETER, - STATE(1254), 1, - sym_parenthesis_group, - STATE(1207), 3, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(1629), 1, + sym_sensitivity_specification, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6477), 1, + sym_sequential_block, + STATE(6514), 1, + sym_process_head, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1212), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [81669] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1213), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 34, + ACTIONS(2602), 37, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -111635,6 +112982,8 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -111643,11 +112992,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -111662,35 +113012,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [80651] = 6, + [81731] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1208), 3, + STATE(1214), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 37, + ACTIONS(2722), 37, + sym_identifier, sym__AND, + sym_BUS, sym_DOWNTO, - sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -111701,10 +113050,13 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -111716,61 +113068,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [80713] = 16, + [81793] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2886), 1, + ACTIONS(2932), 1, sym_exponentiate, - STATE(518), 1, - sym_logical_operator, - STATE(521), 1, - sym_relational_operator, - STATE(523), 1, - sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, + STATE(415), 1, sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1209), 3, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, + sym_shift_operator, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + STATE(1215), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 20, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 31, sym__AND, sym_BUS, sym_DOWNTO, + sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_REGISTER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym_TO, sym__XNOR, sym__XOR, @@ -111784,52 +113127,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [80795] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [81867] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2886), 1, - sym_exponentiate, - STATE(518), 1, - sym_logical_operator, - STATE(521), 1, - sym_relational_operator, - STATE(523), 1, - sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(1216), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2642), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2640), 37, + sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym_RANGE, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1210), 3, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [81929] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1217), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 37, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -111838,7 +113236,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [81991] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2932), 1, + sym_exponentiate, + STATE(415), 1, + sym_multiplying_operator, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, + sym_shift_operator, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1218), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2678), 29, sym__AND, sym_BUS, sym_DOWNTO, @@ -111846,44 +113284,57 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_REGISTER, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_LT_EQ, sym_variable_assignment, - [80879] = 9, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [82069] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1815), 1, - anon_sym_LPAREN, - ACTIONS(2938), 1, - sym_PARAMETER, - STATE(1228), 1, - sym_parenthesis_group, - STATE(1211), 3, + STATE(1219), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 34, + ACTIONS(2378), 37, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OF, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -111894,8 +113345,9 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -111910,34 +113362,38 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [80947] = 9, + [82131] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(2940), 1, - sym_PARAMETER, - STATE(1273), 1, - sym_parenthesis_group, - STATE(1212), 3, + STATE(415), 1, + sym_multiplying_operator, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, + sym_shift_operator, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + STATE(1220), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 34, + ACTIONS(2678), 32, sym__AND, sym_BUS, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -111950,10 +113406,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -111967,9 +113423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [81015] = 29, + [82203] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -111978,59 +113432,59 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(1450), 1, + STATE(1515), 1, sym_sensitivity_specification, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6021), 1, + STATE(6310), 1, sym_process_head, - STATE(6240), 1, + STATE(6583), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1213), 3, + STATE(1221), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -112048,66 +113502,48 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [81123] = 18, + [82311] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2886), 1, - sym_exponentiate, - STATE(518), 1, - sym_logical_operator, - STATE(521), 1, - sym_relational_operator, - STATE(523), 1, - sym_shift_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1214), 3, + STATE(1222), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2678), 6, - sym_BUS, - sym_DOWNTO, - sym_REGISTER, - sym_TO, - anon_sym_SEMI, - sym_variable_assignment, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 37, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym_RANGE, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -112116,35 +113552,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [81209] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [82373] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1215), 3, + STATE(1223), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 37, + ACTIONS(2674), 37, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -112155,9 +113596,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -112172,34 +113614,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81271] = 6, + [82435] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1216), 3, + STATE(1224), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 37, + ACTIONS(2466), 37, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, - sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -112210,10 +113653,9 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -112228,34 +113670,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81333] = 6, + [82497] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1217), 3, + STATE(1225), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 36, - sym_identifier, + ACTIONS(2474), 37, sym__AND, sym_DOWNTO, + sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -112266,11 +113709,9 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -112283,31 +113724,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [81394] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [82559] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1218), 3, + STATE(1226), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 36, + ACTIONS(2498), 37, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -112318,7 +113763,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -112338,34 +113782,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81455] = 6, + [82621] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1219), 3, + STATE(1227), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 36, + ACTIONS(2502), 37, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -112373,13 +113818,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -112393,34 +113838,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81516] = 6, + [82683] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1220), 3, + STATE(1228), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 36, + ACTIONS(2662), 37, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -112428,13 +113873,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -112448,34 +113894,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81577] = 6, + [82745] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1221), 3, + STATE(1229), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 36, + ACTIONS(2614), 37, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, + sym_RANGE, sym__REM, sym__ROL, sym__ROR, @@ -112483,13 +113929,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -112503,34 +113950,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81638] = 6, + [82807] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1222), 3, + STATE(1230), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 36, + ACTIONS(2370), 37, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -112538,13 +113986,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -112558,32 +114006,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81699] = 6, + [82869] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1223), 3, + STATE(1231), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 36, + ACTIONS(2506), 37, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OF, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -112596,7 +114045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -112613,46 +114062,58 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81760] = 6, + [82931] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1224), 3, + ACTIONS(2932), 1, + sym_exponentiate, + STATE(415), 1, + sym_multiplying_operator, + STATE(422), 1, + sym_adding_operator, + STATE(497), 1, + sym_shift_operator, + STATE(498), 1, + sym_relational_operator, + STATE(499), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1232), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2396), 36, + ACTIONS(2688), 29, sym__AND, sym_BUS, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym_REGISTER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -112665,35 +114126,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [81821] = 6, + [83009] = 29, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1225), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2896), 1, + anon_sym_LPAREN, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(1644), 1, + sym_sensitivity_specification, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6286), 1, + sym_process_head, + STATE(6535), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1233), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [83117] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1234), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 36, + ACTIONS(2572), 37, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OF, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -112706,7 +114244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -112723,47 +114261,69 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [81882] = 6, + [83179] = 22, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1226), 3, + ACTIONS(277), 1, + sym_REPORT, + ACTIONS(2950), 1, + anon_sym_SEMI, + ACTIONS(2952), 1, + sym_exponentiate, + ACTIONS(2954), 1, + sym_SEVERITY, + STATE(516), 1, + sym_multiplying_operator, + STATE(521), 1, + sym_adding_operator, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + STATE(5897), 1, + sym_report_expression, + STATE(7154), 1, + sym_severity_expression, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1235), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2618), 36, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -112772,40 +114332,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [81943] = 6, + [83272] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1227), 3, + STATE(1236), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 36, + ACTIONS(2424), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -112813,13 +114367,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -112833,32 +114387,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82004] = 6, + [83333] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1228), 3, + STATE(1237), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 36, + ACTIONS(2662), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -112868,13 +114421,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -112888,34 +114442,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82065] = 6, + [83394] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1229), 3, + STATE(1238), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 36, - sym_identifier, + ACTIONS(2374), 36, sym__AND, - sym_DOWNTO, - sym_IS, + sym_BUS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -112923,15 +114476,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -112943,32 +114495,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [82126] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [83455] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1230), 3, + STATE(1239), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 36, + ACTIONS(2470), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -112978,13 +114531,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -112998,27 +114552,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82187] = 6, + [83516] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1231), 3, + STATE(1240), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 36, + ACTIONS(2614), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -113032,14 +114586,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113053,34 +114607,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82248] = 6, + [83577] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1232), 3, + STATE(1241), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 36, + ACTIONS(2420), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -113088,13 +114642,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113108,32 +114662,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82309] = 6, + [83638] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1233), 3, + STATE(1242), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 36, + ACTIONS(2674), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -113143,13 +114696,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113163,32 +114717,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82370] = 6, + [83699] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1234), 3, + STATE(1243), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 36, + ACTIONS(2378), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -113198,13 +114751,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113218,34 +114772,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82431] = 6, + [83760] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1235), 3, + STATE(1244), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 36, + ACTIONS(2404), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -113253,13 +114807,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113273,25 +114827,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82492] = 6, + [83821] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1236), 3, + STATE(1245), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 36, + ACTIONS(2666), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -113300,6 +114854,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -113312,7 +114867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -113328,32 +114882,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82553] = 6, + [83882] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1237), 3, + STATE(1246), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 36, + ACTIONS(2640), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -113363,13 +114916,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113383,32 +114937,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82614] = 6, + [83943] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1238), 3, + STATE(1247), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 36, + ACTIONS(2602), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -113418,13 +114971,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113438,41 +114992,39 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82675] = 9, + [84004] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2944), 1, - sym_library_constant_unit, - STATE(2423), 1, - sym__unit, - STATE(1239), 3, + ACTIONS(1979), 1, + anon_sym_LPAREN, + ACTIONS(2956), 1, + sym_PARAMETER, + STATE(1632), 1, + sym_parenthesis_group, + STATE(1248), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2942), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, + ACTIONS(2097), 33, sym__AND, - sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -113480,11 +115032,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113496,33 +115048,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [82742] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [84071] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1240), 3, + STATE(1249), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 36, + ACTIONS(2378), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -113530,14 +115085,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113551,27 +115105,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82803] = 6, + [84132] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1241), 3, + STATE(1250), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 36, + ACTIONS(2404), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -113585,14 +115139,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113606,32 +115160,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82864] = 6, + [84193] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1242), 3, + STATE(1251), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 36, + ACTIONS(2420), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -113641,13 +115194,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113661,32 +115215,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82925] = 6, + [84254] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1243), 3, + STATE(1252), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 36, + ACTIONS(2424), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -113696,13 +115249,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113716,25 +115270,37 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [82986] = 6, + [84315] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1244), 3, + ACTIONS(2958), 1, + sym_exponentiate, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + STATE(1253), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 36, + ACTIONS(2678), 30, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -113742,7 +115308,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -113751,13 +115316,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113768,37 +115331,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [83047] = 6, + [84388] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1245), 3, + ACTIONS(2958), 1, + sym_exponentiate, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1254), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2490), 36, + ACTIONS(2678), 28, sym__AND, sym_DOWNTO, sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -113806,13 +115379,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -113823,36 +115394,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [83108] = 6, + [84465] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1246), 3, + ACTIONS(2962), 1, + sym_library_constant_unit, + STATE(2527), 1, + sym__unit, + STATE(1255), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2960), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 36, + ACTIONS(2382), 30, sym__AND, sym_BUS, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym_REGISTER, sym__REM, sym__ROL, @@ -113864,8 +115439,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -113879,111 +115452,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [83169] = 26, + [84532] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(199), 1, - sym_POSTPONED, - ACTIONS(201), 1, - sym_PROCESS, - STATE(1340), 1, - aux_sym_design_unit_repeat3, - STATE(2540), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(3789), 1, - sym__concurrent_statement, - STATE(5983), 1, - sym_with_expression, - STATE(6083), 1, - sym_aggregate, - STATE(6092), 1, - sym__target, - STATE(6159), 1, - sym_name, - STATE(6937), 1, - sym_assertion, - STATE(7523), 1, - sym__label, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - ACTIONS(2946), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(1247), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(13), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(3788), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [83270] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1248), 3, + ACTIONS(2964), 1, + sym_exponentiate, + STATE(512), 1, + sym_shift_operator, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1256), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2610), 36, + ACTIONS(2716), 25, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym__MOD, + sym_IS, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -113991,12 +115505,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -114005,53 +115516,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [83331] = 6, + [84611] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1249), 3, + ACTIONS(2964), 1, + sym_exponentiate, + STATE(512), 1, + sym_shift_operator, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1257), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2614), 36, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 19, + sym__AND, + sym_DOWNTO, + sym_IS, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -114060,31 +115581,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [83392] = 6, + [84692] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1250), 3, + STATE(1258), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 36, + ACTIONS(2602), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -114121,32 +115636,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [83453] = 6, + [84753] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1251), 3, + STATE(1259), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 36, + ACTIONS(2424), 36, sym__AND, sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -114157,9 +115671,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -114176,34 +115691,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [83514] = 6, + [84814] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1252), 3, + STATE(1260), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 36, + ACTIONS(2640), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -114211,13 +115725,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -114231,25 +115746,91 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [83575] = 6, + [84875] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1253), 3, + ACTIONS(2964), 1, + sym_exponentiate, + STATE(512), 1, + sym_shift_operator, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1261), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 11, + sym__AND, + sym_DOWNTO, + sym_IS, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + [84958] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1262), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 36, + ACTIONS(2420), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -114286,25 +115867,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [83636] = 6, + [85019] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1254), 3, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + STATE(1263), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 36, + ACTIONS(2678), 31, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -114312,7 +115903,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -114321,13 +115911,64 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [85090] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1264), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2472), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 36, + sym__AND, + sym_BUS, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym_REGISTER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -114341,43 +115982,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [83697] = 11, + [85151] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - STATE(1255), 3, + STATE(1265), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 31, + ACTIONS(2428), 36, sym__AND, sym_DOWNTO, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -114386,9 +116017,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -114401,37 +116035,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [83768] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [85212] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1256), 3, + ACTIONS(1991), 1, + anon_sym_LPAREN, + ACTIONS(2966), 1, + sym_PARAMETER, + STATE(1618), 1, + sym_parenthesis_group, + STATE(1266), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 36, + ACTIONS(2097), 33, sym__AND, - sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -114440,9 +116081,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -114456,32 +116095,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [83829] = 6, + [85279] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1257), 3, + STATE(1267), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 36, + ACTIONS(2474), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -114491,13 +116129,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -114511,59 +116150,48 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [83890] = 14, + [85340] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2948), 1, - sym_exponentiate, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1258), 3, + STATE(1268), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 28, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2466), 36, sym__AND, - sym_DOWNTO, - sym_IS, + sym_BUS, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -114574,25 +116202,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [83967] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [85401] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1259), 3, + STATE(1269), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 36, + ACTIONS(2474), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -114601,6 +116232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -114613,7 +116245,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -114629,40 +116260,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84028] = 9, + [85462] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2952), 1, - sym_library_constant_unit, - STATE(2445), 1, - sym__unit, - STATE(1260), 3, + STATE(1270), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2950), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, + ACTIONS(2498), 36, sym__AND, - sym_DOWNTO, + sym_BUS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -114670,12 +116294,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -114687,27 +116313,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [84095] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [85523] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1261), 3, + STATE(1271), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 36, + ACTIONS(2502), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -114721,14 +116349,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -114742,25 +116370,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84156] = 6, + [85584] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1262), 3, + STATE(1272), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 36, + ACTIONS(2498), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -114797,25 +116425,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84217] = 6, + [85645] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1263), 3, + STATE(1273), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 36, + ACTIONS(2374), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -114852,25 +116480,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84278] = 6, + [85706] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1264), 3, + STATE(1274), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 36, + ACTIONS(2674), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -114907,25 +116535,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84339] = 6, + [85767] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1265), 3, + STATE(1275), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 36, + ACTIONS(2662), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -114962,33 +116590,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84400] = 6, + [85828] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1266), 3, + STATE(1276), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 36, + ACTIONS(2502), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -114996,14 +116625,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115017,27 +116645,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84461] = 6, + [85889] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1267), 3, + STATE(1277), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 36, + ACTIONS(2428), 36, + sym_AFTER, sym__AND, - sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -115051,11 +116679,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -115072,43 +116700,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84522] = 11, + [85950] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - STATE(1268), 3, + STATE(1278), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 31, + ACTIONS(2370), 36, sym__AND, - sym_DOWNTO, - sym_IS, + sym_BUS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -115116,11 +116735,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115132,59 +116753,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [84593] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [86011] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2948), 1, - sym_exponentiate, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1269), 3, + STATE(1279), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 28, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2506), 36, sym__AND, - sym_DOWNTO, - sym_IS, + sym_BUS, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115195,33 +116807,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [84670] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [86072] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1270), 3, + STATE(1280), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 36, + ACTIONS(2528), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -115229,14 +116845,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115250,45 +116865,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84731] = 12, + [86133] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2948), 1, - sym_exponentiate, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - STATE(1271), 3, + STATE(1281), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 30, + ACTIONS(2404), 36, sym__AND, sym_DOWNTO, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -115297,9 +116900,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -115311,39 +116917,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [84804] = 9, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [86194] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1961), 1, - anon_sym_LPAREN, - ACTIONS(2954), 1, - sym_PARAMETER, - STATE(1626), 1, - sym_parenthesis_group, - STATE(1272), 3, + STATE(1282), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 33, + ACTIONS(2428), 36, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -115354,7 +116958,9 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -115369,25 +116975,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84871] = 6, + [86255] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1273), 3, + STATE(1283), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 36, + ACTIONS(2576), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -115424,27 +117030,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84932] = 6, + [86316] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1274), 3, + STATE(1284), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 36, - sym_AFTER, + ACTIONS(2614), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -115458,11 +117064,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -115479,39 +117085,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [84993] = 9, + [86377] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1973), 1, - anon_sym_LPAREN, - ACTIONS(2956), 1, - sym_PARAMETER, - STATE(1551), 1, - sym_parenthesis_group, - STATE(1275), 3, + STATE(1285), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 33, + ACTIONS(2610), 36, sym__AND, + sym_BUS, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -115523,7 +117124,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115537,33 +117140,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85060] = 6, + [86438] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1276), 3, + STATE(1286), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 36, + ACTIONS(2636), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -115571,14 +117175,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115592,41 +117195,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85121] = 9, + [86499] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2960), 1, - sym_library_constant_unit, - STATE(2400), 1, - sym__unit, - STATE(1277), 3, + STATE(1287), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2958), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, + ACTIONS(2370), 36, sym__AND, - sym_DOWNTO, + sym_BUS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -115634,11 +117229,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115650,27 +117248,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [85188] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [86560] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1278), 3, + STATE(1288), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 36, + ACTIONS(2506), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -115684,14 +117284,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115705,32 +117305,89 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85249] = 6, + [86621] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1279), 3, + ACTIONS(2970), 1, + sym_library_constant_unit, + STATE(2482), 1, + sym__unit, + STATE(1289), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2968), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 36, + ACTIONS(2382), 30, sym__AND, sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [86688] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1290), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2468), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2466), 36, + sym__AND, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -115740,13 +117397,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115760,32 +117418,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85310] = 6, + [86749] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1280), 3, + STATE(1291), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 36, + ACTIONS(2572), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -115795,13 +117452,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115815,25 +117473,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85371] = 6, + [86810] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1281), 3, + STATE(1292), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 36, + ACTIONS(2424), 36, sym_AFTER, sym__AND, sym_GENERIC, @@ -115870,34 +117528,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85432] = 6, + [86871] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1282), 3, + STATE(1293), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 36, + ACTIONS(2556), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -115905,13 +117563,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -115925,34 +117583,39 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85493] = 6, + [86932] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1283), 3, + ACTIONS(2003), 1, + anon_sym_LPAREN, + ACTIONS(2972), 1, + sym_PARAMETER, + STATE(1540), 1, + sym_parenthesis_group, + STATE(1294), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 36, + ACTIONS(2097), 33, sym__AND, sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -115963,9 +117626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -115980,25 +117641,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85554] = 6, + [86999] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1284), 3, + STATE(1295), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 36, + ACTIONS(2576), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -116007,7 +117668,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -116020,6 +117680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -116035,27 +117696,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85615] = 6, + [87060] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1285), 3, + STATE(1296), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 36, - sym_AFTER, + ACTIONS(2610), 36, sym__AND, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -116069,14 +117730,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116090,34 +117751,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85676] = 6, + [87121] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1286), 3, + STATE(1297), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 36, + ACTIONS(2572), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -116125,13 +117786,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116145,159 +117806,65 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85737] = 8, + [87182] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - STATE(6713), 1, - sym_verification_unit_binding_indication, - STATE(6718), 1, - sym_end_for, - STATE(1287), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2962), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [85802] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1288), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2574), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(2958), 1, + sym_exponentiate, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 36, - sym__AND, - sym_DOWNTO, - sym_GENERIC, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym_OF, - sym__OR, - sym_PARAMETER, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [85863] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1289), 3, + STATE(1298), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2540), 36, - sym_AFTER, - sym__AND, + ACTIONS(2696), 5, + sym_DOWNTO, sym_GENERIC, - sym__MOD, + sym_TO, + anon_sym_SEMI, + sym_variable_assignment, + ACTIONS(2704), 6, + sym__AND, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -116306,48 +117873,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [85924] = 9, + [87267] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1913), 1, - anon_sym_LPAREN, - ACTIONS(2966), 1, - sym_PARAMETER, - STATE(1596), 1, - sym_parenthesis_group, - STATE(1290), 3, + STATE(1299), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 33, + ACTIONS(2636), 36, sym__AND, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -116356,7 +117911,10 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116370,34 +117928,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [85991] = 6, + [87328] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1291), 3, + STATE(1300), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 36, + ACTIONS(2670), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -116405,13 +117963,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116425,32 +117983,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86052] = 6, + [87389] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1292), 3, + STATE(1301), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 36, + ACTIONS(2666), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -116460,13 +118017,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116480,32 +118038,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86113] = 6, + [87450] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1293), 3, + STATE(1302), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 36, + ACTIONS(2556), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -116515,13 +118072,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116535,25 +118093,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86174] = 6, + [87511] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1294), 3, + STATE(1303), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 36, + ACTIONS(2602), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -116590,25 +118148,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86235] = 6, + [87572] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1295), 3, + STATE(1304), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 36, + ACTIONS(2580), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -116645,34 +118203,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86296] = 6, + [87633] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1296), 3, + STATE(1305), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 36, + ACTIONS(2424), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -116680,13 +118238,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116700,31 +118258,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86357] = 6, + [87694] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1297), 3, + STATE(1306), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 36, - sym_AFTER, + ACTIONS(2640), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -116734,10 +118293,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, @@ -116755,25 +118313,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86418] = 6, + [87755] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1298), 3, + STATE(1307), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 36, + ACTIONS(2606), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -116810,25 +118368,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86479] = 6, + [87816] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1299), 3, + STATE(1308), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 36, + ACTIONS(2420), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -116865,34 +118423,40 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86540] = 6, + [87877] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1300), 3, + ACTIONS(2976), 1, + sym_library_constant_unit, + STATE(2497), 1, + sym__unit, + STATE(1309), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2974), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 36, + ACTIONS(2382), 30, + sym_AFTER, sym__AND, - sym_BUS, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -116900,13 +118464,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116918,41 +118481,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [86601] = 9, + [87944] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2087), 1, - anon_sym_LPAREN, - ACTIONS(2968), 1, - sym_PARAMETER, - STATE(1568), 1, - sym_parenthesis_group, - STATE(1301), 3, + STATE(1310), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 33, + ACTIONS(2450), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -116960,11 +118516,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -116978,48 +118536,53 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86668] = 6, + [88005] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1302), 3, + ACTIONS(2958), 1, + sym_exponentiate, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1311), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2614), 36, - sym__AND, - sym_BUS, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym_REGISTER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117027,109 +118590,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [86729] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1303), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2436), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2434), 36, + ACTIONS(2710), 11, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [86790] = 6, + [88088] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1304), 3, + ACTIONS(2958), 1, + sym_exponentiate, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1312), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2622), 36, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 19, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__NAND, + sym__NOR, + sym__OR, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117137,37 +118667,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [86851] = 6, + [88169] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1305), 3, + STATE(1313), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 36, + ACTIONS(2374), 36, sym__AND, sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -117178,10 +118703,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -117198,31 +118722,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86912] = 6, + [88230] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1306), 3, + STATE(1314), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 36, + ACTIONS(2674), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -117232,14 +118757,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117253,31 +118777,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [86973] = 6, + [88291] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1307), 3, + STATE(1315), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 36, + ACTIONS(2662), 36, sym__AND, sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -117288,10 +118813,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -117308,34 +118832,51 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87034] = 6, + [88352] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1308), 3, + ACTIONS(2958), 1, + sym_exponentiate, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1316), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2662), 36, + ACTIONS(2716), 25, sym__AND, sym_DOWNTO, sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -117343,13 +118884,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117357,33 +118896,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [87095] = 6, + [88431] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1309), 3, + STATE(1317), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 36, + ACTIONS(2528), 36, sym__AND, - sym_DOWNTO, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -117397,14 +118930,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117418,31 +118951,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87156] = 6, + [88492] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1310), 3, + STATE(1318), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 36, + ACTIONS(2404), 36, sym__AND, sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -117453,10 +118987,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -117473,34 +119006,47 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87217] = 6, + [88553] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1311), 3, + ACTIONS(2958), 1, + sym_exponentiate, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1319), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2552), 36, + ACTIONS(2688), 28, sym__AND, sym_DOWNTO, sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -117508,13 +119054,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117525,28 +119069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [87278] = 6, + [88630] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1312), 3, + STATE(1320), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 36, + ACTIONS(2670), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -117583,34 +119124,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87339] = 6, + [88691] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1313), 3, + STATE(1321), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 36, + ACTIONS(2614), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -117618,13 +119159,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117638,33 +119179,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87400] = 6, + [88752] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1314), 3, + STATE(492), 1, + sym_shift_operator, + STATE(493), 1, + sym_relational_operator, + STATE(494), 1, + sym_logical_operator, + STATE(703), 1, + sym_adding_operator, + STATE(704), 1, + sym_multiplying_operator, + STATE(1322), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 36, + ACTIONS(2688), 31, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -117672,12 +119222,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -117691,27 +119239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [87461] = 6, + [88823] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1315), 3, + STATE(1323), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 36, + ACTIONS(2580), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -117748,27 +119294,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87522] = 6, + [88884] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1316), 3, + STATE(1324), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 36, + ACTIONS(2470), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -117782,14 +119328,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117803,47 +119349,65 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87583] = 6, + [88945] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1317), 3, + ACTIONS(2964), 1, + sym_exponentiate, + STATE(512), 1, + sym_shift_operator, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1325), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2610), 36, - sym_AFTER, + ACTIONS(2696), 5, + sym_DOWNTO, + sym_IS, + sym_OPEN, + sym_TO, + anon_sym_SEMI, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -117852,39 +119416,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [87644] = 6, + [89030] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1318), 3, + STATE(1326), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 36, + ACTIONS(2722), 36, + sym_identifier, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -117892,12 +119450,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -117911,35 +119471,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [87705] = 6, + [89091] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1319), 3, + STATE(1327), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 36, - sym_AFTER, + ACTIONS(2428), 36, sym__AND, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -117947,14 +119506,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -117968,25 +119526,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87766] = 6, + [89152] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1320), 3, + STATE(1328), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 36, + ACTIONS(2606), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -118023,34 +119581,39 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87827] = 6, + [89213] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1321), 3, + ACTIONS(1913), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + sym_PARAMETER, + STATE(1495), 1, + sym_parenthesis_group, + STATE(1329), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 36, + ACTIONS(2097), 33, sym__AND, - sym_BUS, + sym_DOWNTO, + sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -118058,13 +119621,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -118078,25 +119639,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87888] = 6, + [89280] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1322), 3, + STATE(1330), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 36, + ACTIONS(2450), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -118133,27 +119694,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [87949] = 6, + [89341] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1323), 3, + STATE(1331), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 36, - sym_AFTER, + ACTIONS(2428), 36, sym__AND, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -118167,14 +119728,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -118188,34 +119749,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88010] = 6, + [89402] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1324), 3, + STATE(1332), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 36, + ACTIONS(2378), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -118223,13 +119783,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -118243,92 +119804,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88071] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2970), 1, - sym_exponentiate, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, - sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1325), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2678), 5, - sym_DOWNTO, - sym_GENERIC, - sym_TO, - anon_sym_SEMI, - sym_variable_assignment, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [88156] = 6, + [89463] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1326), 3, + STATE(1333), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 36, + ACTIONS(2602), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -118365,34 +119859,40 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88217] = 6, + [89524] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1327), 3, + ACTIONS(2982), 1, + sym_library_constant_unit, + STATE(2518), 1, + sym__unit, + STATE(1334), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2980), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 36, + ACTIONS(2382), 30, sym__AND, sym_BUS, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -118403,8 +119903,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -118418,36 +119917,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [88278] = 6, + [89591] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1328), 3, + STATE(1335), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 36, + ACTIONS(2692), 36, + sym_identifier, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -118455,11 +119951,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -118473,29 +119972,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [88339] = 6, + [89652] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1329), 3, + STATE(1336), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 36, + ACTIONS(2466), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -118509,14 +120006,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -118530,85 +120027,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88400] = 9, + [89713] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2974), 1, - sym_library_constant_unit, - STATE(2398), 1, - sym__unit, - STATE(1330), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2972), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 30, - sym__AND, - sym_BUS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [88467] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1331), 3, + STATE(1337), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 36, + ACTIONS(2474), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -118622,14 +120061,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -118643,27 +120082,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88528] = 6, + [89774] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1332), 3, + STATE(1338), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 36, + ACTIONS(2498), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -118677,14 +120116,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -118698,27 +120137,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88589] = 6, + [89835] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1333), 3, + STATE(1339), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 36, - sym_AFTER, + ACTIONS(2502), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -118732,11 +120171,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -118753,39 +120192,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88650] = 9, + [89896] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2021), 1, - anon_sym_LPAREN, - ACTIONS(2976), 1, - sym_PARAMETER, - STATE(1482), 1, - sym_parenthesis_group, - STATE(1334), 3, + STATE(1340), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 33, + ACTIONS(2370), 36, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -118794,9 +120227,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -118811,27 +120247,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88717] = 6, + [89957] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1335), 3, + STATE(1341), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 36, - sym_AFTER, + ACTIONS(2506), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -118845,11 +120281,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -118866,25 +120302,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88778] = 6, + [90018] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1336), 3, + STATE(1342), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 36, + ACTIONS(2640), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -118893,6 +120329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -118905,7 +120342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -118921,25 +120357,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88839] = 6, + [90079] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1337), 3, + STATE(1343), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 36, + ACTIONS(2450), 36, sym_AFTER, sym__AND, sym_GENERIC, @@ -118976,82 +120412,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [88900] = 6, + [90140] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1338), 3, + STATE(1344), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 36, - sym_identifier, + ACTIONS(2606), 36, + sym_AFTER, sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [88961] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1339), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2470), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2468), 36, - sym__AND, - sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -119065,14 +120446,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119086,69 +120467,70 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [89022] = 25, + [90201] = 26, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(684), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(687), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(19), 1, sym_ASSERT, - ACTIONS(704), 1, + ACTIONS(69), 1, sym_WITH, - ACTIONS(2978), 1, + ACTIONS(199), 1, sym_POSTPONED, - ACTIONS(2981), 1, + ACTIONS(201), 1, sym_PROCESS, - STATE(2540), 1, + STATE(1411), 1, + aux_sym_design_unit_repeat3, + STATE(2679), 1, sym_label_declaration, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(3789), 1, + STATE(3818), 1, sym__concurrent_statement, - STATE(5983), 1, + STATE(6182), 1, sym_with_expression, - STATE(6083), 1, - sym_aggregate, - STATE(6092), 1, + STATE(6293), 1, sym__target, - STATE(6159), 1, + STATE(6312), 1, + sym_aggregate, + STATE(6397), 1, sym_name, - STATE(6937), 1, + STATE(7065), 1, sym_assertion, - STATE(7523), 1, + STATE(7713), 1, sym__label, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(693), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - ACTIONS(707), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4237), 3, + ACTIONS(2984), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(1345), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(690), 4, + ACTIONS(13), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(1340), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_design_unit_repeat3, - STATE(3788), 11, + STATE(3809), 11, sym_block_statement, sym_component_instantiation_statement, sym_process_statement, @@ -119160,27 +120542,27 @@ static const uint16_t ts_small_parse_table[] = { sym_concurrent_simple_signal_assignment, sym_concurrent_conditional_signal_assignment, sym_concurrent_selected_signal_assignment, - [89121] = 6, + [90302] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1341), 3, + STATE(1346), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 36, + ACTIONS(2404), 36, + sym_AFTER, sym__AND, - sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -119194,14 +120576,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119215,27 +120597,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [89182] = 6, + [90363] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1342), 3, + STATE(1347), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 36, - sym_AFTER, + ACTIONS(2572), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -119249,11 +120631,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -119270,33 +120652,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [89243] = 6, + [90424] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1343), 3, + STATE(1348), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 36, + ACTIONS(2692), 36, + sym_identifier, sym__AND, - sym_BUS, - sym_GENERIC, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -119304,14 +120687,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119323,29 +120707,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [89304] = 6, + [90485] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1344), 3, + STATE(1349), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 36, + ACTIONS(2580), 36, + sym_AFTER, sym__AND, - sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -119359,14 +120741,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119380,33 +120762,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [89365] = 6, + [90546] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1345), 3, + STATE(1350), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 36, - sym_AFTER, + ACTIONS(2722), 36, + sym_identifier, sym__AND, - sym_GENERIC, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -119414,13 +120797,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -119433,39 +120817,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [89426] = 12, + [90607] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2970), 1, - sym_exponentiate, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, - sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - STATE(1346), 3, + STATE(1351), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 30, + ACTIONS(2576), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -119473,6 +120843,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -119481,11 +120852,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119496,47 +120869,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [89499] = 14, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [90668] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2970), 1, - sym_exponentiate, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, - sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1347), 3, + STATE(1352), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 28, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2610), 36, sym__AND, sym_DOWNTO, sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -119544,11 +120907,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119559,52 +120924,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [89576] = 15, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [90729] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2948), 1, - sym_exponentiate, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1348), 3, + STATE(1353), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 36, sym__AND, sym_DOWNTO, - sym_IS, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, + sym_OF, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -119614,7 +120965,9 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -119623,129 +120976,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [89655] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [90790] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2970), 1, - sym_exponentiate, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, - sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1349), 3, + STATE(1354), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 11, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2636), 36, sym__AND, sym_DOWNTO, sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - sym_variable_assignment, - [89738] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2948), 1, - sym_exponentiate, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, + sym_PARAMETER, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1350), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2698), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 19, - sym__AND, - sym_DOWNTO, - sym_IS, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -119754,27 +121031,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [89819] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [90851] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1351), 3, + STATE(1355), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 36, + ACTIONS(2666), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -119788,14 +121071,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119809,52 +121092,47 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [89880] = 17, + [90912] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2948), 1, - sym_exponentiate, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1352), 3, + STATE(1356), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 36, + sym_AFTER, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -119863,39 +121141,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 11, - sym__AND, - sym_DOWNTO, - sym_IS, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - [89963] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [90973] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1353), 3, + STATE(1357), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 36, + ACTIONS(2556), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -119909,14 +121181,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119930,64 +121202,55 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [90024] = 16, + [91034] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2970), 1, - sym_exponentiate, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, + STATE(512), 1, sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1354), 3, + STATE(578), 1, + sym_adding_operator, + STATE(1358), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 31, + sym__AND, + sym_DOWNTO, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 19, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym__NAND, - sym__NOR, - sym__OR, sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -119995,35 +121258,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [90105] = 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [91105] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, - sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - STATE(1355), 3, + STATE(1359), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 31, + ACTIONS(2670), 36, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -120031,6 +121288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -120039,11 +121297,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -120055,27 +121315,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [90176] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [91166] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1356), 3, + STATE(1360), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 36, - sym_AFTER, + ACTIONS(2580), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -120089,11 +121351,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -120110,51 +121372,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [90237] = 15, + [91227] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2970), 1, - sym_exponentiate, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, - sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1357), 3, + STATE(1361), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2378), 36, sym__AND, sym_DOWNTO, sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -120164,9 +121410,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -120174,47 +121421,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [90316] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [91288] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1358), 3, + ACTIONS(2964), 1, + sym_exponentiate, + STATE(512), 1, + sym_shift_operator, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1362), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2514), 36, - sym_AFTER, + ACTIONS(2688), 28, sym__AND, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, + sym_IS, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -120226,36 +121490,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [90377] = 6, + [91365] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1359), 3, + ACTIONS(2988), 1, + sym_library_constant_unit, + STATE(2472), 1, + sym__unit, + STATE(1363), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2986), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 36, + ACTIONS(2382), 30, sym__AND, - sym_BUS, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -120263,14 +121532,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -120282,35 +121548,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [90438] = 6, + [91432] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1360), 3, + STATE(512), 1, + sym_shift_operator, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + STATE(1364), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 36, + ACTIONS(2678), 31, sym__AND, - sym_BUS, - sym_GENERIC, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -120318,14 +121592,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -120337,49 +121608,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [90499] = 6, + [91503] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1361), 3, + ACTIONS(2964), 1, + sym_exponentiate, + STATE(512), 1, + sym_shift_operator, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1365), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2666), 36, - sym_AFTER, + ACTIONS(2678), 28, sym__AND, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, + sym_IS, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -120391,30 +121671,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [90560] = 6, + [91580] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1362), 3, + STATE(1366), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 36, - sym_AFTER, + ACTIONS(2606), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -120428,11 +121705,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -120449,27 +121726,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [90621] = 6, + [91641] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1363), 3, + STATE(1367), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 36, + ACTIONS(2450), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -120483,14 +121760,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -120504,27 +121781,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [90682] = 6, + [91702] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1364), 3, + STATE(1368), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 36, - sym_AFTER, + ACTIONS(2528), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, @@ -120538,11 +121815,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -120559,32 +121836,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [90743] = 6, + [91763] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1365), 3, + ACTIONS(2964), 1, + sym_exponentiate, + STATE(512), 1, + sym_shift_operator, + STATE(513), 1, + sym_relational_operator, + STATE(514), 1, + sym_logical_operator, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + STATE(1369), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 36, - sym_identifier, + ACTIONS(2678), 30, sym__AND, sym_DOWNTO, - sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -120596,13 +121885,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -120613,26 +121897,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [90804] = 6, + [91836] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1366), 3, + STATE(1370), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 36, + ACTIONS(2378), 36, sym_AFTER, sym__AND, sym_GENERIC, @@ -120669,27 +121952,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [90865] = 6, + [91897] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1367), 3, + STATE(1371), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 36, + ACTIONS(2556), 36, + sym_AFTER, sym__AND, - sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -120703,14 +121986,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -120724,31 +122007,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [90926] = 6, + [91958] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1368), 3, + STATE(1372), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 36, - sym_AFTER, + ACTIONS(2466), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -120758,10 +122042,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, @@ -120779,65 +122062,157 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [90987] = 18, + [92019] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2948), 1, - sym_exponentiate, - STATE(485), 1, - sym_logical_operator, - STATE(486), 1, - sym_relational_operator, - STATE(494), 1, - sym_shift_operator, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(1373), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2476), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2474), 36, + sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym_PARAMETER, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1369), 3, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [92080] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1374), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2678), 5, - sym_DOWNTO, - sym_IS, - sym_OPEN, - sym_TO, - anon_sym_SEMI, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2498), 36, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [92141] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1375), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2504), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2502), 36, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -120846,25 +122221,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [91072] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [92202] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1370), 3, + STATE(1376), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 36, + ACTIONS(2374), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -120901,33 +122282,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91133] = 6, + [92263] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1371), 3, + STATE(1377), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 36, - sym_AFTER, + ACTIONS(2674), 36, sym__AND, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -120935,14 +122317,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -120956,33 +122337,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91194] = 6, + [92324] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1372), 3, + STATE(1378), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 36, - sym_AFTER, + ACTIONS(2662), 36, sym__AND, + sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -120990,14 +122372,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -121011,31 +122392,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91255] = 6, + [92385] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1373), 3, + STATE(1379), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 36, - sym_AFTER, + ACTIONS(2370), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -121045,10 +122427,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, @@ -121066,31 +122447,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91316] = 6, + [92446] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1374), 3, + STATE(1380), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 36, + ACTIONS(2506), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -121100,14 +122482,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -121121,25 +122502,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91377] = 6, + [92507] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1375), 3, + STATE(1381), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 36, + ACTIONS(2666), 36, sym_AFTER, sym__AND, sym_GENERIC, @@ -121176,69 +122557,47 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91438] = 22, + [92568] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(277), 1, - sym_REPORT, - ACTIONS(2984), 1, - anon_sym_SEMI, - ACTIONS(2986), 1, - sym_exponentiate, - ACTIONS(2988), 1, - sym_SEVERITY, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - STATE(5428), 1, - sym_report_expression, - STATE(7230), 1, - sym_severity_expression, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1376), 3, + STATE(1382), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2636), 36, + sym_AFTER, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -121247,25 +122606,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [91531] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [92629] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1377), 3, + STATE(1383), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 36, + ACTIONS(2470), 36, sym_AFTER, sym__AND, sym_GENERIC, @@ -121302,25 +122667,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91592] = 6, + [92690] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1378), 3, + STATE(1384), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 36, + ACTIONS(2610), 36, sym_AFTER, sym__AND, sym_GENERIC, @@ -121357,7 +122722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91653] = 9, + [92751] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -121365,32 +122730,82 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, sym__block_comment_start, ACTIONS(2992), 1, - sym_library_constant_unit, - STATE(2433), 1, - sym__unit, - STATE(1379), 3, + sym_END, + STATE(8029), 1, + sym_verification_unit_binding_indication, + STATE(8129), 1, + sym_end_for, + STATE(1385), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2990), 4, + ACTIONS(2990), 39, sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - ACTIONS(2390), 6, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [92816] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1386), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, + ACTIONS(2576), 36, sym_AFTER, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -121403,6 +122818,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -121415,31 +122832,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [91720] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [92877] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1380), 3, + STATE(1387), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 36, - sym_AFTER, + ACTIONS(2572), 36, sym__AND, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -121449,10 +122869,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, @@ -121470,25 +122889,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91781] = 6, + [92938] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1381), 3, + STATE(1388), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 36, + ACTIONS(2614), 36, sym__AND, sym_BUS, sym_GENERIC, @@ -121525,34 +122944,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91842] = 6, + [92999] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1382), 3, + STATE(1389), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 36, + ACTIONS(2614), 36, + sym_AFTER, sym__AND, - sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -121560,13 +122978,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -121580,27 +122999,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91903] = 6, + [93060] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1383), 3, + STATE(1390), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 36, + ACTIONS(2528), 36, + sym_AFTER, sym__AND, - sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, @@ -121614,14 +123033,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -121635,31 +123054,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [91964] = 6, + [93121] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1384), 3, + STATE(1391), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 36, + ACTIONS(2576), 36, sym__AND, - sym_BUS, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -121669,14 +123089,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -121690,42 +123109,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [92025] = 11, + [93182] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, - sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - STATE(1385), 3, + STATE(1392), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 31, + ACTIONS(2610), 36, sym__AND, sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -121736,9 +123147,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -121750,34 +123162,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [92096] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [93243] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1386), 3, + STATE(1393), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 36, + ACTIONS(2640), 36, + sym_AFTER, sym__AND, - sym_BUS, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -121785,13 +123198,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -121805,47 +123219,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [92157] = 14, + [93304] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2970), 1, - sym_exponentiate, - STATE(546), 1, - sym_logical_operator, - STATE(562), 1, - sym_relational_operator, - STATE(567), 1, - sym_shift_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1387), 3, + STATE(1394), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 28, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2636), 36, sym__AND, sym_DOWNTO, sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -121855,9 +123257,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -121868,32 +123271,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [92234] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [93365] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1388), 3, + STATE(1395), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 35, + ACTIONS(2666), 36, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -121906,6 +123312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -121922,142 +123329,47 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [92294] = 27, + [93426] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - ACTIONS(2994), 1, - sym_IS, - STATE(2361), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6314), 1, - sym_sequential_block, - STATE(6315), 1, - sym_sequential_block_head, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1389), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [92396] = 21, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - ACTIONS(2998), 1, - sym_GENERATE, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(5469), 1, - sym_generate_direct_block, - STATE(5754), 1, - sym_generate_body, - STATE(6398), 1, - sym_generate_head, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1390), 3, + STATE(1396), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2556), 36, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -122066,29 +123378,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [92486] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [93487] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1391), 3, + STATE(1397), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 35, + ACTIONS(2466), 36, + sym_AFTER, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -122101,9 +123418,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -122120,32 +123439,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [92546] = 6, + [93548] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1392), 3, + STATE(1398), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 35, + ACTIONS(2670), 36, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -122158,6 +123477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -122174,38 +123494,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [92606] = 9, + [93609] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2274), 1, - anon_sym_LPAREN, - ACTIONS(3000), 1, - sym_PARAMETER, - STATE(1840), 1, - sym_parenthesis_group, - STATE(1393), 3, + STATE(1399), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 32, + ACTIONS(2580), 36, sym__AND, - sym_FOR, + sym_DOWNTO, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -122213,10 +123529,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -122231,64 +123549,102 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [92672] = 18, + [93670] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3002), 1, - sym_exponentiate, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, - sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, - sym_shift_operator, - ACTIONS(2686), 2, + STATE(1400), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2476), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2474), 36, + sym_AFTER, + sym__AND, + sym_GENERIC, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1394), 3, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [93731] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1401), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2678), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - ACTIONS(2682), 4, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2606), 36, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -122297,64 +123653,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [92756] = 18, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [93792] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3004), 1, - sym_exponentiate, - STATE(482), 1, - sym_multiplying_operator, - STATE(483), 1, - sym_adding_operator, - STATE(650), 1, - sym_shift_operator, - STATE(661), 1, - sym_relational_operator, - STATE(673), 1, - sym_logical_operator, - ACTIONS(2686), 2, + STATE(1402), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2452), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2450), 36, + sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym_PARAMETER, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1395), 3, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [93853] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1403), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2678), 4, - sym_BUS, - sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - ACTIONS(2682), 4, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2498), 36, + sym_AFTER, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -122363,25 +123763,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [92840] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [93914] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1396), 3, + STATE(1404), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 35, + ACTIONS(2502), 36, + sym_AFTER, sym__AND, sym_GENERIC, sym__MOD, @@ -122390,17 +123797,17 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -122417,25 +123824,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [92900] = 6, + [93975] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1397), 3, + STATE(1405), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 35, + ACTIONS(2374), 36, + sym_AFTER, sym__AND, sym_GENERIC, sym__MOD, @@ -122444,17 +123852,17 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -122471,29 +123879,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [92960] = 6, + [94036] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1398), 3, + STATE(1406), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 35, + ACTIONS(2674), 36, + sym_AFTER, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -122506,9 +123913,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -122525,29 +123934,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [93020] = 6, + [94097] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1399), 3, + STATE(1407), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 35, + ACTIONS(2662), 36, + sym_AFTER, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -122560,9 +123968,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -122579,41 +123989,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [93080] = 9, + [94158] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3008), 1, - sym_library_constant_unit, - STATE(2531), 1, - sym__unit, - STATE(1400), 3, + STATE(1408), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3006), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(2370), 36, + sym_AFTER, sym__AND, - sym_DOWNTO, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -122621,9 +124023,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -122636,51 +124042,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [93146] = 9, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [94219] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3012), 1, - sym_library_constant_unit, - STATE(2518), 1, - sym__unit, - STATE(1401), 3, + STATE(1409), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3010), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(2572), 36, + sym_AFTER, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -122693,25 +124097,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [93212] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [94280] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1402), 3, + STATE(1410), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 35, + ACTIONS(2506), 36, + sym_AFTER, sym__AND, sym_GENERIC, sym__MOD, @@ -122720,17 +124127,17 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -122747,104 +124154,102 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [93272] = 27, + [94341] = 25, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, + ACTIONS(694), 1, + anon_sym_LPAREN, + ACTIONS(697), 1, + anon_sym_LT_LT, + ACTIONS(705), 1, + sym_ASSERT, + ACTIONS(714), 1, + sym_WITH, ACTIONS(2994), 1, - sym_IS, - STATE(2361), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6055), 1, - sym_sequential_block_head, - STATE(6303), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1403), 3, + sym_POSTPONED, + ACTIONS(2997), 1, + sym_PROCESS, + STATE(2679), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(3818), 1, + sym__concurrent_statement, + STATE(6182), 1, + sym_with_expression, + STATE(6293), 1, + sym__target, + STATE(6312), 1, + sym_aggregate, + STATE(6397), 1, + sym_name, + STATE(7065), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(703), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + ACTIONS(717), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(700), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(1411), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [93374] = 6, + aux_sym_design_unit_repeat3, + STATE(3809), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [94440] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1404), 3, + STATE(1412), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 35, + ACTIONS(2420), 36, + sym_AFTER, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -122857,9 +124262,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -122876,137 +124283,103 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [93434] = 27, + [94501] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6054), 1, - sym_process_head, - STATE(6306), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1405), 3, + STATE(1413), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [93536] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3004), 1, - sym_exponentiate, - STATE(482), 1, - sym_multiplying_operator, - STATE(483), 1, - sym_adding_operator, - STATE(650), 1, - sym_shift_operator, - STATE(661), 1, - sym_relational_operator, - STATE(673), 1, - sym_logical_operator, - ACTIONS(2686), 2, + ACTIONS(2604), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2602), 36, + sym_AFTER, + sym__AND, + sym_GENERIC, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1406), 3, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [94562] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1414), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2528), 36, sym__AND, - sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_REGISTER, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -123014,25 +124387,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [93614] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [94623] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1407), 3, + ACTIONS(2015), 1, + anon_sym_LPAREN, + ACTIONS(3000), 1, + sym_PARAMETER, + STATE(1454), 1, + sym_parenthesis_group, + STATE(1415), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 35, + ACTIONS(2097), 33, sym__AND, sym_GENERIC, sym_IS, @@ -123041,7 +124426,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NOR, sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -123053,7 +124437,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -123068,98 +124451,149 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [93674] = 16, + [94690] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3004), 1, + ACTIONS(3002), 1, sym_exponentiate, - STATE(482), 1, + STATE(565), 1, sym_multiplying_operator, - STATE(483), 1, + STATE(566), 1, sym_adding_operator, - STATE(650), 1, + STATE(671), 1, sym_shift_operator, - STATE(661), 1, + STATE(672), 1, sym_relational_operator, STATE(673), 1, sym_logical_operator, - ACTIONS(2686), 2, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1408), 3, + STATE(1416), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2716), 24, + sym_AFTER, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 18, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [94768] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1417), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3006), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3004), 34, sym__AND, - sym_BUS, + sym_DOWNTO, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [93754] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_GT_GT, + anon_sym_PIPE, + [94828] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1409), 3, + STATE(1418), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(3010), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 35, + ACTIONS(3008), 34, sym__AND, - sym_GENERIC, - sym_IS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -123167,13 +124601,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -123184,34 +124620,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [93814] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [94888] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1410), 3, + STATE(1419), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 35, + ACTIONS(2450), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -123221,9 +124657,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -123240,7 +124676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [93874] = 17, + [94948] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -123249,43 +124685,56 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(3002), 1, sym_exponentiate, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, + ACTIONS(3014), 1, + sym_AFTER, + STATE(565), 1, sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, + STATE(566), 1, + sym_adding_operator, + STATE(671), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(672), 1, + sym_relational_operator, + STATE(673), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1411), 3, + ACTIONS(3012), 3, + sym_WHEN, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(1420), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -123294,68 +124743,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 10, - sym__AND, - sym_BUS, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [93956] = 16, + [95034] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3002), 1, + ACTIONS(3016), 1, sym_exponentiate, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, + STATE(473), 1, sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, + STATE(474), 1, + sym_adding_operator, + STATE(484), 1, sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1412), 3, + STATE(486), 1, + sym_relational_operator, + STATE(487), 1, + sym_logical_operator, + STATE(1421), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 29, + sym__AND, + sym_BUS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 18, - sym__AND, - sym_BUS, - sym__NAND, - sym__NOR, - sym__OR, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -123369,45 +124800,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [94036] = 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [95106] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3002), 1, + ACTIONS(3016), 1, sym_exponentiate, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, + STATE(473), 1, sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, + STATE(474), 1, + sym_adding_operator, + STATE(484), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(486), 1, + sym_relational_operator, + STATE(487), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1413), 3, + STATE(1422), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 24, + ACTIONS(2678), 27, sym__AND, sym_BUS, sym__NAND, @@ -123432,103 +124862,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [94114] = 27, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6178), 1, - sym_sequential_block, - STATE(6179), 1, - sym_process_head, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1414), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [94216] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [95182] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1415), 3, + STATE(1423), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 35, + ACTIONS(2722), 35, sym_identifier, - sym_AFTER, sym__AND, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -123540,7 +124898,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, sym_library_constant, @@ -123548,8 +124905,9 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -123561,7 +124919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [94276] = 19, + [95242] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -123570,57 +124928,49 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(3016), 1, sym_exponentiate, - ACTIONS(3018), 1, - sym_AFTER, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, - sym_shift_operator, - STATE(657), 1, + STATE(473), 1, sym_multiplying_operator, - STATE(675), 1, + STATE(474), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(484), 1, + sym_shift_operator, + STATE(486), 1, + sym_relational_operator, + STATE(487), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - ACTIONS(3014), 3, - sym_WHEN, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(1416), 3, + STATE(1424), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2688), 27, sym__AND, + sym_BUS, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -123628,49 +124978,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [94362] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [95318] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1417), 3, + ACTIONS(3018), 1, + sym_exponentiate, + ACTIONS(3020), 1, + sym_GENERATE, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(6021), 1, + sym_generate_body, + STATE(6027), 1, + sym_generate_direct_block, + STATE(6588), 1, + sym_generate_head, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1425), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2704), 35, - sym_identifier, + ACTIONS(2704), 6, sym__AND, - sym_BUS, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -123678,41 +125050,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [94422] = 6, + [95408] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1418), 3, + STATE(473), 1, + sym_multiplying_operator, + STATE(474), 1, + sym_adding_operator, + STATE(484), 1, + sym_shift_operator, + STATE(486), 1, + sym_relational_operator, + STATE(487), 1, + sym_logical_operator, + STATE(1426), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 35, + ACTIONS(2688), 30, sym__AND, - sym_GENERIC, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -123720,9 +125095,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -123734,51 +125109,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [94482] = 9, + [95478] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2177), 1, - anon_sym_LPAREN, - ACTIONS(3020), 1, - sym_PARAMETER, - STATE(1778), 1, - sym_parenthesis_group, - STATE(1419), 3, + STATE(1427), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 32, + ACTIONS(2602), 35, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -123793,115 +125163,48 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [94548] = 21, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - ACTIONS(2998), 1, - sym_GENERATE, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(5469), 1, - sym_generate_direct_block, - STATE(5710), 1, - sym_generate_body, - STATE(6398), 1, - sym_generate_head, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1420), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [94638] = 6, + [95538] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1421), 3, + STATE(1428), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 35, + ACTIONS(2692), 35, + sym_identifier, sym__AND, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -123914,9 +125217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [94698] = 27, + [95598] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -123925,55 +125226,55 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(5990), 1, + STATE(6212), 1, sym_process_head, - STATE(6416), 1, + STATE(6437), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1422), 3, + STATE(1429), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -123991,94 +125292,25 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [94800] = 21, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - ACTIONS(2998), 1, - sym_GENERATE, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(5469), 1, - sym_generate_direct_block, - STATE(5643), 1, - sym_generate_body, - STATE(6398), 1, - sym_generate_head, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1423), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [94890] = 6, + [95700] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1424), 3, + STATE(1430), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 35, + ACTIONS(2424), 35, sym__AND, sym_GENERIC, sym__MOD, @@ -124114,44 +125346,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [94950] = 6, + [95760] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1425), 3, + STATE(1431), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 35, + ACTIONS(2666), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -124168,37 +125400,37 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [95010] = 6, + [95820] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1426), 3, + STATE(1432), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 35, + ACTIONS(2580), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -124222,34 +125454,38 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [95070] = 6, + [95880] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1427), 3, + ACTIONS(2282), 1, + anon_sym_LPAREN, + ACTIONS(3022), 1, + sym_PARAMETER, + STATE(1907), 1, + sym_parenthesis_group, + STATE(1433), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 35, + ACTIONS(2097), 32, sym__AND, + sym_ELSE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -124261,7 +125497,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -124276,7 +125511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [95130] = 27, + [95946] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -124285,55 +125520,55 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6043), 1, + STATE(6223), 1, sym_process_head, - STATE(6274), 1, + STATE(6444), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1428), 3, + STATE(1434), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -124351,37 +125586,37 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [95232] = 6, + [96048] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1429), 3, + STATE(1435), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 35, + ACTIONS(2670), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -124405,41 +125640,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [95292] = 9, + [96108] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3024), 1, - sym_library_constant_unit, - STATE(2460), 1, - sym__unit, - STATE(1430), 3, + STATE(1436), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3022), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(2556), 35, sym__AND, - sym_DOWNTO, - sym_GENERATE, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -124447,9 +125675,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -124462,32 +125692,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [95358] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [96168] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1431), 3, + STATE(1437), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 35, - sym_identifier, + ACTIONS(2666), 35, sym__AND, - sym_BUS, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -124497,14 +125731,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -124516,65 +125746,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [95418] = 18, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [96228] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2926), 1, - sym_exponentiate, - STATE(428), 1, - sym_adding_operator, - STATE(429), 1, - sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1432), 3, + STATE(1438), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2793), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2692), 35, + sym_identifier, sym__AND, + sym_BUS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -124582,111 +125798,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [95502] = 27, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [96288] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6035), 1, - sym_process_head, - STATE(6264), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1433), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [95604] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3028), 1, - sym_library_constant_unit, - STATE(2488), 1, - sym__unit, - STATE(1434), 3, + ACTIONS(3002), 1, + sym_exponentiate, + STATE(565), 1, + sym_multiplying_operator, + STATE(566), 1, + sym_adding_operator, + STATE(671), 1, + sym_shift_operator, + STATE(672), 1, + sym_relational_operator, + STATE(673), 1, + sym_logical_operator, + STATE(1439), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3026), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(2678), 29, + sym_AFTER, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -124698,11 +125846,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -124713,42 +125862,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [95670] = 11, + [96360] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, - sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, - sym_shift_operator, - STATE(1435), 3, + STATE(1440), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 30, + ACTIONS(2424), 35, sym__AND, - sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -124756,12 +125897,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -124773,48 +125914,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [95740] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [96420] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3002), 1, - sym_exponentiate, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, - sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1436), 3, + STATE(1441), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 27, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2378), 35, sym__AND, - sym_BUS, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -124822,9 +125954,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -124835,44 +125967,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [95816] = 12, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [96480] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3004), 1, - sym_exponentiate, - STATE(482), 1, - sym_multiplying_operator, - STATE(483), 1, - sym_adding_operator, - STATE(650), 1, - sym_shift_operator, - STATE(661), 1, - sym_relational_operator, - STATE(673), 1, - sym_logical_operator, - STATE(1437), 3, + STATE(1442), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2420), 35, sym__AND, - sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -124880,11 +126005,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -124895,54 +126021,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [95888] = 11, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [96540] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, + ACTIONS(2932), 1, + sym_exponentiate, + STATE(415), 1, sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, + STATE(422), 1, + sym_adding_operator, + STATE(545), 1, sym_shift_operator, - STATE(1438), 3, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1443), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 30, - sym__AND, + ACTIONS(2882), 4, sym_BUS, - sym__MOD, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + ACTIONS(2704), 6, + sym__AND, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -124950,51 +126090,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [95958] = 14, + [96624] = 36, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3004), 1, - sym_exponentiate, - STATE(482), 1, - sym_multiplying_operator, - STATE(483), 1, - sym_adding_operator, - STATE(650), 1, - sym_shift_operator, - STATE(661), 1, - sym_relational_operator, - STATE(673), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1439), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(261), 1, + sym_CASE, + ACTIONS(267), 1, + sym_FOR, + ACTIONS(269), 1, + sym_IF, + ACTIONS(271), 1, + sym_LOOP, + ACTIONS(277), 1, + sym_REPORT, + ACTIONS(283), 1, + sym_WHILE, + ACTIONS(3026), 1, + sym_BLOCK, + ACTIONS(3028), 1, + sym_EXIT, + ACTIONS(3030), 1, + sym_NEXT, + ACTIONS(3032), 1, + sym_NULL, + ACTIONS(3034), 1, + sym_RETURN, + ACTIONS(3036), 1, + sym_WAIT, + STATE(3020), 1, + sym__direct_name, + STATE(5068), 1, + sym_if_statement, + STATE(5848), 1, + sym_report_expression, + STATE(5852), 1, + sym__target, + STATE(5856), 1, + sym_name, + STATE(6186), 1, + sym_with_expression, + STATE(6304), 1, + sym__iteration_scheme, + STATE(6305), 1, + sym_case_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6577), 1, + sym_loop_body, + STATE(7458), 1, + sym_assertion, + STATE(4332), 2, + sym__identifier, + sym__external_name, + STATE(6892), 2, + sym_while_loop, + sym_for_loop, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1444), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [96744] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1445), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 27, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2636), 35, sym__AND, - sym_BUS, + sym_GENERIC, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_REGISTER, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -125004,8 +126212,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -125016,32 +126225,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [96034] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [96804] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1440), 3, + STATE(1446), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 35, + ACTIONS(2610), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -125051,9 +126263,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -125070,49 +126282,57 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [96094] = 9, + [96864] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2334), 1, - anon_sym_LPAREN, - ACTIONS(3030), 1, - sym_PARAMETER, - STATE(1798), 1, - sym_parenthesis_group, - STATE(1441), 3, + ACTIONS(3002), 1, + sym_exponentiate, + STATE(565), 1, + sym_multiplying_operator, + STATE(566), 1, + sym_adding_operator, + STATE(671), 1, + sym_shift_operator, + STATE(672), 1, + sym_relational_operator, + STATE(673), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1447), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 32, + ACTIONS(2678), 27, + sym_AFTER, sym__AND, - sym_ELSE, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -125124,28 +126344,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [96160] = 6, + [96940] = 36, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1442), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(261), 1, + sym_CASE, + ACTIONS(267), 1, + sym_FOR, + ACTIONS(269), 1, + sym_IF, + ACTIONS(271), 1, + sym_LOOP, + ACTIONS(277), 1, + sym_REPORT, + ACTIONS(283), 1, + sym_WHILE, + ACTIONS(3038), 1, + sym_BLOCK, + ACTIONS(3040), 1, + sym_EXIT, + ACTIONS(3042), 1, + sym_NEXT, + ACTIONS(3044), 1, + sym_NULL, + ACTIONS(3046), 1, + sym_RETURN, + ACTIONS(3048), 1, + sym_WAIT, + STATE(3020), 1, + sym__direct_name, + STATE(5009), 1, + sym_if_statement, + STATE(5684), 1, + sym__target, + STATE(5795), 1, + sym_report_expression, + STATE(5820), 1, + sym_name, + STATE(6167), 1, + sym_with_expression, + STATE(6261), 1, + sym__iteration_scheme, + STATE(6262), 1, + sym_case_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6506), 1, + sym_loop_body, + STATE(7216), 1, + sym_assertion, + STATE(4332), 2, + sym__identifier, + sym__external_name, + STATE(6892), 2, + sym_while_loop, + sym_for_loop, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1448), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [97060] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1449), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 35, + ACTIONS(2576), 35, sym__AND, sym_GENERIC, sym_IS, @@ -125181,58 +126482,68 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [96220] = 14, + [97120] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3002), 1, + ACTIONS(3018), 1, sym_exponentiate, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, + ACTIONS(3020), 1, + sym_GENERATE, + STATE(459), 1, sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(5945), 1, + sym_generate_body, + STATE(6027), 1, + sym_generate_direct_block, + STATE(6588), 1, + sym_generate_head, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(1443), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1450), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 27, + ACTIONS(2704), 6, sym__AND, - sym_BUS, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -125240,47 +126551,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [96296] = 12, + [97210] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3002), 1, + ACTIONS(3016), 1, sym_exponentiate, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, + STATE(473), 1, sym_multiplying_operator, - STATE(587), 1, - sym_logical_operator, - STATE(598), 1, - sym_relational_operator, - STATE(599), 1, + STATE(474), 1, + sym_adding_operator, + STATE(484), 1, sym_shift_operator, - STATE(1444), 3, + STATE(486), 1, + sym_relational_operator, + STATE(487), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1451), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2716), 24, sym__AND, sym_BUS, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -125300,71 +126614,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [96368] = 21, + [97288] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, + ACTIONS(3016), 1, sym_exponentiate, - ACTIONS(2998), 1, - sym_GENERATE, - STATE(460), 1, + STATE(473), 1, sym_multiplying_operator, - STATE(479), 1, + STATE(474), 1, sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, + STATE(484), 1, sym_shift_operator, - STATE(5469), 1, - sym_generate_direct_block, - STATE(5651), 1, - sym_generate_body, - STATE(6398), 1, - sym_generate_head, - ACTIONS(2686), 2, + STATE(486), 1, + sym_relational_operator, + STATE(487), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1445), 3, + STATE(1452), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2712), 18, + sym__AND, + sym_BUS, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -125372,107 +126678,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [96458] = 27, + [97368] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6015), 1, - sym_process_head, - STATE(6232), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1446), 3, + ACTIONS(3016), 1, + sym_exponentiate, + STATE(473), 1, + sym_multiplying_operator, + STATE(474), 1, + sym_adding_operator, + STATE(484), 1, + sym_shift_operator, + STATE(486), 1, + sym_relational_operator, + STATE(487), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1453), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [96560] = 6, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 10, + sym__AND, + sym_BUS, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [97450] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1447), 3, + STATE(1454), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 35, + ACTIONS(2572), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -125482,9 +126778,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -125501,43 +126797,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [96620] = 12, + [97510] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3032), 1, - sym_exponentiate, - STATE(491), 1, - sym_multiplying_operator, - STATE(492), 1, - sym_adding_operator, - STATE(499), 1, - sym_shift_operator, - STATE(514), 1, - sym_relational_operator, - STATE(515), 1, - sym_logical_operator, - STATE(1448), 3, + STATE(1455), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2506), 35, sym__AND, - sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -125545,11 +126832,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -125561,25 +126848,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [96692] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [97570] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1449), 3, + STATE(1456), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 35, + ACTIONS(2370), 35, sym__AND, sym_GENERIC, sym_IS, @@ -125615,7 +126905,155 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [96752] = 27, + [97630] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3002), 1, + sym_exponentiate, + STATE(565), 1, + sym_multiplying_operator, + STATE(566), 1, + sym_adding_operator, + STATE(671), 1, + sym_shift_operator, + STATE(672), 1, + sym_relational_operator, + STATE(673), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1457), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2714), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 18, + sym_AFTER, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [97710] = 36, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(261), 1, + sym_CASE, + ACTIONS(267), 1, + sym_FOR, + ACTIONS(269), 1, + sym_IF, + ACTIONS(271), 1, + sym_LOOP, + ACTIONS(277), 1, + sym_REPORT, + ACTIONS(283), 1, + sym_WHILE, + ACTIONS(3050), 1, + sym_BLOCK, + ACTIONS(3052), 1, + sym_EXIT, + ACTIONS(3054), 1, + sym_NEXT, + ACTIONS(3056), 1, + sym_NULL, + ACTIONS(3058), 1, + sym_RETURN, + ACTIONS(3060), 1, + sym_WAIT, + STATE(3020), 1, + sym__direct_name, + STATE(5012), 1, + sym_if_statement, + STATE(5749), 1, + sym_report_expression, + STATE(5842), 1, + sym_name, + STATE(5864), 1, + sym__target, + STATE(6312), 1, + sym_aggregate, + STATE(6478), 1, + sym_with_expression, + STATE(6515), 1, + sym__iteration_scheme, + STATE(6521), 1, + sym_case_expression, + STATE(6564), 1, + sym_loop_body, + STATE(6829), 1, + sym_assertion, + STATE(4332), 2, + sym__identifier, + sym__external_name, + STATE(6892), 2, + sym_while_loop, + sym_for_loop, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1458), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [97830] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -125624,55 +127062,55 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(2227), 1, + ACTIONS(3062), 1, + sym_IS, + STATE(2353), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6016), 1, - sym_process_head, - STATE(6236), 1, + STATE(6553), 1, sym_sequential_block, + STATE(6565), 1, + sym_sequential_block_head, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1450), 3, + STATE(1459), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -125690,48 +127128,52 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [96854] = 6, + [97932] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1451), 3, + ACTIONS(3002), 1, + sym_exponentiate, + STATE(565), 1, + sym_multiplying_operator, + STATE(566), 1, + sym_adding_operator, + STATE(671), 1, + sym_shift_operator, + STATE(672), 1, + sym_relational_operator, + STATE(673), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1460), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2710), 35, - sym_identifier, - sym_AFTER, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -125740,50 +127182,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [96914] = 6, + ACTIONS(2710), 10, + sym_AFTER, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + [98014] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1452), 3, + STATE(565), 1, + sym_multiplying_operator, + STATE(566), 1, + sym_adding_operator, + STATE(671), 1, + sym_shift_operator, + STATE(672), 1, + sym_relational_operator, + STATE(673), 1, + sym_logical_operator, + STATE(1461), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 35, + ACTIONS(2678), 30, + sym_AFTER, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -125796,66 +127252,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [96974] = 18, + [98084] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3016), 1, + ACTIONS(2894), 1, sym_exponentiate, - STATE(571), 1, + STATE(441), 1, sym_logical_operator, - STATE(575), 1, + STATE(442), 1, sym_relational_operator, - STATE(576), 1, + STATE(448), 1, sym_shift_operator, - STATE(657), 1, - sym_multiplying_operator, - STATE(675), 1, + STATE(698), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(699), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1453), 3, + STATE(1462), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2678), 4, - sym_AFTER, - sym_WHEN, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(3064), 4, + sym_WHEN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -125864,44 +127318,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [97058] = 6, + [98168] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1454), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6477), 1, + sym_sequential_block, + STATE(6514), 1, + sym_process_head, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1463), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2572), 35, - sym__AND, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [98270] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1464), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2406), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2404), 35, + sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -125918,139 +127447,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [97118] = 27, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6112), 1, - sym_process_head, - STATE(6413), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1455), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [97220] = 18, + [98330] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2886), 1, - sym_exponentiate, - STATE(650), 1, - sym_shift_operator, - STATE(661), 1, - sym_relational_operator, - STATE(673), 1, - sym_logical_operator, - STATE(718), 1, - sym_adding_operator, - STATE(719), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1456), 3, + STATE(1465), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2793), 4, - sym_BUS, - sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2640), 35, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -126059,119 +127495,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [97304] = 27, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6104), 1, - sym_process_head, - STATE(6392), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1457), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [97406] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [98390] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1458), 3, + STATE(1466), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 35, + ACTIONS(2420), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -126188,112 +127555,82 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [97466] = 27, + [98450] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - ACTIONS(2994), 1, - sym_IS, - STATE(2361), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6103), 1, - sym_sequential_block_head, - STATE(6390), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1459), 3, + STATE(1467), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [97568] = 11, + ACTIONS(2724), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2722), 35, + sym_identifier, + sym__AND, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [98510] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, - sym_shift_operator, - STATE(657), 1, - sym_multiplying_operator, - STATE(675), 1, - sym_adding_operator, - STATE(1460), 3, + STATE(1468), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(3068), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 30, - sym_AFTER, + ACTIONS(3066), 34, sym__AND, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -126305,13 +127642,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -126322,37 +127661,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [97638] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [98570] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1461), 3, + STATE(1469), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 35, + ACTIONS(2466), 35, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -126376,37 +127717,37 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [97698] = 6, + [98630] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1462), 3, + STATE(1470), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 35, + ACTIONS(2474), 35, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -126430,61 +127771,121 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [97758] = 15, + [98690] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3032), 1, - sym_exponentiate, - STATE(491), 1, - sym_multiplying_operator, - STATE(492), 1, - sym_adding_operator, - STATE(499), 1, - sym_shift_operator, - STATE(514), 1, - sym_relational_operator, - STATE(515), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1463), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6209), 1, + sym_process_head, + STATE(6433), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1471), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [98792] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1472), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 35, sym__AND, - sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -126493,62 +127894,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [97836] = 16, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [98852] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3032), 1, - sym_exponentiate, - STATE(491), 1, - sym_multiplying_operator, - STATE(492), 1, - sym_adding_operator, - STATE(499), 1, - sym_shift_operator, - STATE(514), 1, - sym_relational_operator, - STATE(515), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1464), 3, + STATE(1473), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2424), 35, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 18, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym__OR, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -126557,52 +127948,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [97916] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [98912] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3032), 1, + ACTIONS(3016), 1, sym_exponentiate, - STATE(491), 1, + STATE(473), 1, sym_multiplying_operator, - STATE(492), 1, + STATE(474), 1, sym_adding_operator, - STATE(499), 1, + STATE(484), 1, sym_shift_operator, - STATE(514), 1, + STATE(486), 1, sym_relational_operator, - STATE(515), 1, + STATE(487), 1, sym_logical_operator, - ACTIONS(2686), 2, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1465), 3, + STATE(1474), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2696), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -126611,36 +128020,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 10, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym__OR, - sym_TO, - sym_UNITS, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - [97998] = 6, + [98996] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1466), 3, + STATE(1475), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 35, + ACTIONS(2420), 35, sym__AND, sym_GENERIC, sym_IS, @@ -126676,14 +128074,89 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [98058] = 6, + [99056] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1467), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3062), 1, + sym_IS, + STATE(2353), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6297), 1, + sym_sequential_block_head, + STATE(6563), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1476), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [99158] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1477), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -126697,8 +128170,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -126730,34 +128203,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [98118] = 6, + [99218] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1468), 3, + STATE(540), 1, + sym_shift_operator, + STATE(541), 1, + sym_relational_operator, + STATE(542), 1, + sym_logical_operator, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + STATE(1478), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 35, + ACTIONS(2688), 30, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -126768,8 +128249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -126782,44 +128262,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [98178] = 11, + [99288] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(482), 1, - sym_multiplying_operator, - STATE(483), 1, - sym_adding_operator, - STATE(650), 1, - sym_shift_operator, - STATE(661), 1, - sym_relational_operator, - STATE(673), 1, - sym_logical_operator, - STATE(1469), 3, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, + sym_PARAMETER, + STATE(1851), 1, + sym_parenthesis_group, + STATE(1479), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 30, + ACTIONS(2097), 32, sym__AND, - sym_BUS, + sym_FOR, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -126830,8 +128304,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -126843,49 +128317,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [98248] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [99354] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3004), 1, - sym_exponentiate, - STATE(482), 1, - sym_multiplying_operator, - STATE(483), 1, - sym_adding_operator, - STATE(650), 1, - sym_shift_operator, - STATE(661), 1, - sym_relational_operator, - STATE(673), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1470), 3, + STATE(1480), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 27, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2498), 35, sym__AND, - sym_BUS, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, + sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -126893,8 +128357,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -126905,54 +128370,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [98324] = 11, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [99414] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(482), 1, - sym_multiplying_operator, - STATE(483), 1, - sym_adding_operator, - STATE(650), 1, + ACTIONS(3072), 1, + sym_exponentiate, + STATE(540), 1, sym_shift_operator, - STATE(661), 1, + STATE(541), 1, sym_relational_operator, - STATE(673), 1, + STATE(542), 1, sym_logical_operator, - STATE(1471), 3, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1481), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2714), 30, + ACTIONS(2688), 27, sym__AND, - sym_BUS, - sym__MOD, + sym_DOWNTO, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_REGISTER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -126963,138 +128435,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [98394] = 36, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(261), 1, - sym_CASE, - ACTIONS(267), 1, - sym_FOR, - ACTIONS(269), 1, - sym_IF, - ACTIONS(271), 1, - sym_LOOP, - ACTIONS(277), 1, - sym_REPORT, - ACTIONS(283), 1, - sym_WHILE, - ACTIONS(3036), 1, - sym_BLOCK, - ACTIONS(3038), 1, - sym_EXIT, - ACTIONS(3040), 1, - sym_NEXT, - ACTIONS(3042), 1, - sym_NULL, - ACTIONS(3044), 1, - sym_RETURN, - ACTIONS(3046), 1, - sym_WAIT, - STATE(2920), 1, - sym__direct_name, - STATE(4879), 1, - sym_if_statement, - STATE(5592), 1, - sym_name, - STATE(5596), 1, - sym_report_expression, - STATE(5606), 1, - sym__target, - STATE(5991), 1, - sym_with_expression, - STATE(6083), 1, - sym_aggregate, - STATE(6100), 1, - sym__iteration_scheme, - STATE(6102), 1, - sym_case_expression, - STATE(6387), 1, - sym_loop_body, - STATE(7464), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - STATE(7089), 2, - sym_while_loop, - sym_for_loop, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1472), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [98514] = 11, + [99490] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(491), 1, + ACTIONS(3002), 1, + sym_exponentiate, + STATE(565), 1, sym_multiplying_operator, - STATE(492), 1, + STATE(566), 1, sym_adding_operator, - STATE(499), 1, + STATE(671), 1, sym_shift_operator, - STATE(514), 1, + STATE(672), 1, sym_relational_operator, - STATE(515), 1, + STATE(673), 1, sym_logical_operator, - STATE(1473), 3, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1482), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 30, + ACTIONS(2688), 27, + sym_AFTER, sym__AND, - sym_DOWNTO, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -127106,33 +128497,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [98584] = 6, + [99566] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1474), 3, + STATE(1483), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 35, + ACTIONS(2502), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -127142,9 +128532,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -127161,46 +128551,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [98644] = 14, + [99626] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3016), 1, - sym_exponentiate, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, - sym_shift_operator, - STATE(657), 1, + STATE(565), 1, sym_multiplying_operator, - STATE(675), 1, + STATE(566), 1, sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1475), 3, + STATE(671), 1, + sym_shift_operator, + STATE(672), 1, + sym_relational_operator, + STATE(673), 1, + sym_logical_operator, + STATE(1484), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 27, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 30, sym_AFTER, sym__AND, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -127223,32 +128609,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [98720] = 6, + sym_exponentiate, + [99696] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1476), 3, + STATE(1485), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, - anon_sym_EQ, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 34, + ACTIONS(2606), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -127259,12 +128648,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -127275,31 +128662,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [98780] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [99756] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1477), 3, + STATE(1486), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 35, + ACTIONS(2580), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -127331,29 +128718,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [98840] = 6, + [99816] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1478), 3, + STATE(1487), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 35, + ACTIONS(2670), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -127385,32 +128772,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [98900] = 6, + [99876] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1479), 3, + STATE(1488), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 35, + ACTIONS(2556), 35, sym__AND, + sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -127420,9 +128807,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -127439,46 +128826,64 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [98960] = 6, + [99936] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1480), 3, + ACTIONS(3002), 1, + sym_exponentiate, + STATE(565), 1, + sym_multiplying_operator, + STATE(566), 1, + sym_adding_operator, + STATE(671), 1, + sym_shift_operator, + STATE(672), 1, + sym_relational_operator, + STATE(673), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1489), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2696), 4, + sym_AFTER, + sym_WHEN, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2568), 35, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -127487,55 +128892,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [99020] = 9, + [100020] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2322), 1, - anon_sym_LPAREN, - ACTIONS(3048), 1, - sym_PARAMETER, - STATE(1702), 1, - sym_parenthesis_group, - STATE(1481), 3, + STATE(1490), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 32, + ACTIONS(2666), 35, sym__AND, + sym_DOWNTO, + sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -127550,29 +128946,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [99086] = 6, + [100080] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1482), 3, + STATE(1491), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 35, + ACTIONS(2636), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -127604,33 +129000,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [99146] = 6, + [100140] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1483), 3, + STATE(1492), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 35, + ACTIONS(2722), 35, sym_identifier, + sym_AFTER, sym__AND, - sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -127638,6 +129033,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, sym_library_constant, @@ -127645,8 +129041,8 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -127658,29 +129054,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [99206] = 6, + [100200] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1484), 3, + STATE(1493), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 35, + ACTIONS(2610), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -127712,104 +129108,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [99266] = 27, + [100260] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6013), 1, - sym_process_head, - STATE(6227), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1485), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [99368] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1486), 3, + STATE(1494), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 35, + ACTIONS(2576), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -127841,29 +129162,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [99428] = 6, + [100320] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1487), 3, + STATE(1495), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 35, + ACTIONS(2572), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -127895,32 +129216,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [99488] = 6, + [100380] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1488), 3, + STATE(1496), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 7, - anon_sym_EQ, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 34, + ACTIONS(2498), 35, sym__AND, - sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -127928,15 +129251,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -127947,108 +129268,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [99548] = 27, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6079), 1, - sym_process_head, - STATE(6337), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1489), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [99650] = 9, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [100440] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2163), 1, + ACTIONS(2127), 1, anon_sym_LPAREN, - ACTIONS(3054), 1, + ACTIONS(3074), 1, sym_PARAMETER, - STATE(1681), 1, + STATE(1835), 1, sym_parenthesis_group, - STATE(1490), 3, + STATE(1497), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 32, + ACTIONS(2097), 32, sym__AND, sym_GENERIC, sym__MOD, @@ -128081,35 +129327,50 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [99716] = 6, + [100506] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1491), 3, + ACTIONS(3076), 1, + sym_exponentiate, + STATE(535), 1, + sym_shift_operator, + STATE(536), 1, + sym_relational_operator, + STATE(537), 1, + sym_logical_operator, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1498), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2490), 35, + ACTIONS(2716), 24, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym_LOOP, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -128117,10 +129378,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -128129,31 +129390,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, + [100584] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3076), 1, + sym_exponentiate, + STATE(535), 1, + sym_shift_operator, + STATE(536), 1, + sym_relational_operator, + STATE(537), 1, + sym_logical_operator, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [99776] = 6, + STATE(1499), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2714), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 18, + sym__AND, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [100664] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1492), 3, + STATE(1500), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 35, + ACTIONS(2506), 35, sym__AND, sym_DOWNTO, sym_GENERATE, @@ -128189,34 +129508,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [99836] = 6, + [100724] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1493), 3, + STATE(540), 1, + sym_shift_operator, + STATE(541), 1, + sym_relational_operator, + STATE(542), 1, + sym_logical_operator, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + STATE(1501), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 35, + ACTIONS(2678), 30, sym__AND, - sym_GENERIC, - sym_IS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, + sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -128224,11 +129551,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -128241,105 +129567,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [99896] = 26, + [100794] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(221), 1, - sym_POSTPONED, - ACTIONS(223), 1, - sym_PROCESS, - STATE(1567), 1, - aux_sym_design_unit_repeat3, - STATE(2575), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(4172), 1, - sym__concurrent_statement, - STATE(5970), 1, - sym_with_expression, - STATE(6052), 1, - sym__target, - STATE(6083), 1, - sym_aggregate, - STATE(6202), 1, - sym_name, - STATE(6789), 1, - sym_assertion, - STATE(7523), 1, - sym__label, - ACTIONS(3056), 2, - sym_END, - sym_WHEN, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1494), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(13), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4164), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [99996] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1495), 3, + STATE(1502), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 35, + ACTIONS(2370), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -128371,29 +129621,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [100056] = 6, + [100854] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1496), 3, + STATE(1503), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 35, + ACTIONS(2502), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -128425,64 +129675,52 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [100116] = 18, + [100914] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3058), 1, + ACTIONS(3076), 1, sym_exponentiate, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, + STATE(535), 1, sym_shift_operator, - STATE(592), 1, + STATE(536), 1, sym_relational_operator, - STATE(593), 1, + STATE(537), 1, sym_logical_operator, - ACTIONS(2686), 2, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1497), 3, + STATE(1504), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2678), 4, - sym_DOWNTO, - sym_OF, - sym_TO, - anon_sym_COMMA, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -128491,35 +129729,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [100200] = 6, + ACTIONS(2710), 10, + sym__AND, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + [100996] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1498), 3, + ACTIONS(3072), 1, + sym_exponentiate, + STATE(540), 1, + sym_shift_operator, + STATE(541), 1, + sym_relational_operator, + STATE(542), 1, + sym_logical_operator, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1505), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2568), 35, + ACTIONS(2678), 27, sym__AND, sym_DOWNTO, - sym_GENERATE, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -128529,8 +129790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -128542,43 +129802,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [100260] = 9, + [101072] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3062), 1, - sym_library_constant_unit, - STATE(2514), 1, - sym__unit, - STATE(1499), 3, + ACTIONS(3072), 1, + sym_exponentiate, + STATE(540), 1, + sym_shift_operator, + STATE(541), 1, + sym_relational_operator, + STATE(542), 1, + sym_logical_operator, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + STATE(1506), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3060), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(2678), 29, sym__AND, - sym_IS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -128587,9 +129847,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -128601,47 +129862,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [100326] = 14, + [101144] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3032), 1, - sym_exponentiate, - STATE(491), 1, - sym_multiplying_operator, - STATE(492), 1, - sym_adding_operator, - STATE(499), 1, - sym_shift_operator, - STATE(514), 1, - sym_relational_operator, - STATE(515), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1500), 3, + STATE(1507), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 27, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2498), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -128649,10 +129898,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -128664,29 +129913,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [100402] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [101204] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1501), 3, + STATE(1508), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 35, + ACTIONS(2474), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -128718,29 +129970,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [100462] = 6, + [101264] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1502), 3, + STATE(1509), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 35, + ACTIONS(2466), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -128772,32 +130024,98 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [100522] = 6, + [101324] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1503), 3, + ACTIONS(3076), 1, + sym_exponentiate, + STATE(535), 1, + sym_shift_operator, + STATE(536), 1, + sym_relational_operator, + STATE(537), 1, + sym_logical_operator, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1510), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2696), 4, + sym_DOWNTO, + sym_TO, + sym_UNITS, + anon_sym_SEMI, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [101408] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1511), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 35, + ACTIONS(2474), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -128807,9 +130125,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -128826,34 +130144,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [100582] = 6, + [101468] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1504), 3, + ACTIONS(3080), 1, + sym_library_constant_unit, + STATE(2589), 1, + sym__unit, + STATE(1512), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(3078), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 35, + ACTIONS(2382), 29, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -128864,8 +130189,6 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -128878,27 +130201,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [100642] = 6, + [101534] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1505), 3, + STATE(1513), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 35, + ACTIONS(2450), 35, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -128934,34 +130255,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [100702] = 6, + [101594] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1506), 3, + STATE(1514), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(3084), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 35, + ACTIONS(3082), 34, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -128972,10 +130291,12 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -128986,27 +130307,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [100762] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [101654] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1507), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6296), 1, + sym_process_head, + STATE(6566), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1515), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [101756] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1516), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 35, + ACTIONS(2606), 35, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -129042,44 +130438,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [100822] = 6, + [101816] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1508), 3, + STATE(1517), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 35, + ACTIONS(2502), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -129096,37 +130492,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [100882] = 11, + [101876] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(491), 1, - sym_multiplying_operator, - STATE(492), 1, - sym_adding_operator, - STATE(499), 1, - sym_shift_operator, - STATE(514), 1, - sym_relational_operator, - STATE(515), 1, - sym_logical_operator, - STATE(1509), 3, + STATE(1518), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 30, + ACTIONS(2692), 35, + sym_identifier, + sym_AFTER, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -129138,11 +130525,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, + sym_WHEN, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -129155,29 +130546,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [100952] = 6, + [101936] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1510), 3, + STATE(1519), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 35, + ACTIONS(2378), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -129209,34 +130600,40 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101012] = 6, + [101996] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1511), 3, + ACTIONS(3088), 1, + sym_library_constant_unit, + STATE(2573), 1, + sym__unit, + STATE(1520), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3086), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 35, + ACTIONS(2382), 29, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -129244,12 +130641,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -129261,31 +130657,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [101072] = 6, + [102062] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1512), 3, + STATE(1521), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 35, + ACTIONS(2580), 35, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -129317,33 +130711,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101132] = 6, + [102122] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1513), 3, + STATE(1522), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 35, - sym_identifier, + ACTIONS(2670), 35, sym__AND, - sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -129351,15 +130746,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -129371,34 +130763,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [101192] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [102182] = 26, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1514), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(221), 1, + sym_POSTPONED, + ACTIONS(223), 1, + sym_PROCESS, + STATE(1614), 1, + aux_sym_design_unit_repeat3, + STATE(2690), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(4216), 1, + sym__concurrent_statement, + STATE(6163), 1, + sym_with_expression, + STATE(6248), 1, + sym__target, + STATE(6312), 1, + sym_aggregate, + STATE(6414), 1, + sym_name, + STATE(6940), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + ACTIONS(3090), 2, + sym_END, + sym_WHEN, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1523), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(13), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(4213), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [102282] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1524), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 35, + ACTIONS(2692), 35, + sym_identifier, sym__AND, - sym_GENERIC, - sym_IS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -129406,11 +130872,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -129423,111 +130893,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [101252] = 27, + [102342] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6028), 1, - sym_process_head, - STATE(6252), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1515), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [101354] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1516), 3, + STATE(1525), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(3094), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 35, + ACTIONS(3092), 34, sym__AND, - sym_GENERIC, - sym_IS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -129535,13 +130926,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -129552,30 +130945,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [101414] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [102402] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1517), 3, + STATE(1526), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 35, + ACTIONS(2374), 35, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -129583,15 +130974,17 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -129608,29 +131001,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101474] = 6, + [102462] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1518), 3, + STATE(1527), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 35, + ACTIONS(2556), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -129662,29 +131055,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101534] = 6, + [102522] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1519), 3, + STATE(1528), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 35, + ACTIONS(2466), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -129716,29 +131109,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101594] = 6, + [102582] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1520), 3, + STATE(1529), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 35, + ACTIONS(2636), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -129770,34 +131163,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101654] = 6, + [102642] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1521), 3, + STATE(1530), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 35, + ACTIONS(2722), 35, + sym_identifier, sym__AND, - sym_GENERIC, - sym_IS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -129805,11 +131196,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -129822,34 +131217,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [101714] = 6, + [102702] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1522), 3, + STATE(1531), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 35, + ACTIONS(2470), 35, sym__AND, + sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -129859,9 +131252,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -129878,25 +131271,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101774] = 6, + [102762] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1523), 3, + STATE(1532), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 35, + ACTIONS(2674), 35, sym__AND, sym_GENERIC, sym__MOD, @@ -129932,37 +131325,37 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101834] = 6, + [102822] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1524), 3, + STATE(1533), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 35, + ACTIONS(2606), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -129986,37 +131379,37 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101894] = 6, + [102882] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1525), 3, + STATE(1534), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 35, + ACTIONS(2404), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -130040,44 +131433,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [101954] = 6, + [102942] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1526), 3, + STATE(1535), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 35, + ACTIONS(2610), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -130094,32 +131487,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [102014] = 6, + [103002] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1527), 3, + ACTIONS(3096), 1, + sym_exponentiate, + STATE(545), 1, + sym_shift_operator, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, + sym_multiplying_operator, + STATE(656), 1, + sym_adding_operator, + STATE(1536), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 35, - sym_identifier, + ACTIONS(2678), 29, sym__AND, - sym_DOWNTO, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -130127,16 +131532,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -130147,48 +131547,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [102074] = 6, + [103074] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1528), 3, + ACTIONS(3096), 1, + sym_exponentiate, + STATE(545), 1, + sym_shift_operator, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, + sym_multiplying_operator, + STATE(656), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1537), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2572), 35, + ACTIONS(2678), 27, sym__AND, - sym_DOWNTO, - sym_GENERATE, - sym_GENERIC, - sym__MOD, + sym_BUS, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym_REGISTER, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -130199,32 +131609,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [102134] = 6, + [103150] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1529), 3, + STATE(1538), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 35, + ACTIONS(2576), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -130256,41 +131663,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [102194] = 11, + [103210] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, - sym_shift_operator, - STATE(657), 1, - sym_multiplying_operator, - STATE(675), 1, - sym_adding_operator, - STATE(1530), 3, + STATE(1539), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 30, - sym_AFTER, + ACTIONS(2466), 35, sym__AND, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -130298,11 +131698,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -130315,32 +131715,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [102264] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [103270] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1531), 3, + STATE(1540), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 35, + ACTIONS(2572), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -130350,9 +131752,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -130369,34 +131771,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [102324] = 6, + [103330] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1532), 3, + STATE(545), 1, + sym_shift_operator, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, + sym_multiplying_operator, + STATE(656), 1, + sym_adding_operator, + STATE(1541), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 35, + ACTIONS(2678), 30, sym__AND, - sym_DOWNTO, - sym_GENERATE, - sym_GENERIC, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -130404,12 +131814,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -130421,34 +131830,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [102384] = 6, + [103400] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1533), 3, + STATE(1542), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 35, + ACTIONS(2506), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -130458,9 +131865,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -130477,32 +131884,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [102444] = 6, + [103460] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1534), 3, + STATE(1543), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 7, - anon_sym_EQ, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 34, + ACTIONS(2370), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -130513,12 +131922,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -130529,101 +131936,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [102504] = 17, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [103520] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3016), 1, - sym_exponentiate, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, + STATE(535), 1, sym_shift_operator, - STATE(657), 1, - sym_multiplying_operator, - STATE(675), 1, + STATE(536), 1, + sym_relational_operator, + STATE(537), 1, + sym_logical_operator, + STATE(649), 1, sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1535), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 10, - sym_AFTER, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - [102586] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1536), 3, + STATE(650), 1, + sym_multiplying_operator, + STATE(1544), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 35, + ACTIONS(2688), 30, sym__AND, sym_DOWNTO, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -130632,10 +131981,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -130648,35 +131997,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [102646] = 6, + [103590] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1537), 3, + ACTIONS(3076), 1, + sym_exponentiate, + STATE(535), 1, + sym_shift_operator, + STATE(536), 1, + sym_relational_operator, + STATE(537), 1, + sym_logical_operator, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1545), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2704), 35, - sym_identifier, + ACTIONS(2688), 27, sym__AND, sym_DOWNTO, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -130687,10 +132047,6 @@ static const uint16_t ts_small_parse_table[] = { sym_UNITS, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, @@ -130703,44 +132059,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [102706] = 12, + [103666] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3058), 1, - sym_exponentiate, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, - sym_shift_operator, - STATE(592), 1, - sym_relational_operator, - STATE(593), 1, - sym_logical_operator, - STATE(1538), 3, + STATE(1546), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2430), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2428), 34, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -130752,9 +132095,12 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -130764,63 +132110,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [102778] = 16, + sym_exponentiate, + anon_sym_GT_GT, + anon_sym_PIPE, + [103726] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3016), 1, + ACTIONS(3096), 1, sym_exponentiate, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, + STATE(545), 1, sym_shift_operator, - STATE(657), 1, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, sym_multiplying_operator, - STATE(675), 1, + STATE(656), 1, sym_adding_operator, - ACTIONS(2686), 2, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1539), 3, + STATE(1547), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2688), 27, + sym__AND, + sym_BUS, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 18, - sym_AFTER, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -130828,37 +132172,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [102858] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [103802] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1540), 3, + STATE(545), 1, + sym_shift_operator, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, + sym_multiplying_operator, + STATE(656), 1, + sym_adding_operator, + STATE(1548), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 35, + ACTIONS(2688), 30, sym__AND, - sym_GENERIC, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, + sym_REGISTER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -130866,9 +132221,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -130880,31 +132234,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [102918] = 6, + [103872] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1541), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6230), 1, + sym_process_head, + STATE(6449), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1549), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [103974] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1550), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 35, + ACTIONS(2528), 35, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -130936,95 +132363,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [102978] = 15, + [104034] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3016), 1, - sym_exponentiate, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, - sym_shift_operator, - STATE(657), 1, - sym_multiplying_operator, - STATE(675), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1542), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2702), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2700), 24, - sym_AFTER, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [103056] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1543), 3, + STATE(1551), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 35, + ACTIONS(2502), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -131034,9 +132398,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -131053,103 +132417,115 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [103116] = 14, + [104094] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3058), 1, - sym_exponentiate, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, - sym_shift_operator, - STATE(592), 1, - sym_relational_operator, - STATE(593), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1544), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6239), 1, + sym_process_head, + STATE(6462), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1552), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2672), 27, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym_OF, - sym__OR, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [103192] = 11, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [104196] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, + STATE(535), 1, sym_shift_operator, - STATE(592), 1, + STATE(536), 1, sym_relational_operator, - STATE(593), 1, + STATE(537), 1, sym_logical_operator, - STATE(1545), 3, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + STATE(1553), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 30, + ACTIONS(2678), 30, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -131159,9 +132535,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -131174,58 +132551,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [103262] = 14, + [104266] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3016), 1, - sym_exponentiate, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, - sym_shift_operator, - STATE(657), 1, - sym_multiplying_operator, - STATE(675), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1546), 3, + STATE(1554), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 27, - sym_AFTER, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2722), 35, + sym_identifier, sym__AND, + sym_BUS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -131236,29 +132604,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [103338] = 6, + sym_exponentiate, + [104326] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1547), 3, + STATE(1555), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 35, + ACTIONS(2498), 35, sym__AND, sym_DOWNTO, sym_GENERIC, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -131290,25 +132659,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [103398] = 6, + [104386] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1548), 3, + STATE(1556), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 35, + ACTIONS(2474), 35, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -131344,215 +132713,51 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [103458] = 12, + [104446] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3016), 1, + ACTIONS(3072), 1, sym_exponentiate, - STATE(571), 1, - sym_logical_operator, - STATE(575), 1, - sym_relational_operator, - STATE(576), 1, + STATE(540), 1, sym_shift_operator, - STATE(657), 1, - sym_multiplying_operator, - STATE(675), 1, - sym_adding_operator, - STATE(1549), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2674), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 29, - sym_AFTER, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [103530] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, + STATE(541), 1, sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, + STATE(542), 1, + sym_logical_operator, + STATE(544), 1, sym_adding_operator, - STATE(545), 1, + STATE(554), 1, sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1550), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(3068), 4, - sym_WHEN, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [103614] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1551), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2546), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 35, - sym__AND, - sym_GENERIC, - sym_IS, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, - sym_PARAMETER, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [103674] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1552), 3, + STATE(1557), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2396), 35, + ACTIONS(2716), 24, sym__AND, sym_DOWNTO, - sym_GENERATE, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -131562,8 +132767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -131572,185 +132776,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [103734] = 27, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - ACTIONS(2994), 1, - sym_IS, - STATE(2361), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6094), 1, - sym_sequential_block_head, - STATE(6371), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1553), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [103836] = 27, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6093), 1, - sym_process_head, - STATE(6374), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(1554), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [103938] = 6, + [104524] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1555), 3, + STATE(1558), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 35, + ACTIONS(2378), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -131782,61 +132830,52 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [103998] = 17, + [104584] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3058), 1, + ACTIONS(3072), 1, sym_exponentiate, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, + STATE(540), 1, sym_shift_operator, - STATE(592), 1, + STATE(541), 1, sym_relational_operator, - STATE(593), 1, + STATE(542), 1, sym_logical_operator, - ACTIONS(2686), 2, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1556), 3, + STATE(1559), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 10, + ACTIONS(2712), 18, sym__AND, sym_DOWNTO, sym__NAND, @@ -131847,46 +132886,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_COMMA, - [104080] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1557), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2436), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2434), 35, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -131895,41 +132894,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [104140] = 6, + [104664] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1558), 3, + ACTIONS(3076), 1, + sym_exponentiate, + STATE(535), 1, + sym_shift_operator, + STATE(536), 1, + sym_relational_operator, + STATE(537), 1, + sym_logical_operator, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1560), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2450), 35, + ACTIONS(2678), 27, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -131937,10 +132941,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -131952,28 +132956,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [104200] = 6, + [104740] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1559), 3, + STATE(1561), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 35, + ACTIONS(2470), 35, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -132009,34 +133010,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [104260] = 6, + [104800] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1560), 3, + STATE(1562), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(3100), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 35, + ACTIONS(3098), 34, sym__AND, sym_DOWNTO, - sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -132047,10 +133046,12 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -132061,92 +133062,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [104320] = 16, + anon_sym_GT_GT, + anon_sym_PIPE, + [104860] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3058), 1, + ACTIONS(3076), 1, sym_exponentiate, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, + STATE(535), 1, sym_shift_operator, - STATE(592), 1, + STATE(536), 1, sym_relational_operator, - STATE(593), 1, + STATE(537), 1, sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1561), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2698), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 18, - sym__AND, - sym_DOWNTO, - sym__NAND, - sym__NOR, - sym_OF, - sym__OR, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [104400] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1562), 3, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + STATE(1563), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 7, - anon_sym_EQ, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 34, + ACTIONS(2678), 29, sym__AND, sym_DOWNTO, sym__MOD, @@ -132161,14 +133109,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -132178,65 +133124,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [104460] = 15, + [104932] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3058), 1, - sym_exponentiate, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, - sym_shift_operator, - STATE(592), 1, - sym_relational_operator, - STATE(593), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1563), 3, + STATE(1564), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2692), 35, + sym_identifier, sym__AND, - sym_DOWNTO, + sym_BUS, + sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -132244,29 +133174,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [104538] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [104992] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1564), 3, + STATE(1565), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 35, + ACTIONS(2614), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -132298,29 +133232,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [104598] = 6, + [105052] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1565), 3, + STATE(1566), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 35, + ACTIONS(2404), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -132352,32 +133286,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [104658] = 6, + [105112] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1566), 3, + STATE(1567), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 35, + ACTIONS(2662), 35, sym__AND, + sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -132387,9 +133321,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -132406,80 +133340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [104718] = 25, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(684), 1, - anon_sym_LPAREN, - ACTIONS(687), 1, - anon_sym_LT_LT, - ACTIONS(695), 1, - sym_ASSERT, - ACTIONS(704), 1, - sym_WITH, - ACTIONS(3070), 1, - sym_POSTPONED, - ACTIONS(3073), 1, - sym_PROCESS, - STATE(2575), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(4172), 1, - sym__concurrent_statement, - STATE(5970), 1, - sym_with_expression, - STATE(6052), 1, - sym__target, - STATE(6083), 1, - sym_aggregate, - STATE(6202), 1, - sym_name, - STATE(6789), 1, - sym_assertion, - STATE(7523), 1, - sym__label, - ACTIONS(693), 2, - sym_END, - sym_WHEN, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(707), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(690), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(1567), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_design_unit_repeat3, - STATE(4164), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [104816] = 6, + [105172] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -132490,18 +133351,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 35, + ACTIONS(2674), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -132533,7 +133394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [104876] = 6, + [105232] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -132544,18 +133405,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 35, + ACTIONS(2374), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -132587,7 +133448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [104936] = 6, + [105292] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -132598,18 +133459,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 35, + ACTIONS(2420), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -132641,7 +133502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [104996] = 6, + [105352] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -132652,14 +133513,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 35, + ACTIONS(2640), 35, sym__AND, sym_DOWNTO, sym_GENERATE, @@ -132695,46 +133556,52 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105056] = 6, + [105412] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3072), 1, + sym_exponentiate, + STATE(540), 1, + sym_shift_operator, + STATE(541), 1, + sym_relational_operator, + STATE(542), 1, + sym_logical_operator, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1572), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2618), 35, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -132743,13 +133610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [105116] = 6, + ACTIONS(2710), 10, + sym__AND, + sym_DOWNTO, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + [105494] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -132760,18 +133632,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 35, + ACTIONS(2424), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -132803,7 +133675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105176] = 6, + [105554] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -132814,18 +133686,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 35, + ACTIONS(2528), 35, sym__AND, sym_DOWNTO, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -132857,7 +133729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105236] = 6, + [105614] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -132868,14 +133740,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 35, + ACTIONS(2378), 35, sym__AND, sym_GENERIC, sym_IS, @@ -132911,100 +133783,64 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105296] = 6, + [105674] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1576), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2542), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(3072), 1, + sym_exponentiate, + STATE(540), 1, + sym_shift_operator, + STATE(541), 1, + sym_relational_operator, + STATE(542), 1, + sym_logical_operator, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 35, - sym__AND, - sym_DOWNTO, - sym_GENERATE, - sym_GENERIC, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [105356] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1577), 3, + STATE(1576), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2696), 4, + sym_DOWNTO, + sym_OF, + sym_TO, + anon_sym_COMMA, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2396), 35, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, - sym_REPORT, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -133013,38 +133849,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [105416] = 6, + [105758] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1578), 3, + STATE(1577), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 35, + ACTIONS(2470), 35, sym__AND, - sym_DOWNTO, sym_GENERIC, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -133054,9 +133884,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -133073,47 +133903,137 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105476] = 6, + [105818] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1579), 3, - sym__tool_directive, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3062), 1, + sym_IS, + STATE(2353), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6264), 1, + sym_sequential_block_head, + STATE(6299), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1578), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [105920] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3096), 1, + sym_exponentiate, + STATE(545), 1, + sym_shift_operator, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, + sym_multiplying_operator, + STATE(656), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1579), 3, + sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2490), 35, + ACTIONS(2716), 24, sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, + sym_BUS, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym_REGISTER, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -133121,13 +134041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [105536] = 6, + [105998] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -133138,14 +134052,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 35, + ACTIONS(2602), 35, sym__AND, sym_DOWNTO, sym_GENERATE, @@ -133181,34 +134095,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105596] = 6, + [106058] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3104), 1, + sym_library_constant_unit, + STATE(2546), 1, + sym__unit, STATE(1581), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(3102), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 35, + ACTIONS(2382), 29, sym__AND, - sym_GENERIC, - sym_IS, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -133216,11 +134137,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -133233,49 +134152,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [105656] = 6, + [106124] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3096), 1, + sym_exponentiate, + STATE(545), 1, + sym_shift_operator, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, + sym_multiplying_operator, + STATE(656), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1582), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2540), 35, - sym__AND, - sym_DOWNTO, - sym_GENERIC, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, + ACTIONS(2712), 18, + sym__AND, + sym_BUS, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -133283,34 +134216,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, + [106204] = 17, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3096), 1, + sym_exponentiate, + STATE(545), 1, + sym_shift_operator, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, + sym_multiplying_operator, + STATE(656), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [105716] = 6, + STATE(1583), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 10, + sym__AND, + sym_BUS, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + sym_variable_assignment, + [106286] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1583), 3, + STATE(1584), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 35, + ACTIONS(2662), 35, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -133318,15 +134308,17 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -133343,48 +134335,48 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105776] = 6, + [106346] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1584), 3, + STATE(1585), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 7, - anon_sym_EQ, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 34, + ACTIONS(2370), 35, sym__AND, - sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -133395,27 +134387,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [105836] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [106406] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1585), 3, + STATE(1586), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 35, + ACTIONS(2506), 35, sym__AND, sym_GENERIC, sym__MOD, @@ -133451,25 +134443,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105896] = 6, + [106466] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1586), 3, + STATE(1587), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 35, + ACTIONS(2614), 35, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -133505,32 +134497,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [105956] = 6, + [106526] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1587), 3, + STATE(1588), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 7, - anon_sym_EQ, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 34, + ACTIONS(2404), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -133541,12 +134535,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -133557,39 +134549,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [106016] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [106586] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1588), 3, + STATE(1589), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 35, + ACTIONS(2404), 35, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -133613,29 +134605,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [106076] = 6, + [106646] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1589), 3, + STATE(1590), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 35, + ACTIONS(2662), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -133667,7 +134659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [106136] = 27, + [106706] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -133676,55 +134668,55 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2908), 1, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - ACTIONS(2994), 1, - sym_IS, - STATE(2361), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6339), 1, - sym_sequential_block_head, - STATE(6426), 1, + STATE(6471), 1, sym_sequential_block, + STATE(6472), 1, + sym_process_head, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1590), 3, + STATE(1591), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -133742,61 +134734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [106238] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1591), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3086), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3084), 34, - sym__AND, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [106298] = 6, + [106808] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -133807,21 +134745,23 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 7, - anon_sym_EQ, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 34, + ACTIONS(2674), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -133832,12 +134772,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -133848,87 +134786,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [106358] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [106868] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6205), 1, + sym_process_head, + STATE(6429), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, STATE(1593), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3092), 34, - sym__AND, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [106418] = 6, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [106970] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(3106), 1, + sym_PARAMETER, + STATE(1760), 1, + sym_parenthesis_group, STATE(1594), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 7, - anon_sym_EQ, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 34, + ACTIONS(2097), 32, sym__AND, - sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -133937,15 +134902,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -133956,49 +134918,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [106478] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [107036] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3058), 1, - sym_exponentiate, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, - sym_shift_operator, - STATE(592), 1, - sym_relational_operator, - STATE(593), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, STATE(1595), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 27, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -134008,7 +134958,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -134020,7 +134971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [106554] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [107096] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134031,33 +134985,33 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 35, + ACTIONS(2420), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -134074,34 +135028,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [106614] = 6, + [107156] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3110), 1, + sym_library_constant_unit, + STATE(2547), 1, + sym__unit, STATE(1597), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(3108), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 35, + ACTIONS(2382), 29, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -134109,11 +135070,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -134126,9 +135085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [106674] = 6, + [107222] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134139,33 +135096,33 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 35, + ACTIONS(2640), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -134182,7 +135139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [106734] = 6, + [107282] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134193,33 +135150,33 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 35, + ACTIONS(2424), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -134236,7 +135193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [106794] = 6, + [107342] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134247,33 +135204,33 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 35, + ACTIONS(2602), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -134290,7 +135247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [106854] = 6, + [107402] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134301,7 +135258,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 7, + ACTIONS(3114), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -134309,7 +135266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 34, + ACTIONS(3112), 34, sym__AND, sym_DOWNTO, sym__MOD, @@ -134344,82 +135301,73 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_GT_GT, anon_sym_PIPE, - [106914] = 27, + [107462] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2896), 1, - sym_BEGIN, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2906), 1, - sym_IS, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - STATE(2227), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - STATE(6065), 1, - sym_process_head, - STATE(6327), 1, - sym_sequential_block, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, + ACTIONS(3096), 1, + sym_exponentiate, + STATE(545), 1, + sym_shift_operator, + STATE(546), 1, + sym_relational_operator, + STATE(547), 1, + sym_logical_operator, + STATE(653), 1, + sym_multiplying_operator, + STATE(656), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1602), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [107016] = 6, + ACTIONS(2696), 4, + sym_BUS, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [107546] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134430,18 +135378,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 35, + ACTIONS(2450), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -134473,34 +135421,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107076] = 6, + [107606] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3118), 1, + sym_library_constant_unit, + STATE(2565), 1, + sym__unit, STATE(1604), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(3116), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 35, + ACTIONS(2382), 29, sym__AND, sym_DOWNTO, - sym_GENERATE, - sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -134511,8 +135466,6 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -134525,34 +135478,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [107136] = 6, + [107672] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3122), 1, + sym_library_constant_unit, + STATE(2580), 1, + sym__unit, STATE(1605), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(3120), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 35, + ACTIONS(2382), 29, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym_REPORT, sym__ROL, @@ -134565,8 +135523,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -134579,9 +135535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [107196] = 6, + [107738] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134592,14 +135546,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 35, + ACTIONS(2528), 35, sym__AND, sym_GENERIC, sym__MOD, @@ -134635,7 +135589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107256] = 6, + [107798] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134646,21 +135600,21 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 35, + ACTIONS(2528), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -134670,9 +135624,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -134689,125 +135643,88 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107316] = 36, + [107858] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(261), 1, - sym_CASE, - ACTIONS(267), 1, - sym_FOR, - ACTIONS(269), 1, - sym_IF, - ACTIONS(271), 1, - sym_LOOP, - ACTIONS(277), 1, - sym_REPORT, - ACTIONS(283), 1, - sym_WHILE, - ACTIONS(3104), 1, - sym_BLOCK, - ACTIONS(3106), 1, - sym_EXIT, - ACTIONS(3108), 1, - sym_NEXT, - ACTIONS(3110), 1, - sym_NULL, - ACTIONS(3112), 1, - sym_RETURN, - ACTIONS(3114), 1, - sym_WAIT, - STATE(2920), 1, - sym__direct_name, - STATE(4809), 1, - sym_if_statement, - STATE(5451), 1, - sym_report_expression, - STATE(5468), 1, - sym_name, - STATE(5632), 1, - sym__target, - STATE(5975), 1, - sym_with_expression, - STATE(6061), 1, - sym__iteration_scheme, - STATE(6062), 1, - sym_case_expression, - STATE(6083), 1, - sym_aggregate, - STATE(6318), 1, - sym_loop_body, - STATE(7141), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - STATE(7089), 2, - sym_while_loop, - sym_for_loop, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, STATE(1608), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [107436] = 9, + ACTIONS(2452), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2450), 35, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym_REPORT, + sym__ROL, + sym__ROR, + sym_SEVERITY, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [107918] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3118), 1, - sym_library_constant_unit, - STATE(2530), 1, - sym__unit, STATE(1609), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3116), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(2602), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -134818,6 +135735,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -134830,7 +135749,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [107502] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [107978] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134841,18 +135762,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 35, + ACTIONS(2606), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -134884,7 +135805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107562] = 6, + [108038] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134895,21 +135816,21 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 35, + ACTIONS(2580), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -134919,9 +135840,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -134938,7 +135859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107622] = 6, + [108098] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -134949,18 +135870,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 35, + ACTIONS(2640), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -134992,42 +135913,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107682] = 11, + [108158] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, - sym_adding_operator, - STATE(579), 1, - sym_shift_operator, - STATE(592), 1, - sym_relational_operator, - STATE(593), 1, - sym_logical_operator, STATE(1613), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 30, + ACTIONS(2614), 35, sym__AND, - sym_DOWNTO, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OF, + sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -135035,10 +135948,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -135051,44 +135965,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [107752] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [108218] = 25, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1614), 3, + ACTIONS(694), 1, + anon_sym_LPAREN, + ACTIONS(697), 1, + anon_sym_LT_LT, + ACTIONS(705), 1, + sym_ASSERT, + ACTIONS(714), 1, + sym_WITH, + ACTIONS(3124), 1, + sym_POSTPONED, + ACTIONS(3127), 1, + sym_PROCESS, + STATE(2690), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(4216), 1, + sym__concurrent_statement, + STATE(6163), 1, + sym_with_expression, + STATE(6248), 1, + sym__target, + STATE(6312), 1, + sym_aggregate, + STATE(6414), 1, + sym_name, + STATE(6940), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + ACTIONS(703), 2, + sym_END, + sym_WHEN, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(717), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(700), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(1614), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + aux_sym_design_unit_repeat3, + STATE(4213), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [108316] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1615), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 35, + ACTIONS(2670), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -135105,25 +136094,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107812] = 6, + [108376] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1615), 3, + STATE(1616), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 35, + ACTIONS(2606), 35, sym__AND, sym_GENERIC, sym__MOD, @@ -135159,44 +136148,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107872] = 6, + [108436] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1616), 3, + STATE(1617), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 35, + ACTIONS(2374), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -135213,28 +136202,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107932] = 6, + [108496] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1617), 3, + STATE(1618), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 35, + ACTIONS(2572), 35, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -135242,15 +136229,17 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -135267,28 +136256,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [107992] = 6, + [108556] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1618), 3, + STATE(1619), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 35, + ACTIONS(2614), 35, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -135296,15 +136283,17 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -135321,37 +136310,37 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [108052] = 6, + [108616] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1619), 3, + STATE(1620), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 35, + ACTIONS(2576), 35, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -135375,48 +136364,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [108112] = 6, + [108676] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1620), 3, + STATE(1621), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 35, - sym_identifier, + ACTIONS(2610), 35, sym__AND, - sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -135429,64 +136416,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [108172] = 18, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [108736] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3032), 1, - sym_exponentiate, - STATE(491), 1, - sym_multiplying_operator, - STATE(492), 1, - sym_adding_operator, - STATE(499), 1, - sym_shift_operator, - STATE(514), 1, - sym_relational_operator, - STATE(515), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1621), 3, + STATE(1622), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2678), 4, - sym_DOWNTO, - sym_TO, - sym_UNITS, - anon_sym_SEMI, - ACTIONS(2682), 4, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2556), 35, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym_LOOP, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -135495,52 +136466,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [108256] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [108796] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3004), 1, + ACTIONS(3018), 1, sym_exponentiate, - STATE(482), 1, + ACTIONS(3020), 1, + sym_GENERATE, + STATE(459), 1, sym_multiplying_operator, - STATE(483), 1, + STATE(460), 1, sym_adding_operator, - STATE(650), 1, + STATE(654), 1, sym_shift_operator, - STATE(661), 1, + STATE(655), 1, sym_relational_operator, - STATE(673), 1, + STATE(657), 1, sym_logical_operator, - ACTIONS(2686), 2, + STATE(5770), 1, + sym_generate_body, + STATE(6027), 1, + sym_generate_direct_block, + STATE(6588), 1, + sym_generate_head, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1622), 3, + STATE(1623), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -135549,18 +136541,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 10, + [108886] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1624), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2668), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2666), 35, sym__AND, - sym_BUS, + sym_DOWNTO, + sym_GENERIC, + sym_LOOP, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - sym_variable_assignment, - [108338] = 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [108946] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -135569,55 +136604,55 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2906), 1, + ACTIONS(2912), 1, sym_IS, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(2227), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6308), 1, - sym_sequential_block, - STATE(6312), 1, + STATE(6250), 1, sym_process_head, + STATE(6497), 1, + sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1623), 3, + STATE(1625), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -135635,37 +136670,37 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [108440] = 6, + [109048] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1624), 3, + STATE(1626), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 35, + ACTIONS(2470), 35, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -135689,29 +136724,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [108500] = 6, + [109108] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1625), 3, + STATE(1627), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 35, + ACTIONS(2636), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -135743,61 +136778,82 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [108560] = 6, + [109168] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1626), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3062), 1, + sym_IS, + STATE(2353), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6253), 1, + sym_sequential_block_head, + STATE(6496), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1628), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2544), 35, - sym__AND, - sym_DOWNTO, - sym_GENERATE, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [108620] = 27, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [109270] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -135806,55 +136862,55 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2908), 1, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - ACTIONS(2994), 1, - sym_IS, - STATE(2361), 1, + STATE(2322), 1, aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - STATE(6064), 1, - sym_sequential_block_head, - STATE(6325), 1, + STATE(6198), 1, + sym_process_head, + STATE(6311), 1, sym_sequential_block, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(1627), 3, + STATE(1629), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -135872,33 +136928,34 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [108722] = 6, + [109372] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1628), 3, + STATE(1630), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 35, - sym_identifier, + ACTIONS(2610), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -135909,11 +136966,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -135926,116 +136980,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [108782] = 36, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(261), 1, - sym_CASE, - ACTIONS(267), 1, - sym_FOR, - ACTIONS(269), 1, - sym_IF, - ACTIONS(271), 1, - sym_LOOP, - ACTIONS(277), 1, - sym_REPORT, - ACTIONS(283), 1, - sym_WHILE, - ACTIONS(3120), 1, - sym_BLOCK, - ACTIONS(3122), 1, - sym_EXIT, - ACTIONS(3124), 1, - sym_NEXT, - ACTIONS(3126), 1, - sym_NULL, - ACTIONS(3128), 1, - sym_RETURN, - ACTIONS(3130), 1, - sym_WAIT, - STATE(2920), 1, - sym__direct_name, - STATE(4853), 1, - sym_if_statement, - STATE(5453), 1, - sym__target, - STATE(5455), 1, - sym_name, - STATE(5470), 1, - sym_report_expression, - STATE(6083), 1, - sym_aggregate, - STATE(6350), 1, - sym_loop_body, - STATE(6354), 1, - sym_case_expression, - STATE(6357), 1, - sym__iteration_scheme, - STATE(6360), 1, - sym_with_expression, - STATE(6572), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - STATE(7089), 2, - sym_while_loop, - sym_for_loop, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1629), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [108902] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [109432] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1630), 3, + STATE(1631), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 35, + ACTIONS(2576), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -136045,9 +137017,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -136064,46 +137036,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [108962] = 14, + [109492] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3032), 1, - sym_exponentiate, - STATE(491), 1, - sym_multiplying_operator, - STATE(492), 1, - sym_adding_operator, - STATE(499), 1, - sym_shift_operator, - STATE(514), 1, - sym_relational_operator, - STATE(515), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1631), 3, + STATE(1632), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 27, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2572), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, + sym_LOOP, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -136111,10 +137072,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -136126,29 +137087,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [109038] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [109552] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1632), 3, + STATE(1633), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 35, + ACTIONS(2506), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -136180,29 +137144,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109098] = 6, + [109612] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1633), 3, + STATE(1634), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 35, + ACTIONS(2370), 35, sym__AND, sym_DOWNTO, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -136234,27 +137198,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109158] = 6, + [109672] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1634), 3, + STATE(1635), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 34, + ACTIONS(2502), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -136267,10 +137233,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -136287,28 +137252,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109217] = 6, + [109732] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1635), 3, + STATE(1636), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 34, + ACTIONS(2498), 35, sym__AND, - sym_FOR, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -136321,9 +137287,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -136340,52 +137306,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109276] = 17, + [109792] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3132), 1, - sym_exponentiate, - STATE(430), 1, - sym_multiplying_operator, - STATE(431), 1, - sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1636), 3, + STATE(1637), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2580), 35, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -136394,53 +137354,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 9, - sym__AND, - sym_DOWNTO, - sym_IS, - sym__NAND, - sym__NOR, - sym__OR, - sym_TO, - sym__XNOR, - sym__XOR, - [109357] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [109852] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1637), 3, + STATE(1638), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 34, + ACTIONS(2670), 35, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -136457,31 +137414,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109416] = 6, + [109912] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1638), 3, + STATE(1639), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 34, + ACTIONS(2474), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -136491,9 +137449,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -136510,47 +137468,67 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109475] = 6, + [109972] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1639), 3, + ACTIONS(3018), 1, + sym_exponentiate, + ACTIONS(3020), 1, + sym_GENERATE, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(5765), 1, + sym_generate_body, + STATE(6027), 1, + sym_generate_direct_block, + STATE(6588), 1, + sym_generate_head, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1640), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2710), 34, - sym_identifier, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, - sym_LOOP, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -136559,63 +137537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [109534] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1640), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3134), 40, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_END, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [109591] = 6, + [110062] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -136626,16 +137548,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 34, + ACTIONS(2466), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -136644,14 +137568,13 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -136668,7 +137591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109650] = 6, + [110122] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -136679,16 +137602,18 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 34, + ACTIONS(2378), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -136697,14 +137622,13 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -136721,61 +137645,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109709] = 16, + [110182] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3132), 1, - sym_exponentiate, - STATE(430), 1, - sym_multiplying_operator, - STATE(431), 1, - sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1643), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2674), 35, + sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 17, - sym__AND, - sym_DOWNTO, - sym_IS, - sym__NAND, - sym__NOR, - sym__OR, sym_TO, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -136784,36 +137693,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [109788] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [110242] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6279), 1, + sym_process_head, + STATE(6530), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, STATE(1644), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [110344] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1645), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 34, + ACTIONS(2528), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -136837,42 +137828,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109847] = 11, + [110404] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, - sym_shift_operator, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, - sym_multiplying_operator, - STATE(1645), 3, + STATE(1646), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 29, + ACTIONS(2662), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -136883,6 +137866,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -136895,43 +137880,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [109916] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [110464] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1646), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3062), 1, + sym_IS, + STATE(2353), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6267), 1, + sym_sequential_block_head, + STATE(6510), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1647), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [110566] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1648), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 34, + ACTIONS(2636), 35, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -136948,83 +138011,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [109975] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1647), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3136), 40, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_END, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [110032] = 6, + [110626] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1648), 3, + STATE(1649), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 34, + ACTIONS(2470), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -137034,9 +138046,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -137053,128 +138065,64 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [110091] = 25, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(684), 1, - anon_sym_LPAREN, - ACTIONS(687), 1, - anon_sym_LT_LT, - ACTIONS(693), 1, - sym_END, - ACTIONS(695), 1, - sym_ASSERT, - ACTIONS(704), 1, - sym_WITH, - ACTIONS(3138), 1, - sym_POSTPONED, - ACTIONS(3141), 1, - sym_PROCESS, - STATE(2594), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(4229), 1, - sym__concurrent_statement, - STATE(6003), 1, - sym_with_expression, - STATE(6004), 1, - sym_name, - STATE(6083), 1, - sym_aggregate, - STATE(6131), 1, - sym__target, - STATE(7523), 1, - sym__label, - STATE(7789), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(707), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(690), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(1649), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_design_unit_repeat3, - STATE(4228), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [110188] = 14, + [110686] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3144), 1, + ACTIONS(2942), 1, sym_exponentiate, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, + STATE(484), 1, sym_shift_operator, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, + STATE(486), 1, + sym_relational_operator, + STATE(487), 1, + sym_logical_operator, + STATE(509), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(510), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1650), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 26, + ACTIONS(2882), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, - sym_LOOP, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -137183,10 +138131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [110263] = 5, + [110770] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -137197,92 +138142,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3146), 40, - sym_identifier, - sym__ABS, - sym__AND, - sym_FORCE, - sym_INERTIAL, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym_REJECT, - sym_RELEASE, - sym_TRANSPORT, - sym_UNAFFECTED, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [110320] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3132), 1, - sym_exponentiate, - STATE(430), 1, - sym_multiplying_operator, - STATE(431), 1, - sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1652), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(3132), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 23, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3130), 34, sym__AND, sym_DOWNTO, - sym_IS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -137292,51 +138167,62 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [110397] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_GT_GT, + anon_sym_PIPE, + [110830] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1653), 3, + STATE(1652), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 34, + ACTIONS(2666), 35, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -137353,32 +138239,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [110456] = 6, + [110890] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1654), 3, + STATE(1653), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(3136), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 34, + ACTIONS(3134), 34, sym__AND, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -137386,14 +138272,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -137404,99 +138291,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [110515] = 14, + anon_sym_GT_GT, + anon_sym_PIPE, + [110950] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3148), 1, - sym_exponentiate, - STATE(645), 1, - sym_multiplying_operator, - STATE(653), 1, - sym_adding_operator, - STATE(688), 1, - sym_shift_operator, - STATE(707), 1, - sym_relational_operator, - STATE(711), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1655), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6268), 1, + sym_process_head, + STATE(6512), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1654), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2714), 26, - sym__AND, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [111052] = 27, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3062), 1, sym_IS, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [110590] = 6, + STATE(2353), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6307), 1, + sym_sequential_block_head, + STATE(6581), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1655), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [111154] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2314), 1, + anon_sym_LPAREN, + ACTIONS(3138), 1, + sym_PARAMETER, + STATE(1747), 1, + sym_parenthesis_group, STATE(1656), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 34, + ACTIONS(2097), 32, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -137505,7 +138486,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -137520,7 +138500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [110649] = 6, + [111220] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -137531,36 +138511,37 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(3142), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 34, + ACTIONS(3140), 34, sym__AND, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -137571,9 +138552,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [110708] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [111280] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -137584,14 +138565,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 34, + ACTIONS(2556), 35, sym__AND, sym_GENERIC, sym__MOD, @@ -137600,13 +138581,14 @@ static const uint16_t ts_small_parse_table[] = { sym__OR, sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -137626,7 +138608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [110767] = 6, + [111340] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -137637,20 +138619,21 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 34, + ACTIONS(2662), 35, sym__AND, - sym_ELSE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -137679,42 +138662,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [110826] = 11, + [111400] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(645), 1, - sym_multiplying_operator, - STATE(653), 1, - sym_adding_operator, - STATE(688), 1, - sym_shift_operator, - STATE(707), 1, - sym_relational_operator, - STATE(711), 1, - sym_logical_operator, STATE(1660), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 29, + ACTIONS(2428), 35, sym__AND, - sym_IS, + sym_DOWNTO, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -137722,9 +138697,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -137737,30 +138714,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [110895] = 7, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [111460] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2888), 1, - anon_sym_COLON, STATE(1661), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 33, + ACTIONS(2428), 35, sym__AND, - sym_GENERATE, + sym_DOWNTO, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -137773,6 +138751,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -137791,149 +138770,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [110956] = 14, + [111520] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2986), 1, - sym_exponentiate, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, STATE(1662), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2714), 26, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_REPORT, - sym__ROL, - sym__ROR, - sym_SEVERITY, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [111031] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - STATE(1663), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2716), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2714), 29, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym_REPORT, - sym__ROL, - sym__ROR, - sym_SEVERITY, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [111100] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1664), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 34, + ACTIONS(2602), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -137943,7 +138805,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -137963,82 +138824,107 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [111159] = 5, + [111580] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1665), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3150), 40, - sym_identifier, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, + ACTIONS(2900), 1, sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_END, - sym_ENTITY, + ACTIONS(2906), 1, sym_FILE, - sym_FOR, + ACTIONS(2908), 1, sym_FUNCTION, + ACTIONS(2910), 1, sym_GROUP, - sym_IMPURE, - sym_LIBRARY, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, + ACTIONS(2916), 1, sym_SHARED, + ACTIONS(2918), 1, sym_SUBTYPE, + ACTIONS(2920), 1, sym_TYPE, + ACTIONS(2922), 1, sym_USE, + ACTIONS(2924), 1, sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [111216] = 6, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6322), 1, + sym_process_head, + STATE(6604), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1663), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [111682] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1666), 3, + STATE(1664), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 34, + ACTIONS(2428), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -138048,7 +138934,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -138068,30 +138953,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [111275] = 6, + [111742] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1667), 3, + STATE(1665), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 34, + ACTIONS(2640), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -138101,7 +138988,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -138121,41 +139007,40 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [111334] = 11, + [111802] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(645), 1, + STATE(473), 1, sym_multiplying_operator, - STATE(653), 1, + STATE(474), 1, sym_adding_operator, - STATE(688), 1, + STATE(484), 1, sym_shift_operator, - STATE(707), 1, + STATE(486), 1, sym_relational_operator, - STATE(711), 1, + STATE(487), 1, sym_logical_operator, - STATE(1668), 3, + STATE(1666), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2678), 30, sym__AND, - sym_IS, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -138167,7 +139052,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -138179,125 +139066,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [111403] = 17, + [111872] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3144), 1, - sym_exponentiate, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, - sym_shift_operator, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1669), 3, + STATE(1667), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2614), 35, sym__AND, sym_DOWNTO, + sym_GENERIC, sym_LOOP, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_TO, - sym__XNOR, - sym__XOR, - [111484] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3144), 1, - sym_exponentiate, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, - sym_shift_operator, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, + sym_PARAMETER, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1670), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2698), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 17, - sym__AND, - sym_DOWNTO, - sym_LOOP, - sym__NAND, - sym__NOR, - sym__OR, sym_TO, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -138306,47 +139114,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [111563] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [111932] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1671), 3, + STATE(1668), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2384), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 34, + ACTIONS(2382), 34, sym__AND, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -138357,29 +139172,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [111622] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [111992] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1672), 3, + STATE(1669), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 34, + ACTIONS(2428), 35, sym__AND, + sym_DOWNTO, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -138392,10 +139209,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -138412,30 +139228,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [111681] = 6, + [112052] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1673), 3, + STATE(1670), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 34, + ACTIONS(2674), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -138445,7 +139263,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -138465,30 +139282,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [111740] = 6, + [112112] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1674), 3, + STATE(1671), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 34, + ACTIONS(2374), 35, sym__AND, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym_PARAMETER, sym__REM, @@ -138498,7 +139317,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -138518,41 +139336,121 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [111799] = 9, + [112172] = 27, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3154), 1, - sym_library_constant_unit, - STATE(2552), 1, - sym__unit, - STATE(1675), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2902), 1, + sym_BEGIN, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2912), 1, + sym_IS, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + STATE(2322), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + STATE(6310), 1, + sym_process_head, + STATE(6583), 1, + sym_sequential_block, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(1672), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3152), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [112274] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3144), 1, + sym_exponentiate, + STATE(528), 1, + sym_shift_operator, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(609), 1, + sym_multiplying_operator, + STATE(611), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1673), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 28, + ACTIONS(2688), 26, sym__AND, - sym__MOD, + sym_GENERIC, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -138561,8 +139459,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -138573,27 +139472,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [111864] = 6, + [112349] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1676), 3, + STATE(1674), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 34, + ACTIONS(2580), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -138603,7 +139502,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -138627,25 +139525,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [111923] = 6, + [112408] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1677), 3, + STATE(1675), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 34, + ACTIONS(2420), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -138680,27 +139578,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [111982] = 6, + [112467] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1678), 3, + STATE(1676), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 34, + ACTIONS(2424), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -138714,6 +139611,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -138733,155 +139631,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [112041] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3156), 1, - sym_exponentiate, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, - sym_shift_operator, - STATE(455), 1, - sym_multiplying_operator, - STATE(456), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2678), 3, - sym_DOWNTO, - sym_GENERATE, - sym_TO, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1679), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [112124] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2986), 1, - sym_exponentiate, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2678), 3, - sym_REPORT, - sym_SEVERITY, - anon_sym_SEMI, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1680), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [112207] = 6, + [112526] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1681), 3, + STATE(1677), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 34, + ACTIONS(2528), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -138892,11 +139660,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -138916,25 +139684,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [112266] = 6, + [112585] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1682), 3, + STATE(1678), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 34, + ACTIONS(2580), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -138945,11 +139713,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -138969,25 +139737,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [112325] = 6, + [112644] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1683), 3, + STATE(1679), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 34, + ACTIONS(2450), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -138998,11 +139766,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -139022,26 +139790,100 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [112384] = 6, + [112703] = 26, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1684), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(225), 1, + sym_POSTPONED, + ACTIONS(227), 1, + sym_PROCESS, + ACTIONS(3146), 1, + sym_END, + STATE(1682), 1, + aux_sym_design_unit_repeat3, + STATE(2666), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(4316), 1, + sym__concurrent_statement, + STATE(6197), 1, + sym_with_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6334), 1, + sym__target, + STATE(6369), 1, + sym_name, + STATE(7535), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1680), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(13), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(4351), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [112802] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1681), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 34, + ACTIONS(2428), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -139051,7 +139893,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -139075,28 +139916,152 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [112443] = 6, + [112861] = 25, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1685), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2470), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2468), 34, - sym__AND, - sym_GENERIC, - sym__MOD, + ACTIONS(694), 1, + anon_sym_LPAREN, + ACTIONS(697), 1, + anon_sym_LT_LT, + ACTIONS(703), 1, + sym_END, + ACTIONS(705), 1, + sym_ASSERT, + ACTIONS(714), 1, + sym_WITH, + ACTIONS(3148), 1, + sym_POSTPONED, + ACTIONS(3151), 1, + sym_PROCESS, + STATE(2666), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(4316), 1, + sym__concurrent_statement, + STATE(6197), 1, + sym_with_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6334), 1, + sym__target, + STATE(6369), 1, + sym_name, + STATE(7535), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(717), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(700), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(1682), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_design_unit_repeat3, + STATE(4351), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [112958] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1683), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3154), 40, + sym_identifier, + sym__ABS, + sym__AND, + sym_FORCE, + sym_INERTIAL, + sym__NAND, + sym_NEW, + sym__NOR, + sym__NOT, + sym_NULL, + sym__OR, + sym_REJECT, + sym_RELEASE, + sym_TRANSPORT, + sym_UNAFFECTED, + sym__XNOR, + sym__XOR, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + [113015] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1684), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2380), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2378), 34, + sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, @@ -139128,51 +140093,118 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [112502] = 15, + [113074] = 26, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3144), 1, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(225), 1, + sym_POSTPONED, + ACTIONS(227), 1, + sym_PROCESS, + ACTIONS(2984), 1, + sym_END, + STATE(1682), 1, + aux_sym_design_unit_repeat3, + STATE(2666), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(4316), 1, + sym__concurrent_statement, + STATE(6197), 1, + sym_with_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6334), 1, + sym__target, + STATE(6369), 1, + sym_name, + STATE(7535), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1685), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(13), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(4351), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [113173] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3156), 1, sym_exponentiate, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, + STATE(522), 1, sym_shift_operator, - STATE(561), 1, + STATE(524), 1, + sym_relational_operator, + STATE(525), 1, + sym_logical_operator, + STATE(700), 1, sym_adding_operator, - STATE(574), 1, + STATE(706), 1, sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1686), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 23, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 28, sym__AND, sym_DOWNTO, - sym_LOOP, + sym_GENERATE, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -139190,46 +140222,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [112579] = 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [113244] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3148), 1, + ACTIONS(3156), 1, sym_exponentiate, - STATE(645), 1, - sym_multiplying_operator, - STATE(653), 1, - sym_adding_operator, - STATE(688), 1, + STATE(522), 1, sym_shift_operator, - STATE(707), 1, + STATE(524), 1, sym_relational_operator, - STATE(711), 1, + STATE(525), 1, sym_logical_operator, - ACTIONS(2686), 2, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, STATE(1687), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 26, + ACTIONS(2678), 26, sym__AND, - sym_IS, + sym_DOWNTO, + sym_GENERATE, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__ROL, sym__ROR, @@ -139237,9 +140272,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -139251,36 +140286,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [112654] = 6, + [113319] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3158), 1, + sym_exponentiate, + STATE(550), 1, + sym_shift_operator, + STATE(551), 1, + sym_relational_operator, + STATE(552), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1688), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2498), 34, + ACTIONS(2716), 23, sym__AND, - sym_GENERIC, - sym__MOD, + sym_IS, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -139288,8 +140340,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -139298,51 +140348,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [112713] = 6, + [113396] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3158), 1, + sym_exponentiate, + STATE(550), 1, + sym_shift_operator, + STATE(551), 1, + sym_relational_operator, + STATE(552), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1689), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2572), 34, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 17, + sym__AND, + sym_IS, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -139351,38 +140411,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [112772] = 6, + [113475] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3162), 1, + sym_library_constant_unit, + STATE(2626), 1, + sym__unit, STATE(1690), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(3160), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 34, + ACTIONS(2382), 28, sym__AND, - sym_GENERIC, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -139390,12 +140452,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -139408,9 +140467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [112831] = 6, + [113540] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -139421,14 +140478,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 34, + ACTIONS(2404), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -139463,7 +140520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [112890] = 6, + [113599] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -139474,32 +140531,32 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 34, + ACTIONS(2556), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -139516,54 +140573,52 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [112949] = 12, + [113658] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3148), 1, + ACTIONS(3158), 1, sym_exponentiate, - STATE(645), 1, - sym_multiplying_operator, - STATE(653), 1, - sym_adding_operator, - STATE(688), 1, + STATE(550), 1, sym_shift_operator, - STATE(707), 1, + STATE(551), 1, sym_relational_operator, - STATE(711), 1, + STATE(552), 1, sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1693), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 28, - sym__AND, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -139572,10 +140627,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [113020] = 6, + ACTIONS(2710), 9, + sym__AND, + sym_IS, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + [113739] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -139586,22 +140648,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 34, + ACTIONS(2692), 34, + sym_identifier, sym__AND, - sym_ELSE, - sym_GENERIC, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -139609,11 +140671,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -139626,102 +140690,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [113079] = 6, + [113798] = 26, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(225), 1, + sym_POSTPONED, + ACTIONS(227), 1, + sym_PROCESS, + ACTIONS(3164), 1, + sym_END, + STATE(1853), 1, + aux_sym_design_unit_repeat3, + STATE(2666), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(4316), 1, + sym__concurrent_statement, + STATE(6197), 1, + sym_with_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6334), 1, + sym__target, + STATE(6369), 1, + sym_name, + STATE(7535), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, STATE(1695), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2618), 34, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_UNITS, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [113138] = 6, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(13), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(4351), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [113897] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + STATE(522), 1, + sym_shift_operator, + STATE(524), 1, + sym_relational_operator, + STATE(525), 1, + sym_logical_operator, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, STATE(1696), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 34, - sym_identifier, + ACTIONS(2678), 29, sym__AND, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -139734,7 +140821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [113197] = 6, + [113966] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -139745,14 +140832,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 34, + ACTIONS(2528), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -139763,11 +140850,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -139787,7 +140874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113256] = 6, + [114025] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -139798,14 +140885,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 34, + ACTIONS(2666), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -139816,11 +140903,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -139840,7 +140927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113315] = 6, + [114084] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -139851,22 +140938,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 34, + ACTIONS(2692), 34, + sym_identifier, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, sym_SEVERITY, @@ -139876,9 +140963,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -139891,9 +140980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [113374] = 6, + [114143] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -139904,16 +140991,15 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 34, + ACTIONS(2636), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -139923,6 +141009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -139946,7 +141033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113433] = 6, + [114202] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -139957,32 +141044,32 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 34, + ACTIONS(2450), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -139999,26 +141086,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113492] = 6, + [114261] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2948), 1, + anon_sym_COLON, STATE(1702), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 34, + ACTIONS(2528), 33, sym__AND, + sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -140028,14 +141118,12 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -140052,7 +141140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113551] = 6, + [114322] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140063,19 +141151,20 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 34, + ACTIONS(2606), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -140085,10 +141174,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -140105,7 +141193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113610] = 6, + [114381] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140116,15 +141204,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 34, + ACTIONS(2528), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -140138,7 +141227,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -140158,7 +141246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113669] = 6, + [114440] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140169,32 +141257,32 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 34, + ACTIONS(2602), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -140211,36 +141299,43 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113728] = 6, + [114499] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3168), 1, + sym_library_constant_unit, + STATE(2671), 1, + sym__unit, STATE(1706), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(3166), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 34, + ACTIONS(2382), 28, sym__AND, - sym_ELSE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -140248,8 +141343,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -140262,65 +141355,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [113787] = 18, + [114564] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - ACTIONS(3158), 3, - sym_WHEN, - anon_sym_SEMI, - anon_sym_COMMA, STATE(1707), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2640), 34, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -140329,7 +141402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [113870] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [114623] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140340,14 +141419,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 34, + ACTIONS(2466), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -140358,11 +141437,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -140382,7 +141461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113929] = 6, + [114682] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140393,16 +141472,15 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 34, + ACTIONS(2474), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -140412,6 +141490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -140435,63 +141514,45 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [113988] = 18, + [114741] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3144), 1, - sym_exponentiate, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, - sym_shift_operator, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2678), 3, - sym_DOWNTO, - sym_LOOP, - sym_TO, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1710), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2424), 34, sym__AND, + sym_ELSE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -140500,7 +141561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [114071] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [114800] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140511,32 +141578,32 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 34, + ACTIONS(2424), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -140553,7 +141620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [114130] = 6, + [114859] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140564,15 +141631,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 34, + ACTIONS(2420), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -140586,7 +141654,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -140606,7 +141673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [114189] = 6, + [114918] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140617,22 +141684,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 34, - sym_identifier, + ACTIONS(2580), 34, sym__AND, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, + sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -140642,11 +141709,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -140659,45 +141724,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [114248] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [114977] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3156), 1, + sym_exponentiate, + STATE(522), 1, + sym_shift_operator, + STATE(524), 1, + sym_relational_operator, + STATE(525), 1, + sym_logical_operator, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, STATE(1714), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2552), 34, + ACTIONS(2688), 26, sym__AND, - sym_FOR, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, + sym_GENERATE, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -140709,10 +141787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [114307] = 6, + [115052] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140723,14 +141798,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 34, + ACTIONS(2470), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -140765,33 +141840,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [114366] = 6, + [115111] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + STATE(522), 1, + sym_shift_operator, + STATE(524), 1, + sym_relational_operator, + STATE(525), 1, + sym_logical_operator, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, STATE(1716), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 34, + ACTIONS(2688), 29, sym__AND, - sym_FOR, - sym_GENERIC, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -140799,11 +141883,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -140816,9 +141898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [114425] = 6, + [115180] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140829,32 +141909,32 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 34, + ACTIONS(2670), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -140871,7 +141951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [114484] = 6, + [115239] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140882,34 +141962,36 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 34, + ACTIONS(2692), 34, + sym_identifier, sym__AND, - sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -140922,35 +142004,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [114543] = 6, + [115298] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(2394), 1, + anon_sym_LPAREN, + ACTIONS(3170), 1, + sym_PARAMETER, + STATE(2148), 1, + sym_parenthesis_group, STATE(1719), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 34, + ACTIONS(2097), 31, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -140958,11 +142042,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -140977,7 +142060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [114602] = 6, + [115363] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -140988,16 +142071,122 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 34, + ACTIONS(2722), 34, + sym_identifier, + sym__AND, + sym_DOWNTO, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [115422] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3172), 1, + sym_RANGE, + STATE(1721), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3136), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3134), 32, + sym__AND, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_PIPE, + [115483] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1722), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2612), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2610), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -141007,6 +142196,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -141030,25 +142220,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [114661] = 6, + [115542] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1721), 3, + STATE(1723), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 34, + ACTIONS(2498), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -141083,45 +142273,47 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [114720] = 6, + [115601] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1722), 3, + STATE(1724), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 34, + ACTIONS(2722), 34, + sym_identifier, sym__AND, - sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141134,47 +142326,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [114779] = 6, + [115660] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1723), 3, + ACTIONS(3174), 1, + sym_exponentiate, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(502), 1, + sym_shift_operator, + STATE(503), 1, + sym_relational_operator, + STATE(505), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 3, + sym_DOWNTO, + sym_LOOP, + sym_TO, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1725), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2490), 34, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141183,39 +142391,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [114838] = 6, + [115743] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1724), 3, + STATE(517), 1, + sym_shift_operator, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, + sym_multiplying_operator, + STATE(642), 1, + sym_adding_operator, + STATE(1726), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 34, + ACTIONS(2688), 29, sym__AND, - sym_GENERIC, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -141223,11 +142434,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141240,47 +142449,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [114897] = 6, + [115812] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1725), 3, + ACTIONS(3176), 1, + sym_exponentiate, + STATE(517), 1, + sym_shift_operator, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, + sym_multiplying_operator, + STATE(642), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1727), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2572), 34, + ACTIONS(2688), 26, sym__AND, - sym_FOR, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, + sym_IS, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141292,30 +142510,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [114956] = 6, + [115887] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1726), 3, + STATE(1728), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 34, + ACTIONS(2576), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -141325,6 +142539,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -141348,25 +142563,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [115015] = 6, + [115946] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1727), 3, + STATE(1729), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 34, + ACTIONS(2528), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -141401,33 +142616,42 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [115074] = 6, + [116005] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1728), 3, + STATE(550), 1, + sym_shift_operator, + STATE(551), 1, + sym_relational_operator, + STATE(552), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + STATE(1730), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 34, + ACTIONS(2688), 29, sym__AND, - sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OF, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -141437,9 +142661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141452,47 +142674,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [115133] = 6, + [116074] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1729), 3, + ACTIONS(3158), 1, + sym_exponentiate, + STATE(550), 1, + sym_shift_operator, + STATE(551), 1, + sym_relational_operator, + STATE(552), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1731), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2540), 34, + ACTIONS(2688), 26, sym__AND, - sym_GENERIC, - sym__MOD, + sym_IS, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141504,101 +142735,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [115192] = 6, + [116149] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1730), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2542), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(3158), 1, + sym_exponentiate, + STATE(550), 1, + sym_shift_operator, + STATE(551), 1, + sym_relational_operator, + STATE(552), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 34, - sym__AND, - sym_GENERIC, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, sym__REM, - sym__ROL, - sym__ROR, - sym_SEVERITY, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, + ACTIONS(2696), 3, + sym_IS, + sym_OPEN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [115251] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1731), 3, + STATE(1732), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2494), 34, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141607,54 +142800,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [115310] = 9, + [116232] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2504), 1, - anon_sym_LPAREN, - ACTIONS(3160), 1, - sym_PARAMETER, - STATE(1930), 1, - sym_parenthesis_group, - STATE(1732), 3, + STATE(1733), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 31, + ACTIONS(2614), 34, sym__AND, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141669,30 +142853,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [115375] = 6, + [116291] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1733), 3, + STATE(1734), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 34, + ACTIONS(2420), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -141702,10 +142887,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -141722,88 +142906,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [115434] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3164), 1, - sym_library_constant_unit, - STATE(2558), 1, - sym__unit, - STATE(1734), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3162), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 28, - sym__AND, - sym_ELSE, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [115499] = 6, + [116350] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + STATE(445), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, STATE(1735), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(3094), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 34, - sym_identifier, + ACTIONS(3092), 30, sym__AND, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -141812,15 +142943,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -141831,45 +142960,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [115558] = 6, + anon_sym_PIPE, + [116413] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + STATE(517), 1, + sym_shift_operator, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, + sym_multiplying_operator, + STATE(642), 1, + sym_adding_operator, STATE(1736), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 34, + ACTIONS(2678), 29, sym__AND, - sym_GENERIC, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141882,40 +143019,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [115617] = 11, + [116482] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, - sym_shift_operator, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, - sym_multiplying_operator, STATE(1737), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2722), 34, + sym_identifier, sym__AND, sym_DOWNTO, - sym_LOOP, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -141930,62 +143056,10 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [115686] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3168), 1, - sym_library_constant_unit, - STATE(2580), 1, - sym__unit, - STATE(1738), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3166), 4, - sym_identifier, sym_library_constant, + sym_library_constant_unit, sym_library_function, sym_library_type, - ACTIONS(2390), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 28, - sym__AND, - sym_FOR, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -141998,26 +143072,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [115751] = 6, + [116541] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1739), 3, + STATE(1738), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 34, + ACTIONS(2404), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -142031,7 +143106,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -142051,43 +143125,43 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [115810] = 6, + [116600] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1740), 3, + STATE(1739), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 34, + ACTIONS(2556), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -142104,33 +143178,38 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [115869] = 6, + [116659] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1741), 3, + ACTIONS(2534), 1, + anon_sym_LPAREN, + ACTIONS(3180), 1, + sym_PARAMETER, + STATE(2258), 1, + sym_parenthesis_group, + STATE(1740), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 34, + ACTIONS(2097), 31, sym__AND, - sym_FOR, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -142140,9 +143219,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -142157,36 +143234,45 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [115928] = 6, + [116724] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1742), 3, + STATE(550), 1, + sym_shift_operator, + STATE(551), 1, + sym_relational_operator, + STATE(552), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + STATE(1741), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 34, + ACTIONS(2678), 29, sym__AND, - sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -142194,8 +143280,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -142208,119 +143292,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [115987] = 26, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(225), 1, - sym_POSTPONED, - ACTIONS(227), 1, - sym_PROCESS, - ACTIONS(3170), 1, - sym_END, - STATE(1765), 1, - aux_sym_design_unit_repeat3, - STATE(2594), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(4229), 1, - sym__concurrent_statement, - STATE(6003), 1, - sym_with_expression, - STATE(6004), 1, - sym_name, - STATE(6083), 1, - sym_aggregate, - STATE(6131), 1, - sym__target, - STATE(7523), 1, - sym__label, - STATE(7789), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1743), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(13), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4228), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [116086] = 14, + [116793] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3144), 1, + ACTIONS(3176), 1, sym_exponentiate, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, + STATE(517), 1, sym_shift_operator, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(642), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(1744), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1742), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 26, + ACTIONS(2716), 23, sym__AND, sym_DOWNTO, - sym_LOOP, + sym_IS, sym__NAND, sym__NOR, sym__OR, @@ -142341,101 +143354,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [116161] = 6, + [116870] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1745), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2406), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(3176), 1, + sym_exponentiate, + STATE(517), 1, + sym_shift_operator, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, + sym_multiplying_operator, + STATE(642), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 34, - sym__AND, - sym_FOR, - sym_GENERIC, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [116220] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1746), 3, + STATE(1743), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2662), 34, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, + ACTIONS(2712), 17, + sym__AND, + sym_DOWNTO, + sym_IS, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -142444,110 +143417,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [116279] = 12, + [116949] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3144), 1, + ACTIONS(3176), 1, sym_exponentiate, - STATE(504), 1, - sym_logical_operator, - STATE(506), 1, - sym_relational_operator, - STATE(507), 1, + STATE(517), 1, sym_shift_operator, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, sym_multiplying_operator, - STATE(1747), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2674), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + STATE(642), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 28, - sym__AND, - sym_DOWNTO, - sym_LOOP, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [116350] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1748), 3, + STATE(1744), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2552), 34, - sym__AND, - sym_ELSE, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -142556,40 +143471,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [116409] = 6, + ACTIONS(2710), 9, + sym__AND, + sym_DOWNTO, + sym_IS, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym__XNOR, + sym__XOR, + [117030] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1749), 3, + ACTIONS(3176), 1, + sym_exponentiate, + STATE(517), 1, + sym_shift_operator, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, + sym_multiplying_operator, + STATE(642), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1745), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2704), 34, - sym_identifier, + ACTIONS(2678), 26, sym__AND, sym_DOWNTO, - sym_LOOP, - sym__MOD, + sym_IS, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -142599,10 +143531,6 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -142614,48 +143542,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [116468] = 14, + [117105] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3132), 1, + ACTIONS(3176), 1, sym_exponentiate, - STATE(430), 1, + STATE(517), 1, + sym_shift_operator, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, sym_multiplying_operator, - STATE(431), 1, + STATE(642), 1, sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1750), 3, + STATE(1746), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 26, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 28, sym__AND, sym_DOWNTO, sym_IS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -142676,27 +143601,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [116543] = 6, + [117176] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1751), 3, + STATE(1747), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 34, + ACTIONS(2572), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -142706,6 +143630,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -142729,52 +143654,52 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [116602] = 17, + [117235] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3156), 1, + ACTIONS(3174), 1, sym_exponentiate, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, - sym_shift_operator, - STATE(455), 1, + STATE(485), 1, sym_multiplying_operator, - STATE(456), 1, + STATE(488), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(502), 1, + sym_shift_operator, + STATE(503), 1, + sym_relational_operator, + STATE(505), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1752), 3, + STATE(1748), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -142783,71 +143708,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 9, + ACTIONS(2710), 9, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_LOOP, sym__NAND, sym__NOR, sym__OR, sym_TO, sym__XNOR, sym__XOR, - [116683] = 16, + [117316] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3156), 1, - sym_exponentiate, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, - sym_shift_operator, - STATE(455), 1, - sym_multiplying_operator, - STATE(456), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1753), 3, + STATE(1749), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2666), 34, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 17, - sym__AND, - sym_DOWNTO, - sym_GENERATE, - sym__NAND, - sym__NOR, - sym__OR, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -142856,60 +143765,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [116762] = 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [117375] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3156), 1, + ACTIONS(2958), 1, sym_exponentiate, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, + STATE(528), 1, sym_shift_operator, - STATE(455), 1, - sym_multiplying_operator, - STATE(456), 1, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(703), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(704), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1754), 3, + ACTIONS(2882), 3, + sym_GENERIC, + anon_sym_SEMI, + sym_variable_assignment, + STATE(1750), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 23, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -142918,31 +143836,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [116839] = 6, + [117458] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1755), 3, + STATE(1751), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 34, + ACTIONS(2636), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -142954,7 +143872,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -142971,27 +143889,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [116898] = 6, + [117517] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1756), 3, + STATE(1752), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 34, + ACTIONS(2502), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -143001,6 +143918,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -143024,43 +143942,43 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [116957] = 6, + [117576] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1757), 3, + STATE(1753), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 34, + ACTIONS(2374), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -143077,31 +143995,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [117016] = 6, + [117635] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1758), 3, + STATE(1754), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 34, + ACTIONS(2404), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -143113,7 +144031,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -143130,31 +144048,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [117075] = 6, + [117694] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1759), 3, + STATE(1755), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 34, + ACTIONS(2610), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -143166,7 +144084,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -143183,33 +144101,38 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [117134] = 6, + [117753] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1760), 3, + ACTIONS(2456), 1, + anon_sym_LPAREN, + ACTIONS(3182), 1, + sym_PARAMETER, + STATE(2084), 1, + sym_parenthesis_group, + STATE(1756), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 34, + ACTIONS(2097), 31, sym__AND, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -143219,9 +144142,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -143236,7 +144157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [117193] = 9, + [117818] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -143244,42 +144165,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, sym__block_comment_start, ACTIONS(3174), 1, - sym_library_constant_unit, - STATE(2584), 1, - sym__unit, - STATE(1761), 3, + sym_exponentiate, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(502), 1, + sym_shift_operator, + STATE(503), 1, + sym_relational_operator, + STATE(505), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1757), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3172), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 28, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 17, + sym__AND, + sym_DOWNTO, + sym_LOOP, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -143288,29 +144220,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [117258] = 6, + [117897] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1762), 3, + STATE(1758), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 34, + ACTIONS(2576), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -143345,98 +144273,87 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [117317] = 26, + [117956] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(225), 1, - sym_POSTPONED, - ACTIONS(227), 1, - sym_PROCESS, - ACTIONS(3176), 1, - sym_END, - STATE(1649), 1, - aux_sym_design_unit_repeat3, - STATE(2594), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(4229), 1, - sym__concurrent_statement, - STATE(6003), 1, - sym_with_expression, - STATE(6004), 1, - sym_name, - STATE(6083), 1, - sym_aggregate, - STATE(6131), 1, - sym__target, - STATE(7523), 1, - sym__label, - STATE(7789), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1763), 3, + ACTIONS(3174), 1, + sym_exponentiate, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(502), 1, + sym_shift_operator, + STATE(503), 1, + sym_relational_operator, + STATE(505), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1759), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(13), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4228), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [117416] = 6, + ACTIONS(2718), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2716), 23, + sym__AND, + sym_DOWNTO, + sym_LOOP, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [118033] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1764), 3, + STATE(1760), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 34, + ACTIONS(2572), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -143471,118 +144388,47 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [117475] = 26, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(225), 1, - sym_POSTPONED, - ACTIONS(227), 1, - sym_PROCESS, - ACTIONS(3178), 1, - sym_END, - STATE(1649), 1, - aux_sym_design_unit_repeat3, - STATE(2594), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(4229), 1, - sym__concurrent_statement, - STATE(6003), 1, - sym_with_expression, - STATE(6004), 1, - sym_name, - STATE(6083), 1, - sym_aggregate, - STATE(6131), 1, - sym__target, - STATE(7523), 1, - sym__label, - STATE(7789), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1765), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(13), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4228), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [117574] = 6, + [118092] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1766), 3, + STATE(1761), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 34, + ACTIONS(2722), 34, + sym_identifier, sym__AND, - sym_FOR, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -143595,35 +144441,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [117633] = 6, + [118151] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1767), 3, + ACTIONS(3158), 1, + sym_exponentiate, + STATE(550), 1, + sym_shift_operator, + STATE(551), 1, + sym_relational_operator, + STATE(552), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1762), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2704), 34, - sym_identifier, + ACTIONS(2678), 26, sym__AND, - sym_GENERIC, - sym__MOD, + sym_IS, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -143632,13 +144490,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -143649,34 +144502,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [117692] = 7, + [118226] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3180), 1, - sym_RANGE, - STATE(1768), 3, + ACTIONS(3158), 1, + sym_exponentiate, + STATE(550), 1, + sym_shift_operator, + STATE(551), 1, + sym_relational_operator, + STATE(552), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + STATE(1763), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 7, - anon_sym_EQ, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 32, + ACTIONS(2678), 28, sym__AND, - sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -143685,14 +144547,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -143702,47 +144561,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [117753] = 6, + [118297] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1769), 3, + ACTIONS(3176), 1, + sym_exponentiate, + STATE(517), 1, + sym_shift_operator, + STATE(518), 1, + sym_relational_operator, + STATE(519), 1, + sym_logical_operator, + STATE(641), 1, + sym_multiplying_operator, + STATE(642), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 3, + sym_DOWNTO, + sym_IS, + sym_TO, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1764), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2568), 34, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -143751,31 +144626,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [117812] = 6, + [118380] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1770), 3, + STATE(1765), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 34, + ACTIONS(2506), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -143810,63 +144679,63 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [117871] = 18, + [118439] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3182), 1, + ACTIONS(2952), 1, sym_exponentiate, - STATE(420), 1, + STATE(516), 1, + sym_multiplying_operator, + STATE(521), 1, + sym_adding_operator, + STATE(527), 1, sym_shift_operator, - STATE(424), 1, + STATE(534), 1, sym_relational_operator, - STATE(425), 1, + STATE(539), 1, sym_logical_operator, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - ACTIONS(2686), 2, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2678), 3, - sym_GENERIC, + ACTIONS(2696), 3, + sym_REPORT, + sym_SEVERITY, anon_sym_SEMI, - sym_variable_assignment, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1771), 3, + STATE(1766), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -143875,54 +144744,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [117954] = 12, + [118522] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2986), 1, - sym_exponentiate, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - STATE(1772), 3, + STATE(1767), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(3184), 40, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_END, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [118579] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1768), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 28, + ACTIONS(2370), 34, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, + sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -143934,56 +144846,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [118025] = 14, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [118638] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2986), 1, - sym_exponentiate, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1773), 3, + STATE(1769), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 26, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2602), 34, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REPORT, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -143995,60 +144899,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [118100] = 15, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [118697] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2986), 1, - sym_exponentiate, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1774), 3, + STATE(1770), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 23, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2502), 34, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_REPORT, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -144057,33 +144949,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [118177] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [118756] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1775), 3, + ACTIONS(2410), 1, + anon_sym_LPAREN, + ACTIONS(3186), 1, + sym_PARAMETER, + STATE(1983), 1, + sym_parenthesis_group, + STATE(1771), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 34, + ACTIONS(2097), 31, sym__AND, + sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -144093,9 +144996,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -144110,27 +145011,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [118236] = 6, + [118821] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1776), 3, + STATE(1772), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 34, + ACTIONS(2640), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -144144,6 +145044,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -144163,28 +145064,29 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [118295] = 6, + [118880] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1777), 3, + STATE(1773), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 34, + ACTIONS(2692), 34, sym_identifier, sym__AND, - sym_GENERIC, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -144196,15 +145098,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, sym_library_constant, sym_library_constant_unit, sym_library_function, sym_library_type, - anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -144216,33 +145117,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [118354] = 6, + [118939] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1778), 3, + STATE(445), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(1774), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 34, + ACTIONS(3092), 31, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -144252,10 +145155,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -144267,63 +145171,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [118413] = 16, + anon_sym_GT_GT, + [119002] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2986), 1, + ACTIONS(2964), 1, sym_exponentiate, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, + STATE(550), 1, sym_shift_operator, - STATE(636), 1, + STATE(551), 1, sym_relational_operator, - STATE(637), 1, + STATE(552), 1, sym_logical_operator, - ACTIONS(2686), 2, + STATE(568), 1, + sym_multiplying_operator, + STATE(578), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1779), 3, + ACTIONS(2882), 3, + sym_IS, + sym_OPEN, + anon_sym_SEMI, + STATE(1775), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 17, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, - sym_REPORT, - sym_SEVERITY, sym__XNOR, sym__XOR, - anon_sym_SEMI, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -144332,52 +145237,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [118492] = 17, + [119085] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2986), 1, - sym_exponentiate, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1780), 3, + STATE(1776), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2498), 34, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -144386,55 +145284,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 9, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_REPORT, - sym_SEVERITY, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - [118573] = 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [119144] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(633), 1, - sym_multiplying_operator, - STATE(634), 1, - sym_adding_operator, - STATE(635), 1, - sym_shift_operator, - STATE(636), 1, - sym_relational_operator, - STATE(637), 1, - sym_logical_operator, - STATE(1781), 3, + STATE(1777), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2428), 34, sym__AND, + sym_ELSE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -144442,6 +145327,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -144454,41 +145341,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [118642] = 11, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [119203] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(420), 1, - sym_shift_operator, - STATE(424), 1, - sym_relational_operator, - STATE(425), 1, - sym_logical_operator, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - STATE(1782), 3, + STATE(1778), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 29, + ACTIONS(2474), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -144498,9 +145379,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -144512,46 +145394,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [118711] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [119262] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3182), 1, - sym_exponentiate, - STATE(420), 1, - sym_shift_operator, - STATE(424), 1, - sym_relational_operator, - STATE(425), 1, - sym_logical_operator, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1783), 3, + ACTIONS(2562), 1, + anon_sym_LPAREN, + ACTIONS(3188), 1, + sym_PARAMETER, + STATE(2139), 1, + sym_parenthesis_group, + STATE(1779), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 26, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2097), 31, sym__AND, sym_GENERIC, + sym_INERTIAL, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -144560,9 +145437,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -144573,29 +145449,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [118786] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [119327] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1784), 3, + STATE(1780), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 34, + ACTIONS(2692), 34, sym_identifier, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -144626,25 +145505,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [118845] = 6, + [119386] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1785), 3, + STATE(1781), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3190), 40, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_END, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [119443] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1782), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 34, + ACTIONS(2466), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -144679,33 +145610,39 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [118904] = 6, + [119502] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1786), 3, + ACTIONS(3194), 1, + sym_library_constant_unit, + STATE(2682), 1, + sym__unit, + STATE(1783), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(3192), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 34, + ACTIONS(2382), 28, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -144713,11 +145650,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -144730,34 +145666,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [118963] = 8, + [119567] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(509), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(1787), 3, + STATE(1784), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 7, - anon_sym_EQ, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 30, + ACTIONS(2692), 34, + sym_identifier, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -144769,13 +145699,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -144786,28 +145719,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [119026] = 6, + [119626] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1788), 3, + STATE(1785), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 34, + ACTIONS(2670), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -144817,6 +145748,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -144840,33 +145772,84 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [119085] = 6, + [119685] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1789), 3, + STATE(1786), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(3196), 40, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_END, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [119742] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1787), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 34, + ACTIONS(2722), 34, + sym_identifier, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -144876,10 +145859,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -144891,36 +145877,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [119144] = 9, + [119801] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2558), 1, + STATE(1788), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3198), 40, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_END, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, anon_sym_LPAREN, - ACTIONS(3186), 1, - sym_PARAMETER, - STATE(1893), 1, - sym_parenthesis_group, - STATE(1790), 3, + anon_sym_LT_LT, + [119858] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(528), 1, + sym_shift_operator, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(609), 1, + sym_multiplying_operator, + STATE(611), 1, + sym_adding_operator, + STATE(1789), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 31, + ACTIONS(2688), 29, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -144934,8 +145973,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -144947,49 +145987,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [119209] = 6, + [119927] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1791), 3, + STATE(516), 1, + sym_multiplying_operator, + STATE(521), 1, + sym_adding_operator, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + STATE(1790), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 34, - sym_identifier, + ACTIONS(2688), 29, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145002,44 +146045,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [119268] = 11, + [119996] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(420), 1, - sym_shift_operator, - STATE(424), 1, - sym_relational_operator, - STATE(425), 1, - sym_logical_operator, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - STATE(1792), 3, + STATE(1791), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2674), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -145047,8 +146082,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -145060,63 +146096,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [119337] = 18, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [120055] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3148), 1, - sym_exponentiate, - STATE(645), 1, - sym_multiplying_operator, - STATE(653), 1, - sym_adding_operator, - STATE(688), 1, - sym_shift_operator, - STATE(707), 1, - sym_relational_operator, - STATE(711), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2678), 3, - sym_IS, - sym_OPEN, - anon_sym_SEMI, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1793), 3, + STATE(1792), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2722), 34, + sym_identifier, sym__AND, + sym_DOWNTO, + sym_LOOP, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145125,27 +146147,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [119420] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [120114] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1794), 3, + STATE(1793), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 34, + ACTIONS(2428), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -145159,6 +146184,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -145178,31 +146204,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [119479] = 6, + [120173] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1795), 3, + STATE(1794), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 34, + ACTIONS(2428), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -145214,7 +146240,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -145231,27 +146257,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [119538] = 6, + [120232] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1796), 3, + STATE(1795), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 34, + ACTIONS(2606), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -145265,6 +146290,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -145284,31 +146310,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [119597] = 6, + [120291] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1797), 3, + STATE(1796), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 34, + ACTIONS(2378), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -145320,7 +146346,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -145337,25 +146363,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [119656] = 6, + [120350] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1798), 3, + STATE(1797), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 34, + ACTIONS(2602), 34, sym__AND, sym_ELSE, sym_GENERIC, @@ -145390,52 +146416,45 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [119715] = 17, + [120409] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3182), 1, - sym_exponentiate, - STATE(420), 1, - sym_shift_operator, - STATE(424), 1, - sym_relational_operator, - STATE(425), 1, - sym_logical_operator, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1799), 3, + STATE(1798), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2640), 34, + sym__AND, + sym_ELSE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145444,37 +146463,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 9, - sym__AND, - sym_GENERIC, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - sym_variable_assignment, - [119796] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [120468] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1800), 3, + STATE(1799), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 34, + ACTIONS(2580), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -145488,6 +146502,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -145507,52 +146522,54 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [119855] = 11, + [120527] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, - sym_shift_operator, - STATE(455), 1, + ACTIONS(2952), 1, + sym_exponentiate, + STATE(516), 1, sym_multiplying_operator, - STATE(456), 1, + STATE(521), 1, sym_adding_operator, - STATE(1801), 3, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + STATE(1800), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 29, + ACTIONS(2678), 28, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145564,57 +146581,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [119924] = 14, + [120598] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3156), 1, + ACTIONS(2952), 1, sym_exponentiate, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, - sym_shift_operator, - STATE(455), 1, + STATE(516), 1, sym_multiplying_operator, - STATE(456), 1, + STATE(521), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(1802), 3, + STATE(1801), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 26, + ACTIONS(2678), 26, sym__AND, - sym_DOWNTO, - sym_GENERATE, sym__NAND, sym__NOR, sym__OR, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145626,52 +146642,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [119999] = 11, + [120673] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, - sym_shift_operator, - STATE(455), 1, + ACTIONS(2952), 1, + sym_exponentiate, + STATE(516), 1, sym_multiplying_operator, - STATE(456), 1, + STATE(521), 1, sym_adding_operator, - STATE(1803), 3, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1802), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2716), 23, sym__AND, - sym_DOWNTO, - sym_GENERATE, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145680,56 +146704,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [120068] = 17, + [120750] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3148), 1, - sym_exponentiate, - STATE(645), 1, - sym_multiplying_operator, - STATE(653), 1, - sym_adding_operator, - STATE(688), 1, - sym_shift_operator, - STATE(707), 1, - sym_relational_operator, - STATE(711), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1804), 3, + STATE(1803), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 34, + sym__AND, + sym_ELSE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145738,71 +146751,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 9, - sym__AND, - sym_IS, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - [120149] = 16, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [120809] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3148), 1, - sym_exponentiate, - STATE(645), 1, - sym_multiplying_operator, - STATE(653), 1, - sym_adding_operator, - STATE(688), 1, - sym_shift_operator, - STATE(707), 1, - sym_relational_operator, - STATE(711), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1805), 3, + STATE(1804), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2674), 34, + sym__AND, + sym_ELSE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 17, - sym__AND, - sym_IS, - sym__NAND, - sym__NOR, - sym_OPEN, - sym__OR, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145811,51 +146804,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [120228] = 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [120868] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3148), 1, - sym_exponentiate, - STATE(645), 1, - sym_multiplying_operator, - STATE(653), 1, - sym_adding_operator, - STATE(688), 1, - sym_shift_operator, - STATE(707), 1, - sym_relational_operator, - STATE(711), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1806), 3, + STATE(1805), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 23, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2662), 34, sym__AND, - sym_IS, + sym_ELSE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -145865,6 +146847,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145873,56 +146857,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [120305] = 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [120927] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3156), 1, + ACTIONS(2952), 1, sym_exponentiate, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, - sym_shift_operator, - STATE(455), 1, + STATE(516), 1, sym_multiplying_operator, - STATE(456), 1, + STATE(521), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(1807), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1806), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 26, - sym__AND, - sym_DOWNTO, - sym_GENERATE, - sym__NAND, - sym__NOR, - sym__OR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, + ACTIONS(2712), 17, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_REPORT, + sym_SEVERITY, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -145931,203 +146926,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [120380] = 26, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(225), 1, - sym_POSTPONED, - ACTIONS(227), 1, - sym_PROCESS, - ACTIONS(2946), 1, - sym_END, - STATE(1649), 1, - aux_sym_design_unit_repeat3, - STATE(2594), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(4229), 1, - sym__concurrent_statement, - STATE(6003), 1, - sym_with_expression, - STATE(6004), 1, - sym_name, - STATE(6083), 1, - sym_aggregate, - STATE(6131), 1, - sym__target, - STATE(7523), 1, - sym__label, - STATE(7789), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1808), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(13), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4228), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [120479] = 26, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(225), 1, - sym_POSTPONED, - ACTIONS(227), 1, - sym_PROCESS, - ACTIONS(3188), 1, - sym_END, - STATE(1763), 1, - aux_sym_design_unit_repeat3, - STATE(2594), 1, - sym_label_declaration, - STATE(2920), 1, - sym__direct_name, - STATE(4229), 1, - sym__concurrent_statement, - STATE(6003), 1, - sym_with_expression, - STATE(6004), 1, - sym_name, - STATE(6083), 1, - sym_aggregate, - STATE(6131), 1, - sym__target, - STATE(7523), 1, - sym__label, - STATE(7789), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1809), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(13), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4228), 11, - sym_block_statement, - sym_component_instantiation_statement, - sym_process_statement, - sym_case_generate_statement, - sym_for_generate_statement, - sym_if_generate_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - sym_concurrent_simple_signal_assignment, - sym_concurrent_conditional_signal_assignment, - sym_concurrent_selected_signal_assignment, - [120578] = 12, + [121006] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3156), 1, + ACTIONS(2952), 1, sym_exponentiate, - STATE(416), 1, - sym_logical_operator, - STATE(418), 1, - sym_relational_operator, - STATE(419), 1, - sym_shift_operator, - STATE(455), 1, + STATE(516), 1, sym_multiplying_operator, - STATE(456), 1, + STATE(521), 1, sym_adding_operator, - STATE(1810), 3, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1807), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 28, - sym__AND, - sym_DOWNTO, - sym_GENERATE, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -146136,36 +146980,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [120649] = 6, + ACTIONS(2710), 9, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_REPORT, + sym_SEVERITY, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + [121087] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1811), 3, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(502), 1, + sym_shift_operator, + STATE(503), 1, + sym_relational_operator, + STATE(505), 1, + sym_logical_operator, + STATE(1808), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 34, + ACTIONS(2688), 29, sym__AND, - sym_ELSE, - sym_GENERIC, + sym_DOWNTO, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -146173,11 +147033,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -146190,47 +147048,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [120708] = 6, + [121156] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1812), 3, + ACTIONS(3174), 1, + sym_exponentiate, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(502), 1, + sym_shift_operator, + STATE(503), 1, + sym_relational_operator, + STATE(505), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1809), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2568), 34, + ACTIONS(2688), 26, sym__AND, - sym_ELSE, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, + sym_LOOP, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -146242,48 +147109,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [120767] = 6, + [121231] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1813), 3, + ACTIONS(3156), 1, + sym_exponentiate, + STATE(522), 1, + sym_shift_operator, + STATE(524), 1, + sym_relational_operator, + STATE(525), 1, + sym_logical_operator, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1810), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2434), 34, + ACTIONS(2716), 23, sym__AND, - sym_FOR, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, + sym_GENERATE, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -146292,51 +147171,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [120826] = 6, + [121308] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1814), 3, + ACTIONS(3156), 1, + sym_exponentiate, + STATE(522), 1, + sym_shift_operator, + STATE(524), 1, + sym_relational_operator, + STATE(525), 1, + sym_logical_operator, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1811), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2450), 34, - sym__AND, - sym_FOR, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 17, + sym__AND, + sym_DOWNTO, + sym_GENERATE, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -146345,51 +147234,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [120885] = 6, + [121387] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1815), 3, + ACTIONS(3156), 1, + sym_exponentiate, + STATE(522), 1, + sym_shift_operator, + STATE(524), 1, + sym_relational_operator, + STATE(525), 1, + sym_logical_operator, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1812), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2468), 34, - sym__AND, - sym_FOR, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -146398,39 +147288,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [120944] = 6, + ACTIONS(2710), 9, + sym__AND, + sym_DOWNTO, + sym_GENERATE, + sym__NAND, + sym__NOR, + sym__OR, + sym_TO, + sym__XNOR, + sym__XOR, + [121468] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1816), 3, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(502), 1, + sym_shift_operator, + STATE(503), 1, + sym_relational_operator, + STATE(505), 1, + sym_logical_operator, + STATE(1813), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 34, + ACTIONS(2678), 29, sym__AND, - sym_FOR, - sym_GENERIC, + sym_DOWNTO, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -146438,11 +147341,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -146455,29 +147356,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [121003] = 6, + [121537] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1817), 3, + STATE(1814), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 34, + ACTIONS(2670), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -146491,6 +147389,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -146510,33 +147409,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [121062] = 6, + [121596] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1818), 3, + STATE(528), 1, + sym_shift_operator, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(609), 1, + sym_multiplying_operator, + STATE(611), 1, + sym_adding_operator, + STATE(1815), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 34, + ACTIONS(2678), 29, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -146547,9 +147454,8 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -146561,20 +147467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [121121] = 5, + [121665] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1819), 3, + STATE(1816), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3190), 40, + ACTIONS(3200), 40, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -146615,38 +147519,45 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [121178] = 8, + [121722] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(509), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(1820), 3, + STATE(516), 1, + sym_multiplying_operator, + STATE(521), 1, + sym_adding_operator, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + STATE(1817), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 31, + ACTIONS(2678), 29, sym__AND, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -146654,10 +147565,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -146669,63 +147577,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - [121241] = 16, + [121791] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3182), 1, - sym_exponentiate, - STATE(420), 1, - sym_shift_operator, - STATE(424), 1, - sym_relational_operator, - STATE(425), 1, - sym_logical_operator, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1821), 3, + STATE(1818), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2614), 34, + sym__AND, + sym_ELSE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 17, - sym__AND, - sym_GENERIC, - sym__NAND, - sym__NOR, - sym__OR, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -146733,45 +147624,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [121320] = 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [121850] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3182), 1, + ACTIONS(3144), 1, sym_exponentiate, - STATE(420), 1, + STATE(528), 1, sym_shift_operator, - STATE(424), 1, + STATE(529), 1, sym_relational_operator, - STATE(425), 1, + STATE(531), 1, sym_logical_operator, - STATE(464), 1, + STATE(609), 1, sym_multiplying_operator, - STATE(465), 1, + STATE(611), 1, sym_adding_operator, - ACTIONS(2686), 2, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1822), 3, + STATE(1819), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 23, + ACTIONS(2678), 26, sym__AND, sym_GENERIC, sym__NAND, @@ -146795,33 +147688,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [121397] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [121925] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1823), 3, + ACTIONS(3144), 1, + sym_exponentiate, + STATE(528), 1, + sym_shift_operator, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(609), 1, + sym_multiplying_operator, + STATE(611), 1, + sym_adding_operator, + STATE(1820), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 34, + ACTIONS(2678), 28, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -146831,10 +147737,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -146845,34 +147750,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [121456] = 6, + [121996] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1824), 3, + STATE(1821), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 34, + ACTIONS(2450), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -146884,7 +147786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -146901,45 +147803,56 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [121515] = 6, + [122055] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1825), 3, + ACTIONS(3174), 1, + sym_exponentiate, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(502), 1, + sym_shift_operator, + STATE(503), 1, + sym_relational_operator, + STATE(505), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1822), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2614), 34, + ACTIONS(2678), 26, sym__AND, - sym_GENERIC, - sym__MOD, + sym_DOWNTO, + sym_LOOP, sym__NAND, sym__NOR, - sym_OF, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -146951,66 +147864,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [121574] = 18, + [122130] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2970), 1, + ACTIONS(3174), 1, sym_exponentiate, - STATE(420), 1, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(502), 1, sym_shift_operator, - STATE(424), 1, + STATE(503), 1, sym_relational_operator, - STATE(425), 1, + STATE(505), 1, sym_logical_operator, - STATE(668), 1, - sym_adding_operator, - STATE(671), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - ACTIONS(2793), 3, - sym_GENERIC, - anon_sym_SEMI, - sym_variable_assignment, - STATE(1826), 3, + STATE(1823), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 28, sym__AND, + sym_DOWNTO, + sym_LOOP, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -147019,27 +147920,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [121657] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [122201] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1827), 3, + STATE(1824), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 34, + ACTIONS(2606), 34, sym__AND, - sym_ELSE, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -147072,48 +147976,45 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [121716] = 9, + [122260] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2458), 1, - anon_sym_LPAREN, - ACTIONS(3192), 1, - sym_PARAMETER, - STATE(1948), 1, - sym_parenthesis_group, - STATE(1828), 3, + STATE(1825), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 31, + ACTIONS(2556), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -147128,27 +148029,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [121781] = 6, + [122319] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1829), 3, + STATE(1826), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 34, + ACTIONS(2666), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -147162,6 +148062,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -147181,38 +148082,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [121840] = 9, + [122378] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(3194), 1, - sym_PARAMETER, - STATE(2051), 1, - sym_parenthesis_group, - STATE(1830), 3, + STATE(1827), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 31, + ACTIONS(2636), 34, sym__AND, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -147220,9 +148115,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -147237,43 +148135,43 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [121905] = 6, + [122437] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1831), 3, + STATE(1828), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 34, + ACTIONS(2470), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -147290,57 +148188,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [121964] = 14, + [122496] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3182), 1, - sym_exponentiate, - STATE(420), 1, - sym_shift_operator, - STATE(424), 1, - sym_relational_operator, - STATE(425), 1, - sym_logical_operator, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(1832), 3, + STATE(1829), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 26, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2610), 34, sym__AND, sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -147351,31 +148238,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [122039] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [122555] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1833), 3, + STATE(1830), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 34, + ACTIONS(2580), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -147387,7 +148277,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -147404,26 +148294,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122098] = 6, + [122614] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1834), 3, + STATE(1831), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 34, + ACTIONS(2450), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -147433,7 +148324,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -147457,33 +148347,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122157] = 6, + [122673] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1835), 3, + STATE(1832), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 34, - sym_identifier, + ACTIONS(2576), 34, sym__AND, - sym_DOWNTO, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -147491,13 +148380,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -147510,47 +148398,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [122216] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [122732] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1836), 3, + STATE(1833), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 34, - sym_identifier, + ACTIONS(2374), 34, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -147563,37 +148451,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [122275] = 9, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [122791] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2600), 1, - anon_sym_LPAREN, - ACTIONS(3196), 1, - sym_PARAMETER, - STATE(1867), 1, - sym_parenthesis_group, - STATE(1837), 3, + STATE(1834), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 31, + ACTIONS(2470), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -147601,10 +148487,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -147619,56 +148506,98 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122340] = 14, + [122850] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3132), 1, - sym_exponentiate, - STATE(430), 1, - sym_multiplying_operator, - STATE(431), 1, - sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - ACTIONS(2686), 2, + STATE(1835), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2574), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2572), 34, + sym__AND, + sym_GENERIC, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, sym__REM, - STATE(1838), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [122909] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1836), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 26, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2674), 34, sym__AND, - sym_DOWNTO, - sym_IS, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -147680,33 +148609,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [122415] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [122968] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1839), 3, + STATE(1837), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 34, - sym_identifier, + ACTIONS(2670), 34, sym__AND, - sym_DOWNTO, - sym_IS, + sym_FOR, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -147714,13 +148646,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -147733,27 +148663,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [122474] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [123027] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1840), 3, + STATE(1838), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 34, + ACTIONS(2404), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -147763,6 +148694,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -147786,27 +148718,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122533] = 6, + [123086] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1841), 3, + STATE(1839), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 34, + ACTIONS(2420), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -147816,6 +148747,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -147839,27 +148771,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122592] = 6, + [123145] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1842), 3, + STATE(1840), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 34, + ACTIONS(2450), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -147869,6 +148800,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -147892,25 +148824,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122651] = 6, + [123204] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1843), 3, + STATE(1841), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 34, + ACTIONS(2556), 34, sym__AND, sym_FOR, sym_GENERIC, @@ -147945,79 +148877,79 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122710] = 5, + [123263] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1844), 3, + STATE(1842), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3198), 40, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_END, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2508), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2506), 34, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SEVERITY, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [122767] = 6, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [123322] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1845), 3, + STATE(1843), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 34, + ACTIONS(2662), 34, sym__AND, - sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -148031,6 +148963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -148050,27 +148983,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122826] = 6, + [123381] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1846), 3, + STATE(1844), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 34, + ACTIONS(2606), 34, sym__AND, - sym_FOR, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -148103,63 +149036,45 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [122885] = 18, + [123440] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2948), 1, - sym_exponentiate, - STATE(496), 1, - sym_adding_operator, - STATE(497), 1, - sym_multiplying_operator, - STATE(688), 1, - sym_shift_operator, - STATE(707), 1, - sym_relational_operator, - STATE(711), 1, - sym_logical_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - ACTIONS(2793), 3, - sym_IS, - sym_OPEN, - anon_sym_SEMI, - STATE(1847), 3, + STATE(1845), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2666), 34, sym__AND, + sym_FOR, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -148168,43 +149083,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [122968] = 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [123499] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3182), 1, - sym_exponentiate, - STATE(420), 1, - sym_shift_operator, - STATE(424), 1, - sym_relational_operator, - STATE(425), 1, - sym_logical_operator, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - STATE(1848), 3, + STATE(1846), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 28, + ACTIONS(2636), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -148215,8 +149126,9 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -148227,31 +149139,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [123039] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [123558] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1849), 3, + STATE(1847), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 34, + ACTIONS(2506), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -148261,9 +149175,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -148280,42 +149195,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123098] = 11, + [123617] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(430), 1, - sym_multiplying_operator, - STATE(431), 1, - sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - STATE(1850), 3, + STATE(1848), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 29, + ACTIONS(2370), 34, sym__AND, - sym_DOWNTO, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -148323,9 +149228,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -148338,63 +149246,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [123167] = 18, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [123676] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3132), 1, - sym_exponentiate, - STATE(430), 1, - sym_multiplying_operator, - STATE(431), 1, - sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2678), 3, - sym_DOWNTO, - sym_IS, - sym_TO, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1851), 3, + STATE(1849), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2610), 34, sym__AND, + sym_FOR, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -148403,31 +149295,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [123250] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [123735] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1852), 3, + STATE(1850), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 34, + ACTIONS(2576), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -148439,7 +149337,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -148456,27 +149354,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123309] = 6, + [123794] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1853), 3, + STATE(1851), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 34, + ACTIONS(2572), 34, sym__AND, - sym_ELSE, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -148509,45 +149407,63 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123368] = 6, + [123853] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1854), 3, + ACTIONS(3156), 1, + sym_exponentiate, + STATE(522), 1, + sym_shift_operator, + STATE(524), 1, + sym_relational_operator, + STATE(525), 1, + sym_logical_operator, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 3, + sym_DOWNTO, + sym_GENERATE, + sym_TO, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1852), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2450), 34, + ACTIONS(2704), 6, sym__AND, - sym_ELSE, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -148556,31 +149472,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [123427] = 6, + [123936] = 26, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1855), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(225), 1, + sym_POSTPONED, + ACTIONS(227), 1, + sym_PROCESS, + ACTIONS(3202), 1, + sym_END, + STATE(1682), 1, + aux_sym_design_unit_repeat3, + STATE(2666), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(4316), 1, + sym__concurrent_statement, + STATE(6197), 1, + sym_with_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6334), 1, + sym__target, + STATE(6369), 1, + sym_name, + STATE(7535), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1853), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(13), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(4351), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [124035] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1854), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 34, + ACTIONS(2602), 34, sym__AND, sym_FOR, sym_GENERIC, @@ -148615,25 +149598,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123486] = 6, + [124094] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1856), 3, + STATE(1855), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 34, + ACTIONS(2424), 34, sym__AND, sym_FOR, sym_GENERIC, @@ -148668,31 +149651,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123545] = 6, + [124153] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1857), 3, + STATE(1856), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 34, + ACTIONS(2640), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -148704,7 +149687,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -148721,25 +149704,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123604] = 6, + [124212] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1858), 3, + STATE(1857), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 34, + ACTIONS(2614), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -148774,44 +149757,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123663] = 12, + [124271] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3132), 1, - sym_exponentiate, - STATE(430), 1, - sym_multiplying_operator, - STATE(431), 1, - sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - STATE(1859), 3, + STATE(1858), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 28, + ACTIONS(2420), 34, sym__AND, - sym_DOWNTO, - sym_IS, + sym_FOR, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -148819,9 +149791,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -148833,38 +149807,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [123734] = 9, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [124330] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2628), 1, - anon_sym_LPAREN, - ACTIONS(3200), 1, - sym_PARAMETER, - STATE(2176), 1, - sym_parenthesis_group, - STATE(1860), 3, + STATE(1859), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 31, + ACTIONS(2502), 34, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -148872,9 +149843,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -148889,27 +149863,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123799] = 6, + [124389] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1861), 3, + STATE(1860), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 34, + ACTIONS(2378), 34, sym__AND, - sym_FOR, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -148942,38 +149916,39 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123858] = 9, + [124448] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3204), 1, + ACTIONS(3206), 1, sym_library_constant_unit, - STATE(2601), 1, + STATE(2665), 1, sym__unit, - STATE(1862), 3, + STATE(1861), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3202), 4, + ACTIONS(3204), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 28, + ACTIONS(2382), 28, sym__AND, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -148982,10 +149957,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -148998,27 +149972,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [123923] = 6, + [124513] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1863), 3, + STATE(1862), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 34, + ACTIONS(2498), 34, sym__AND, - sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -149032,6 +150005,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -149051,137 +150025,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [123982] = 11, + [124572] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(430), 1, - sym_multiplying_operator, - STATE(431), 1, - sym_adding_operator, - STATE(452), 1, - sym_logical_operator, - STATE(461), 1, - sym_relational_operator, - STATE(466), 1, - sym_shift_operator, - STATE(1864), 3, + STATE(1863), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 29, + ACTIONS(2374), 34, sym__AND, - sym_DOWNTO, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [124051] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1865), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3206), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [124107] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1866), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2550), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2548), 33, - sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -149196,6 +150061,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149212,26 +150078,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124165] = 6, + [124631] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1867), 3, + STATE(1864), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 33, + ACTIONS(2506), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -149245,9 +150112,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149264,28 +150131,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124223] = 6, + [124690] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1868), 3, + STATE(1865), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 33, + ACTIONS(2370), 34, sym__AND, + sym_FOR, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -149300,6 +150167,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149316,25 +150184,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124281] = 6, + [124749] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1869), 3, + STATE(1866), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 33, + ACTIONS(2370), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -149345,13 +150213,14 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149368,26 +150237,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124339] = 6, + [124808] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1870), 3, + STATE(1867), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 33, + ACTIONS(2502), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -149401,9 +150271,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149420,25 +150290,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124397] = 6, + [124867] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1871), 3, + STATE(1868), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 33, + ACTIONS(2474), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -149453,9 +150323,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149472,25 +150343,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124455] = 6, + [124926] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1872), 3, + STATE(1869), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 33, + ACTIONS(2466), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -149505,9 +150376,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149524,26 +150396,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124513] = 6, + [124985] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1873), 3, + STATE(1870), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 33, + ACTIONS(2498), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -149557,9 +150430,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149576,77 +150449,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124571] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1874), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3208), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [124627] = 6, + [125044] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1875), 3, + STATE(1871), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 33, + ACTIONS(2474), 34, sym__AND, + sym_FOR, sym_GENERIC, sym__MOD, sym__NAND, @@ -149660,9 +150483,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149679,44 +150502,48 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124685] = 6, + [125103] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1876), 3, + ACTIONS(2546), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + sym_PARAMETER, + STATE(1998), 1, + sym_parenthesis_group, + STATE(1872), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2099), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 33, + ACTIONS(2097), 31, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -149731,28 +150558,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124743] = 6, + [125168] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1877), 3, + STATE(1873), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 33, + ACTIONS(2466), 34, sym__AND, + sym_FOR, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -149767,6 +150594,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149783,44 +150611,56 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124801] = 6, + [125227] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1878), 3, + ACTIONS(2952), 1, + sym_exponentiate, + STATE(516), 1, + sym_multiplying_operator, + STATE(521), 1, + sym_adding_operator, + STATE(527), 1, + sym_shift_operator, + STATE(534), 1, + sym_relational_operator, + STATE(539), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1874), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2594), 33, + ACTIONS(2688), 26, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -149832,29 +150672,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [124859] = 6, + [125302] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1879), 3, + STATE(1875), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 33, + ACTIONS(2670), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -149868,9 +150706,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149887,25 +150725,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124917] = 6, + [125361] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1880), 3, + STATE(1876), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 33, + ACTIONS(2606), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -149916,13 +150754,14 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149939,25 +150778,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [124975] = 6, + [125420] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1881), 3, + STATE(1877), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 33, + ACTIONS(2662), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -149968,13 +150807,14 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -149991,28 +150831,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125033] = 6, + [125479] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1882), 3, + STATE(1878), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 33, + ACTIONS(2528), 34, sym__AND, + sym_ELSE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150027,6 +150867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150043,28 +150884,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125091] = 6, + [125538] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1883), 3, + STATE(1879), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 33, + ACTIONS(2674), 34, sym__AND, + sym_FOR, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150079,6 +150920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150095,28 +150937,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125149] = 6, + [125597] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1884), 3, + STATE(1880), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 33, + ACTIONS(2662), 34, sym__AND, + sym_FOR, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150131,6 +150973,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150147,28 +150990,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125207] = 6, + [125656] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1885), 3, + STATE(1881), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 33, + ACTIONS(2404), 34, sym__AND, + sym_FOR, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150183,6 +151026,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150199,28 +151043,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125265] = 6, + [125715] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1886), 3, + STATE(1882), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 33, + ACTIONS(2666), 34, sym__AND, + sym_ELSE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150235,6 +151079,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150251,28 +151096,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125323] = 6, + [125774] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1887), 3, + STATE(1883), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 33, + ACTIONS(2378), 34, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150285,8 +151129,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150303,25 +151149,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125381] = 6, + [125833] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1888), 3, + STATE(1884), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 33, + ACTIONS(2428), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -150332,13 +151178,14 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150355,28 +151202,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125439] = 6, + [125892] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1889), 3, + STATE(1885), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 33, + ACTIONS(2470), 34, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150389,8 +151235,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150407,31 +151255,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125497] = 6, + [125951] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1890), 3, + STATE(1886), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 33, + ACTIONS(2614), 34, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -150443,6 +151291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150459,42 +151308,43 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125555] = 6, + [126010] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1891), 3, + STATE(1887), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 33, + ACTIONS(2662), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150511,26 +151361,92 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125613] = 6, + [126069] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1892), 3, + ACTIONS(3144), 1, + sym_exponentiate, + STATE(528), 1, + sym_shift_operator, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(609), 1, + sym_multiplying_operator, + STATE(611), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 3, + sym_GENERIC, + anon_sym_SEMI, + sym_variable_assignment, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1888), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [126152] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1889), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 33, + ACTIONS(2466), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -150544,9 +151460,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150563,28 +151479,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125671] = 6, + [126211] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1893), 3, + STATE(1890), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 33, + ACTIONS(2474), 34, sym__AND, + sym_ELSE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150599,6 +151515,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150615,26 +151532,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125729] = 6, + [126270] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1894), 3, + STATE(1891), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 33, + ACTIONS(2498), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -150648,9 +151566,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150667,25 +151585,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125787] = 6, + [126329] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1895), 3, + STATE(1892), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 33, + ACTIONS(2424), 34, sym__AND, sym_GENERIC, sym__MOD, @@ -150696,13 +151614,14 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150719,28 +151638,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125845] = 6, + [126388] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1896), 3, + STATE(1893), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 33, + ACTIONS(2614), 34, sym__AND, + sym_FOR, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150755,6 +151674,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150771,32 +151691,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [125903] = 6, + [126447] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1897), 3, + STATE(1894), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 7, - anon_sym_EQ, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 32, + ACTIONS(2502), 34, sym__AND, - sym_DOWNTO, + sym_ELSE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -150804,14 +151725,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -150822,29 +151742,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [125961] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [126506] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1898), 3, + STATE(1895), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 33, + ACTIONS(2370), 34, sym__AND, + sym_ELSE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150859,6 +151780,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150875,28 +151797,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126019] = 6, + [126565] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1899), 3, + STATE(1896), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 33, + ACTIONS(2506), 34, sym__AND, + sym_ELSE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150911,6 +151833,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150927,28 +151850,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126077] = 6, + [126624] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1900), 3, + STATE(1897), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 33, + ACTIONS(2378), 34, sym__AND, + sym_FOR, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -150963,6 +151886,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -150979,31 +151903,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126135] = 6, + [126683] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1901), 3, + STATE(1898), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 33, + ACTIONS(2674), 34, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -151015,6 +151939,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151031,30 +151956,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126193] = 6, + [126742] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1902), 3, + STATE(1899), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 33, + ACTIONS(2374), 34, sym__AND, sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -151064,9 +151990,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151083,201 +152009,124 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126251] = 6, + [126801] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1903), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3078), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(3144), 1, + sym_exponentiate, + STATE(528), 1, + sym_shift_operator, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(609), 1, + sym_multiplying_operator, + STATE(611), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 32, - sym__AND, - sym_DOWNTO, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [126309] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1904), 3, + STATE(1900), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 7, - anon_sym_EQ, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3080), 32, + ACTIONS(2716), 23, sym__AND, - sym_DOWNTO, - sym__MOD, + sym_GENERIC, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [126367] = 6, + [126878] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1905), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2492), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(3144), 1, + sym_exponentiate, + STATE(528), 1, + sym_shift_operator, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(609), 1, + sym_multiplying_operator, + STATE(611), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 33, - sym__AND, - sym_GENERIC, - sym_IS, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [126425] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1906), 3, + STATE(1901), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2540), 33, - sym__AND, - sym_GENERIC, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 17, + sym__AND, + sym_GENERIC, + sym__NAND, + sym__NOR, + sym__OR, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -151285,50 +152134,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [126483] = 6, + [126957] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1907), 3, + ACTIONS(3144), 1, + sym_exponentiate, + STATE(528), 1, + sym_shift_operator, + STATE(529), 1, + sym_relational_operator, + STATE(531), 1, + sym_logical_operator, + STATE(609), 1, + sym_multiplying_operator, + STATE(611), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1902), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2548), 33, - sym__AND, - sym_GENERIC, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -151337,68 +152188,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [126541] = 18, + ACTIONS(2710), 9, + sym__AND, + sym_GENERIC, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + sym_variable_assignment, + [127038] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3212), 1, + ACTIONS(2894), 1, sym_exponentiate, - STATE(508), 1, - sym_adding_operator, - STATE(513), 1, - sym_multiplying_operator, - STATE(590), 1, + STATE(441), 1, sym_logical_operator, - STATE(595), 1, + STATE(442), 1, sym_relational_operator, - STATE(597), 1, + STATE(448), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(3210), 2, - sym_SEVERITY, - anon_sym_SEMI, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(1908), 3, + ACTIONS(3210), 3, + sym_WHEN, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(1903), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -151407,33 +152263,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [126623] = 6, + [127121] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1909), 3, + ACTIONS(3214), 1, + sym_library_constant_unit, + STATE(2638), 1, + sym__unit, + STATE(1904), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(3212), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 33, + ACTIONS(2382), 28, sym__AND, - sym_GENERIC, - sym_IS, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -151443,8 +152306,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -151457,30 +152319,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [126681] = 6, + [127186] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1910), 3, + STATE(1905), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 33, + ACTIONS(2556), 34, sym__AND, + sym_ELSE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -151495,6 +152355,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151511,26 +152372,100 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126739] = 6, + [127245] = 26, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1911), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(225), 1, + sym_POSTPONED, + ACTIONS(227), 1, + sym_PROCESS, + ACTIONS(3216), 1, + sym_END, + STATE(1680), 1, + aux_sym_design_unit_repeat3, + STATE(2666), 1, + sym_label_declaration, + STATE(3020), 1, + sym__direct_name, + STATE(4316), 1, + sym__concurrent_statement, + STATE(6197), 1, + sym_with_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6334), 1, + sym__target, + STATE(6369), 1, + sym_name, + STATE(7535), 1, + sym_assertion, + STATE(7713), 1, + sym__label, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1906), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(13), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(4351), 11, + sym_block_statement, + sym_component_instantiation_statement, + sym_process_statement, + sym_case_generate_statement, + sym_for_generate_statement, + sym_if_generate_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + sym_concurrent_simple_signal_assignment, + sym_concurrent_conditional_signal_assignment, + sym_concurrent_selected_signal_assignment, + [127344] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1907), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 33, + ACTIONS(2572), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -151540,13 +152475,13 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151563,26 +152498,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126797] = 6, + [127403] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1912), 3, + STATE(1908), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 33, + ACTIONS(2576), 34, sym__AND, + sym_ELSE, sym_GENERIC, sym__MOD, sym__NAND, @@ -151592,13 +152528,13 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151615,31 +152551,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126855] = 6, + [127462] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1913), 3, + STATE(1909), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 33, + ACTIONS(2640), 34, sym__AND, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -151651,6 +152587,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151667,31 +152604,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126913] = 6, + [127521] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1914), 3, + STATE(1910), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 33, + ACTIONS(2602), 34, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym_PARAMETER, sym__REM, @@ -151703,6 +152640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151719,28 +152657,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [126971] = 6, + [127580] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1915), 3, + STATE(1911), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 33, + ACTIONS(2470), 34, sym__AND, + sym_FOR, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -151755,6 +152693,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151771,131 +152710,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [127029] = 6, + [127639] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1916), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2432), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2430), 33, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_THEN, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [127087] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1917), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3146), 39, - sym_identifier, - sym__ABS, - sym__AND, - sym_FORCE, - sym_INERTIAL, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym_REJECT, - sym_TRANSPORT, - sym_UNAFFECTED, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [127143] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1918), 3, + STATE(1912), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 33, + ACTIONS(2610), 34, sym__AND, + sym_ELSE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -151910,6 +152746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -151926,80 +152763,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [127201] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1919), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3086), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3084), 32, - sym__AND, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [127259] = 6, + [127698] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1920), 3, + STATE(1913), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 33, + ACTIONS(2636), 34, sym__AND, + sym_ELSE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -152014,6 +152799,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -152030,70 +152816,18 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [127317] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1921), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3090), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3088), 32, - sym__AND, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [127375] = 5, + [127757] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1922), 3, + STATE(1914), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3214), 39, + ACTIONS(3218), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -152133,93 +152867,28 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [127431] = 19, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - ACTIONS(3216), 1, - sym_GENERATE, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(6053), 1, - sym_case_generate_block, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1923), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [127515] = 6, + [127813] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1924), 3, + STATE(1915), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 33, + ACTIONS(2450), 33, sym__AND, sym_GENERIC, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -152250,44 +152919,63 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [127573] = 6, + [127871] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1925), 3, + ACTIONS(3018), 1, + sym_exponentiate, + ACTIONS(3220), 1, + sym_GENERATE, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(6446), 1, + sym_case_generate_block, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1916), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2614), 33, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym_LOOP, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -152296,34 +152984,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [127631] = 6, + [127955] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1926), 3, + STATE(1917), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 33, + ACTIONS(2424), 33, sym__AND, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -152354,28 +153036,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [127689] = 6, + [128013] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1927), 3, + STATE(1918), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 33, + ACTIONS(2420), 33, sym__AND, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -152406,28 +153088,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [127747] = 6, + [128071] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1928), 3, + STATE(1919), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 33, + ACTIONS(2404), 33, sym__AND, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -152458,32 +153140,36 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [127805] = 6, + [128129] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1929), 3, + STATE(592), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(1920), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 33, + ACTIONS(3092), 30, sym__AND, - sym_GENERIC, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -152491,12 +153177,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -152508,46 +153194,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [127863] = 6, + [128191] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1930), 3, + ACTIONS(3018), 1, + sym_exponentiate, + ACTIONS(3220), 1, + sym_GENERATE, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(6501), 1, + sym_case_generate_block, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1921), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2544), 33, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym_LOOP, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -152556,34 +153259,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [127921] = 6, + [128275] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1931), 3, + ACTIONS(3224), 1, + sym_library_constant_unit, + STATE(2707), 1, + sym__unit, + STATE(1922), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 7, - anon_sym_EQ, + ACTIONS(3222), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 32, + ACTIONS(2382), 27, sym__AND, - sym_DOWNTO, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -152595,14 +153300,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -152613,81 +153314,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [127979] = 6, + [128339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1932), 3, + STATE(1923), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3096), 32, - sym__AND, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [128037] = 6, + ACTIONS(3226), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [128395] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1933), 3, + STATE(1924), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 7, - anon_sym_EQ, + ACTIONS(3228), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [128451] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1925), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3230), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [128507] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1926), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 32, + ACTIONS(2692), 33, + sym_identifier, sym__AND, - sym_DOWNTO, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -152699,14 +153500,15 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -152717,205 +153519,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [128095] = 15, + [128565] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3218), 1, - sym_exponentiate, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1934), 3, + STATE(1927), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2700), 22, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_UNITS, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [128171] = 16, + ACTIONS(3232), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [128621] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3218), 1, - sym_exponentiate, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1935), 3, + STATE(1928), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 16, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_UNITS, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [128249] = 17, + ACTIONS(393), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [128677] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3218), 1, - sym_exponentiate, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1936), 3, + STATE(1929), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 8, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_UNITS, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - [128329] = 5, + ACTIONS(3234), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [128733] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1937), 3, + STATE(1930), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3220), 39, + ACTIONS(3232), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -152955,18 +153723,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [128385] = 5, + [128789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1938), 3, + STATE(1931), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3222), 39, + ACTIONS(3236), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -153006,33 +153774,32 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [128441] = 6, + [128845] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1939), 3, + STATE(1932), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 33, + ACTIONS(2692), 33, + sym_identifier, sym__AND, - sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -153042,8 +153809,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -153056,93 +153826,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [128499] = 18, + [128903] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3218), 1, - sym_exponentiate, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - ACTIONS(2678), 2, - sym_UNITS, - anon_sym_SEMI, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1940), 3, + STATE(1933), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [128581] = 6, + ACTIONS(3232), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [128959] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1941), 3, + STATE(1934), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 33, + ACTIONS(2404), 33, sym__AND, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -153151,7 +153907,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -153174,79 +153929,130 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [128639] = 6, + [129017] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1942), 3, + STATE(1935), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2614), 33, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym_SELECT, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [128697] = 6, + ACTIONS(3238), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [129073] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1943), 3, + STATE(1936), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3240), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [129129] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1937), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 33, + ACTIONS(2420), 33, sym__AND, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -153255,7 +154061,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -153278,25 +154083,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [128755] = 6, + [129187] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1944), 3, + STATE(1938), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 33, + ACTIONS(2424), 33, sym__AND, sym_GENERIC, sym_LOOP, @@ -153330,25 +154135,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [128813] = 6, + [129245] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1945), 3, + STATE(1939), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 33, + ACTIONS(2450), 33, sym__AND, sym_GENERIC, sym__MOD, @@ -153382,44 +154187,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [128871] = 6, + [129303] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1946), 3, + STATE(1940), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 33, + ACTIONS(2722), 33, + sym_identifier, sym__AND, - sym_GENERIC, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -153432,27 +154239,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [128929] = 6, + [129361] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1947), 3, + ACTIONS(3242), 1, + sym_exponentiate, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 2, + sym_ELSE, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1941), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [129443] = 19, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3018), 1, + sym_exponentiate, + ACTIONS(3220), 1, + sym_GENERATE, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(6572), 1, + sym_case_generate_block, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 33, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(1942), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [129527] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1943), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2608), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2606), 33, sym__AND, sym_GENERIC, sym__MOD, @@ -153486,44 +154420,51 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [128987] = 6, + [129585] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1948), 3, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, + STATE(1944), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 33, + ACTIONS(2688), 28, sym__AND, - sym_GENERIC, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -153536,35 +154477,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [129045] = 6, + [129653] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1949), 3, + STATE(1945), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2384), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 33, + ACTIONS(2382), 32, sym__AND, - sym_GENERIC, - sym_LOOP, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -153572,12 +154510,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -153588,46 +154528,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [129103] = 6, + anon_sym_PIPE, + [129711] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1950), 3, + ACTIONS(3242), 1, + sym_exponentiate, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(1946), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2494), 33, + ACTIONS(2688), 25, sym__AND, - sym_GENERIC, - sym__MOD, + sym_ELSE, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -153639,29 +154589,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [129161] = 6, + [129785] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1951), 3, + STATE(1947), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(3244), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [129841] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1948), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3246), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [129897] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1949), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 33, + ACTIONS(2378), 33, sym__AND, + sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -153675,7 +154725,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -153694,28 +154743,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [129219] = 6, + [129955] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1952), 3, + ACTIONS(3250), 1, + sym_library_constant_unit, + STATE(2743), 1, + sym__unit, + STATE(1950), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 7, - anon_sym_EQ, + ACTIONS(3248), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 32, + ACTIONS(2382), 27, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -153727,14 +154783,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, + sym_THEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -153745,19 +154798,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [129277] = 6, + [130019] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1953), 3, + STATE(1951), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, + ACTIONS(3142), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -153765,7 +154817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 32, + ACTIONS(3140), 32, sym__AND, sym_DOWNTO, sym__MOD, @@ -153798,33 +154850,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [129335] = 6, + [130077] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1954), 3, + STATE(1952), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(3136), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 33, + ACTIONS(3134), 32, sym__AND, - sym_GENERIC, - sym_LOOP, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -153832,12 +154883,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -153848,35 +154901,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [129393] = 6, + anon_sym_PIPE, + [130135] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1955), 3, + STATE(1953), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(3132), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 33, + ACTIONS(3130), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -153884,12 +154935,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -153900,30 +154953,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [129451] = 6, + anon_sym_PIPE, + [130193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1956), 3, + STATE(1954), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3252), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [130249] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1955), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2530), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 33, + ACTIONS(2528), 33, sym__AND, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -153932,6 +155034,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -153954,7 +155057,58 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [129509] = 6, + [130307] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1956), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3154), 39, + sym_identifier, + sym__ABS, + sym__AND, + sym_GUARDED, + sym_INERTIAL, + sym__NAND, + sym_NEW, + sym__NOR, + sym__NOT, + sym_NULL, + sym__OR, + sym_REJECT, + sym_TRANSPORT, + sym_UNAFFECTED, + sym__XNOR, + sym__XOR, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + [130363] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -153965,17 +155119,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 33, + ACTIONS(2602), 33, sym__AND, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -154006,33 +155160,41 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [129567] = 6, + [130421] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, STATE(1958), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 33, + ACTIONS(2678), 28, sym__AND, - sym_GENERIC, - sym_LOOP, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -154042,8 +155204,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154056,9 +155217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [129625] = 6, + [130489] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -154069,17 +155228,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 33, + ACTIONS(2640), 33, sym__AND, + sym_GENERATE, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -154110,7 +155269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [129683] = 6, + [130547] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -154121,14 +155280,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 33, + ACTIONS(2580), 33, sym__AND, sym_GENERIC, sym__MOD, @@ -154139,11 +155298,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -154162,7 +155321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [129741] = 6, + [130605] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -154173,17 +155332,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 33, + ACTIONS(2670), 33, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -154192,6 +155350,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -154214,44 +155373,52 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [129799] = 6, + [130663] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3242), 1, + sym_exponentiate, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(1962), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2552), 33, - sym__AND, - sym_GENERIC, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154260,49 +155427,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [129857] = 12, + ACTIONS(2710), 8, + sym__AND, + sym_ELSE, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + [130743] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3224), 1, - sym_exponentiate, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, - sym_shift_operator, STATE(1963), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(2466), 33, sym__AND, - sym_FOR, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -154312,7 +155472,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154324,46 +155485,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [129927] = 14, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [130801] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3224), 1, - sym_exponentiate, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, STATE(1964), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2474), 33, sym__AND, - sym_FOR, + sym_GENERATE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -154372,7 +155524,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154384,50 +155537,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [130001] = 15, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [130859] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3226), 1, - sym_exponentiate, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, - sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1965), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 22, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2498), 33, sym__AND, + sym_GENERATE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -154436,7 +155576,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154445,114 +155586,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [130077] = 16, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [130917] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3226), 1, - sym_exponentiate, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, - sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1966), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 16, + ACTIONS(3154), 39, + sym_identifier, + sym__ABS, sym__AND, + sym_FORCE, + sym_INERTIAL, sym__NAND, + sym_NEW, sym__NOR, - sym_OF, + sym__NOT, + sym_NULL, sym__OR, + sym_REJECT, + sym_TRANSPORT, + sym_UNAFFECTED, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [130155] = 17, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + [130973] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3226), 1, - sym_exponentiate, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, - sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1967), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2502), 33, + sym__AND, + sym_GENERATE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154561,46 +155689,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 8, - sym__AND, - sym__NAND, - sym__NOR, - sym_OF, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - [130235] = 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [131031] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, - sym_shift_operator, STATE(1968), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(3114), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 28, + ACTIONS(3112), 32, sym__AND, - sym_FOR, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -154612,11 +155728,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -154627,46 +155746,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [130303] = 14, + anon_sym_PIPE, + [131089] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3224), 1, - sym_exponentiate, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, STATE(1969), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 33, sym__AND, - sym_FOR, + sym_GENERATE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -154675,7 +155783,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154687,37 +155796,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [130377] = 11, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [131147] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, - sym_shift_operator, STATE(1970), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(3100), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 28, + ACTIONS(3098), 32, sym__AND, - sym_FOR, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -154729,11 +155832,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -154744,62 +155850,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [130445] = 18, + anon_sym_PIPE, + [131205] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3226), 1, + ACTIONS(3254), 1, sym_exponentiate, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, + STATE(452), 1, sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, sym_shift_operator, - ACTIONS(2678), 2, - sym_OF, - anon_sym_COMMA, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, STATE(1971), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 27, sym__AND, + sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154808,7 +155906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [130527] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [131275] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -154819,21 +155920,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 33, - sym_identifier, + ACTIONS(2674), 33, sym__AND, - sym_FOR, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -154843,11 +155945,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154860,7 +155959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [130585] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [131333] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -154871,17 +155972,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 33, + ACTIONS(2662), 33, sym__AND, + sym_GENERATE, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -154912,7 +156013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [130643] = 6, + [131391] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -154923,21 +156024,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 33, - sym_identifier, + ACTIONS(2370), 33, sym__AND, - sym_FOR, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -154947,11 +156049,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -154964,7 +156063,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [130701] = 5, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [131449] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -154975,102 +156076,33 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3228), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [130757] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3032), 1, - sym_exponentiate, - STATE(491), 1, - sym_multiplying_operator, - STATE(492), 1, - sym_adding_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2793), 2, - sym_UNITS, - anon_sym_SEMI, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(1976), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2506), 33, sym__AND, + sym_GENERATE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -155079,32 +156111,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [130839] = 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [131507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3224), 1, + STATE(1976), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3256), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [131563] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3242), 1, sym_exponentiate, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, + STATE(594), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, @@ -155112,23 +156201,24 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 22, - sym__AND, - sym_FOR, - sym__NAND, - sym__NOR, - sym__OR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 16, + sym__AND, + sym_ELSE, + sym__NAND, + sym__NOR, + sym__OR, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -155140,7 +156230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [130915] = 6, + [131641] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -155151,33 +156241,35 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 33, + ACTIONS(2722), 33, + sym_identifier, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -155190,9 +156282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [130973] = 6, + [131699] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -155203,35 +156293,35 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2430), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 33, + ACTIONS(2428), 32, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -155242,9 +156332,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [131031] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [131757] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -155255,35 +156345,36 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(3010), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 33, + ACTIONS(3008), 32, sym__AND, - sym_GENERIC, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -155294,134 +156385,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [131089] = 16, + anon_sym_PIPE, + [131815] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3224), 1, - sym_exponentiate, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1981), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(3084), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3082), 32, + sym__AND, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 16, - sym__AND, - sym_FOR, - sym__NAND, - sym__NOR, - sym__OR, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [131167] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_PIPE, + [131873] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3224), 1, - sym_exponentiate, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1982), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3068), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3066), 32, + sym__AND, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 8, - sym__AND, - sym_FOR, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - [131247] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_PIPE, + [131931] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -155432,15 +156501,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 33, + ACTIONS(2572), 33, sym__AND, + sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -155450,7 +156520,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -155473,113 +156542,112 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [131305] = 5, + [131989] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + STATE(452), 1, + sym_adding_operator, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, + sym_shift_operator, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, STATE(1984), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3230), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [131361] = 18, + ACTIONS(2690), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 28, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [132057] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3224), 1, + ACTIONS(3254), 1, sym_exponentiate, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, + STATE(452), 1, sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, sym_shift_operator, - ACTIONS(2678), 2, - sym_FOR, - anon_sym_SEMI, - ACTIONS(2686), 2, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1985), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2688), 25, sym__AND, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -155588,40 +156656,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [131443] = 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [132131] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3234), 1, - sym_library_constant_unit, - STATE(2652), 1, - sym__unit, STATE(1986), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3232), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(2614), 33, sym__AND, - sym_INERTIAL, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -155631,6 +156695,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -155643,62 +156709,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [131507] = 18, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132189] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(3236), 2, - sym_WHEN, - anon_sym_SEMI, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1987), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2576), 33, sym__AND, + sym_GENERATE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -155707,7 +156757,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [131589] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132247] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -155718,47 +156774,48 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3238), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2612), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2610), 33, + sym__AND, + sym_GENERATE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [131645] = 5, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132305] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -155769,47 +156826,48 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3240), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2472), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 33, + sym__AND, + sym_GENERATE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [131701] = 5, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132363] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -155820,47 +156878,48 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3242), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2558), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2556), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [131757] = 6, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132421] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -155871,17 +156930,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 33, + ACTIONS(2666), 33, sym__AND, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -155890,6 +156948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -155912,53 +156971,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [131815] = 12, + [132479] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3244), 1, - sym_exponentiate, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, STATE(1992), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(2636), 33, sym__AND, - sym_ELSE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -155970,46 +157020,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [131885] = 14, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132537] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3244), 1, - sym_exponentiate, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, + STATE(610), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, STATE(1993), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3092), 30, sym__AND, - sym_ELSE, + sym_BUS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -156020,6 +157065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -156030,59 +157076,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [131959] = 15, + sym_exponentiate, + [132599] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3244), 1, - sym_exponentiate, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1994), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 22, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 33, sym__AND, - sym_ELSE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156091,60 +157123,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [132035] = 16, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132657] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3244), 1, - sym_exponentiate, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1995), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2610), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 16, - sym__AND, - sym_ELSE, - sym__NAND, - sym__NOR, - sym__OR, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156153,52 +157175,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [132113] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132715] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3244), 1, - sym_exponentiate, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1996), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2576), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156207,60 +157227,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 8, - sym__AND, - sym_ELSE, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - [132193] = 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132773] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, STATE(1997), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 28, + ACTIONS(2614), 33, sym__AND, - sym_ELSE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156273,62 +157283,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [132261] = 18, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132831] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3244), 1, - sym_exponentiate, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(3246), 2, - sym_ELSE, - anon_sym_SEMI, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(1998), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2572), 33, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156337,7 +157331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [132343] = 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132889] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -156348,28 +157348,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 7, - anon_sym_EQ, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3248), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_PIPE, - ACTIONS(3064), 25, + ACTIONS(2636), 33, sym__AND, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -156379,7 +157373,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -156390,46 +157387,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [132403] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [132947] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3244), 1, - sym_exponentiate, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, STATE(2000), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2666), 33, sym__AND, - sym_ELSE, + sym_GENERATE, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -156438,7 +157425,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156450,41 +157438,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [132477] = 11, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [133005] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, STATE(2001), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 28, + ACTIONS(2556), 33, sym__AND, - sym_ELSE, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -156494,7 +157477,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156507,71 +157491,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [132545] = 18, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [133063] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3244), 1, - sym_exponentiate, - STATE(665), 1, - sym_logical_operator, - STATE(666), 1, - sym_multiplying_operator, - STATE(667), 1, - sym_adding_operator, - STATE(669), 1, - sym_relational_operator, - STATE(679), 1, - sym_shift_operator, - ACTIONS(2678), 2, - sym_ELSE, - anon_sym_SEMI, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, STATE(2002), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3006), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3004), 32, sym__AND, + sym_DOWNTO, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [132627] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_PIPE, + [133121] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -156582,17 +157556,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2430), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 33, - sym_identifier, + ACTIONS(2428), 32, sym__AND, - sym_ELSE, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -156604,15 +157578,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -156623,58 +157596,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [132685] = 5, + anon_sym_PIPE, + [133179] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3242), 1, + sym_exponentiate, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, STATE(2004), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3250), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [132741] = 6, + ACTIONS(2718), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2716), 22, + sym__AND, + sym_ELSE, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [133255] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -156685,21 +157669,22 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 33, - sym_identifier, + ACTIONS(2670), 33, sym__AND, - sym_ELSE, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -156709,11 +157694,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156726,7 +157708,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [132799] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [133313] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -156737,14 +157721,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 33, + ACTIONS(2580), 33, sym__AND, sym_GENERATE, sym_GENERIC, @@ -156778,34 +157762,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [132857] = 6, + [133371] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3242), 1, + sym_exponentiate, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, STATE(2007), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2662), 33, + ACTIONS(2678), 25, sym__AND, - sym_GENERATE, - sym_GENERIC, - sym__MOD, + sym_ELSE, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -156814,8 +157810,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156827,86 +157822,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [132915] = 5, + [133445] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3260), 1, + sym_library_constant_unit, + STATE(2723), 1, + sym__unit, STATE(2008), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3252), 39, + ACTIONS(3258), 4, sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [132971] = 6, + ACTIONS(2384), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2382), 27, + sym__AND, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [133509] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3242), 1, + sym_exponentiate, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, STATE(2009), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 33, + ACTIONS(2678), 27, sym__AND, - sym_GENERIC, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -156914,11 +157921,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -156930,10 +157935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [133029] = 6, + [133579] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -156944,14 +157946,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 33, + ACTIONS(2602), 33, sym__AND, sym_GENERIC, sym_LOOP, @@ -156985,7 +157987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133087] = 6, + [133637] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -156996,17 +157998,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 33, + ACTIONS(2424), 33, sym__AND, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -157019,6 +158020,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -157037,7 +158039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133145] = 6, + [133695] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -157048,16 +158050,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 33, + ACTIONS(2640), 33, sym__AND, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -157070,7 +158073,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -157089,7 +158091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133203] = 6, + [133753] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -157100,17 +158102,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 33, + ACTIONS(2420), 33, sym__AND, sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -157123,6 +158124,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -157141,7 +158143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133261] = 6, + [133811] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -157152,14 +158154,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 33, + ACTIONS(2374), 33, sym__AND, sym_GENERIC, sym_LOOP, @@ -157193,7 +158195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133319] = 6, + [133869] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -157204,17 +158206,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 33, + ACTIONS(2674), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -157245,7 +158247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133377] = 6, + [133927] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -157256,16 +158258,17 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 33, + ACTIONS(2662), 33, sym__AND, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -157278,7 +158281,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -157297,7 +158299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133435] = 6, + [133985] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -157308,14 +158310,14 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 33, + ACTIONS(2404), 33, sym__AND, sym_GENERIC, sym__MOD, @@ -157326,11 +158328,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -157349,7 +158351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133493] = 6, + [134043] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -157360,15 +158362,16 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 33, + ACTIONS(2606), 33, sym__AND, + sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -157378,7 +158381,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -157401,7 +158403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [133551] = 6, + [134101] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -157412,164 +158414,7 @@ static const uint16_t ts_small_parse_table[] = { sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2552), 33, - sym__AND, - sym_GENERIC, - sym_LOOP, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [133609] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(681), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2020), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3066), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3064), 30, - sym__AND, - sym_BUS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [133671] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2021), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3146), 39, - sym_identifier, - sym__ABS, - sym__AND, - sym_GUARDED, - sym_INERTIAL, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym_REJECT, - sym_TRANSPORT, - sym_UNAFFECTED, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [133727] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2022), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3254), 39, + ACTIONS(3262), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -157609,40 +158454,33 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [133783] = 9, + [134157] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3258), 1, - sym_library_constant_unit, - STATE(2607), 1, - sym__unit, - STATE(2023), 3, + STATE(2020), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3256), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(2450), 33, sym__AND, - sym_LOOP, + sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -157652,6 +158490,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -157664,116 +158504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [133847] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2024), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3260), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [133903] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2025), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3262), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [133959] = 5, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [134215] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2026), 3, + STATE(2021), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -157817,14 +158557,14 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [134015] = 5, + [134271] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2027), 3, + STATE(2022), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -157868,14 +158608,14 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [134071] = 5, + [134327] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2028), 3, + STATE(2023), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -157919,69 +158659,82 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [134127] = 5, + [134383] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2029), 3, + ACTIONS(3076), 1, + sym_exponentiate, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(649), 1, + sym_adding_operator, + STATE(650), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2882), 2, + sym_UNITS, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2024), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3270), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [134183] = 5, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [134465] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2030), 3, + STATE(2025), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3272), 39, + ACTIONS(3270), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -158021,78 +158774,78 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [134239] = 5, + [134521] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2031), 3, + STATE(2026), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3274), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2508), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2506), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [134295] = 6, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [134579] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2032), 3, + STATE(2027), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 33, + ACTIONS(2370), 33, sym__AND, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -158102,6 +158855,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -158124,49 +158878,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [134353] = 9, + [134637] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3278), 1, - sym_library_constant_unit, - STATE(2672), 1, - sym__unit, - STATE(2033), 3, + STATE(2028), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3276), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(2662), 33, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -158179,18 +158928,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [134417] = 5, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [134695] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2034), 3, + STATE(2029), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3280), 39, + ACTIONS(3272), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -158230,44 +158981,63 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [134473] = 6, + [134751] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2035), 3, + ACTIONS(3018), 1, + sym_exponentiate, + ACTIONS(3220), 1, + sym_GENERATE, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(6383), 1, + sym_case_generate_block, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2030), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2568), 33, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -158276,24 +159046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [134531] = 5, + [134835] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2036), 3, + STATE(2031), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3282), 39, + ACTIONS(3274), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -158333,33 +159097,31 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [134587] = 6, + [134891] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2037), 3, + STATE(2032), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(3006), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 33, + ACTIONS(3004), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -158369,10 +159131,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -158383,30 +159147,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [134645] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [134949] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2038), 3, + STATE(2033), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 33, + ACTIONS(2614), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -158437,44 +159201,62 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [134703] = 6, + [135007] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2039), 3, + ACTIONS(3278), 1, + sym_exponentiate, + STATE(462), 1, + sym_adding_operator, + STATE(464), 1, + sym_multiplying_operator, + STATE(643), 1, + sym_shift_operator, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(3276), 2, + sym_SEVERITY, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2034), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2622), 33, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym_LOOP, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -158483,39 +159265,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [134761] = 6, + [135089] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2040), 3, + STATE(2035), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3280), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [135145] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2036), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(3068), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 33, + ACTIONS(3066), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -158525,10 +159350,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -158539,35 +159366,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [134819] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [135203] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2041), 3, + STATE(452), 1, + sym_adding_operator, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, + sym_shift_operator, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, + STATE(2037), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 33, + ACTIONS(2678), 28, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -158577,8 +159412,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -158591,36 +159425,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [134877] = 6, + [135271] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2042), 3, + ACTIONS(3254), 1, + sym_exponentiate, + STATE(452), 1, + sym_adding_operator, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, + sym_shift_operator, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2038), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2468), 33, + ACTIONS(2678), 25, sym__AND, - sym_GENERATE, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_PARAMETER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -158629,8 +159473,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -158642,36 +159485,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [134935] = 6, + [135345] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2043), 3, + STATE(2039), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(3084), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 33, + ACTIONS(3082), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -158681,10 +159519,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -158695,30 +159535,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [134993] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [135403] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2044), 3, + STATE(2040), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(2452), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 33, + ACTIONS(2450), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -158749,28 +159589,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [135051] = 6, + [135461] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2045), 3, + STATE(2041), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 33, + ACTIONS(2606), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -158801,33 +159641,31 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [135109] = 6, + [135519] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2046), 3, + STATE(2042), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(3010), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 33, + ACTIONS(3008), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -158837,10 +159675,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -158851,35 +159691,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135167] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [135577] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2047), 3, + STATE(2043), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(3100), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 33, + ACTIONS(3098), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -158889,10 +159727,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -158903,79 +159743,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135225] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2048), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3284), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [135281] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [135635] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2049), 3, + STATE(2044), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, - anon_sym_EQ, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 32, + ACTIONS(2692), 33, + sym_identifier, sym__AND, sym__MOD, sym__NAND, @@ -158988,14 +159777,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -159006,86 +159797,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [135339] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2050), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3286), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [135395] = 6, + [135693] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2051), 3, + STATE(2045), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(3114), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2544), 33, + ACTIONS(3112), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -159095,10 +159831,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -159109,46 +159847,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135453] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [135751] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2052), 3, + ACTIONS(2894), 1, + sym_exponentiate, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(3282), 2, + sym_WHEN, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2046), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2404), 33, + ACTIONS(2704), 6, sym__AND, - sym_GENERATE, - sym_GENERIC, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -159157,33 +159913,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135511] = 6, + [135833] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2053), 3, + STATE(2047), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 33, + ACTIONS(2378), 33, sym__AND, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -159192,7 +159943,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -159215,46 +159965,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [135569] = 6, + [135891] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2054), 3, + STATE(2048), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2452), 6, + ACTIONS(3132), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2450), 33, + ACTIONS(3130), 32, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -159265,48 +160015,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135627] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [135949] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2055), 3, + STATE(2049), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(3136), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 33, + ACTIONS(3134), 32, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -159317,35 +160067,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135685] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [136007] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2056), 3, + STATE(2050), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(3142), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 33, + ACTIONS(3140), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -159355,10 +160103,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -159369,48 +160119,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135743] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [136065] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2057), 3, + STATE(2051), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2550), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + ACTIONS(3284), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [136121] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2052), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3094), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 33, + ACTIONS(3092), 32, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -159421,35 +160222,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135801] = 6, + anon_sym_GT_GT, + anon_sym_PIPE, + [136179] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2058), 3, + STATE(2053), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2384), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 33, + ACTIONS(2382), 32, sym__AND, - sym_GENERATE, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -159459,10 +160258,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, + sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -159473,39 +160274,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [135859] = 8, + anon_sym_GT_GT, + anon_sym_PIPE, + [136237] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(647), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2059), 3, + STATE(2054), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [136293] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2055), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 30, + ACTIONS(2580), 33, sym__AND, - sym_BUS, + sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -159515,9 +160363,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -159529,28 +160377,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [135921] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [136351] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2060), 3, + ACTIONS(3242), 1, + sym_exponentiate, + STATE(594), 1, + sym_shift_operator, + STATE(595), 1, + sym_relational_operator, + STATE(596), 1, + sym_logical_operator, + STATE(677), 1, + sym_adding_operator, + STATE(720), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(3288), 2, + sym_ELSE, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2056), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [136433] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2057), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 33, + ACTIONS(2670), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -159581,27 +160495,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [135979] = 6, + [136491] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2061), 3, + STATE(2058), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 33, + ACTIONS(2602), 33, sym__AND, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -159615,6 +160528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -159633,28 +160547,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [136037] = 6, + [136549] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2062), 3, + STATE(2059), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2426), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 33, + ACTIONS(2424), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -159685,180 +160599,26 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [136095] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2063), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3288), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [136151] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2064), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3290), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [136207] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2065), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3292), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [136263] = 6, + [136607] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2066), 3, + STATE(2060), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 33, + ACTIONS(2640), 33, sym__AND, - sym_GENERATE, sym_GENERIC, sym__MOD, sym__NAND, @@ -159872,6 +160632,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -159890,28 +160651,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [136321] = 6, + [136665] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2067), 3, + STATE(2061), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2422), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 33, + ACTIONS(2420), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -159942,91 +160703,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [136379] = 5, + [136723] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2068), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3294), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [136435] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3298), 1, - sym_library_constant_unit, - STATE(2643), 1, - sym__unit, - STATE(2069), 3, + STATE(2062), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3296), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(2466), 33, sym__AND, - sym_IS, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -160036,6 +160739,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -160048,79 +160753,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [136499] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2070), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3300), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [136555] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [136781] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2071), 3, + STATE(2063), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 33, + ACTIONS(2474), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -160151,28 +160807,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [136613] = 6, + [136839] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2072), 3, + STATE(2064), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 33, + ACTIONS(2498), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -160203,229 +160859,181 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [136671] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2073), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3302), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [136727] = 5, + [136897] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2074), 3, + STATE(2065), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3304), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2676), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2674), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [136783] = 5, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [136955] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2075), 3, + STATE(2066), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3306), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2376), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [136839] = 5, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [137013] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2076), 3, + STATE(2067), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3308), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2504), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2502), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [136895] = 6, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [137071] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2077), 3, + STATE(2068), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 33, + ACTIONS(2502), 33, sym__AND, sym_GENERIC, sym_LOOP, @@ -160459,62 +161067,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [136953] = 18, + [137129] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3224), 1, - sym_exponentiate, - STATE(541), 1, - sym_multiplying_operator, - STATE(542), 1, - sym_adding_operator, - STATE(690), 1, - sym_logical_operator, - STATE(691), 1, - sym_relational_operator, - STATE(692), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(3310), 2, - sym_FOR, - anon_sym_SEMI, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2078), 3, + STATE(2069), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 33, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -160523,31 +161113,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [137035] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [137187] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2079), 3, + STATE(2070), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 7, - anon_sym_EQ, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 32, + ACTIONS(2674), 33, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -160555,14 +161152,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -160573,65 +161169,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137093] = 19, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [137245] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - ACTIONS(3216), 1, - sym_GENERATE, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(6377), 1, - sym_case_generate_block, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2080), 3, + STATE(2071), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2662), 33, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -160640,25 +161217,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [137177] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [137303] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2081), 3, + STATE(2072), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 33, + ACTIONS(2370), 33, sym__AND, sym_GENERIC, sym_LOOP, @@ -160692,31 +161275,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [137235] = 6, + [137361] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2082), 3, + STATE(2073), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 7, - anon_sym_EQ, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 32, + ACTIONS(2506), 33, sym__AND, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -160726,12 +161311,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -160742,33 +161325,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137293] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [137419] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2083), 3, + STATE(2074), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 7, - anon_sym_EQ, + ACTIONS(2406), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 32, + ACTIONS(2404), 33, sym__AND, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -160778,12 +161363,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -160794,16 +161377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137351] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [137477] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2084), 3, + STATE(2075), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -160815,7 +161398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 32, + ACTIONS(3290), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_PIPE, + ACTIONS(3092), 25, sym__AND, sym__MOD, sym__NAND, @@ -160830,12 +161421,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -160846,28 +161432,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137409] = 6, + [137537] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2085), 3, + STATE(2076), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 7, - anon_sym_EQ, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 32, + ACTIONS(2722), 33, + sym_identifier, sym__AND, sym__MOD, sym__NAND, @@ -160880,14 +161464,16 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -160898,20 +161484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137467] = 5, + [137595] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2086), 3, + STATE(2077), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3312), 39, + ACTIONS(3292), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -160951,70 +161535,69 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [137523] = 6, + [137651] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2087), 3, + STATE(2078), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3084), 32, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137581] = 5, - ACTIONS(3), 1, + ACTIONS(3294), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [137707] = 5, + ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2088), 3, + STATE(2079), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3314), 39, + ACTIONS(3296), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -161054,193 +161637,171 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [137637] = 25, + [137763] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(3316), 1, + STATE(2080), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3298), 39, + sym_identifier, sym_ALIAS, - ACTIONS(3318), 1, + sym_ARCHITECTURE, + sym_ASSERT, sym_ATTRIBUTE, - ACTIONS(3320), 1, + sym_COMPONENT, + sym_CONFIGURATION, sym_CONSTANT, - ACTIONS(3322), 1, - sym_END, - ACTIONS(3324), 1, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, sym_FILE, - ACTIONS(3326), 1, + sym_FOR, sym_FUNCTION, - ACTIONS(3328), 1, sym_GROUP, - ACTIONS(3330), 1, + sym_IMPURE, + sym_LIBRARY, sym_PACKAGE, - ACTIONS(3332), 1, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, sym_SHARED, - ACTIONS(3334), 1, sym_SUBTYPE, - ACTIONS(3336), 1, sym_TYPE, - ACTIONS(3338), 1, sym_USE, - ACTIONS(3340), 1, sym_VARIABLE, - STATE(2178), 1, - aux_sym_protected_type_body_repeat1, - STATE(3601), 1, - sym__protected_type_body_declarative_item, - STATE(5773), 1, - sym__subprogram_specification, - STATE(7903), 1, - sym_protected_type_body_end, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2089), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3605), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [137733] = 6, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [137819] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2090), 3, + STATE(2081), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3080), 32, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137791] = 6, + ACTIONS(3300), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [137875] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2091), 3, + STATE(2082), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3076), 32, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137849] = 5, + ACTIONS(3302), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [137931] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2092), 3, + STATE(2083), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3342), 39, + ACTIONS(3304), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -161280,31 +161841,33 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [137905] = 6, + [137987] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2093), 3, + STATE(2084), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 7, - anon_sym_EQ, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 32, + ACTIONS(2572), 33, sym__AND, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -161314,12 +161877,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -161330,33 +161891,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [137963] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [138045] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2094), 3, + STATE(2085), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 7, - anon_sym_EQ, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 32, + ACTIONS(2614), 33, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -161364,14 +161926,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, - sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -161382,29 +161943,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_GT_GT, - anon_sym_PIPE, - [138021] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [138103] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2095), 3, + STATE(2086), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2552), 33, + ACTIONS(2576), 33, sym__AND, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -161413,7 +161975,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -161436,28 +161997,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [138079] = 6, + [138161] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2096), 3, + STATE(2087), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 33, + ACTIONS(2610), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -161488,83 +162049,18 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [138137] = 19, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - ACTIONS(3216), 1, - sym_GENERATE, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(6309), 1, - sym_case_generate_block, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2097), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [138221] = 5, + [138219] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2098), 3, + STATE(2088), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3344), 39, + ACTIONS(3306), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -161604,57 +162100,58 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [138277] = 5, + [138275] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2099), 3, + STATE(2089), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3346), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2472), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 33, + sym__AND, + sym_GENERIC, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, [138333] = 6, ACTIONS(3), 1, sym__grave_accent, @@ -161662,20 +162159,21 @@ static const uint16_t ts_small_parse_table[] = { sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2100), 3, + STATE(2090), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 33, + ACTIONS(2636), 33, sym__AND, sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -161688,7 +162186,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -161714,25 +162211,26 @@ static const uint16_t ts_small_parse_table[] = { sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2101), 3, + STATE(2091), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 33, - sym_identifier, + ACTIONS(2666), 33, sym__AND, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -161742,11 +162240,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -161759,18 +162254,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [138449] = 5, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [138449] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2102), 3, + STATE(2092), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2558), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2556), 33, + sym__AND, + sym_GENERIC, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [138507] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2093), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3348), 39, + ACTIONS(3308), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -161810,18 +162359,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [138505] = 5, + [138563] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2103), 3, + STATE(2094), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3350), 39, + ACTIONS(3310), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -161861,58 +162410,6 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [138561] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2104), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2712), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2710), 33, - sym_identifier, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym_OF, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, [138619] = 5, ACTIONS(3), 1, sym__grave_accent, @@ -161920,11 +162417,11 @@ static const uint16_t ts_small_parse_table[] = { sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2105), 3, + STATE(2095), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3352), 39, + ACTIONS(3312), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -161971,11 +162468,11 @@ static const uint16_t ts_small_parse_table[] = { sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2106), 3, + STATE(2096), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3354), 39, + ACTIONS(3314), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -162022,11 +162519,11 @@ static const uint16_t ts_small_parse_table[] = { sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2107), 3, + STATE(2097), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3356), 39, + ACTIONS(3316), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -162066,51 +162563,53 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [138787] = 11, + [138787] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, + ACTIONS(3278), 1, + sym_exponentiate, + STATE(462), 1, sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, + STATE(464), 1, + sym_multiplying_operator, + STATE(643), 1, sym_shift_operator, - STATE(2108), 3, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + STATE(2098), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 28, + ACTIONS(2678), 27, sym__AND, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -162122,56 +162621,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [138855] = 14, + [138857] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3226), 1, + ACTIONS(3278), 1, sym_exponentiate, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, + STATE(462), 1, sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, + STATE(464), 1, + sym_multiplying_operator, + STATE(643), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2109), 3, + STATE(2099), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 25, + ACTIONS(2678), 25, sym__AND, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -162183,94 +162681,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [138929] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2110), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3352), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [138985] = 12, + [138931] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3212), 1, + ACTIONS(3278), 1, sym_exponentiate, - STATE(508), 1, + STATE(462), 1, sym_adding_operator, - STATE(513), 1, + STATE(464), 1, sym_multiplying_operator, - STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, + STATE(643), 1, sym_shift_operator, - STATE(2111), 3, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2100), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(2716), 22, sym__AND, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym_SEVERITY, @@ -162289,55 +162742,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [139055] = 14, + [139007] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3212), 1, + ACTIONS(3278), 1, sym_exponentiate, - STATE(508), 1, + STATE(462), 1, sym_adding_operator, - STATE(513), 1, + STATE(464), 1, sym_multiplying_operator, - STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, + STATE(643), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2112), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2101), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 25, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 16, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_SEVERITY, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -162349,36 +162804,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [139129] = 6, + [139085] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2113), 3, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + STATE(2102), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 33, + ACTIONS(2688), 28, sym__AND, - sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -162386,10 +162845,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -162402,30 +162861,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [139187] = 6, + [139153] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2114), 3, + STATE(2103), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 33, + ACTIONS(2498), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -162434,6 +162890,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -162456,59 +162913,44 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [139245] = 15, + [139211] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3212), 1, - sym_exponentiate, - STATE(508), 1, - sym_adding_operator, - STATE(513), 1, - sym_multiplying_operator, - STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2115), 3, + STATE(2104), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 22, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2474), 33, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -162517,60 +162959,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [139321] = 16, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [139269] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3212), 1, - sym_exponentiate, - STATE(508), 1, - sym_adding_operator, - STATE(513), 1, - sym_multiplying_operator, - STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2116), 3, + STATE(2105), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2466), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 16, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_SEVERITY, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -162579,52 +163011,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [139399] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [139327] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3212), 1, + ACTIONS(3278), 1, sym_exponentiate, - STATE(508), 1, + STATE(462), 1, sym_adding_operator, - STATE(513), 1, + STATE(464), 1, sym_multiplying_operator, - STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, + STATE(643), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2117), 3, + STATE(2106), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -162633,7 +163071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - ACTIONS(2694), 8, + ACTIONS(2710), 8, sym__AND, sym__NAND, sym__NOR, @@ -162642,28 +163080,27 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - [139479] = 6, + [139407] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2118), 3, + STATE(2107), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 33, + ACTIONS(2640), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -162672,6 +163109,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -162694,48 +163132,52 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [139537] = 11, + [139465] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(508), 1, + ACTIONS(3318), 1, + sym_exponentiate, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, sym_adding_operator, - STATE(513), 1, - sym_multiplying_operator, STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, - sym_shift_operator, - STATE(2119), 3, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2108), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 28, + ACTIONS(2688), 25, sym__AND, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -162750,63 +163192,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [139605] = 18, + [139539] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3058), 1, - sym_exponentiate, - STATE(525), 1, - sym_multiplying_operator, - STATE(526), 1, + STATE(462), 1, sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, + STATE(464), 1, + sym_multiplying_operator, + STATE(643), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + STATE(2109), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2678), 28, + sym__AND, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, sym__REM, - ACTIONS(2793), 2, - sym_OF, - anon_sym_COMMA, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym_SEVERITY, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2120), 3, + sym_exponentiate, + [139607] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2110), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 33, sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -162815,18 +163295,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [139687] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [139665] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2121), 3, + STATE(2111), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3358), 39, + ACTIONS(3320), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -162866,264 +163352,44 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [139743] = 5, + [139721] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2122), 3, + STATE(2112), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3360), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [139799] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2123), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(551), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [139855] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2124), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3362), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [139911] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3212), 1, - sym_exponentiate, - STATE(508), 1, - sym_adding_operator, - STATE(513), 1, - sym_multiplying_operator, - STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2125), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2716), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2714), 25, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__ROL, - sym__ROR, - sym_SEVERITY, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [139985] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(508), 1, - sym_adding_operator, - STATE(513), 1, - sym_multiplying_operator, - STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, - sym_shift_operator, - STATE(2126), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2672), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 28, + ACTIONS(2670), 33, sym__AND, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -163136,161 +163402,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [140053] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2127), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3352), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [140109] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3212), 1, - sym_exponentiate, - STATE(508), 1, - sym_adding_operator, - STATE(513), 1, - sym_multiplying_operator, - STATE(590), 1, - sym_logical_operator, - STATE(595), 1, - sym_relational_operator, - STATE(597), 1, - sym_shift_operator, - ACTIONS(2678), 2, - sym_SEVERITY, - anon_sym_SEMI, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2128), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [140191] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [139779] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2129), 3, + STATE(2113), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 33, - sym_identifier, + ACTIONS(2580), 33, sym__AND, + sym_GENERIC, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -163303,32 +163454,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [140249] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [139837] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2130), 3, + STATE(2114), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 7, - anon_sym_EQ, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 32, + ACTIONS(2378), 33, sym__AND, - sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -163336,14 +163489,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_WHEN, + sym_THEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -163354,19 +163506,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [140307] = 5, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [139895] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2131), 3, + STATE(2115), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3364), 39, + ACTIONS(3322), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -163406,75 +163559,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [140363] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, - sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, - sym_shift_operator, - STATE(2132), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2674), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 28, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym_OF, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [140431] = 5, + [139951] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2133), 3, + STATE(2116), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3366), 39, + ACTIONS(3324), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -163514,18 +163610,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [140487] = 5, + [140007] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2134), 3, + STATE(2117), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3368), 39, + ACTIONS(3326), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -163565,18 +163661,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [140543] = 5, + [140063] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2135), 3, + STATE(2118), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3370), 39, + ACTIONS(3328), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -163616,27 +163712,28 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [140599] = 6, + [140119] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2136), 3, + STATE(2119), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 33, + ACTIONS(2556), 33, sym__AND, sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -163645,7 +163742,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -163668,46 +163764,34 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [140657] = 14, + [140177] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3226), 1, - sym_exponentiate, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, - sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2137), 3, + STATE(2120), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2666), 33, sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -163716,7 +163800,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -163728,130 +163813,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [140731] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2138), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3372), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [140787] = 5, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [140235] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2139), 3, + ACTIONS(3278), 1, + sym_exponentiate, + STATE(462), 1, + sym_adding_operator, + STATE(464), 1, + sym_multiplying_operator, + STATE(643), 1, + sym_shift_operator, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2121), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3374), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [140843] = 6, + ACTIONS(2690), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2688), 25, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym_SEVERITY, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [140309] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2140), 3, + STATE(2122), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 33, + ACTIONS(2636), 33, sym__AND, - sym_GENERATE, sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -163882,26 +163928,35 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [140901] = 6, + [140367] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2141), 3, + STATE(462), 1, + sym_adding_operator, + STATE(464), 1, + sym_multiplying_operator, + STATE(643), 1, + sym_shift_operator, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + STATE(2123), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 33, - sym_identifier, + ACTIONS(2688), 28, sym__AND, sym__MOD, sym__NAND, @@ -163917,10 +163972,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, @@ -163934,43 +163985,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [140959] = 12, + [140435] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3226), 1, - sym_exponentiate, - STATE(552), 1, - sym_multiplying_operator, - STATE(559), 1, - sym_adding_operator, - STATE(703), 1, - sym_logical_operator, - STATE(704), 1, - sym_relational_operator, - STATE(705), 1, - sym_shift_operator, - STATE(2142), 3, + STATE(2124), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(2610), 33, sym__AND, + sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -163980,7 +164021,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -163992,181 +164034,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [141029] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2143), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3376), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [141085] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2144), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3378), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [141141] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2145), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3380), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [141197] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [140493] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2146), 3, + STATE(2125), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2608), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 33, + ACTIONS(2606), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -164197,25 +164089,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [141255] = 6, + [140551] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2147), 3, + STATE(2126), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2398), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2396), 33, + ACTIONS(2576), 33, sym__AND, sym_GENERIC, sym_INERTIAL, @@ -164249,181 +164141,80 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [141313] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2148), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3382), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [141369] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2149), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3384), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [141425] = 5, + [140609] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2150), 3, + STATE(2127), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3386), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2452), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2450), 33, + sym__AND, + sym_GENERIC, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [141481] = 6, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [140667] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2151), 3, + STATE(2128), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2596), 6, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2594), 33, + ACTIONS(2602), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -164454,31 +164245,33 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [141539] = 6, + [140725] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2152), 3, + STATE(2129), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2642), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 33, - sym_identifier, + ACTIONS(2640), 33, sym__AND, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -164486,14 +164279,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -164506,63 +164295,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [141597] = 19, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [140783] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - ACTIONS(3216), 1, - sym_GENERATE, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(6255), 1, - sym_case_generate_block, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2153), 3, + STATE(2130), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2466), 33, sym__AND, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -164571,130 +164343,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [141681] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [140841] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2154), 3, + STATE(2131), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3388), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [141737] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2155), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3390), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [141793] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2156), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2542), 6, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2540), 33, + ACTIONS(2474), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -164707,6 +164382,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -164725,28 +164401,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [141851] = 6, + [140899] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2157), 3, + STATE(2132), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2492), 6, + ACTIONS(2500), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2490), 33, + ACTIONS(2498), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -164759,6 +164434,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -164777,31 +164453,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [141909] = 6, + [140957] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2158), 3, + STATE(2133), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 33, - sym_identifier, + ACTIONS(2502), 33, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -164809,14 +164486,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, + sym_THEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -164829,63 +164503,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [141967] = 19, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [141015] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - ACTIONS(3392), 1, - sym_WHEN, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - STATE(5929), 1, - sym_when_element, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2159), 3, + STATE(2134), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2376), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 33, sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -164894,193 +164551,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [142051] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2160), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3394), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [142107] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2161), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3396), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [142163] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2162), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3398), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [142219] = 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [141073] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - STATE(2163), 3, + STATE(2135), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2676), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 28, + ACTIONS(2674), 33, sym__AND, + sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -165088,10 +164591,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -165104,55 +164607,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [142287] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [141131] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3218), 1, - sym_exponentiate, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2164), 3, + STATE(2136), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2662), 33, sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -165164,40 +164658,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [142361] = 9, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [141189] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3402), 1, - sym_library_constant_unit, - STATE(2673), 1, - sym__unit, - STATE(2165), 3, + STATE(2137), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3400), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(2370), 33, sym__AND, - sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -165205,8 +164694,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -165219,181 +164711,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [142425] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2166), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3404), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [142481] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2167), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [142537] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2168), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3408), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [142593] = 6, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [141247] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2169), 3, + STATE(2138), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2612), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2610), 33, + ACTIONS(2506), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -165406,6 +164746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -165424,27 +164765,28 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [142651] = 6, + [141305] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2170), 3, + STATE(2139), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2668), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2666), 33, + ACTIONS(2572), 33, sym__AND, sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -165453,7 +164795,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -165476,44 +164817,62 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [142709] = 6, + [141363] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2171), 3, + ACTIONS(3332), 1, + sym_exponentiate, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(3330), 2, + sym_FOR, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2140), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2616), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2614), 33, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym_INERTIAL, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -165522,39 +164881,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [142767] = 6, + [141445] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2172), 3, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + STATE(2141), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2620), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 33, + ACTIONS(2678), 28, sym__AND, - sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -165562,10 +164922,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -165578,97 +164938,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [142825] = 5, + [141513] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2173), 3, + ACTIONS(3318), 1, + sym_exponentiate, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2142), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3410), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [142881] = 6, + ACTIONS(2680), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2678), 25, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [141587] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2174), 3, + ACTIONS(3318), 1, + sym_exponentiate, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + STATE(2143), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2664), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 33, + ACTIONS(2678), 27, sym__AND, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -165680,28 +165056,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [142939] = 6, + [141657] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2175), 3, + STATE(2144), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2642), 6, + ACTIONS(2508), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 33, + ACTIONS(2506), 33, sym__AND, sym_GENERIC, sym_INERTIAL, @@ -165735,44 +165108,62 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [142997] = 6, + [141715] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2176), 3, + ACTIONS(3278), 1, + sym_exponentiate, + STATE(462), 1, + sym_adding_operator, + STATE(464), 1, + sym_multiplying_operator, + STATE(643), 1, + sym_shift_operator, + STATE(644), 1, + sym_relational_operator, + STATE(645), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 2, + sym_SEVERITY, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2145), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2546), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2544), 33, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym_INERTIAL, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -165781,55 +165172,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [143055] = 8, + [141797] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(509), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2177), 3, + STATE(2146), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 7, - anon_sym_EQ, + ACTIONS(2604), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(2602), 33, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -165840,112 +165222,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [143117] = 25, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(3316), 1, - sym_ALIAS, - ACTIONS(3318), 1, - sym_ATTRIBUTE, - ACTIONS(3320), 1, - sym_CONSTANT, - ACTIONS(3322), 1, - sym_END, - ACTIONS(3324), 1, - sym_FILE, - ACTIONS(3326), 1, - sym_FUNCTION, - ACTIONS(3328), 1, - sym_GROUP, - ACTIONS(3330), 1, - sym_PACKAGE, - ACTIONS(3332), 1, - sym_SHARED, - ACTIONS(3334), 1, - sym_SUBTYPE, - ACTIONS(3336), 1, - sym_TYPE, - ACTIONS(3338), 1, - sym_USE, - ACTIONS(3340), 1, - sym_VARIABLE, - STATE(2282), 1, - aux_sym_protected_type_body_repeat1, - STATE(3601), 1, - sym__protected_type_body_declarative_item, - STATE(5773), 1, - sym__subprogram_specification, - STATE(7971), 1, - sym_protected_type_body_end, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2178), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3605), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [143213] = 11, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [141855] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - STATE(2179), 3, + STATE(2147), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2372), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 28, + ACTIONS(2370), 33, sym__AND, + sym_GENERIC, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -165953,10 +165258,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -165969,49 +165274,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [143281] = 9, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [141913] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3414), 1, - sym_library_constant_unit, - STATE(2650), 1, - sym__unit, - STATE(2180), 3, + STATE(2148), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3412), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(2390), 6, + ACTIONS(2574), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(2572), 33, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -166024,106 +165326,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [143345] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2181), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3416), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [143401] = 14, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [141971] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3218), 1, - sym_exponentiate, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2182), 3, + STATE(2149), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2616), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 25, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2614), 33, sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -166135,42 +165377,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [143475] = 12, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [142029] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3218), 1, - sym_exponentiate, - STATE(459), 1, - sym_adding_operator, - STATE(490), 1, - sym_multiplying_operator, - STATE(709), 1, - sym_logical_operator, - STATE(710), 1, - sym_relational_operator, - STATE(712), 1, - sym_shift_operator, - STATE(2183), 3, + STATE(2150), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2578), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(2576), 33, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -166178,10 +165413,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, + sym_THEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -166193,28 +165429,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [143545] = 6, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [142087] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2184), 3, + STATE(2151), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2520), 6, + ACTIONS(2612), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2518), 33, + ACTIONS(2610), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -166227,6 +165465,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -166245,28 +165484,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [143603] = 6, + [142145] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2185), 3, + STATE(2152), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2516), 6, + ACTIONS(2472), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2514), 33, + ACTIONS(2470), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -166279,6 +165517,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -166297,28 +165536,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [143661] = 6, + [142203] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2186), 3, + STATE(2153), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2500), 6, + ACTIONS(2638), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2498), 33, + ACTIONS(2636), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -166331,6 +165569,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -166349,28 +165588,27 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [143719] = 6, + [142261] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2187), 3, + STATE(2154), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2470), 6, + ACTIONS(2668), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2468), 33, + ACTIONS(2666), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -166383,6 +165621,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -166401,128 +165640,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [143777] = 5, + [142319] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2188), 3, + STATE(2155), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3418), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [143833] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2189), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2452), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2450), 33, - sym__AND, - sym_GENERIC, - sym_INERTIAL, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [143891] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2190), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2624), 6, + ACTIONS(2558), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 33, + ACTIONS(2556), 33, sym__AND, sym_GENERIC, sym__MOD, @@ -166533,11 +165669,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -166556,44 +165692,46 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [143949] = 6, + [142377] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2191), 3, + STATE(2156), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 33, + ACTIONS(2722), 33, + sym_identifier, sym__AND, - sym_GENERIC, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -166606,20 +165744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [144007] = 5, + [142435] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2192), 3, + STATE(2157), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3420), 39, + ACTIONS(3334), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -166659,18 +165795,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144063] = 5, + [142491] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2193), 3, + STATE(2158), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3422), 39, + ACTIONS(3336), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -166710,69 +165846,82 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144119] = 5, + [142547] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2194), 3, + ACTIONS(3072), 1, + sym_exponentiate, + STATE(544), 1, + sym_adding_operator, + STATE(554), 1, + sym_multiplying_operator, + STATE(567), 1, + sym_shift_operator, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2882), 2, + sym_OF, + anon_sym_COMMA, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2159), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3424), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [144175] = 5, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [142629] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2195), 3, + STATE(2160), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3426), 39, + ACTIONS(3338), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -166812,127 +165961,96 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144231] = 5, + [142685] = 25, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2196), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3428), 39, - sym_identifier, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(3340), 1, sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, + ACTIONS(3342), 1, sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, + ACTIONS(3344), 1, sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, + ACTIONS(3346), 1, + sym_END, + ACTIONS(3348), 1, sym_FILE, - sym_FOR, + ACTIONS(3350), 1, sym_FUNCTION, + ACTIONS(3352), 1, sym_GROUP, - sym_IMPURE, - sym_LIBRARY, + ACTIONS(3354), 1, sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, + ACTIONS(3356), 1, sym_SHARED, + ACTIONS(3358), 1, sym_SUBTYPE, + ACTIONS(3360), 1, sym_TYPE, + ACTIONS(3362), 1, sym_USE, + ACTIONS(3364), 1, sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [144287] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2197), 3, + STATE(2198), 1, + aux_sym_protected_type_body_repeat1, + STATE(3728), 1, + sym__protected_type_body_declarative_item, + STATE(5880), 1, + sym__subprogram_specification, + STATE(8111), 1, + sym_protected_type_body_end, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2161), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3430), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [144343] = 6, + STATE(3727), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [142781] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2198), 3, + STATE(2162), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2436), 6, + ACTIONS(2504), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 33, + ACTIONS(2502), 33, sym__AND, sym_GENERIC, sym_INERTIAL, @@ -166966,63 +166084,96 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [144401] = 19, + [142839] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, - ACTIONS(3392), 1, - sym_WHEN, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - STATE(5925), 1, - sym_when_element, - ACTIONS(2686), 2, + STATE(2163), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2500), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2498), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2199), 3, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [142897] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2164), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2476), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2474), 33, sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_PARAMETER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -167031,18 +166182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [144485] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [142955] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2200), 3, + STATE(2165), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3432), 39, + ACTIONS(3366), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167082,44 +166239,97 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144541] = 6, + [143011] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2201), 3, + STATE(2166), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3368), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [143067] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2167), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2432), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2430), 33, + ACTIONS(2692), 33, + sym_identifier, sym__AND, - sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -167132,20 +166342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [144599] = 5, + [143125] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2202), 3, + STATE(2168), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3434), 39, + ACTIONS(3370), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167185,76 +166393,77 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144655] = 5, + [143181] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2203), 3, + STATE(2169), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3436), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, + ACTIONS(2672), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [144711] = 6, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [143239] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2204), 3, + STATE(2170), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2582), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 33, + ACTIONS(2580), 33, sym__AND, sym_GENERIC, sym__MOD, @@ -167288,18 +166497,70 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [144769] = 5, + [143297] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2205), 3, + STATE(2171), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3438), 39, + ACTIONS(2380), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2378), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [143355] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2172), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3372), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167339,18 +166600,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144825] = 5, + [143411] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2206), 3, + STATE(2173), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3440), 39, + ACTIONS(3374), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167390,18 +166651,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144881] = 5, + [143467] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2207), 3, + STATE(2174), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3442), 39, + ACTIONS(3376), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167441,18 +166702,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144937] = 5, + [143523] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2208), 3, + STATE(2175), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3444), 39, + ACTIONS(3378), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167492,18 +166753,70 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [144993] = 5, + [143579] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2209), 3, + STATE(2176), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3446), 39, + ACTIONS(2430), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 33, + sym__AND, + sym_GENERIC, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [143637] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2177), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3380), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167543,18 +166856,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [145049] = 5, + [143693] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2210), 3, + STATE(2178), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3448), 39, + ACTIONS(3382), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167594,18 +166907,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [145105] = 5, + [143749] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2211), 3, + STATE(2179), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3450), 39, + ACTIONS(3384), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167645,28 +166958,27 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [145161] = 6, + [143805] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2212), 3, + STATE(2180), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2410), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 33, + ACTIONS(2428), 33, sym__AND, sym_GENERIC, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -167679,6 +166991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_DOT, @@ -167697,76 +167010,25 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [145219] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2213), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3452), 39, - sym_identifier, - sym_ALIAS, - sym_ARCHITECTURE, - sym_ASSERT, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_CONTEXT, - sym_DISCONNECT, - sym_ENTITY, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_LIBRARY, - sym_PACKAGE, - sym_POSTPONED, - sym_PROCEDURE, - sym_PROCESS, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - sym__end_of_file, - anon_sym_LPAREN, - anon_sym_LT_LT, - [145275] = 6, + [143863] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2214), 3, + STATE(2181), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2406), 6, + ACTIONS(2468), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2404), 33, + ACTIONS(2466), 33, sym__AND, sym_GENERIC, sym_INERTIAL, @@ -167800,33 +167062,32 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [145333] = 6, + [143921] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2215), 3, + STATE(2182), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3094), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 33, + ACTIONS(3092), 32, sym__AND, - sym_GENERIC, - sym_IS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -167834,12 +167095,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -167850,20 +167113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [145391] = 5, + anon_sym_PIPE, + [143979] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2216), 3, + STATE(2183), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3454), 39, + ACTIONS(3386), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167903,18 +167165,18 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [145447] = 5, + [144035] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2217), 3, + STATE(2184), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3456), 39, + ACTIONS(3388), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -167954,98 +167216,40 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [145503] = 19, + [144091] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2928), 1, - sym_exponentiate, ACTIONS(3392), 1, - sym_WHEN, - STATE(444), 1, - sym_logical_operator, - STATE(445), 1, - sym_relational_operator, - STATE(447), 1, - sym_shift_operator, - STATE(538), 1, - sym_adding_operator, - STATE(545), 1, - sym_multiplying_operator, - STATE(8030), 1, - sym_when_element, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2218), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [145587] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2219), 3, + sym_library_constant_unit, + STATE(2738), 1, + sym__unit, + STATE(2185), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2496), 6, + ACTIONS(3390), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2494), 33, + ACTIONS(2382), 27, sym__AND, - sym_GENERIC, sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, sym__REM, sym__ROL, sym__ROR, @@ -168055,8 +167259,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -168069,20 +167271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [145645] = 5, + [144155] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2220), 3, + STATE(2186), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3458), 39, + ACTIONS(3394), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -168122,44 +167322,113 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [145701] = 6, + [144211] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2221), 3, + STATE(2187), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2574), 6, + ACTIONS(3396), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [144267] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3332), 1, + sym_exponentiate, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 2, + sym_FOR, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2188), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2572), 33, + ACTIONS(2704), 6, sym__AND, - sym_GENERIC, - sym_INERTIAL, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_PARAMETER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -168168,34 +167437,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [145759] = 6, + [144349] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2222), 3, + STATE(2189), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2570), 6, + ACTIONS(2380), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2568), 33, + ACTIONS(2378), 33, sym__AND, sym_GENERIC, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -168204,6 +167466,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -168226,18 +167489,18 @@ static const uint16_t ts_small_parse_table[] = { sym_exponentiate, anon_sym_SQUOTE, anon_sym_LBRACK, - [145817] = 5, + [144407] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2223), 3, + STATE(2190), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3460), 39, + ACTIONS(3398), 39, sym_identifier, sym_ALIAS, sym_ARCHITECTURE, @@ -168277,111 +167540,6274 @@ static const uint16_t ts_small_parse_table[] = { sym__end_of_file, anon_sym_LPAREN, anon_sym_LT_LT, - [145873] = 6, + [144463] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2224), 3, + STATE(2191), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2554), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2552), 33, - sym__AND, - sym_GENERIC, - sym_INERTIAL, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_PARAMETER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_DOT, + ACTIONS(3400), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [145931] = 15, + anon_sym_LT_LT, + [144519] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3462), 1, - sym_exponentiate, - STATE(564), 1, - sym_multiplying_operator, - STATE(565), 1, - sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, + STATE(2192), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3402), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [144575] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2193), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3404), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [144631] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2194), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2430), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [144689] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2195), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3406), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [144745] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2196), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3408), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [144801] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2197), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3410), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [144857] = 25, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(3340), 1, + sym_ALIAS, + ACTIONS(3342), 1, + sym_ATTRIBUTE, + ACTIONS(3344), 1, + sym_CONSTANT, + ACTIONS(3346), 1, + sym_END, + ACTIONS(3348), 1, + sym_FILE, + ACTIONS(3350), 1, + sym_FUNCTION, + ACTIONS(3352), 1, + sym_GROUP, + ACTIONS(3354), 1, + sym_PACKAGE, + ACTIONS(3356), 1, + sym_SHARED, + ACTIONS(3358), 1, + sym_SUBTYPE, + ACTIONS(3360), 1, + sym_TYPE, + ACTIONS(3362), 1, + sym_USE, + ACTIONS(3364), 1, + sym_VARIABLE, + STATE(2422), 1, + aux_sym_protected_type_body_repeat1, + STATE(3728), 1, + sym__protected_type_body_declarative_item, + STATE(5880), 1, + sym__subprogram_specification, + STATE(8183), 1, + sym_protected_type_body_end, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2198), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3727), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [144953] = 19, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2894), 1, + sym_exponentiate, + ACTIONS(3412), 1, + sym_WHEN, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + STATE(6130), 1, + sym_when_element, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2199), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [145037] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2200), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3414), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145093] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2201), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3416), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145149] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2202), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3418), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145205] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2203), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3420), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145261] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2204), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145317] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2205), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3424), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145373] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2206), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3426), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145429] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2207), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2380), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2378), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [145487] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2208), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3428), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145543] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2209), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3430), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145599] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3434), 1, + sym_library_constant_unit, + STATE(2742), 1, + sym__unit, + STATE(2210), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3432), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2382), 27, + sym__AND, + sym_GENERATE, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [145663] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2211), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3436), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145719] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2212), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145775] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2213), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3440), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145831] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2214), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [145887] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2215), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2530), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2528), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [145945] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2216), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2430), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [146003] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2217), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2608), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2606), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [146061] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2218), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2452), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2450), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [146119] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2219), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2468), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2466), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [146177] = 17, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3332), 1, + sym_exponentiate, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2220), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 8, + sym__AND, + sym_FOR, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + [146257] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3332), 1, + sym_exponentiate, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2221), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2714), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 16, + sym__AND, + sym_FOR, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [146335] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3332), 1, + sym_exponentiate, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2222), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2718), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2716), 22, + sym__AND, + sym_FOR, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [146411] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2223), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2426), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2424), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [146469] = 19, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2894), 1, + sym_exponentiate, + ACTIONS(3412), 1, + sym_WHEN, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + STATE(6125), 1, + sym_when_element, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2224), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [146553] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2225), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3444), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [146609] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2226), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3446), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [146665] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2227), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2694), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2692), 33, + sym_identifier, + sym__AND, + sym_FOR, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [146723] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2228), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2422), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2420), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [146781] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2229), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2724), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2722), 33, + sym_identifier, + sym__AND, + sym_FOR, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [146839] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2230), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2476), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2474), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [146897] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2231), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2500), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2498), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [146955] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3254), 1, + sym_exponentiate, + STATE(452), 1, + sym_adding_operator, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, + sym_shift_operator, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 2, + sym_OF, + anon_sym_COMMA, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2232), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [147037] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2233), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3448), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [147093] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + STATE(2234), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 28, + sym__AND, + sym_FOR, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [147161] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2235), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2472), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [147219] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2236), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2616), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2614), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [147277] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3332), 1, + sym_exponentiate, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2237), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2688), 25, + sym__AND, + sym_FOR, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [147351] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(445), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2238), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3094), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3092), 29, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_PIPE, + [147413] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3452), 1, + sym_library_constant_unit, + STATE(2720), 1, + sym__unit, + STATE(2239), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(2384), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2382), 27, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [147477] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2240), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2504), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2502), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [147535] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2241), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2372), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2370), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [147593] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + STATE(2242), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 28, + sym__AND, + sym_FOR, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [147661] = 17, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3254), 1, + sym_exponentiate, + STATE(452), 1, + sym_adding_operator, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, + sym_shift_operator, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2243), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 8, + sym__AND, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + [147741] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2244), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2406), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2404), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [147799] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3254), 1, + sym_exponentiate, + STATE(452), 1, + sym_adding_operator, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, + sym_shift_operator, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2245), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2714), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 16, + sym__AND, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [147877] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3254), 1, + sym_exponentiate, + STATE(452), 1, + sym_adding_operator, + STATE(455), 1, + sym_multiplying_operator, + STATE(567), 1, + sym_shift_operator, + STATE(569), 1, + sym_relational_operator, + STATE(570), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2246), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2718), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2716), 22, + sym__AND, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [147953] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3332), 1, + sym_exponentiate, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2247), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2678), 25, + sym__AND, + sym_FOR, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [148027] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2248), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2508), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2506), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148085] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3332), 1, + sym_exponentiate, + STATE(472), 1, + sym_adding_operator, + STATE(475), 1, + sym_multiplying_operator, + STATE(573), 1, + sym_shift_operator, + STATE(576), 1, + sym_relational_operator, + STATE(577), 1, + sym_logical_operator, + STATE(2249), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 27, + sym__AND, + sym_FOR, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [148155] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2250), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2530), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2528), 33, + sym__AND, + sym_GENERATE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148213] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2251), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3454), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [148269] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2252), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2664), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2662), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148327] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2253), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2676), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2674), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148385] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2254), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2376), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148443] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2255), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3456), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [148499] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2256), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3458), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [148555] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2257), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2642), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2640), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148613] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2258), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2574), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2572), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148671] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2259), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2578), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2576), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148729] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2260), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2612), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2610), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148787] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2261), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2472), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2470), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148845] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2262), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2638), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2636), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148903] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2263), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2668), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2666), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [148961] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2264), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2558), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2556), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [149019] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2265), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3460), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [149075] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3318), 1, + sym_exponentiate, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2696), 2, + sym_UNITS, + anon_sym_SEMI, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2266), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [149157] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2267), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3462), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [149213] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2268), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2604), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2602), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [149271] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2269), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2530), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2528), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [149329] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2270), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3464), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [149385] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2271), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3466), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [149441] = 19, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2894), 1, + sym_exponentiate, + ACTIONS(3412), 1, + sym_WHEN, + STATE(441), 1, + sym_logical_operator, + STATE(442), 1, + sym_relational_operator, + STATE(448), 1, + sym_shift_operator, + STATE(698), 1, + sym_adding_operator, + STATE(699), 1, + sym_multiplying_operator, + STATE(8250), 1, + sym_when_element, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2272), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [149525] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2273), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [149581] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2274), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3470), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [149637] = 17, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3318), 1, + sym_exponentiate, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2275), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + ACTIONS(2710), 8, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + [149717] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3318), 1, + sym_exponentiate, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2276), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2714), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 16, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [149795] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3318), 1, + sym_exponentiate, + STATE(561), 1, + sym_shift_operator, + STATE(562), 1, + sym_relational_operator, + STATE(563), 1, + sym_logical_operator, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2277), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2718), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2716), 22, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [149871] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2278), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3472), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [149927] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2279), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3474), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [149983] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2280), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3476), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [150039] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2281), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2672), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2670), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150097] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2282), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2582), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2580), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150155] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2283), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2530), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2528), 33, + sym__AND, + sym_GENERIC, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150213] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2284), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2422), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2420), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150271] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2285), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3478), 39, + sym_identifier, + sym_ALIAS, + sym_ARCHITECTURE, + sym_ASSERT, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_CONTEXT, + sym_DISCONNECT, + sym_ENTITY, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_LIBRARY, + sym_PACKAGE, + sym_POSTPONED, + sym_PROCEDURE, + sym_PROCESS, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + sym__end_of_file, + anon_sym_LPAREN, + anon_sym_LT_LT, + [150327] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2286), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2426), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2424), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150385] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2287), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2608), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2606), 33, + sym__AND, + sym_GENERIC, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150443] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2288), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2430), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 33, + sym__AND, + sym_GENERATE, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150501] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2289), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2530), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2528), 33, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150559] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2290), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2406), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2404), 33, + sym__AND, + sym_GENERIC, + sym_INERTIAL, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_PARAMETER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [150617] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2797), 1, + sym_exponentiate, + ACTIONS(3480), 1, + anon_sym_SEMI, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2291), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [150698] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2292), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3010), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3008), 31, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_PIPE, + [150755] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3482), 1, + sym_exponentiate, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + STATE(2293), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 26, + sym__AND, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [150824] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3482), 1, + sym_exponentiate, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2294), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2678), 24, + sym__AND, + sym_LOOP, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [150897] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3482), 1, + sym_exponentiate, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2295), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2718), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2716), 21, + sym__AND, + sym_LOOP, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [150972] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3482), 1, + sym_exponentiate, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2296), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2714), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 15, + sym__AND, + sym_LOOP, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [151049] = 17, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3482), 1, + sym_exponentiate, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2297), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2710), 7, + sym__AND, + sym_LOOP, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [151128] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + STATE(2298), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 27, + sym__AND, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [151195] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2299), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3094), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3092), 32, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [151252] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3482), 1, + sym_exponentiate, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2300), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2688), 24, + sym__AND, + sym_LOOP, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [151325] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + STATE(2301), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 27, + sym__AND, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [151392] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2696), 1, + sym_LOOP, + ACTIONS(3482), 1, + sym_exponentiate, + STATE(428), 1, + sym_adding_operator, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2302), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [151473] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2303), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2724), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2722), 32, + sym_identifier, + sym__AND, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [151530] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2304), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2694), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2692), 32, + sym_identifier, + sym__AND, + sym_LOOP, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [151587] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2305), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3068), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3066), 32, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_AMP, - STATE(2225), 3, + sym_exponentiate, + [151644] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2306), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 21, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3082), 32, sym__AND, - sym_INERTIAL, + sym_BUS, + sym_DOWNTO, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -168389,55 +173815,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [146006] = 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [151701] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3464), 1, - sym_exponentiate, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, - sym_multiplying_operator, - STATE(553), 1, - sym_adding_operator, - STATE(554), 1, - sym_shift_operator, - STATE(555), 1, - sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2226), 3, + STATE(2307), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3008), 32, sym__AND, + sym_BUS, + sym_DOWNTO, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -168448,94 +173869,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [146079] = 24, + sym_exponentiate, + [151758] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - ACTIONS(3466), 1, - sym_BEGIN, - STATE(2353), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2227), 3, + STATE(2308), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [146172] = 6, + ACTIONS(3100), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3098), 32, + sym__AND, + sym_BUS, + sym_DOWNTO, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym_REGISTER, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [151815] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2228), 3, + STATE(2309), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 32, + ACTIONS(3112), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -168568,25 +173972,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [146229] = 6, + [151872] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2229), 3, + STATE(2310), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 32, + ACTIONS(3140), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -168619,35 +174023,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [146286] = 11, + [151929] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(630), 1, + ACTIONS(3484), 1, + sym_exponentiate, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, sym_logical_operator, - STATE(639), 1, + STATE(652), 1, + sym_multiplying_operator, + STATE(661), 1, + sym_adding_operator, + STATE(2311), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 26, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [151998] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3484), 1, + sym_exponentiate, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, sym_relational_operator, - STATE(640), 1, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, + sym_multiplying_operator, + STATE(661), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2312), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2678), 24, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [152071] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3484), 1, + sym_exponentiate, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, + sym_multiplying_operator, + STATE(661), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2313), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2718), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2716), 21, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [152146] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3484), 1, + sym_exponentiate, + STATE(612), 1, sym_shift_operator, - STATE(658), 1, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, + sym_multiplying_operator, + STATE(661), 1, sym_adding_operator, - STATE(660), 1, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2314), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2714), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2712), 15, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [152223] = 17, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3484), 1, + sym_exponentiate, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, sym_multiplying_operator, - STATE(2230), 3, + STATE(661), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2315), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2710), 7, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_THEN, + sym__XNOR, + sym__XOR, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [152302] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, + sym_multiplying_operator, + STATE(661), 1, + sym_adding_operator, + STATE(2316), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(2678), 27, sym__AND, sym__MOD, sym__NAND, @@ -168675,25 +174378,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [146353] = 6, + [152369] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2231), 3, + STATE(600), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2317), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3094), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3092), 29, + sym__AND, + sym_GENERIC, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [152430] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3484), 1, + sym_exponentiate, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, + sym_multiplying_operator, + STATE(661), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2318), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2688), 24, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [152503] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, + sym_multiplying_operator, + STATE(661), 1, + sym_adding_operator, + STATE(2319), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2690), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 27, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_THEN, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [152570] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2696), 1, + sym_THEN, + ACTIONS(3484), 1, + sym_exponentiate, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, + sym_multiplying_operator, + STATE(661), 1, + sym_adding_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2320), 3, sym__tool_directive, sym_line_comment, sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [152651] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2321), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 32, + ACTIONS(2722), 32, sym_identifier, sym__AND, sym__MOD, @@ -168726,33 +174660,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [146410] = 6, + [152708] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2232), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3486), 1, + sym_BEGIN, + STATE(2344), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2322), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [152801] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3488), 1, + sym_exponentiate, + ACTIONS(3490), 1, + sym_SELECT, + STATE(709), 1, + sym_multiplying_operator, + STATE(712), 1, + sym_adding_operator, + STATE(715), 1, + sym_shift_operator, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2323), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [152882] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2324), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3094), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 32, + ACTIONS(3092), 31, sym__AND, - sym_BUS, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -168760,13 +174824,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -168777,33 +174842,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [146467] = 6, + anon_sym_PIPE, + [152939] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2233), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3492), 1, + sym_BEGIN, + STATE(2349), 1, + aux_sym_subprogram_head_repeat1, + STATE(3701), 1, + sym__subprogram_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2325), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3690), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [153032] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2326), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 32, + ACTIONS(2692), 32, + sym_identifier, sym__AND, - sym_BUS, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -168811,12 +174944,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_THEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -168828,25 +174963,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [146524] = 6, + [153089] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2234), 3, + STATE(2327), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 32, + ACTIONS(3130), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -168879,25 +175014,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [146581] = 6, + [153146] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2235), 3, + STATE(2328), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 32, + ACTIONS(3134), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -168905,6 +175040,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -168916,7 +175052,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -168930,28 +175065,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [146638] = 6, + [153203] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2236), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3486), 1, + sym_BEGIN, + STATE(2343), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2329), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [153296] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3494), 1, + sym_exponentiate, + STATE(575), 1, + sym_adding_operator, + STATE(580), 1, + sym_multiplying_operator, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + STATE(2330), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 32, + ACTIONS(2678), 26, sym__AND, - sym_BUS, - sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -168963,13 +175178,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -168980,38 +175191,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [146695] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(663), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2237), 3, + [153365] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3494), 1, + sym_exponentiate, + STATE(575), 1, + sym_adding_operator, + STATE(580), 1, + sym_multiplying_operator, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2331), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2678), 24, + sym__AND, + sym_IS, + sym__NAND, + sym__NOR, + sym__OR, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [153438] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3494), 1, + sym_exponentiate, + STATE(575), 1, + sym_adding_operator, + STATE(580), 1, + sym_multiplying_operator, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2332), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(2716), 21, sym__AND, - sym_GENERIC, - sym__MOD, + sym_IS, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -169020,9 +175302,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -169030,65 +175310,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [146756] = 18, + [153513] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3464), 1, + ACTIONS(3494), 1, sym_exponentiate, - ACTIONS(3468), 1, - sym_SELECT, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, - sym_multiplying_operator, - STATE(553), 1, + STATE(575), 1, sym_adding_operator, - STATE(554), 1, + STATE(580), 1, + sym_multiplying_operator, + STATE(622), 1, sym_shift_operator, - STATE(555), 1, + STATE(623), 1, sym_relational_operator, - ACTIONS(2686), 2, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2238), 3, + STATE(2333), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2712), 15, + sym__AND, + sym_IS, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -169097,52 +175371,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [146837] = 12, + [153590] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3470), 1, + ACTIONS(3494), 1, sym_exponentiate, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, + STATE(575), 1, sym_adding_operator, - STATE(660), 1, + STATE(580), 1, sym_multiplying_operator, - STATE(2239), 3, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2334), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 26, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, + ACTIONS(2710), 7, + sym__AND, + sym_IS, + sym__NAND, + sym__NOR, + sym__OR, sym__XNOR, sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -169151,55 +175433,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [146906] = 14, + [153669] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3470), 1, - sym_exponentiate, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, + STATE(575), 1, sym_adding_operator, - STATE(660), 1, + STATE(580), 1, sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2240), 3, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + STATE(2335), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 27, sym__AND, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -169213,25 +175488,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [146979] = 6, + sym_exponentiate, + [153736] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2241), 3, + STATE(2336), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 32, + ACTIONS(3140), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -169239,6 +175515,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -169250,7 +175527,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -169264,25 +175540,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [147036] = 6, + [153793] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2242), 3, + STATE(2337), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 32, + ACTIONS(2382), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -169290,6 +175566,7 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -169301,7 +175578,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -169315,46 +175591,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [147093] = 15, + [153850] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3470), 1, + ACTIONS(3494), 1, sym_exponentiate, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, + STATE(575), 1, sym_adding_operator, - STATE(660), 1, + STATE(580), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2243), 3, + STATE(2338), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 21, + ACTIONS(2688), 24, sym__AND, + sym_IS, sym__NAND, sym__NOR, sym__OR, @@ -169364,7 +175637,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -169375,28 +175647,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [147168] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [153923] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2244), 3, + STATE(575), 1, + sym_adding_operator, + STATE(580), 1, + sym_multiplying_operator, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + STATE(2339), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 32, + ACTIONS(2688), 27, sym__AND, - sym_BUS, - sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -169408,13 +175692,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -169426,46 +175706,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [147225] = 6, + [153990] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2245), 3, + ACTIONS(2696), 1, + sym_IS, + ACTIONS(3494), 1, + sym_exponentiate, + STATE(575), 1, + sym_adding_operator, + STATE(580), 1, + sym_multiplying_operator, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2340), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 32, + ACTIONS(2704), 6, sym__AND, - sym_BUS, - sym_DOWNTO, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2698), 8, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -169473,32 +175769,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [147282] = 6, + [154071] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2246), 3, + STATE(2341), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 32, + ACTIONS(2722), 32, + sym_identifier, sym__AND, - sym_BUS, - sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -169510,13 +175802,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -169528,54 +175820,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [147339] = 14, + [154128] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3470), 1, - sym_exponentiate, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, - sym_adding_operator, - STATE(660), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2247), 3, + STATE(2342), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2692), 32, + sym_identifier, sym__AND, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -169587,7 +175870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [147412] = 24, + sym_exponentiate, + [154185] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -169596,49 +175880,49 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(2898), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(2908), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(2924), 1, sym_VARIABLE, - ACTIONS(3472), 1, + ACTIONS(3496), 1, sym_BEGIN, - STATE(2271), 1, - aux_sym_subprogram_head_repeat1, - STATE(3759), 1, - sym__subprogram_declarative_item, - STATE(5675), 1, + STATE(2344), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(2248), 3, + STATE(2343), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3760), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -169656,114 +175940,57 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [147505] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, - sym_adding_operator, - STATE(660), 1, - sym_multiplying_operator, - STATE(2249), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2716), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2714), 27, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_THEN, - sym__XNOR, - sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [147572] = 24, + [154278] = 23, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(3498), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(3501), 1, sym_ATTRIBUTE, - ACTIONS(2898), 1, + ACTIONS(3504), 1, + sym_BEGIN, + ACTIONS(3506), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(3509), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(3512), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(3515), 1, sym_GROUP, - ACTIONS(2908), 1, + ACTIONS(3521), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(3524), 1, + sym_PROCEDURE, + ACTIONS(3527), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(3530), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(3533), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(3536), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(3539), 1, sym_VARIABLE, - ACTIONS(3466), 1, - sym_BEGIN, - STATE(2359), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, + STATE(3957), 1, sym__process_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - ACTIONS(43), 2, + ACTIONS(3518), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(2250), 3, + STATE(2344), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + aux_sym_sequential_block_head_repeat1, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -169781,149 +176008,30 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [147665] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3470), 1, - sym_exponentiate, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, - sym_adding_operator, - STATE(660), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2251), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2698), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 15, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_THEN, - sym__XNOR, - sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [147742] = 17, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3470), 1, - sym_exponentiate, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, - sym_adding_operator, - STATE(660), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2252), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2694), 7, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_THEN, - sym__XNOR, - sym__XOR, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [147821] = 6, + [154369] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2253), 3, + STATE(445), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2345), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 7, - anon_sym_EQ, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 31, + ACTIONS(3092), 29, sym__AND, sym__MOD, sym__NAND, @@ -169939,11 +176047,10 @@ static const uint16_t ts_small_parse_table[] = { sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -169954,40 +176061,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [147878] = 12, + [154430] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, - sym_exponentiate, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, - sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, - sym_shift_operator, - STATE(2254), 3, + ACTIONS(3542), 1, + anon_sym_EQ_GT, + STATE(2346), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(3136), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 26, + ACTIONS(3134), 30, sym__AND, - sym_IS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -169999,10 +176096,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -170012,54 +176112,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [147947] = 14, + sym_exponentiate, + [154489] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, + ACTIONS(2797), 1, sym_exponentiate, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, + ACTIONS(3544), 1, + anon_sym_SEMI, + STATE(532), 1, sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2255), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2347), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 24, + ACTIONS(2704), 6, sym__AND, - sym_IS, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -170068,122 +176176,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [148020] = 15, + [154570] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, + ACTIONS(2797), 1, sym_exponentiate, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, + ACTIONS(3546), 1, + anon_sym_SEMI, + STATE(532), 1, sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2256), 3, + STATE(2348), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 21, + ACTIONS(2704), 6, sym__AND, - sym_IS, sym__NAND, sym__NOR, sym__OR, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, sym__XNOR, sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [148095] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3474), 1, - sym_exponentiate, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, - sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2257), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2698), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 15, - sym__AND, - sym_IS, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -170192,159 +176239,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [148172] = 17, + [154651] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, - sym_exponentiate, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, - sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2258), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3548), 1, + sym_BEGIN, + STATE(2362), 1, + aux_sym_subprogram_head_repeat1, + STATE(3701), 1, + sym__subprogram_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2349), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2694), 7, - sym__AND, - sym_IS, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [148251] = 15, + STATE(3690), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [154744] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2259), 3, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(3340), 1, + sym_ALIAS, + ACTIONS(3342), 1, + sym_ATTRIBUTE, + ACTIONS(3344), 1, + sym_CONSTANT, + ACTIONS(3348), 1, + sym_FILE, + ACTIONS(3350), 1, + sym_FUNCTION, + ACTIONS(3352), 1, + sym_GROUP, + ACTIONS(3354), 1, + sym_PACKAGE, + ACTIONS(3356), 1, + sym_SHARED, + ACTIONS(3358), 1, + sym_SUBTYPE, + ACTIONS(3360), 1, + sym_TYPE, + ACTIONS(3362), 1, + sym_USE, + ACTIONS(3364), 1, + sym_VARIABLE, + ACTIONS(3550), 1, + sym_END, + STATE(2370), 1, + aux_sym_package_definition_body_repeat1, + STATE(3773), 1, + sym__package_body_declarative_item, + STATE(5880), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2350), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2700), 21, - sym__AND, - sym_GENERATE, - sym__NAND, - sym__NOR, - sym__OR, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [148326] = 11, + STATE(3774), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [154837] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, - sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, - sym_shift_operator, - STATE(2260), 3, + STATE(2351), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(2382), 32, sym__AND, - sym_IS, + sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -170356,9 +176410,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -170370,108 +176428,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [148393] = 18, + [154894] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2678), 1, - sym_THEN, - ACTIONS(3470), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3552), 1, + sym_BEGIN, + STATE(2373), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2352), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [154987] = 24, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, + sym_ALIAS, + ACTIONS(2900), 1, + sym_ATTRIBUTE, + ACTIONS(2904), 1, + sym_CONSTANT, + ACTIONS(2906), 1, + sym_FILE, + ACTIONS(2908), 1, + sym_FUNCTION, + ACTIONS(2910), 1, + sym_GROUP, + ACTIONS(2914), 1, + sym_PACKAGE, + ACTIONS(2916), 1, + sym_SHARED, + ACTIONS(2918), 1, + sym_SUBTYPE, + ACTIONS(2920), 1, + sym_TYPE, + ACTIONS(2922), 1, + sym_USE, + ACTIONS(2924), 1, + sym_VARIABLE, + ACTIONS(3552), 1, + sym_BEGIN, + STATE(2344), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, + sym__subprogram_specification, + ACTIONS(43), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2353), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3917), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [155080] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3494), 1, sym_exponentiate, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, + ACTIONS(3554), 1, + sym_IS, + STATE(575), 1, sym_adding_operator, - STATE(660), 1, + STATE(580), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(622), 1, + sym_shift_operator, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2261), 3, + STATE(2354), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [148474] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2262), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2712), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2710), 32, - sym_identifier, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, - sym__XNOR, - sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -170480,29 +176629,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [148531] = 6, + [155161] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2263), 3, + STATE(2355), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 32, + ACTIONS(3134), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -170510,7 +176655,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -170522,6 +176666,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -170535,25 +176680,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [148588] = 6, + [155218] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2264), 3, + STATE(2356), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 32, + ACTIONS(3130), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -170561,7 +176706,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -170573,6 +176717,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -170586,59 +176731,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [148645] = 16, + [155275] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, + ACTIONS(3484), 1, sym_exponentiate, - STATE(460), 1, + ACTIONS(3556), 1, + sym_THEN, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, sym_multiplying_operator, - STATE(479), 1, + STATE(661), 1, sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - ACTIONS(2686), 2, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2265), 3, + STATE(2357), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2696), 15, + ACTIONS(2704), 6, sym__AND, - sym_GENERATE, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -170647,60 +176794,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [148722] = 17, + [155356] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, + ACTIONS(3482), 1, sym_exponentiate, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, + ACTIONS(3558), 1, + sym_LOOP, + STATE(428), 1, sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, + STATE(446), 1, + sym_multiplying_operator, + STATE(604), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2266), 3, + STATE(2358), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2694), 7, + ACTIONS(2704), 6, sym__AND, - sym_GENERATE, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2680), 8, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -170709,41 +176857,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [148801] = 11, + [155437] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(2267), 3, + STATE(2359), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(3004), 32, sym__AND, - sym_GENERATE, + sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -170751,9 +176891,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -170765,124 +176908,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [148868] = 18, + [155494] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(2797), 1, sym_exponentiate, - ACTIONS(3476), 1, + ACTIONS(3560), 1, anon_sym_SEMI, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2268), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [148949] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3462), 1, - sym_exponentiate, - ACTIONS(3478), 1, - sym_INERTIAL, - STATE(564), 1, + STATE(532), 1, sym_multiplying_operator, - STATE(565), 1, + STATE(559), 1, sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, + STATE(634), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2269), 3, + STATE(2360), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -170891,28 +176971,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [149030] = 6, + [155575] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2270), 3, + STATE(2361), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 32, - sym_identifier, + ACTIONS(2428), 32, sym__AND, - sym_LOOP, + sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -170924,13 +177004,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -170942,57 +177022,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [149087] = 23, + [155632] = 23, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3480), 1, + ACTIONS(3562), 1, sym_ALIAS, - ACTIONS(3483), 1, + ACTIONS(3565), 1, sym_ATTRIBUTE, - ACTIONS(3486), 1, + ACTIONS(3568), 1, sym_BEGIN, - ACTIONS(3488), 1, + ACTIONS(3570), 1, sym_CONSTANT, - ACTIONS(3491), 1, + ACTIONS(3573), 1, sym_FILE, - ACTIONS(3494), 1, + ACTIONS(3576), 1, sym_FUNCTION, - ACTIONS(3497), 1, + ACTIONS(3579), 1, sym_GROUP, - ACTIONS(3503), 1, + ACTIONS(3585), 1, sym_PACKAGE, - ACTIONS(3506), 1, + ACTIONS(3588), 1, sym_PROCEDURE, - ACTIONS(3509), 1, + ACTIONS(3591), 1, sym_SHARED, - ACTIONS(3512), 1, + ACTIONS(3594), 1, sym_SUBTYPE, - ACTIONS(3515), 1, + ACTIONS(3597), 1, sym_TYPE, - ACTIONS(3518), 1, + ACTIONS(3600), 1, sym_USE, - ACTIONS(3521), 1, + ACTIONS(3603), 1, sym_VARIABLE, - STATE(3759), 1, + STATE(3701), 1, sym__subprogram_declarative_item, - STATE(5675), 1, + STATE(5841), 1, sym__subprogram_specification, - ACTIONS(3500), 2, + ACTIONS(3582), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(2271), 4, + STATE(2362), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_subprogram_head_repeat1, - STATE(3760), 17, + STATE(3690), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -171010,54 +177090,61 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [149178] = 14, + [155723] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, + ACTIONS(3606), 1, sym_exponentiate, - STATE(440), 1, + ACTIONS(3608), 1, + sym_INERTIAL, + STATE(433), 1, sym_adding_operator, - STATE(454), 1, + STATE(434), 1, sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, + STATE(582), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2272), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2363), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 24, + ACTIONS(2704), 6, sym__AND, - sym_IS, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -171066,53 +177153,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [149251] = 11, + [155804] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, + ACTIONS(2797), 1, + sym_exponentiate, + ACTIONS(3610), 1, + anon_sym_RPAREN, + STATE(532), 1, sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, sym_shift_operator, - STATE(2273), 3, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2364), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2714), 27, + ACTIONS(2704), 6, sym__AND, - sym_IS, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -171121,29 +177216,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, + [155885] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2797), 1, + sym_exponentiate, + ACTIONS(3612), 1, + anon_sym_SEMI, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [149318] = 6, + STATE(2365), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [155966] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2274), 3, + STATE(2366), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 32, + ACTIONS(3112), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -171151,7 +177305,6 @@ static const uint16_t ts_small_parse_table[] = { sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -171163,6 +177316,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -171176,61 +177330,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [149375] = 18, + [156023] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2678), 1, - sym_IS, - ACTIONS(3474), 1, + ACTIONS(2696), 1, + sym_INERTIAL, + ACTIONS(3606), 1, sym_exponentiate, - STATE(440), 1, + STATE(433), 1, sym_adding_operator, - STATE(454), 1, + STATE(434), 1, sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, + STATE(582), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2275), 3, + STATE(2367), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -171239,28 +177393,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [149456] = 6, + [156104] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2276), 3, + STATE(2368), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 32, - sym_identifier, + ACTIONS(3098), 32, sym__AND, - sym_IS, + sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -171272,13 +177426,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -171290,46 +177444,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [149513] = 6, + [156161] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2277), 3, + ACTIONS(2882), 1, + sym_LOOP, + ACTIONS(3174), 1, + sym_exponentiate, + STATE(485), 1, + sym_multiplying_operator, + STATE(488), 1, + sym_adding_operator, + STATE(604), 1, + sym_shift_operator, + STATE(605), 1, + sym_relational_operator, + STATE(606), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2369), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3076), 32, + ACTIONS(2704), 6, sym__AND, - sym_BUS, - sym_DOWNTO, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, + ACTIONS(2698), 8, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -171337,11 +177507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [149570] = 24, + [156242] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -171350,49 +177516,49 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(51), 1, sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(3340), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(3342), 1, sym_ATTRIBUTE, - ACTIONS(2898), 1, + ACTIONS(3344), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(3348), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(3350), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(3352), 1, sym_GROUP, - ACTIONS(2908), 1, + ACTIONS(3354), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(3356), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(3358), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(3360), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(3362), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(3364), 1, sym_VARIABLE, - ACTIONS(3524), 1, - sym_BEGIN, - STATE(2248), 1, - aux_sym_subprogram_head_repeat1, - STATE(3759), 1, - sym__subprogram_declarative_item, - STATE(5675), 1, + ACTIONS(3614), 1, + sym_END, + STATE(2392), 1, + aux_sym_package_definition_body_repeat1, + STATE(3773), 1, + sym__package_body_declarative_item, + STATE(5880), 1, sym__subprogram_specification, ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(2278), 3, + STATE(2370), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3760), 17, + STATE(3774), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -171410,30 +177576,36 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [149663] = 6, + [156335] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2279), 3, + STATE(631), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2371), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 7, - anon_sym_EQ, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 31, + ACTIONS(3092), 29, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -171442,14 +177614,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -171460,29 +177629,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [149720] = 6, + [156396] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2280), 3, + STATE(2372), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 32, - sym_identifier, + ACTIONS(3008), 32, sym__AND, - sym_LOOP, + sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -171494,13 +177662,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -171512,120 +177680,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [149777] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2791), 1, - sym_exponentiate, - ACTIONS(3526), 1, - anon_sym_RPAREN, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2281), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2688), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [149858] = 23, + [156453] = 24, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3528), 1, + ACTIONS(51), 1, + sym_PROCEDURE, + ACTIONS(2898), 1, sym_ALIAS, - ACTIONS(3531), 1, + ACTIONS(2900), 1, sym_ATTRIBUTE, - ACTIONS(3534), 1, + ACTIONS(2904), 1, sym_CONSTANT, - ACTIONS(3537), 1, - sym_END, - ACTIONS(3539), 1, + ACTIONS(2906), 1, sym_FILE, - ACTIONS(3542), 1, + ACTIONS(2908), 1, sym_FUNCTION, - ACTIONS(3545), 1, + ACTIONS(2910), 1, sym_GROUP, - ACTIONS(3551), 1, + ACTIONS(2914), 1, sym_PACKAGE, - ACTIONS(3554), 1, - sym_PROCEDURE, - ACTIONS(3557), 1, + ACTIONS(2916), 1, sym_SHARED, - ACTIONS(3560), 1, + ACTIONS(2918), 1, sym_SUBTYPE, - ACTIONS(3563), 1, + ACTIONS(2920), 1, sym_TYPE, - ACTIONS(3566), 1, + ACTIONS(2922), 1, sym_USE, - ACTIONS(3569), 1, + ACTIONS(2924), 1, sym_VARIABLE, - STATE(3601), 1, - sym__protected_type_body_declarative_item, - STATE(5773), 1, + ACTIONS(3616), 1, + sym_BEGIN, + STATE(2344), 1, + aux_sym_sequential_block_head_repeat1, + STATE(3957), 1, + sym__process_declarative_item, + STATE(5841), 1, sym__subprogram_specification, - ACTIONS(3548), 2, + ACTIONS(43), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(2282), 4, + STATE(2373), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_protected_type_body_repeat1, - STATE(3605), 17, + STATE(3917), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -171643,31 +177749,28 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [149949] = 8, + [156546] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(509), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2283), 3, + STATE(2374), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(3082), 32, sym__AND, + sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -171679,12 +177782,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -171696,54 +177800,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [150010] = 14, + [156603] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3462), 1, + ACTIONS(3494), 1, sym_exponentiate, - STATE(564), 1, - sym_multiplying_operator, - STATE(565), 1, + ACTIONS(3618), 1, + sym_IS, + STATE(575), 1, sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, + STATE(580), 1, + sym_multiplying_operator, + STATE(622), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2284), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2375), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 24, + ACTIONS(2704), 6, sym__AND, - sym_INERTIAL, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -171752,104 +177863,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [150083] = 6, + [156684] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2285), 3, + ACTIONS(2797), 1, + sym_exponentiate, + ACTIONS(3620), 1, + anon_sym_SEMI, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2376), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 7, - anon_sym_EQ, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3100), 31, + ACTIONS(2704), 6, sym__AND, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(2698), 8, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [150140] = 11, + [156765] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(564), 1, + ACTIONS(3484), 1, + sym_exponentiate, + ACTIONS(3622), 1, + sym_THEN, + STATE(612), 1, + sym_shift_operator, + STATE(613), 1, + sym_relational_operator, + STATE(616), 1, + sym_logical_operator, + STATE(652), 1, sym_multiplying_operator, - STATE(565), 1, + STATE(661), 1, sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, - sym_shift_operator, - STATE(2286), 3, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2377), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(2704), 6, sym__AND, - sym_INERTIAL, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -171858,65 +177989,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [150207] = 18, + [156846] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2678), 1, - sym_LOOP, - ACTIONS(3572), 1, + ACTIONS(2797), 1, sym_exponentiate, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, + ACTIONS(3288), 1, + anon_sym_SEMI, + STATE(532), 1, sym_multiplying_operator, - STATE(695), 1, + STATE(559), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2287), 3, + STATE(2378), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -171925,29 +178052,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [150288] = 7, + [156927] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - STATE(2288), 3, + STATE(2379), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 7, - anon_sym_EQ, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 30, + ACTIONS(3066), 32, sym__AND, + sym_BUS, sym_DOWNTO, sym__MOD, sym__NAND, @@ -171961,12 +178086,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -171977,102 +178103,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [150347] = 12, + [156984] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3462), 1, + ACTIONS(3606), 1, sym_exponentiate, - STATE(564), 1, - sym_multiplying_operator, - STATE(565), 1, + STATE(433), 1, sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, + STATE(434), 1, + sym_multiplying_operator, + STATE(582), 1, sym_shift_operator, - STATE(2289), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2674), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 26, - sym__AND, - sym_INERTIAL, + ACTIONS(2686), 2, sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [150416] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2290), 3, + STATE(2380), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2704), 32, - sym_identifier, - sym__AND, - sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2710), 7, + sym__AND, + sym_INERTIAL, + sym__NAND, + sym__NOR, + sym__OR, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -172081,52 +178165,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [150473] = 11, + [157063] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, - sym_multiplying_operator, - STATE(695), 1, + ACTIONS(3606), 1, + sym_exponentiate, + STATE(433), 1, sym_adding_operator, - STATE(2291), 3, + STATE(434), 1, + sym_multiplying_operator, + STATE(582), 1, + sym_shift_operator, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2381), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2714), 27, - sym__AND, - sym_LOOP, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 15, + sym__AND, + sym_INERTIAL, + sym__NAND, + sym__NOR, + sym__OR, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -172137,116 +178226,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [150540] = 24, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(3316), 1, - sym_ALIAS, - ACTIONS(3318), 1, - sym_ATTRIBUTE, - ACTIONS(3320), 1, - sym_CONSTANT, - ACTIONS(3324), 1, - sym_FILE, - ACTIONS(3326), 1, - sym_FUNCTION, - ACTIONS(3328), 1, - sym_GROUP, - ACTIONS(3330), 1, - sym_PACKAGE, - ACTIONS(3332), 1, - sym_SHARED, - ACTIONS(3334), 1, - sym_SUBTYPE, - ACTIONS(3336), 1, - sym_TYPE, - ACTIONS(3338), 1, - sym_USE, - ACTIONS(3340), 1, - sym_VARIABLE, - ACTIONS(3576), 1, - sym_END, - STATE(2325), 1, - aux_sym_package_definition_body_repeat1, - STATE(3777), 1, - sym__package_body_declarative_item, - STATE(5773), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2292), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3775), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [150633] = 14, + [157140] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3572), 1, + ACTIONS(3606), 1, sym_exponentiate, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, - sym_multiplying_operator, - STATE(695), 1, + STATE(433), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(434), 1, + sym_multiplying_operator, + STATE(582), 1, + sym_shift_operator, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2293), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2382), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 24, + ACTIONS(2716), 21, sym__AND, - sym_LOOP, + sym_INERTIAL, sym__NAND, sym__NOR, sym__OR, @@ -172266,28 +178286,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [150706] = 6, + [157215] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2294), 3, + STATE(2383), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 32, + ACTIONS(3004), 32, sym__AND, sym_BUS, sym_DOWNTO, @@ -172320,241 +178337,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [150763] = 6, + [157272] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2295), 3, + ACTIONS(2797), 1, + sym_exponentiate, + ACTIONS(3624), 1, + anon_sym_RPAREN, + STATE(532), 1, + sym_multiplying_operator, + STATE(559), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2384), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 7, - anon_sym_EQ, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3092), 31, + ACTIONS(2704), 6, sym__AND, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(2698), 8, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [150820] = 14, + [157353] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2296), 3, + STATE(2385), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 32, sym__AND, - sym_GENERATE, + sym_BUS, + sym_DOWNTO, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [150893] = 24, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - ACTIONS(3578), 1, - sym_BEGIN, - STATE(2353), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2297), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [150986] = 18, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [157410] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, - sym_exponentiate, - ACTIONS(3580), 1, - sym_IS, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, - sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2298), 3, + STATE(2386), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3092), 32, sym__AND, + sym_BUS, + sym_DOWNTO, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -172562,33 +178498,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [151067] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [157467] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2299), 3, + STATE(2387), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(2384), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 32, + ACTIONS(2382), 31, sym__AND, - sym_BUS, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -172596,13 +178534,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -172613,61 +178552,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [151124] = 18, + anon_sym_PIPE, + [157524] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(2882), 1, + sym_IS, + ACTIONS(3176), 1, sym_exponentiate, - ACTIONS(3582), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, + STATE(622), 1, sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + STATE(641), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(642), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2300), 3, + STATE(2388), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -172676,50 +178616,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [151205] = 11, + [157605] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(460), 1, + ACTIONS(2797), 1, + sym_exponentiate, + ACTIONS(3626), 1, + anon_sym_SEMI, + STATE(532), 1, sym_multiplying_operator, - STATE(479), 1, + STATE(559), 1, sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, + STATE(634), 1, sym_shift_operator, - STATE(2301), 3, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2389), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2714), 27, + ACTIONS(2704), 6, sym__AND, - sym_GENERATE, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -172728,65 +178679,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [151272] = 18, + [157686] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, + ACTIONS(3494), 1, sym_exponentiate, - ACTIONS(3584), 1, + ACTIONS(3628), 1, sym_IS, - STATE(440), 1, + STATE(575), 1, sym_adding_operator, - STATE(454), 1, + STATE(580), 1, sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, STATE(622), 1, - sym_relational_operator, - STATE(623), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(623), 1, + sym_relational_operator, + STATE(624), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2302), 3, + STATE(2390), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -172795,28 +178742,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [151353] = 6, + [157767] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2303), 3, + STATE(2391), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 32, + ACTIONS(2692), 32, sym_identifier, sym__AND, - sym_GENERATE, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -172846,100 +178793,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [151410] = 18, + [157824] = 23, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3470), 1, - sym_exponentiate, - ACTIONS(3586), 1, - sym_THEN, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, - sym_adding_operator, - STATE(660), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, + ACTIONS(3630), 1, + sym_ALIAS, + ACTIONS(3633), 1, + sym_ATTRIBUTE, + ACTIONS(3636), 1, + sym_CONSTANT, + ACTIONS(3639), 1, + sym_END, + ACTIONS(3641), 1, + sym_FILE, + ACTIONS(3644), 1, + sym_FUNCTION, + ACTIONS(3647), 1, + sym_GROUP, + ACTIONS(3653), 1, + sym_PACKAGE, + ACTIONS(3656), 1, + sym_PROCEDURE, + ACTIONS(3659), 1, + sym_SHARED, + ACTIONS(3662), 1, + sym_SUBTYPE, + ACTIONS(3665), 1, + sym_TYPE, + ACTIONS(3668), 1, + sym_USE, + ACTIONS(3671), 1, + sym_VARIABLE, + STATE(3773), 1, + sym__package_body_declarative_item, + STATE(5880), 1, + sym__subprogram_specification, + ACTIONS(3650), 2, + sym_IMPURE, + sym_PURE, + STATE(6351), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2392), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_package_definition_body_repeat1, + STATE(3774), 17, + sym_use_clause, + sym_package_declaration, + sym_package_instantiation_declaration, + sym_package_definition, + sym_subprogram_declaration, + sym_subprogram_definition, + sym_subprogram_instantiation_declaration, + sym_type_declaration, + sym_subtype_declaration, + sym_constant_declaration, + sym_variable_declaration, + sym_file_declaration, + sym_alias_declaration, + sym_attribute_declaration, + sym_attribute_specification, + sym_group_template_declaration, + sym_group_declaration, + [157915] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2393), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3142), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(3140), 31, + sym__AND, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2304), 3, + sym_exponentiate, + anon_sym_PIPE, + [157972] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2394), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3136), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3134), 31, sym__AND, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [151491] = 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_PIPE, + [158029] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, - sym_multiplying_operator, - STATE(695), 1, - sym_adding_operator, - STATE(2305), 3, + STATE(2395), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(3132), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(3130), 31, sym__AND, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -172951,10 +178995,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -172965,61 +179013,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [151558] = 18, + anon_sym_PIPE, + [158086] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(3488), 1, sym_exponentiate, - ACTIONS(3588), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, + STATE(709), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(712), 1, + sym_adding_operator, + STATE(715), 1, + sym_shift_operator, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + STATE(2396), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2680), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2678), 26, + sym__AND, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2306), 3, + [158155] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2397), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2692), 32, + sym_identifier, sym__AND, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -173028,39 +179118,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [151639] = 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [158212] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, - sym_exponentiate, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, - sym_shift_operator, - STATE(2307), 3, + STATE(2398), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 26, + ACTIONS(2722), 32, + sym_identifier, sym__AND, - sym_GENERATE, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -173074,6 +179157,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -173085,61 +179172,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [151708] = 18, + sym_exponentiate, + [158269] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2678), 1, - sym_GENERATE, - ACTIONS(2996), 1, + ACTIONS(3488), 1, sym_exponentiate, - STATE(460), 1, + STATE(709), 1, sym_multiplying_operator, - STATE(479), 1, + STATE(712), 1, sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, + STATE(715), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2308), 3, + STATE(2399), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2678), 24, sym__AND, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -173148,60 +179229,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [151789] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [158342] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3572), 1, + ACTIONS(3488), 1, sym_exponentiate, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, + STATE(709), 1, sym_multiplying_operator, - STATE(695), 1, + STATE(712), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(715), 1, + sym_shift_operator, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2309), 3, + STATE(2400), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2716), 21, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2694), 7, - sym__AND, - sym_LOOP, - sym__NAND, - sym__NOR, - sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2680), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -173210,57 +179292,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [151868] = 16, + [158417] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3572), 1, + ACTIONS(3488), 1, sym_exponentiate, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, + STATE(709), 1, sym_multiplying_operator, - STATE(695), 1, + STATE(712), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(715), 1, + sym_shift_operator, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2310), 3, + STATE(2401), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 15, + ACTIONS(2712), 15, sym__AND, - sym_LOOP, sym__NAND, sym__NOR, sym__OR, + sym_SELECT, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -173271,54 +179353,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [151945] = 14, + [158494] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, + ACTIONS(2882), 1, + sym_GENERATE, + ACTIONS(3156), 1, sym_exponentiate, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, - sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, + STATE(654), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(700), 1, + sym_adding_operator, + STATE(706), 1, + sym_multiplying_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2311), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2402), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 24, + ACTIONS(2704), 6, sym__AND, - sym_GENERATE, sym__NAND, sym__NOR, sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym__XNOR, - sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -173327,61 +179416,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [152018] = 15, + [158575] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3572), 1, + ACTIONS(3488), 1, sym_exponentiate, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, + STATE(709), 1, sym_multiplying_operator, - STATE(695), 1, + STATE(712), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(715), 1, + sym_shift_operator, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2312), 3, + STATE(2403), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 21, - sym__AND, - sym_LOOP, - sym__NAND, - sym__NOR, - sym__OR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2710), 7, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_SELECT, sym__XNOR, sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -173390,45 +179478,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [152093] = 14, + [158654] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3464), 1, - sym_exponentiate, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, + STATE(709), 1, sym_multiplying_operator, - STATE(553), 1, + STATE(712), 1, sym_adding_operator, - STATE(554), 1, + STATE(715), 1, sym_shift_operator, - STATE(555), 1, + STATE(716), 1, sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - STATE(2313), 3, + STATE(717), 1, + sym_logical_operator, + STATE(2404), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 27, sym__AND, + sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym__REM, sym__ROL, sym__ROR, sym_SELECT, @@ -173449,36 +179533,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [152166] = 11, + sym_exponentiate, + [158721] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, + ACTIONS(3018), 1, + sym_exponentiate, + STATE(459), 1, sym_multiplying_operator, - STATE(553), 1, + STATE(460), 1, sym_adding_operator, - STATE(554), 1, + STATE(654), 1, sym_shift_operator, - STATE(555), 1, + STATE(655), 1, sym_relational_operator, - STATE(2314), 3, + STATE(657), 1, + sym_logical_operator, + STATE(2405), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 27, + ACTIONS(2678), 26, sym__AND, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -173486,7 +179574,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -173504,34 +179591,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [152233] = 6, + [158790] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2315), 3, + ACTIONS(3018), 1, + sym_exponentiate, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2406), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2710), 32, - sym_identifier, + ACTIONS(2678), 24, sym__AND, sym_GENERATE, - sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, @@ -173540,10 +179639,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -173555,44 +179650,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [152290] = 14, + [158863] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3572), 1, + ACTIONS(3018), 1, sym_exponentiate, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, + STATE(459), 1, sym_multiplying_operator, - STATE(695), 1, + STATE(460), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2316), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2407), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 4, + ACTIONS(2718), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2672), 24, + ACTIONS(2716), 21, sym__AND, - sym_LOOP, + sym_GENERATE, sym__NAND, sym__NOR, sym__OR, @@ -173612,53 +179710,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [152363] = 12, + [158938] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3572), 1, + ACTIONS(3018), 1, sym_exponentiate, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, + STATE(459), 1, sym_multiplying_operator, - STATE(695), 1, + STATE(460), 1, sym_adding_operator, - STATE(2317), 3, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2408), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(2714), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2672), 26, - sym__AND, - sym_LOOP, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2712), 15, + sym__AND, + sym_GENERATE, + sym__NAND, + sym__NOR, + sym__OR, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -173669,57 +179771,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [152432] = 14, + [159015] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3462), 1, + ACTIONS(3018), 1, sym_exponentiate, - STATE(564), 1, + STATE(459), 1, sym_multiplying_operator, - STATE(565), 1, + STATE(460), 1, sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, + STATE(654), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - STATE(2318), 3, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2409), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2714), 24, - sym__AND, - sym_INERTIAL, - sym__NAND, - sym__NOR, - sym__OR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + ACTIONS(2710), 7, + sym__AND, + sym_GENERATE, + sym__NAND, + sym__NOR, + sym__OR, sym__XNOR, sym__XOR, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -173728,31 +179833,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - [152505] = 6, + [159094] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2319), 3, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(2410), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 32, + ACTIONS(2678), 27, sym__AND, - sym_BUS, - sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -173764,13 +179875,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -173782,37 +179889,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [152562] = 11, + [159161] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(564), 1, - sym_multiplying_operator, - STATE(565), 1, - sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, - sym_shift_operator, - STATE(2320), 3, + STATE(2411), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2716), 6, + ACTIONS(3114), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 27, + ACTIONS(3112), 31, sym__AND, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -173824,10 +179921,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -173838,28 +179939,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [152629] = 6, + anon_sym_PIPE, + [159218] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2321), 3, + STATE(2412), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(3100), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 32, - sym_identifier, + ACTIONS(3098), 31, sym__AND, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -173871,14 +179972,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -173889,124 +179990,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [152686] = 18, + anon_sym_PIPE, + [159275] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, - sym_exponentiate, - ACTIONS(3590), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2322), 3, + STATE(2413), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2430), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 31, sym__AND, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [152767] = 18, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + anon_sym_PIPE, + [159332] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2678), 1, - sym_SELECT, - ACTIONS(3464), 1, - sym_exponentiate, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, - sym_multiplying_operator, - STATE(553), 1, + STATE(433), 1, sym_adding_operator, - STATE(554), 1, + STATE(434), 1, + sym_multiplying_operator, + STATE(582), 1, sym_shift_operator, - STATE(555), 1, + STATE(583), 1, sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2323), 3, + STATE(587), 1, + sym_logical_operator, + STATE(2414), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 27, sym__AND, + sym_INERTIAL, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174015,18 +180094,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [152848] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [159399] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2324), 3, + STATE(2415), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 7, + ACTIONS(3006), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -174034,7 +180117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 31, + ACTIONS(3004), 31, sym__AND, sym__MOD, sym__NAND, @@ -174066,114 +180149,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym_exponentiate, anon_sym_PIPE, - [152905] = 23, + [159456] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3592), 1, - sym_ALIAS, - ACTIONS(3595), 1, - sym_ATTRIBUTE, - ACTIONS(3598), 1, - sym_CONSTANT, - ACTIONS(3601), 1, - sym_END, - ACTIONS(3603), 1, - sym_FILE, ACTIONS(3606), 1, - sym_FUNCTION, - ACTIONS(3609), 1, - sym_GROUP, - ACTIONS(3615), 1, - sym_PACKAGE, - ACTIONS(3618), 1, - sym_PROCEDURE, - ACTIONS(3621), 1, - sym_SHARED, - ACTIONS(3624), 1, - sym_SUBTYPE, - ACTIONS(3627), 1, - sym_TYPE, - ACTIONS(3630), 1, - sym_USE, - ACTIONS(3633), 1, - sym_VARIABLE, - STATE(3777), 1, - sym__package_body_declarative_item, - STATE(5773), 1, - sym__subprogram_specification, - ACTIONS(3612), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2325), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_package_definition_body_repeat1, - STATE(3775), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [152996] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2326), 3, + sym_exponentiate, + STATE(433), 1, + sym_adding_operator, + STATE(434), 1, + sym_multiplying_operator, + STATE(582), 1, + sym_shift_operator, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2416), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 7, - anon_sym_EQ, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3084), 31, + ACTIONS(2688), 24, sym__AND, - sym__MOD, + sym_INERTIAL, sym__NAND, sym__NOR, sym__OR, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -174183,48 +180208,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - anon_sym_PIPE, - [153053] = 6, + [159529] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2327), 3, + ACTIONS(3018), 1, + sym_exponentiate, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(654), 1, + sym_shift_operator, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + STATE(2417), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3064), 32, + ACTIONS(2688), 24, sym__AND, - sym_BUS, - sym_DOWNTO, - sym__MOD, + sym_GENERATE, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, - sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -174235,62 +180267,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - sym_exponentiate, - [153110] = 18, + [159602] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 1, - sym_IS, - ACTIONS(3132), 1, - sym_exponentiate, - STATE(430), 1, + STATE(459), 1, sym_multiplying_operator, - STATE(431), 1, + STATE(460), 1, sym_adding_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, + STATE(654), 1, sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2328), 3, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + STATE(2418), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2688), 27, sym__AND, + sym_GENERATE, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174299,61 +180319,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [153191] = 18, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [159669] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 1, + ACTIONS(2696), 1, sym_GENERATE, - ACTIONS(3156), 1, + ACTIONS(3018), 1, sym_exponentiate, - STATE(455), 1, + STATE(459), 1, sym_multiplying_operator, - STATE(456), 1, + STATE(460), 1, sym_adding_operator, - STATE(584), 1, - sym_logical_operator, - STATE(585), 1, - sym_relational_operator, - STATE(586), 1, + STATE(654), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(655), 1, + sym_relational_operator, + STATE(657), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2329), 3, + STATE(2419), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174362,28 +180386,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [153272] = 6, + [159750] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2330), 3, + STATE(2420), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 32, + ACTIONS(2722), 32, sym_identifier, sym__AND, - sym_INERTIAL, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -174413,61 +180437,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [153329] = 18, + [159807] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, - sym_exponentiate, - ACTIONS(3636), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2331), 3, + STATE(2421), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2724), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2722), 32, + sym_identifier, sym__AND, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174476,58 +180484,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [153410] = 24, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [159864] = 23, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, + ACTIONS(3674), 1, sym_ALIAS, - ACTIONS(2894), 1, + ACTIONS(3677), 1, sym_ATTRIBUTE, - ACTIONS(2898), 1, + ACTIONS(3680), 1, sym_CONSTANT, - ACTIONS(2900), 1, + ACTIONS(3683), 1, + sym_END, + ACTIONS(3685), 1, sym_FILE, - ACTIONS(2902), 1, + ACTIONS(3688), 1, sym_FUNCTION, - ACTIONS(2904), 1, + ACTIONS(3691), 1, sym_GROUP, - ACTIONS(2908), 1, + ACTIONS(3697), 1, sym_PACKAGE, - ACTIONS(2910), 1, + ACTIONS(3700), 1, + sym_PROCEDURE, + ACTIONS(3703), 1, sym_SHARED, - ACTIONS(2912), 1, + ACTIONS(3706), 1, sym_SUBTYPE, - ACTIONS(2914), 1, + ACTIONS(3709), 1, sym_TYPE, - ACTIONS(2916), 1, + ACTIONS(3712), 1, sym_USE, - ACTIONS(2918), 1, + ACTIONS(3715), 1, sym_VARIABLE, - ACTIONS(3638), 1, - sym_BEGIN, - STATE(2297), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, + STATE(3728), 1, + sym__protected_type_body_declarative_item, + STATE(5880), 1, sym__subprogram_specification, - ACTIONS(43), 2, + ACTIONS(3694), 2, sym_IMPURE, sym_PURE, - STATE(6075), 2, + STATE(6351), 2, sym_procedure_specification, sym_function_specification, - STATE(2332), 3, + STATE(2422), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3809), 17, + aux_sym_protected_type_body_repeat1, + STATE(3727), 17, sym_use_clause, sym_package_declaration, sym_package_instantiation_declaration, @@ -174545,61 +180556,61 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_specification, sym_group_template_declaration, sym_group_declaration, - [153503] = 18, + [159955] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(2696), 1, + sym_SELECT, + ACTIONS(3488), 1, sym_exponentiate, - ACTIONS(3640), 1, - anon_sym_RPAREN, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, + STATE(709), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(712), 1, + sym_adding_operator, + STATE(715), 1, + sym_shift_operator, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2333), 3, + STATE(2423), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174608,26 +180619,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [153584] = 6, + [160036] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2334), 3, + STATE(709), 1, + sym_multiplying_operator, + STATE(712), 1, + sym_adding_operator, + STATE(715), 1, + sym_shift_operator, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + STATE(2424), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2712), 6, + ACTIONS(2690), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2710), 32, - sym_identifier, + ACTIONS(2688), 27, sym__AND, sym__MOD, sym__NAND, @@ -174643,10 +180663,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174659,61 +180675,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [153641] = 18, + [160103] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(3606), 1, sym_exponentiate, - ACTIONS(3642), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, + STATE(433), 1, sym_adding_operator, - STATE(619), 1, + STATE(434), 1, sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2335), 3, + STATE(582), 1, + sym_shift_operator, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + STATE(2425), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 26, sym__AND, + sym_INERTIAL, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174722,61 +180729,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [153722] = 18, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [160172] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 1, - sym_LOOP, - ACTIONS(3144), 1, + ACTIONS(3488), 1, sym_exponentiate, - STATE(561), 1, - sym_adding_operator, - STATE(574), 1, + STATE(709), 1, sym_multiplying_operator, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, + STATE(712), 1, + sym_adding_operator, + STATE(715), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(716), 1, + sym_relational_operator, + STATE(717), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2336), 3, + STATE(2426), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2690), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2688), 24, sym__AND, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174785,61 +180788,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [153803] = 18, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [160245] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2678), 1, - sym_INERTIAL, - ACTIONS(3462), 1, + ACTIONS(3606), 1, sym_exponentiate, - STATE(564), 1, - sym_multiplying_operator, - STATE(565), 1, + STATE(433), 1, sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, + STATE(434), 1, + sym_multiplying_operator, + STATE(582), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2337), 3, + STATE(2427), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2680), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2678), 24, sym__AND, + sym_INERTIAL, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174848,61 +180847,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [153884] = 18, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [160318] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, - sym_exponentiate, - ACTIONS(3246), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, + STATE(433), 1, sym_adding_operator, - STATE(619), 1, + STATE(434), 1, sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2338), 3, + STATE(582), 1, + sym_shift_operator, + STATE(583), 1, + sym_relational_operator, + STATE(587), 1, + sym_logical_operator, + STATE(2428), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2680), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2678), 27, sym__AND, + sym_INERTIAL, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -174911,36 +180902,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [153965] = 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [160385] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(616), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2339), 3, + STATE(2429), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3068), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(3066), 31, sym__AND, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -174949,11 +180938,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -174964,28 +180956,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [154026] = 6, + anon_sym_PIPE, + [160442] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2340), 3, + STATE(2430), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3084), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 32, + ACTIONS(3082), 31, sym__AND, - sym_BUS, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -174997,14 +180989,14 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -175015,61 +181007,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [154083] = 18, + anon_sym_PIPE, + [160499] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3572), 1, - sym_exponentiate, - ACTIONS(3644), 1, - sym_LOOP, - STATE(651), 1, - sym_logical_operator, - STATE(652), 1, - sym_relational_operator, - STATE(656), 1, - sym_shift_operator, - STATE(694), 1, - sym_multiplying_operator, - STATE(695), 1, - sym_adding_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2341), 3, + STATE(2431), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2694), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2692), 32, + sym_identifier, sym__AND, + sym_GENERATE, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + sym_library_constant, + sym_library_constant_unit, + sym_library_function, + sym_library_type, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -175078,45 +181055,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [154164] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [160556] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2342), 3, + STATE(2432), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2706), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2704), 32, - sym_identifier, + ACTIONS(3134), 31, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - sym_library_constant, - sym_library_constant_unit, - sym_library_function, - sym_library_type, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -175129,61 +181109,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [154221] = 18, + [160612] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, + ACTIONS(3096), 1, sym_exponentiate, - ACTIONS(3646), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, + STATE(634), 1, sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + STATE(653), 1, sym_multiplying_operator, - ACTIONS(2686), 2, + STATE(656), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2343), 3, + STATE(2433), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -175192,27 +181170,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [154302] = 6, + [160690] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2344), 3, + STATE(2434), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 7, - anon_sym_EQ, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 31, + ACTIONS(2428), 31, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -175224,14 +181203,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -175242,122 +181220,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [154359] = 17, + [160746] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3462), 1, - sym_exponentiate, - STATE(564), 1, - sym_multiplying_operator, - STATE(565), 1, - sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2345), 3, + STATE(2435), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - ACTIONS(2694), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2382), 31, sym__AND, - sym_INERTIAL, + sym_DOWNTO, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2680), 8, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - [154438] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3462), 1, - sym_exponentiate, - STATE(564), 1, - sym_multiplying_operator, - STATE(565), 1, - sym_adding_operator, - STATE(684), 1, - sym_logical_operator, - STATE(686), 1, - sym_relational_operator, - STATE(687), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2346), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2698), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - ACTIONS(2692), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 15, - sym__AND, - sym_INERTIAL, - sym__NAND, - sym__NOR, - sym__OR, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -175366,27 +181266,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [154515] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [160802] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2347), 3, + STATE(2436), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 7, - anon_sym_EQ, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 31, + ACTIONS(2382), 31, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -175398,14 +181303,13 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -175416,34 +181320,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [154572] = 6, + [160858] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2348), 3, + STATE(2437), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 32, + ACTIONS(3092), 31, sym__AND, - sym_BUS, sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -175456,7 +181359,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -175468,60 +181370,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [154629] = 17, + [160914] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3464), 1, - sym_exponentiate, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, - sym_multiplying_operator, - STATE(553), 1, - sym_adding_operator, - STATE(554), 1, - sym_shift_operator, - STATE(555), 1, - sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2349), 3, + STATE(2438), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3140), 31, + sym__AND, + sym_DOWNTO, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2694), 7, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_SELECT, + sym_TO, sym__XNOR, sym__XOR, - ACTIONS(2680), 8, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -175530,30 +181416,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [154708] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [160970] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2350), 3, + STATE(2439), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 7, - anon_sym_EQ, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 31, + ACTIONS(3130), 31, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -175562,14 +181454,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -175580,62 +181470,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [154765] = 18, + [161026] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3470), 1, - sym_exponentiate, - ACTIONS(3648), 1, - sym_THEN, - STATE(630), 1, - sym_logical_operator, - STATE(639), 1, - sym_relational_operator, - STATE(640), 1, - sym_shift_operator, - STATE(658), 1, - sym_adding_operator, - STATE(660), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2351), 3, + STATE(2440), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3112), 31, sym__AND, + sym_DOWNTO, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -175644,62 +181516,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [154846] = 18, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [161082] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, - sym_exponentiate, - ACTIONS(3650), 1, - sym_IS, - STATE(440), 1, - sym_adding_operator, - STATE(454), 1, - sym_multiplying_operator, - STATE(621), 1, - sym_logical_operator, - STATE(622), 1, - sym_relational_operator, - STATE(623), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2352), 3, + STATE(2441), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3082), 31, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -175707,106 +181566,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [154927] = 23, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3652), 1, - sym_ALIAS, - ACTIONS(3655), 1, - sym_ATTRIBUTE, - ACTIONS(3658), 1, - sym_BEGIN, - ACTIONS(3660), 1, - sym_CONSTANT, - ACTIONS(3663), 1, - sym_FILE, - ACTIONS(3666), 1, - sym_FUNCTION, - ACTIONS(3669), 1, - sym_GROUP, - ACTIONS(3675), 1, - sym_PACKAGE, - ACTIONS(3678), 1, - sym_PROCEDURE, - ACTIONS(3681), 1, - sym_SHARED, - ACTIONS(3684), 1, - sym_SUBTYPE, - ACTIONS(3687), 1, - sym_TYPE, - ACTIONS(3690), 1, - sym_USE, - ACTIONS(3693), 1, - sym_VARIABLE, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - ACTIONS(3672), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2353), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_sequential_block_head_repeat1, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [155018] = 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [161138] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3464), 1, - sym_exponentiate, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, - sym_multiplying_operator, - STATE(553), 1, - sym_adding_operator, - STATE(554), 1, - sym_shift_operator, - STATE(555), 1, - sym_relational_operator, - STATE(2354), 3, + STATE(2442), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 26, + ACTIONS(3092), 31, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -175814,14 +181599,16 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -175832,99 +181619,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - [155087] = 24, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(3316), 1, - sym_ALIAS, - ACTIONS(3318), 1, - sym_ATTRIBUTE, - ACTIONS(3320), 1, - sym_CONSTANT, - ACTIONS(3324), 1, - sym_FILE, - ACTIONS(3326), 1, - sym_FUNCTION, - ACTIONS(3328), 1, - sym_GROUP, - ACTIONS(3330), 1, - sym_PACKAGE, - ACTIONS(3332), 1, - sym_SHARED, - ACTIONS(3334), 1, - sym_SUBTYPE, - ACTIONS(3336), 1, - sym_TYPE, - ACTIONS(3338), 1, - sym_USE, - ACTIONS(3340), 1, - sym_VARIABLE, - ACTIONS(3696), 1, - sym_END, - STATE(2292), 1, - aux_sym_package_definition_body_repeat1, - STATE(3777), 1, - sym__package_body_declarative_item, - STATE(5773), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2355), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3775), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [155180] = 6, + sym_exponentiate, + [161194] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2356), 3, + STATE(2443), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, - anon_sym_EQ, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 31, + ACTIONS(3098), 31, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -175933,14 +181654,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -175951,59 +181670,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [155237] = 15, + [161250] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3464), 1, - sym_exponentiate, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, - sym_multiplying_operator, - STATE(553), 1, - sym_adding_operator, - STATE(554), 1, - sym_shift_operator, - STATE(555), 1, - sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2357), 3, + STATE(2444), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2702), 4, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2700), 21, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3008), 31, sym__AND, + sym_DOWNTO, + sym_IS, + sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, + sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176012,30 +181716,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [155312] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [161306] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2358), 3, + STATE(2445), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 7, - anon_sym_EQ, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 31, + ACTIONS(3082), 31, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -176044,14 +181754,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LT_EQ, + anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, anon_sym_QMARK_EQ, @@ -176062,129 +181770,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - anon_sym_PIPE, - [155369] = 24, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - ACTIONS(3698), 1, - sym_BEGIN, - STATE(2353), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2359), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [155462] = 16, + [161362] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3464), 1, - sym_exponentiate, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, - sym_multiplying_operator, - STATE(553), 1, - sym_adding_operator, - STATE(554), 1, - sym_shift_operator, - STATE(555), 1, - sym_relational_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2360), 3, + STATE(2446), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2698), 4, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2692), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3066), 31, + sym__AND, + sym_DOWNTO, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OPEN, + sym__OR, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2696), 15, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_SELECT, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176193,119 +181816,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [155539] = 24, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(51), 1, - sym_PROCEDURE, - ACTIONS(2892), 1, - sym_ALIAS, - ACTIONS(2894), 1, - sym_ATTRIBUTE, - ACTIONS(2898), 1, - sym_CONSTANT, - ACTIONS(2900), 1, - sym_FILE, - ACTIONS(2902), 1, - sym_FUNCTION, - ACTIONS(2904), 1, - sym_GROUP, - ACTIONS(2908), 1, - sym_PACKAGE, - ACTIONS(2910), 1, - sym_SHARED, - ACTIONS(2912), 1, - sym_SUBTYPE, - ACTIONS(2914), 1, - sym_TYPE, - ACTIONS(2916), 1, - sym_USE, - ACTIONS(2918), 1, - sym_VARIABLE, - ACTIONS(3638), 1, - sym_BEGIN, - STATE(2353), 1, - aux_sym_sequential_block_head_repeat1, - STATE(3811), 1, - sym__process_declarative_item, - STATE(5675), 1, - sym__subprogram_specification, - ACTIONS(43), 2, - sym_IMPURE, - sym_PURE, - STATE(6075), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2361), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3809), 17, - sym_use_clause, - sym_package_declaration, - sym_package_instantiation_declaration, - sym_package_definition, - sym_subprogram_declaration, - sym_subprogram_definition, - sym_subprogram_instantiation_declaration, - sym_type_declaration, - sym_subtype_declaration, - sym_constant_declaration, - sym_variable_declaration, - sym_file_declaration, - sym_alias_declaration, - sym_attribute_declaration, - sym_attribute_specification, - sym_group_template_declaration, - sym_group_declaration, - [155632] = 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [161418] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(413), 1, - sym_logical_operator, - STATE(551), 1, - sym_multiplying_operator, - STATE(553), 1, - sym_adding_operator, - STATE(554), 1, - sym_shift_operator, - STATE(555), 1, - sym_relational_operator, - STATE(2362), 3, + STATE(2447), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2674), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2672), 27, + ACTIONS(3004), 31, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176318,59 +181870,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [155699] = 17, + [161474] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2996), 1, + ACTIONS(3254), 1, sym_exponentiate, - STATE(460), 1, - sym_multiplying_operator, - STATE(479), 1, + STATE(452), 1, sym_adding_operator, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, + STATE(455), 1, + sym_multiplying_operator, + STATE(634), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2363), 3, + STATE(2448), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176379,31 +181931,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [155777] = 8, + [161552] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(580), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2364), 3, + STATE(2449), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 28, + ACTIONS(3008), 31, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -176415,11 +181964,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, + sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -176431,59 +181981,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [155837] = 17, + [161608] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3226), 1, + ACTIONS(2797), 1, sym_exponentiate, - STATE(552), 1, + STATE(532), 1, sym_multiplying_operator, STATE(559), 1, sym_adding_operator, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, + STATE(634), 1, sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2450), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + ACTIONS(2704), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + ACTIONS(2698), 8, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + [161686] = 17, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3318), 1, + sym_exponentiate, + STATE(586), 1, + sym_adding_operator, + STATE(590), 1, + sym_multiplying_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2365), 3, + STATE(2451), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176492,25 +182103,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [155915] = 6, + [161764] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2366), 3, + STATE(2452), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 31, + ACTIONS(3004), 31, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -176542,60 +182153,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [155971] = 17, + [161820] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2791), 1, - sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(617), 1, - sym_adding_operator, - STATE(619), 1, - sym_multiplying_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2367), 3, + STATE(2453), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3098), 31, sym__AND, + sym_DOWNTO, + sym_GENERIC, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -176603,44 +182199,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [156049] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [161876] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2368), 3, + ACTIONS(3018), 1, + sym_exponentiate, + STATE(459), 1, + sym_multiplying_operator, + STATE(460), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2454), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3050), 31, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, - sym_IS, - sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176649,63 +182264,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [156105] = 17, + [161954] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3218), 1, + ACTIONS(3494), 1, sym_exponentiate, - STATE(459), 1, + STATE(575), 1, sym_adding_operator, - STATE(490), 1, + STATE(580), 1, sym_multiplying_operator, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, + STATE(634), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2369), 3, + STATE(2455), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176714,32 +182325,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [156183] = 6, + [162032] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2370), 3, + STATE(664), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2456), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3094), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3092), 28, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_UNITS, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [162092] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2457), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 31, + ACTIONS(3066), 31, sym__AND, sym_DOWNTO, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -176753,6 +182415,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -176764,27 +182427,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [156239] = 7, + [162148] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3180), 1, + ACTIONS(3172), 1, sym_RANGE, - STATE(2371), 3, + STATE(2458), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 30, + ACTIONS(3134), 30, sym__AND, sym_DOWNTO, sym__MOD, @@ -176815,35 +182478,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [156297] = 8, + [162206] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(557), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2372), 3, + STATE(2459), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 28, + ACTIONS(3112), 31, sym__AND, + sym_DOWNTO, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -176852,10 +182511,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -176867,59 +182528,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [156357] = 17, + [162262] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3002), 1, + ACTIONS(3158), 1, sym_exponentiate, - STATE(469), 1, - sym_adding_operator, - STATE(470), 1, - sym_multiplying_operator, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, + STATE(634), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + STATE(688), 1, + sym_multiplying_operator, + STATE(691), 1, + sym_adding_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2373), 3, + STATE(2460), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176928,59 +182589,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [156435] = 17, + [162340] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3474), 1, + ACTIONS(3482), 1, sym_exponentiate, - STATE(440), 1, + STATE(428), 1, sym_adding_operator, - STATE(454), 1, + STATE(446), 1, sym_multiplying_operator, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, + STATE(634), 1, sym_shift_operator, - ACTIONS(2686), 2, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2374), 3, + STATE(2461), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -176989,59 +182650,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [156513] = 17, + [162418] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3148), 1, + ACTIONS(3144), 1, sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(645), 1, + STATE(609), 1, sym_multiplying_operator, - STATE(653), 1, + STATE(611), 1, sym_adding_operator, - ACTIONS(2686), 2, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2686), 2, sym__MOD, sym__REM, - ACTIONS(2684), 3, + ACTIONS(2702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2375), 3, + STATE(2462), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + ACTIONS(2704), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - ACTIONS(2692), 6, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -177050,44 +182711,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [156591] = 6, + [162496] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2376), 3, + ACTIONS(3016), 1, + sym_exponentiate, + STATE(473), 1, + sym_multiplying_operator, + STATE(474), 1, + sym_adding_operator, + STATE(634), 1, + sym_shift_operator, + STATE(635), 1, + sym_relational_operator, + STATE(636), 1, + sym_logical_operator, + ACTIONS(2682), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2686), 2, + sym__MOD, + sym__REM, + ACTIONS(2702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + STATE(2463), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(2700), 4, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3100), 31, + ACTIONS(2704), 6, sym__AND, - sym_DOWNTO, - sym_IS, - sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, - sym__REM, + sym__XNOR, + sym__XOR, + ACTIONS(2706), 6, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, + ACTIONS(2698), 8, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -177096,36 +182772,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [156647] = 6, + [162574] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2377), 3, + STATE(2464), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 31, + ACTIONS(3134), 31, sym__AND, sym_DOWNTO, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -177139,6 +182810,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -177150,32 +182822,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [156703] = 6, + [162630] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2378), 3, + STATE(2465), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 31, + ACTIONS(3140), 31, sym__AND, sym_DOWNTO, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -177189,6 +182860,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -177200,25 +182872,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [156759] = 6, + [162686] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2379), 3, + STATE(2466), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 31, + ACTIONS(3130), 31, sym__AND, sym_DOWNTO, sym_GENERIC, @@ -177250,25 +182922,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [156815] = 6, + [162742] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2380), 3, + STATE(684), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2467), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 31, + ACTIONS(3092), 28, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [162802] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2468), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2430), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2428), 31, sym__AND, sym_DOWNTO, sym_IS, @@ -177300,59 +183024,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [156871] = 17, + [162858] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3572), 1, - sym_exponentiate, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - STATE(694), 1, - sym_multiplying_operator, - STATE(695), 1, - sym_adding_operator, - ACTIONS(2686), 2, + ACTIONS(3542), 1, + anon_sym_EQ_GT, + STATE(2469), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3136), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(3134), 28, + sym__AND, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2381), 3, + sym_exponentiate, + [162915] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(620), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2470), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3092), 27, sym__AND, + sym_LOOP, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -177361,28 +183121,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [156949] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [162974] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2382), 3, + STATE(2471), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 31, + ACTIONS(3082), 30, sym__AND, - sym_DOWNTO, - sym_GENERIC, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -177394,10 +183157,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -177411,31 +183174,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157005] = 6, + [163029] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2383), 3, + STATE(2472), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 31, + ACTIONS(3066), 30, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -177447,9 +183210,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -177461,60 +183223,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157061] = 17, + [163084] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3004), 1, - sym_exponentiate, - STATE(482), 1, - sym_multiplying_operator, - STATE(483), 1, - sym_adding_operator, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - ACTIONS(2686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - sym__MOD, - sym__REM, - ACTIONS(2684), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - STATE(2384), 3, + STATE(2473), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3098), 30, sym__AND, + sym_BUS, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym_REGISTER, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -177522,59 +183268,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [157139] = 17, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [163139] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3182), 1, - sym_exponentiate, - STATE(464), 1, - sym_multiplying_operator, - STATE(465), 1, - sym_adding_operator, - STATE(606), 1, - sym_logical_operator, - STATE(611), 1, - sym_relational_operator, - STATE(612), 1, - sym_shift_operator, - ACTIONS(2686), 2, + STATE(2474), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3114), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(3112), 30, + sym_AFTER, + sym__AND, sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, sym__REM, - ACTIONS(2684), 3, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_AMP, - STATE(2385), 3, + sym_exponentiate, + [163194] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2475), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2682), 4, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, - ACTIONS(2688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3098), 30, + sym_AFTER, sym__AND, + sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym__XNOR, - sym__XOR, - ACTIONS(2692), 6, + sym__REM, sym__ROL, sym__ROR, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - ACTIONS(2680), 8, + sym_WHEN, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -177583,32 +183366,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_SLASH_EQ, anon_sym_QMARK_LT_EQ, anon_sym_QMARK_GT_EQ, - [157217] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [163249] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2386), 3, + STATE(2476), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 31, + ACTIONS(3092), 30, sym__AND, - sym_DOWNTO, - sym_IS, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -177617,11 +183402,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -177633,32 +183419,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157273] = 6, + [163304] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2387), 3, + STATE(2477), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3290), 4, + sym_BUS, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 31, + ACTIONS(3092), 26, sym__AND, - sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -177667,10 +183455,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -177683,31 +183469,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157329] = 6, + [163361] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2388), 3, + STATE(2478), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 31, + ACTIONS(3004), 30, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -177719,9 +183505,8 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -177733,32 +183518,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157385] = 6, + [163416] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2389), 3, + STATE(2479), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 31, + ACTIONS(2428), 30, sym__AND, sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -177770,7 +183554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -177783,28 +183567,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157441] = 6, + [163471] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2390), 3, + STATE(2480), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 31, + ACTIONS(3008), 30, sym__AND, - sym_DOWNTO, - sym_GENERIC, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -177816,10 +183599,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -177833,32 +183616,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157497] = 6, + [163526] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2391), 3, + STATE(2481), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 31, + ACTIONS(3004), 30, sym__AND, sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -177868,6 +183649,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -177883,28 +183665,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157553] = 6, + [163581] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2392), 3, + STATE(2482), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 31, + ACTIONS(3066), 30, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -177917,11 +183698,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -177933,32 +183714,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157609] = 6, + [163636] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2393), 3, + STATE(2483), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 31, + ACTIONS(3008), 30, + sym_AFTER, sym__AND, - sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -177967,10 +183746,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -177983,32 +183763,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157665] = 6, + [163691] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2394), 3, + STATE(2484), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 31, + ACTIONS(3140), 30, sym__AND, - sym_DOWNTO, - sym_GENERIC, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -178016,7 +183796,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -178033,28 +183812,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157721] = 6, + [163746] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2395), 3, + STATE(2485), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 31, + ACTIONS(3082), 30, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -178067,11 +183845,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -178083,28 +183861,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157777] = 6, + [163801] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2396), 3, + STATE(2486), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 31, + ACTIONS(3008), 30, sym__AND, sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -178117,11 +183894,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -178133,28 +183910,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157833] = 6, + [163856] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2397), 3, + STATE(2487), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 31, + ACTIONS(3134), 30, + sym_AFTER, sym__AND, - sym_DOWNTO, - sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -178166,12 +183942,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -178183,27 +183959,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157889] = 6, + [163911] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2398), 3, + STATE(2488), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 30, + ACTIONS(3140), 30, + sym_AFTER, sym__AND, - sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -178215,12 +183991,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -178232,31 +184008,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157944] = 6, + [163966] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2399), 3, + STATE(2489), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 30, + ACTIONS(2428), 30, + sym_AFTER, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -178265,9 +184040,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, @@ -178281,31 +184057,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [157999] = 6, + [164021] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2400), 3, + STATE(2490), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 30, + ACTIONS(3092), 30, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -178315,9 +184090,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -178330,31 +184106,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158054] = 6, + [164076] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2401), 3, + STATE(2491), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 30, + ACTIONS(3098), 30, sym__AND, - sym_DOWNTO, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -178363,11 +184138,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -178379,27 +184155,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158109] = 6, + [164131] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2402), 3, + STATE(2492), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 30, + ACTIONS(3092), 30, + sym_AFTER, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -178411,11 +184187,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -178428,27 +184204,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158164] = 6, + [164186] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2403), 3, + STATE(2493), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 30, + ACTIONS(2382), 30, + sym_AFTER, sym__AND, - sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -178460,12 +184236,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -178477,31 +184253,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158219] = 6, + [164241] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2404), 3, + STATE(2494), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 30, + ACTIONS(3082), 30, + sym_AFTER, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -178510,9 +184285,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, @@ -178526,32 +184302,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158274] = 6, + [164296] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2405), 3, + STATE(2495), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 30, + ACTIONS(2382), 30, sym__AND, - sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -178559,11 +184334,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -178575,32 +184351,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158329] = 6, + [164351] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2406), 3, + STATE(2496), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 30, + ACTIONS(3004), 30, sym__AND, sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -178611,6 +184386,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -178624,30 +184400,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158384] = 7, + [164406] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2407), 3, + STATE(2497), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3248), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - ACTIONS(3066), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(3066), 30, + sym_AFTER, sym__AND, sym__MOD, sym__NAND, @@ -178660,8 +184432,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -178674,25 +184449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158441] = 6, + [164461] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2408), 3, + STATE(2498), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 30, + ACTIONS(2428), 30, sym__AND, sym_BUS, sym__MOD, @@ -178723,25 +184498,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158496] = 6, + [164516] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2409), 3, + STATE(2499), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 30, + ACTIONS(3082), 30, sym__AND, sym_DOWNTO, sym__MOD, @@ -178772,25 +184547,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158551] = 6, + [164571] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2410), 3, + STATE(2500), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, + ACTIONS(3092), 30, sym__AND, sym_BUS, sym__MOD, @@ -178821,30 +184596,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158606] = 6, + [164626] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2411), 3, + STATE(2501), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 30, + ACTIONS(3008), 30, sym__AND, - sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -178853,12 +184629,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -178870,31 +184645,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158661] = 6, + [164681] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2412), 3, + STATE(2502), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 30, + ACTIONS(3112), 30, sym__AND, sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -178905,7 +184681,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -178919,74 +184694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158716] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2413), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2402), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2400), 30, - sym__AND, - sym_DOWNTO, - sym__MOD, - sym__NAND, - sym__NOR, - sym_OF, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [158771] = 6, + [164736] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2414), 3, + STATE(2503), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 30, + ACTIONS(3130), 30, sym_AFTER, sym__AND, sym__MOD, @@ -179017,27 +184743,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158826] = 6, + [164791] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2415), 3, + STATE(2504), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, + ACTIONS(3140), 30, sym__AND, - sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, @@ -179049,12 +184775,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -179066,31 +184792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158881] = 6, + [164846] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2416), 3, + STATE(2505), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 30, + ACTIONS(3130), 30, sym__AND, sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -179101,7 +184828,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -179115,76 +184841,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [158936] = 8, + [164901] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(624), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2417), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3066), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3064), 27, - sym__AND, - sym_LOOP, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [158995] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2418), 3, + STATE(2506), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 30, + ACTIONS(3082), 30, sym__AND, sym_BUS, sym__MOD, @@ -179215,31 +184890,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159050] = 6, + [164956] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2419), 3, + STATE(2507), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, + ACTIONS(2428), 30, sym__AND, - sym_DOWNTO, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -179247,12 +184923,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -179264,25 +184939,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159105] = 6, + [165011] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2420), 3, + STATE(2508), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 30, + ACTIONS(3112), 30, sym__AND, sym_BUS, sym__MOD, @@ -179313,32 +184988,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159160] = 8, + [165066] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(600), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2421), 3, + STATE(2509), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 27, + ACTIONS(3130), 30, sym__AND, - sym_IS, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -179352,7 +185022,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -179364,31 +185037,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159219] = 6, + [165121] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2422), 3, + STATE(2510), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 30, + ACTIONS(3134), 30, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -179398,9 +185070,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -179413,32 +185086,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159274] = 6, + [165176] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2423), 3, + STATE(640), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2511), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 30, + ACTIONS(3092), 27, sym__AND, - sym_BUS, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -179448,9 +185125,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -179462,31 +185137,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159329] = 6, + [165235] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2424), 3, + STATE(2512), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 30, + ACTIONS(3130), 30, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -179496,59 +185170,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym__XNOR, - sym__XOR, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [159384] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2425), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2402), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2400), 30, - sym__AND, - sym_BUS, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym_REGISTER, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -179560,25 +185186,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159439] = 6, + [165290] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2426), 3, + STATE(2513), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 30, + ACTIONS(3134), 30, sym__AND, sym_BUS, sym__MOD, @@ -179609,31 +185235,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159494] = 6, + [165345] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2427), 3, + STATE(2514), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 30, + ACTIONS(3134), 30, sym__AND, - sym_DOWNTO, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -179641,12 +185268,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -179658,25 +185284,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159549] = 6, + [165400] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2428), 3, + STATE(2515), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 30, + ACTIONS(3112), 30, sym__AND, sym_DOWNTO, sym__MOD, @@ -179707,25 +185333,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159604] = 6, + [165455] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2429), 3, + STATE(2516), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 30, + ACTIONS(3098), 30, sym__AND, sym_DOWNTO, sym__MOD, @@ -179756,30 +185382,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159659] = 6, + [165510] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2430), 3, + STATE(2517), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 30, + ACTIONS(3098), 30, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -179789,10 +185416,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -179805,25 +185431,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159714] = 6, + [165565] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2431), 3, + STATE(2518), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 30, + ACTIONS(3066), 30, sym__AND, sym_BUS, sym__MOD, @@ -179854,30 +185480,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159769] = 6, + [165620] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2432), 3, + STATE(2519), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 30, - sym_AFTER, + ACTIONS(2382), 30, sym__AND, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -179886,10 +185513,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, @@ -179903,30 +185529,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159824] = 6, + [165675] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2433), 3, + STATE(2520), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 30, - sym_AFTER, + ACTIONS(3112), 30, sym__AND, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -179935,10 +185562,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, @@ -179952,31 +185578,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159879] = 6, + [165730] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2434), 3, + STATE(2521), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 30, + ACTIONS(3004), 30, sym__AND, sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -179987,7 +185614,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -180001,25 +185627,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159934] = 6, + [165785] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2435), 3, + STATE(2522), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 30, + ACTIONS(3092), 30, sym__AND, sym_DOWNTO, sym__MOD, @@ -180050,66 +185676,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [159989] = 6, + [165840] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2436), 3, + STATE(2523), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3096), 30, - sym_AFTER, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_WHEN, - sym__XNOR, - sym__XOR, + ACTIONS(3290), 4, + sym_BUS, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [160044] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2437), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, + anon_sym_RPAREN, + sym_variable_assignment, ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, @@ -180117,8 +185699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 30, - sym_AFTER, + ACTIONS(3092), 26, sym__AND, sym__MOD, sym__NAND, @@ -180131,11 +185712,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -180148,31 +185726,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160099] = 7, + [165897] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2438), 3, + STATE(651), 1, + sym__direction, + ACTIONS(3178), 2, + sym_DOWNTO, + sym_TO, + STATE(2524), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3248), 4, - sym_BUS, - sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - ACTIONS(3066), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(3092), 27, sym__AND, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -180198,31 +185777,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160156] = 6, + [165956] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2439), 3, + STATE(2525), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, + ACTIONS(2428), 30, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -180232,9 +185810,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -180247,30 +185826,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160211] = 6, + [166011] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2440), 3, + STATE(2526), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 30, + ACTIONS(3130), 30, sym__AND, sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -180280,10 +185860,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -180296,31 +185875,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160266] = 6, + [166066] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2441), 3, + STATE(2527), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 30, + ACTIONS(3066), 30, sym__AND, - sym_DOWNTO, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -180328,12 +185908,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -180345,32 +185924,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160321] = 6, + [166121] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2442), 3, + STATE(2528), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 30, + ACTIONS(3140), 30, sym__AND, sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -180381,6 +185959,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, sym_variable_assignment, anon_sym_EQ, @@ -180394,32 +185973,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160376] = 6, + [166176] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2443), 3, + STATE(2529), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 30, + ACTIONS(3134), 30, sym__AND, - sym_BUS, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -180427,11 +186006,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -180443,31 +186022,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160431] = 6, + [166231] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2444), 3, + STATE(2530), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 30, + ACTIONS(3004), 30, + sym_AFTER, sym__AND, - sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -180476,9 +186054,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, + sym_WHEN, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, @@ -180492,27 +186071,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160486] = 6, + [166286] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2445), 3, + STATE(2531), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 30, + ACTIONS(2382), 30, sym__AND, - sym_DOWNTO, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, @@ -180524,12 +186103,12 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -180541,31 +186120,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160541] = 6, + [166341] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2446), 3, + STATE(2532), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 30, - sym_AFTER, + ACTIONS(2382), 30, sym__AND, + sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, + sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -180573,12 +186153,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -180590,25 +186169,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160596] = 6, + [166396] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2447), 3, + STATE(2533), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 30, + ACTIONS(3008), 30, sym__AND, sym_BUS, sym__MOD, @@ -180639,30 +186218,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160651] = 6, + [166451] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2448), 3, + STATE(2534), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 30, - sym_AFTER, + ACTIONS(3140), 30, sym__AND, + sym_DOWNTO, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -180671,10 +186251,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, @@ -180688,30 +186267,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160706] = 6, + [166506] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2449), 3, + STATE(2535), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 30, - sym_AFTER, + ACTIONS(3004), 29, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -180720,11 +186300,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -180737,32 +186315,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160761] = 6, + [166560] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2450), 3, + STATE(2536), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 30, + ACTIONS(3140), 29, sym__AND, - sym_BUS, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, - sym_REGISTER, sym__REM, sym__ROL, sym__ROR, @@ -180774,7 +186352,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -180786,27 +186363,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160816] = 6, + [166614] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2451), 3, + STATE(2537), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 30, - sym_AFTER, + ACTIONS(3134), 29, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -180818,11 +186396,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -180835,27 +186411,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160871] = 6, + [166668] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2452), 3, + STATE(2538), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 30, + ACTIONS(2428), 29, sym__AND, sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -180868,10 +186445,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -180884,30 +186459,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160926] = 6, + [166722] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2453), 3, + STATE(2539), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 30, - sym_AFTER, + ACTIONS(3130), 29, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -180916,11 +186492,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -180933,27 +186507,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [160981] = 6, + [166776] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2454), 3, + STATE(2540), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 30, + ACTIONS(3130), 29, sym__AND, sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -180966,10 +186541,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SRA, sym__SRL, sym_TO, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -180982,27 +186555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161036] = 6, + [166830] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2455), 3, + STATE(2541), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 30, - sym_AFTER, + ACTIONS(2382), 29, sym__AND, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -181014,12 +186587,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_WHEN, sym__XNOR, sym__XOR, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -181031,85 +186603,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161091] = 7, + [166884] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3574), 1, - anon_sym_EQ_GT, - STATE(2456), 3, + STATE(2542), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3080), 28, + ACTIONS(3718), 35, + sym_identifier, + sym__ABS, sym__AND, - sym__MOD, sym__NAND, + sym_NEW, sym__NOR, + sym__NOT, + sym_NULL, sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_WHEN, + sym_UNAFFECTED, sym__XNOR, sym__XOR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [161148] = 6, + anon_sym_LT_LT, + [166936] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2457), 3, + STATE(2543), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 30, + ACTIONS(2382), 29, sym__AND, - sym_BUS, sym__MOD, sym__NAND, sym__NOR, sym__OR, - sym_REGISTER, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -181118,7 +186687,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -181130,45 +186698,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161203] = 8, + [166990] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(588), 1, - sym__direction, - ACTIONS(3184), 2, - sym_DOWNTO, - sym_TO, - STATE(2458), 3, + STATE(2544), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 27, + ACTIONS(3092), 29, sym__AND, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181181,42 +186746,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161262] = 6, + [167044] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2459), 3, + STATE(2545), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 29, + ACTIONS(3004), 29, sym__AND, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181229,25 +186794,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161316] = 6, + [167098] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2460), 3, + STATE(2546), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 29, + ACTIONS(3066), 29, sym__AND, sym_DOWNTO, sym_GENERATE, @@ -181277,31 +186842,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161370] = 6, + [167152] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2461), 3, + STATE(2547), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 29, + ACTIONS(3066), 29, sym__AND, - sym_DOWNTO, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -181310,9 +186875,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181325,42 +186890,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161424] = 6, + [167206] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2462), 3, + STATE(2548), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 29, + ACTIONS(3140), 29, sym__AND, - sym_DOWNTO, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181373,25 +186938,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161478] = 6, + [167260] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2463), 3, + STATE(2549), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 29, + ACTIONS(3134), 29, sym__AND, sym__MOD, sym__NAND, @@ -181421,42 +186986,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161532] = 6, + [167314] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2464), 3, + STATE(2550), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(3112), 29, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181469,42 +187034,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161586] = 6, + [167368] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2465), 3, + STATE(2551), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(3130), 29, sym__AND, - sym_DOWNTO, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181517,31 +187082,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161640] = 6, + [167422] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2466), 3, + STATE(2552), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 29, + ACTIONS(3082), 29, sym__AND, - sym_DOWNTO, sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -181550,9 +187115,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181565,28 +187130,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161694] = 6, + [167476] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2467), 3, + STATE(2553), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 29, + ACTIONS(3112), 29, sym__AND, sym_DOWNTO, - sym_LOOP, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -181613,25 +187178,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161748] = 6, + [167530] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2468), 3, + STATE(2554), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 29, + ACTIONS(3140), 29, sym__AND, sym_GENERIC, sym__MOD, @@ -181661,31 +187226,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161802] = 6, + [167584] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2469), 3, + STATE(2555), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 29, + ACTIONS(3134), 29, sym__AND, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -181698,6 +187262,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -181709,42 +187274,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161856] = 6, + [167638] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2470), 3, + STATE(2556), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(3098), 29, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181757,31 +187322,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161910] = 6, + [167692] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2471), 3, + STATE(2557), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 29, + ACTIONS(3092), 29, sym__AND, - sym_IS, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -181790,9 +187355,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181805,42 +187370,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [161964] = 6, + [167746] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2472), 3, + ACTIONS(3290), 3, + sym_GENERIC, + anon_sym_SEMI, + sym_variable_assignment, + STATE(2558), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 29, + ACTIONS(3092), 26, sym__AND, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181853,25 +187419,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162018] = 6, + [167802] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2473), 3, + STATE(2559), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(3082), 29, sym__AND, sym_DOWNTO, sym_GENERATE, @@ -181901,25 +187467,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162072] = 6, + [167856] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2474), 3, + STATE(2560), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 29, + ACTIONS(3130), 29, sym__AND, sym_GENERIC, sym__MOD, @@ -181949,31 +187515,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162126] = 6, + [167910] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2475), 3, + STATE(2561), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 29, + ACTIONS(3008), 29, sym__AND, + sym_DOWNTO, sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -181982,9 +187548,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -181997,31 +187563,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162180] = 6, + [167964] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2476), 3, + STATE(2562), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(3112), 29, sym__AND, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -182034,6 +187599,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -182045,28 +187611,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162234] = 6, + [168018] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2477), 3, + STATE(2563), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 29, + ACTIONS(3082), 29, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -182093,25 +187659,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162288] = 6, + [168072] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2478), 3, + STATE(2564), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(3098), 29, sym__AND, sym_GENERIC, sym__MOD, @@ -182141,31 +187707,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162342] = 6, + [168126] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2479), 3, + STATE(2565), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 29, + ACTIONS(3066), 29, sym__AND, + sym_DOWNTO, sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -182174,9 +187740,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -182189,28 +187755,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162396] = 6, + [168180] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2480), 3, + STATE(2566), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 29, + ACTIONS(3004), 29, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -182237,25 +187803,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162450] = 6, + [168234] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2481), 3, + STATE(2567), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 29, + ACTIONS(3134), 29, sym__AND, sym_DOWNTO, sym_GENERATE, @@ -182285,35 +187851,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162504] = 6, + [168288] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2482), 3, + STATE(2568), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 29, + ACTIONS(3092), 29, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -182333,35 +187899,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162558] = 6, + [168342] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2483), 3, + STATE(2569), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 29, + ACTIONS(3098), 29, sym__AND, - sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -182381,28 +187947,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162612] = 6, + [168396] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2484), 3, + STATE(2570), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 29, + ACTIONS(3092), 29, sym__AND, - sym_DOWNTO, - sym_GENERATE, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -182414,10 +187979,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -182429,28 +187995,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162666] = 6, + [168450] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2485), 3, + STATE(2571), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(3008), 29, sym__AND, - sym_DOWNTO, - sym_LOOP, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, @@ -182462,10 +188027,11 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -182477,25 +188043,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162720] = 6, + [168504] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2486), 3, + STATE(2572), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 29, + ACTIONS(3082), 29, sym__AND, sym_GENERIC, sym__MOD, @@ -182525,25 +188091,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162774] = 6, + [168558] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2487), 3, + STATE(2573), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 29, + ACTIONS(3066), 29, sym__AND, sym_GENERIC, sym__MOD, @@ -182573,25 +188139,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162828] = 6, + [168612] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2488), 3, + STATE(2574), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 29, + ACTIONS(3004), 29, sym__AND, sym_GENERIC, sym__MOD, @@ -182621,43 +188187,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162882] = 7, + [168666] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3248), 3, + STATE(2575), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3010), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3008), 29, + sym__AND, sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, sym_OPEN, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, anon_sym_SEMI, - STATE(2489), 3, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [168720] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2576), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3720), 35, + sym_identifier, + sym__ABS, + sym__AND, + sym__NAND, + sym_NEW, + sym__NOR, + sym__NOT, + sym_NULL, + sym__OR, + sym_OTHERS, + sym__XNOR, + sym__XOR, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + [168772] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2577), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3132), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3130), 29, + sym__AND, + sym_DOWNTO, + sym_GENERATE, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym_TO, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [168826] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2578), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(3008), 29, sym__AND, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -182670,25 +188378,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162938] = 6, + [168880] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2490), 3, + STATE(2579), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 29, + ACTIONS(3082), 29, sym__AND, sym__MOD, sym__NAND, @@ -182718,42 +188426,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [162992] = 6, + [168934] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2491), 3, + STATE(2580), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 29, + ACTIONS(3066), 29, sym__AND, - sym_DOWNTO, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -182766,28 +188474,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163046] = 6, + [168988] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2492), 3, + STATE(2581), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 29, + ACTIONS(3098), 29, sym__AND, sym_DOWNTO, - sym_LOOP, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -182814,78 +188522,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163100] = 5, + [169042] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2493), 3, + STATE(2582), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3700), 35, - sym_identifier, - sym__ABS, + ACTIONS(3114), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3112), 29, sym__AND, + sym__MOD, sym__NAND, - sym_NEW, sym__NOR, - sym__NOT, - sym_NULL, sym__OR, - sym_UNAFFECTED, + sym__REM, + sym_REPORT, + sym__ROL, + sym__ROR, + sym_SEVERITY, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym__XNOR, sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_LT, - [163152] = 6, + anon_sym_AMP, + sym_exponentiate, + [169096] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2494), 3, + STATE(2583), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 29, + ACTIONS(3098), 29, sym__AND, - sym_DOWNTO, - sym_GENERATE, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -182894,9 +188603,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -182909,28 +188618,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163206] = 6, + [169150] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2495), 3, + STATE(2584), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 29, + ACTIONS(2428), 29, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -182957,31 +188666,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163260] = 6, + [169204] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2496), 3, + STATE(2585), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(3112), 29, sym__AND, - sym_DOWNTO, sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -182990,9 +188699,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -183005,78 +188714,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163314] = 6, + [169258] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2497), 3, + STATE(2586), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2400), 29, + ACTIONS(3722), 35, + sym_identifier, + sym__ABS, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, + sym_NEW, sym__NOR, + sym__NOT, + sym_NULL, sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, + sym_UNAFFECTED, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [163368] = 7, + anon_sym_LT_LT, + [169310] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3248), 3, - sym_GENERIC, - anon_sym_SEMI, - sym_variable_assignment, - STATE(2498), 3, + STATE(2587), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(3004), 29, sym__AND, + sym_DOWNTO, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -183088,6 +188794,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -183102,27 +188809,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163424] = 6, + [169364] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2499), 3, + STATE(2588), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 29, + ACTIONS(2382), 29, sym__AND, - sym_GENERIC, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -183134,11 +188842,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -183150,28 +188857,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163478] = 6, + [169418] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2500), 3, + STATE(2589), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 29, + ACTIONS(3066), 29, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -183198,89 +188905,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163532] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2501), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3702), 35, - sym_identifier, - sym__ABS, - sym__AND, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym_UNAFFECTED, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [163584] = 6, + [169472] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2502), 3, + STATE(2590), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(3004), 29, sym__AND, - sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, + sym_REPORT, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -183293,28 +188953,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163638] = 6, + [169526] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2503), 3, + STATE(2591), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 29, + ACTIONS(3098), 29, sym__AND, sym_DOWNTO, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -183341,78 +189001,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163692] = 5, + [169580] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2504), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3704), 35, - sym_identifier, - sym__ABS, - sym__AND, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym_OTHERS, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [163744] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2505), 3, + STATE(2592), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 29, + ACTIONS(2428), 29, sym__AND, - sym_IS, + sym_GENERIC, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -183425,6 +189037,7 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -183436,31 +189049,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163798] = 6, + [169634] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2506), 3, + STATE(2593), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 29, + ACTIONS(3134), 29, sym__AND, - sym_DOWNTO, sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -183469,9 +189082,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -183484,31 +189097,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163852] = 6, + [169688] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2507), 3, + STATE(2594), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 29, + ACTIONS(3140), 29, sym__AND, - sym_IS, + sym_DOWNTO, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -183517,9 +189130,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -183532,31 +189145,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163906] = 6, + [169742] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2508), 3, + STATE(2595), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(3008), 29, sym__AND, - sym_IS, + sym_DOWNTO, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -183565,9 +189178,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -183580,72 +189193,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [163960] = 5, + [169796] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2509), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3706), 35, - sym_identifier, - sym__ABS, - sym__AND, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym_UNAFFECTED, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [164012] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2510), 3, + STATE(2596), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 29, + ACTIONS(2428), 29, sym__AND, sym_DOWNTO, sym_LOOP, @@ -183675,75 +189241,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164066] = 5, + [169850] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2511), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3708), 35, - sym_identifier, - sym__ABS, - sym__AND, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym_UNAFFECTED, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [164118] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2512), 3, + STATE(2597), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 29, + ACTIONS(3134), 29, sym__AND, sym_DOWNTO, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -183770,27 +189289,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164172] = 6, + [169904] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2513), 3, + STATE(2598), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 29, + ACTIONS(3130), 29, sym__AND, - sym_GENERIC, + sym_DOWNTO, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -183802,11 +189322,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -183818,76 +189337,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164226] = 6, + [169958] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2514), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3102), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3100), 29, - sym__AND, + ACTIONS(3290), 3, sym_IS, - sym__MOD, - sym__NAND, - sym__NOR, sym_OPEN, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [164280] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2515), 3, + STATE(2599), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 29, + ACTIONS(3092), 26, sym__AND, - sym_DOWNTO, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -183899,7 +189372,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -183914,131 +189386,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164334] = 6, + [170014] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2516), 3, + STATE(2600), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3076), 29, + ACTIONS(3724), 35, + sym_identifier, + sym__ABS, sym__AND, - sym_GENERIC, - sym__MOD, sym__NAND, + sym_NEW, sym__NOR, + sym__NOT, + sym_NULL, sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, + sym_UNAFFECTED, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [164388] = 6, + anon_sym_LT_LT, + [170066] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2517), 3, + STATE(2601), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3088), 29, + ACTIONS(3726), 35, + sym_identifier, + sym__ABS, sym__AND, - sym_DOWNTO, - sym_IS, - sym__MOD, sym__NAND, + sym_NEW, sym__NOR, + sym__NOT, + sym_NULL, sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym_TO, + sym_UNAFFECTED, sym__XNOR, sym__XOR, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [164442] = 6, + anon_sym_LT_LT, + [170118] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2518), 3, + STATE(2602), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 29, + ACTIONS(2382), 29, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -184058,25 +189528,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164496] = 6, + [170172] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2519), 3, + STATE(2603), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 29, + ACTIONS(2428), 29, sym__AND, sym__MOD, sym__NAND, @@ -184106,42 +189576,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164550] = 6, + [170226] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2520), 3, + STATE(2604), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 29, + ACTIONS(2382), 29, sym__AND, + sym_DOWNTO, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -184154,28 +189624,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164604] = 6, + [170280] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2521), 3, + STATE(2605), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 29, + ACTIONS(3008), 29, sym__AND, sym_DOWNTO, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -184202,30 +189672,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164658] = 6, + [170334] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2522), 3, + STATE(2606), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 29, + ACTIONS(2428), 29, sym__AND, - sym_GENERIC, + sym_IS, sym__MOD, sym__NAND, sym__NOR, + sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -184238,7 +189709,6 @@ static const uint16_t ts_small_parse_table[] = { sym__XOR, anon_sym_SEMI, anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_GT_EQ, @@ -184250,31 +189720,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164712] = 6, + [170388] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2523), 3, + STATE(2607), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 29, + ACTIONS(2382), 29, sym__AND, + sym_DOWNTO, sym_IS, sym__MOD, sym__NAND, sym__NOR, - sym_OPEN, sym__OR, sym__REM, sym__ROL, @@ -184283,9 +189753,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -184298,28 +189768,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164766] = 6, + [170442] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2524), 3, + STATE(2608), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 29, + ACTIONS(3082), 29, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -184346,28 +189816,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164820] = 6, + [170496] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2525), 3, + STATE(2609), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 29, + ACTIONS(3112), 29, sym__AND, sym_DOWNTO, - sym_GENERATE, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -184394,42 +189864,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164874] = 6, + [170550] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2526), 3, + STATE(2610), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 29, + ACTIONS(3092), 29, sym__AND, + sym_DOWNTO, + sym_IS, sym__MOD, sym__NAND, sym__NOR, sym__OR, sym__REM, - sym_REPORT, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_TO, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -184442,28 +189912,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164928] = 6, + [170604] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2527), 3, + STATE(2611), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 29, + ACTIONS(3092), 29, sym__AND, sym_DOWNTO, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -184490,28 +189960,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [164982] = 6, + [170658] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2528), 3, + STATE(2612), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 29, + ACTIONS(3140), 29, sym__AND, sym_DOWNTO, - sym_LOOP, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -184538,28 +190008,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165036] = 6, + [170712] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2529), 3, + STATE(2613), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 29, + ACTIONS(3140), 29, sym__AND, sym_DOWNTO, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -184586,28 +190056,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165090] = 6, + [170766] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2530), 3, + STATE(2614), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 29, + ACTIONS(2428), 28, sym__AND, - sym_DOWNTO, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -184615,13 +190083,14 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -184634,28 +190103,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165144] = 6, + [170819] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2531), 3, + STATE(2615), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 29, + ACTIONS(3098), 28, sym__AND, - sym_DOWNTO, - sym_IS, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, @@ -184667,9 +190135,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_TO, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -184682,25 +190150,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165198] = 6, + [170872] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2532), 3, + STATE(2616), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 28, + ACTIONS(2382), 28, sym__AND, sym_FOR, sym__MOD, @@ -184729,26 +190197,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165251] = 6, + [170925] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2533), 3, + STATE(2617), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 28, + ACTIONS(3112), 28, sym__AND, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -184756,7 +190225,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -184776,71 +190244,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165304] = 5, + [170978] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2534), 3, + STATE(2618), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3710), 34, - sym_identifier, - sym__ABS, + ACTIONS(3100), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3098), 28, sym__AND, + sym_ELSE, + sym__MOD, sym__NAND, - sym_NEW, sym__NOR, - sym__NOT, - sym_NULL, sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym__XNOR, sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_LT, - [165355] = 6, + anon_sym_AMP, + sym_exponentiate, + [171031] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2535), 3, + STATE(2619), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 28, + ACTIONS(3092), 28, sym__AND, sym__MOD, sym__NAND, @@ -184869,18 +190338,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165408] = 5, + [171084] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2536), 3, + STATE(2620), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3142), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3140), 28, + sym__AND, + sym_FOR, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [171137] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2621), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3724), 34, + sym_identifier, + sym__ABS, + sym__AND, + sym__NAND, + sym_NEW, + sym__NOR, + sym__NOT, + sym_NULL, + sym__OR, + sym__XNOR, + sym__XOR, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + [171188] = 30, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(3728), 1, + anon_sym_LT_LT, + ACTIONS(3732), 1, + sym_BLOCK, + ACTIONS(3734), 1, + sym_CASE, + ACTIONS(3736), 1, + sym_COMPONENT, + ACTIONS(3738), 1, + sym_CONFIGURATION, + ACTIONS(3740), 1, + sym_ENTITY, + ACTIONS(3742), 1, + sym_FOR, + ACTIONS(3744), 1, + sym_IF, + ACTIONS(3746), 1, + sym_POSTPONED, + ACTIONS(3748), 1, + sym_PROCESS, + STATE(3596), 1, + sym__direct_name, + STATE(5058), 1, + sym_if_generate, + STATE(5071), 1, + sym_name, + STATE(5178), 1, + sym_instantiated_unit, + STATE(5566), 1, + sym_for_loop, + STATE(6312), 1, + sym_aggregate, + STATE(6360), 1, + sym_with_expression, + STATE(6367), 1, + sym__target, + STATE(7556), 1, + sym_assertion, + STATE(4800), 2, + sym__identifier, + sym__external_name, + ACTIONS(3750), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2622), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4737), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3730), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [171289] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2623), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3712), 34, + ACTIONS(3752), 34, sym_identifier, sym__ABS, sym__AND, @@ -184915,72 +190548,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, - [165459] = 5, + [171340] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2537), 3, + STATE(2624), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3714), 34, - sym_identifier, - sym__ABS, + ACTIONS(3010), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3008), 28, sym__AND, + sym_ELSE, + sym__MOD, sym__NAND, - sym_NEW, sym__NOR, - sym__NOT, - sym_NULL, sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym__XNOR, sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_LT, - [165510] = 6, + anon_sym_AMP, + sym_exponentiate, + [171393] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2538), 3, + STATE(2625), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 28, + ACTIONS(3082), 28, sym__AND, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -184992,7 +190627,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -185008,18 +190642,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165563] = 5, + [171446] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2539), 3, + STATE(2626), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3716), 34, + ACTIONS(3068), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3066), 28, + sym__AND, + sym_ELSE, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [171499] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2627), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3754), 34, sym_identifier, sym__ABS, sym__AND, @@ -185054,97 +190735,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, - [165614] = 29, + [171550] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(3718), 1, - anon_sym_LT_LT, - ACTIONS(3722), 1, - sym_BLOCK, - ACTIONS(3724), 1, - sym_CASE, - ACTIONS(3728), 1, - sym_ENTITY, - ACTIONS(3730), 1, - sym_FOR, - ACTIONS(3732), 1, - sym_IF, - ACTIONS(3734), 1, - sym_POSTPONED, - ACTIONS(3736), 1, - sym_PROCESS, - STATE(3544), 1, - sym__direct_name, - STATE(4818), 1, - sym_if_generate, - STATE(4904), 1, - sym_name, - STATE(5149), 1, - sym_instantiated_unit, - STATE(5276), 1, - sym_for_loop, - STATE(5982), 1, - sym_with_expression, - STATE(6083), 1, - sym_aggregate, - STATE(6089), 1, - sym__target, - STATE(6924), 1, - sym_assertion, - ACTIONS(3726), 2, - sym_COMPONENT, - sym_CONFIGURATION, - STATE(4553), 2, - sym__identifier, - sym__external_name, - ACTIONS(3738), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2540), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4549), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3720), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [165713] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2541), 3, + STATE(2628), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 28, + ACTIONS(2382), 28, sym__AND, - sym_FOR, sym__MOD, sym__NAND, sym__NOR, @@ -185152,6 +190762,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -185171,30 +190782,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165766] = 6, + [171603] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2542), 3, + STATE(2629), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 28, + ACTIONS(2428), 28, sym__AND, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -185205,7 +190816,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -185218,41 +190829,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165819] = 6, + [171656] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2543), 3, + STATE(2630), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 28, + ACTIONS(3092), 28, sym__AND, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -185265,87 +190876,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165872] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2544), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3740), 34, - sym_identifier, - sym__ABS, - sym__AND, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [165923] = 6, + [171709] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2545), 3, + STATE(2631), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 28, + ACTIONS(3140), 28, sym__AND, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -185358,41 +190923,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [165976] = 6, + [171762] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2546), 3, + STATE(2632), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 28, + ACTIONS(3134), 28, sym__AND, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -185405,25 +190970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166029] = 6, + [171815] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2547), 3, + STATE(2633), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 28, + ACTIONS(3130), 28, sym__AND, sym__MOD, sym__NAND, @@ -185432,11 +190997,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -185452,25 +191017,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166082] = 6, + [171868] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2548), 3, + STATE(2634), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 28, + ACTIONS(2428), 28, sym__AND, sym__MOD, sym__NAND, @@ -185499,27 +191064,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166135] = 6, + [171921] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2549), 3, + STATE(2635), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 28, + ACTIONS(2428), 28, sym__AND, - sym_FOR, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -185546,27 +191111,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166188] = 6, + [171974] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2550), 3, + STATE(2636), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 28, + ACTIONS(3004), 28, sym__AND, - sym_ELSE, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, @@ -185593,30 +191158,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166241] = 6, + [172027] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2551), 3, + STATE(2637), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 28, + ACTIONS(2428), 28, sym__AND, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -185625,9 +191189,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -185640,30 +191205,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166294] = 6, + [172080] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2552), 3, + STATE(2638), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 28, + ACTIONS(3066), 28, sym__AND, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -185674,7 +191239,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -185687,28 +191252,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166347] = 7, + [172133] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3248), 2, - sym_OF, - anon_sym_COMMA, - STATE(2553), 3, + STATE(2639), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(3112), 28, sym__AND, sym__MOD, sym__NAND, @@ -185721,8 +191283,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -185735,25 +191299,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166402] = 6, + [172186] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2554), 3, + STATE(2640), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 28, + ACTIONS(3082), 28, sym__AND, sym_FOR, sym__MOD, @@ -185782,26 +191346,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166455] = 6, + [172239] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2555), 3, + STATE(2641), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 28, + ACTIONS(3008), 28, sym__AND, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, @@ -185813,7 +191378,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -185829,27 +191393,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166508] = 6, + [172292] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2556), 3, + STATE(2642), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 28, + ACTIONS(3004), 28, sym__AND, - sym_FOR, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -185876,30 +191440,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166561] = 6, + [172345] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2557), 3, + STATE(2643), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3720), 34, + sym_identifier, + sym__ABS, + sym__AND, + sym__NAND, + sym_NEW, + sym__NOR, + sym__NOT, + sym_NULL, + sym__OR, + sym__XNOR, + sym__XOR, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + [172396] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2644), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 28, + ACTIONS(2382), 28, sym__AND, - sym_FOR, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -185910,7 +191520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -185923,27 +191533,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166614] = 6, + [172449] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2558), 3, + STATE(2645), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 28, + ACTIONS(3130), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -185955,6 +191564,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -185970,27 +191580,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166667] = 6, + [172502] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2559), 3, + STATE(2646), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 28, + ACTIONS(3134), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -186002,6 +191611,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -186017,30 +191627,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166720] = 6, + [172555] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2560), 3, + STATE(2647), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 28, + ACTIONS(3140), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -186051,7 +191661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -186064,76 +191674,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166773] = 5, + [172608] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2561), 3, + STATE(2648), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3700), 34, - sym_identifier, - sym__ABS, + ACTIONS(3136), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3134), 28, sym__AND, + sym__MOD, sym__NAND, - sym_NEW, sym__NOR, - sym__NOT, - sym_NULL, + sym_OF, sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym__XNOR, sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_LT, - [166824] = 6, + anon_sym_AMP, + sym_exponentiate, + [172661] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2562), 3, + STATE(2649), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 28, + ACTIONS(3130), 28, sym__AND, - sym_FOR, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -186144,7 +191755,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -186157,27 +191768,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166877] = 6, + [172714] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2563), 3, + STATE(2650), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 28, + ACTIONS(3112), 28, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [172767] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2651), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3142), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3140), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -186189,6 +191846,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -186204,18 +191862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [166930] = 5, + [172820] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2564), 3, + STATE(2652), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3742), 34, + ACTIONS(3756), 34, sym_identifier, sym__ABS, sym__AND, @@ -186250,77 +191908,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, - [166981] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2565), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3052), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3050), 28, - sym__AND, - sym__MOD, - sym__NAND, - sym__NOR, - sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym_SEVERITY, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, - sym__XNOR, - sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [167034] = 6, + [172871] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2566), 3, + STATE(2653), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 28, + ACTIONS(3098), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -186331,7 +191942,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -186344,25 +191955,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167087] = 6, + [172924] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2567), 3, + STATE(2654), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 28, + ACTIONS(3112), 28, sym__AND, sym_FOR, sym__MOD, @@ -186391,27 +192002,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167140] = 6, + [172977] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2568), 3, + ACTIONS(3290), 2, + sym_OF, + anon_sym_COMMA, + STATE(2655), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 28, + ACTIONS(3092), 26, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -186425,7 +192038,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -186438,27 +192050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167193] = 6, + [173032] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2569), 3, + STATE(2656), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 28, + ACTIONS(3112), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -186466,6 +192077,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -186485,143 +192097,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167246] = 29, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(3718), 1, - anon_sym_LT_LT, - ACTIONS(3728), 1, - sym_ENTITY, - ACTIONS(3730), 1, - sym_FOR, - ACTIONS(3732), 1, - sym_IF, - ACTIONS(3744), 1, - sym_BLOCK, - ACTIONS(3746), 1, - sym_CASE, - ACTIONS(3748), 1, - sym_POSTPONED, - ACTIONS(3750), 1, - sym_PROCESS, - STATE(3544), 1, - sym__direct_name, - STATE(4829), 1, - sym_if_generate, - STATE(4981), 1, - sym_name, - STATE(4992), 1, - sym_instantiated_unit, - STATE(5363), 1, - sym_for_loop, - STATE(6083), 1, - sym_aggregate, - STATE(6142), 1, - sym_with_expression, - STATE(6144), 1, - sym__target, - STATE(7348), 1, - sym_assertion, - ACTIONS(3726), 2, - sym_COMPONENT, - sym_CONFIGURATION, - STATE(4553), 2, - sym__identifier, - sym__external_name, - ACTIONS(3738), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2570), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4549), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3720), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [167345] = 5, + [173085] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2571), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3752), 34, - sym_identifier, - sym__ABS, - sym__AND, - sym__NAND, - sym_NEW, - sym__NOR, - sym__NOT, - sym_NULL, - sym__OR, - sym__XNOR, - sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - [167396] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2572), 3, + STATE(2657), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 28, + ACTIONS(2382), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -186633,6 +192128,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -186648,27 +192144,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167449] = 6, + [173138] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2573), 3, + STATE(2658), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 28, + ACTIONS(3098), 28, sym__AND, - sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -186676,6 +192171,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -186695,30 +192191,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167502] = 6, + [173191] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2574), 3, + STATE(2659), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 28, + ACTIONS(3130), 28, sym__AND, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -186729,7 +192225,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -186742,98 +192238,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167555] = 29, + [173244] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(3718), 1, - anon_sym_LT_LT, - ACTIONS(3728), 1, - sym_ENTITY, - ACTIONS(3730), 1, - sym_FOR, - ACTIONS(3732), 1, - sym_IF, - ACTIONS(3754), 1, - sym_BLOCK, - ACTIONS(3756), 1, - sym_CASE, - ACTIONS(3758), 1, - sym_POSTPONED, - ACTIONS(3760), 1, - sym_PROCESS, - STATE(3544), 1, - sym__direct_name, - STATE(4798), 1, - sym_if_generate, - STATE(4929), 1, - sym_name, - STATE(5096), 1, - sym_instantiated_unit, - STATE(5265), 1, - sym_for_loop, - STATE(5966), 1, - sym_with_expression, - STATE(6049), 1, - sym__target, - STATE(6083), 1, - sym_aggregate, - STATE(6783), 1, - sym_assertion, - ACTIONS(3726), 2, - sym_COMPONENT, - sym_CONFIGURATION, - STATE(4553), 2, - sym__identifier, - sym__external_name, - ACTIONS(3738), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2575), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4549), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3720), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [167654] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3248), 2, - sym_UNITS, - anon_sym_SEMI, - STATE(2576), 3, + STATE(2660), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(3004), 28, sym__AND, sym__MOD, sym__NAND, @@ -186846,8 +192269,10 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -186860,27 +192285,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167709] = 6, + [173297] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2577), 3, + STATE(2661), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 28, + ACTIONS(3008), 28, sym__AND, - sym_FOR, sym__MOD, sym__NAND, sym__NOR, @@ -186888,6 +192312,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -186907,29 +192332,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167762] = 6, + [173350] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2578), 3, + STATE(2662), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 28, + ACTIONS(3008), 28, sym__AND, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -186938,10 +192364,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -186954,25 +192379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167815] = 6, + [173403] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2579), 3, + STATE(2663), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 28, + ACTIONS(3082), 28, sym__AND, sym__MOD, sym__NAND, @@ -186981,11 +192406,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -187001,30 +192426,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167868] = 6, + [173456] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2580), 3, + STATE(2664), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 28, + ACTIONS(3082), 28, sym__AND, - sym_FOR, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -187035,7 +192460,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -187048,29 +192473,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167921] = 6, + [173509] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2581), 3, + STATE(2665), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 28, + ACTIONS(3066), 28, sym__AND, sym__MOD, sym__NAND, sym__NOR, + sym_OF, sym__OR, sym__REM, sym__ROL, @@ -187079,10 +192505,9 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -187095,25 +192520,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [167974] = 6, + [173562] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2582), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(3728), 1, + anon_sym_LT_LT, + ACTIONS(3736), 1, + sym_COMPONENT, + ACTIONS(3738), 1, + sym_CONFIGURATION, + ACTIONS(3740), 1, + sym_ENTITY, + ACTIONS(3742), 1, + sym_FOR, + ACTIONS(3744), 1, + sym_IF, + ACTIONS(3758), 1, + sym_BLOCK, + ACTIONS(3760), 1, + sym_CASE, + ACTIONS(3762), 1, + sym_POSTPONED, + ACTIONS(3764), 1, + sym_PROCESS, + STATE(3596), 1, + sym__direct_name, + STATE(5044), 1, + sym_if_generate, + STATE(5095), 1, + sym_name, + STATE(5311), 1, + sym_instantiated_unit, + STATE(5402), 1, + sym_for_loop, + STATE(6195), 1, + sym_with_expression, + STATE(6312), 1, + sym_aggregate, + STATE(6330), 1, + sym__target, + STATE(7525), 1, + sym_assertion, + STATE(4800), 2, + sym__identifier, + sym__external_name, + ACTIONS(3750), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2666), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4737), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3730), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [173663] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2667), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 28, + ACTIONS(3098), 28, sym__AND, sym__MOD, sym__NAND, @@ -187142,30 +192638,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168027] = 6, + [173716] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2583), 3, + STATE(2668), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 28, + ACTIONS(3130), 28, sym__AND, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -187176,7 +192672,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -187189,26 +192685,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168080] = 6, + [173769] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2584), 3, + STATE(2669), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 28, + ACTIONS(3134), 28, sym__AND, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -187216,7 +192713,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -187236,26 +192732,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168133] = 6, + [173822] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2585), 3, + STATE(2670), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 28, + ACTIONS(3140), 28, sym__AND, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -187263,7 +192760,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -187283,25 +192779,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168186] = 6, + [173875] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2586), 3, + STATE(2671), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 28, + ACTIONS(3066), 28, sym__AND, sym__MOD, sym__NAND, @@ -187330,25 +192826,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168239] = 6, + [173928] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2587), 3, + STATE(2672), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 28, + ACTIONS(3092), 28, sym__AND, sym__MOD, sym__NAND, @@ -187357,11 +192853,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_UNITS, sym__XNOR, sym__XOR, anon_sym_SEMI, @@ -187377,18 +192873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168292] = 5, + [173981] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2588), 3, + STATE(2673), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3704), 34, + ACTIONS(3766), 34, sym_identifier, sym__ABS, sym__AND, @@ -187423,25 +192919,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, - [168343] = 6, + [174032] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2589), 3, + STATE(2674), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 28, + ACTIONS(3008), 28, sym__AND, sym__MOD, sym__NAND, @@ -187470,119 +192966,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168396] = 6, + [174085] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2590), 3, + STATE(2675), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2400), 28, + ACTIONS(3768), 34, + sym_identifier, + sym__ABS, sym__AND, - sym__MOD, sym__NAND, + sym_NEW, sym__NOR, + sym__NOT, + sym_NULL, sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym_SEVERITY, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [168449] = 6, + anon_sym_LT_LT, + [174136] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2591), 3, + STATE(2676), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK_LT, - anon_sym_QMARK_GT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3084), 28, + ACTIONS(3770), 34, + sym_identifier, + sym__ABS, sym__AND, - sym__MOD, sym__NAND, + sym_NEW, sym__NOR, + sym__NOT, + sym_NULL, sym__OR, - sym__REM, - sym__ROL, - sym__ROR, - sym_SEVERITY, - sym__SLA, - sym__SLL, - sym__SRA, - sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_SLASH_EQ, - anon_sym_QMARK_LT_EQ, - anon_sym_QMARK_GT_EQ, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AMP, - sym_exponentiate, - [168502] = 6, + anon_sym_LT_LT, + [174187] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2592), 3, + STATE(2677), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 28, + ACTIONS(3134), 28, sym__AND, sym_FOR, sym__MOD, @@ -187611,30 +193105,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168555] = 6, + [174240] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2593), 3, + STATE(2678), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 28, + ACTIONS(2382), 28, sym__AND, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, - sym_OF, sym__OR, sym__REM, sym__ROL, @@ -187645,7 +193139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SRL, sym__XNOR, sym__XOR, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -187658,7 +193152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168608] = 29, + [174293] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -187671,75 +193165,76 @@ static const uint16_t ts_small_parse_table[] = { sym_ASSERT, ACTIONS(69), 1, sym_WITH, - ACTIONS(3718), 1, - anon_sym_LT_LT, ACTIONS(3728), 1, + anon_sym_LT_LT, + ACTIONS(3736), 1, + sym_COMPONENT, + ACTIONS(3738), 1, + sym_CONFIGURATION, + ACTIONS(3740), 1, sym_ENTITY, - ACTIONS(3730), 1, + ACTIONS(3742), 1, sym_FOR, - ACTIONS(3732), 1, + ACTIONS(3744), 1, sym_IF, - ACTIONS(3762), 1, + ACTIONS(3772), 1, sym_BLOCK, - ACTIONS(3764), 1, + ACTIONS(3774), 1, sym_CASE, - ACTIONS(3766), 1, + ACTIONS(3776), 1, sym_POSTPONED, - ACTIONS(3768), 1, + ACTIONS(3778), 1, sym_PROCESS, - STATE(3544), 1, + STATE(3596), 1, sym__direct_name, - STATE(4840), 1, + STATE(5024), 1, sym_if_generate, - STATE(4977), 1, + STATE(5090), 1, sym_name, - STATE(5006), 1, + STATE(5306), 1, sym_instantiated_unit, - STATE(5291), 1, + STATE(5469), 1, sym_for_loop, - STATE(5999), 1, + STATE(6180), 1, sym_with_expression, - STATE(6083), 1, - sym_aggregate, - STATE(6125), 1, + STATE(6287), 1, sym__target, - STATE(7782), 1, + STATE(6312), 1, + sym_aggregate, + STATE(7055), 1, sym_assertion, - ACTIONS(3726), 2, - sym_COMPONENT, - sym_CONFIGURATION, - STATE(4553), 2, + STATE(4800), 2, sym__identifier, sym__external_name, - ACTIONS(3738), 3, + ACTIONS(3750), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2594), 3, + STATE(2679), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4549), 3, + STATE(4737), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3720), 4, + ACTIONS(3730), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [168707] = 5, + [174394] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2595), 3, + STATE(2680), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3770), 34, + ACTIONS(3780), 34, sym_identifier, sym__ABS, sym__AND, @@ -187774,25 +193269,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, - [168758] = 6, + [174445] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2596), 3, + STATE(2681), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3782), 34, + sym_identifier, + sym__ABS, + sym__AND, + sym__NAND, + sym_NEW, + sym__NOR, + sym__NOT, + sym_NULL, + sym__OR, + sym__XNOR, + sym__XOR, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + [174496] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2682), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 28, + ACTIONS(3066), 28, sym__AND, sym__MOD, sym__NAND, @@ -187821,26 +193362,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168811] = 6, + [174549] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2597), 3, + STATE(2683), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3784), 34, + sym_identifier, + sym__ABS, + sym__AND, + sym__NAND, + sym_NEW, + sym__NOR, + sym__NOT, + sym_NULL, + sym__OR, + sym__XNOR, + sym__XOR, + sym_decimal_integer, + sym_decimal_float, + sym_based_base, + sym_character_literal, + sym_string_literal, + sym_string_literal_std_logic, + sym_bit_string_length, + sym_bit_string_base, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_boolean, + sym_library_constant_character, + sym_library_constant_debug, + sym_library_constant_env, + sym_library_constant_standard, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + sym_condition_conversion, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + [174600] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2684), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 28, + ACTIONS(3092), 28, sym__AND, + sym_ELSE, sym__MOD, sym__NAND, sym__NOR, @@ -187848,7 +193436,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, @@ -187868,25 +193455,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168864] = 6, + [174653] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2598), 3, + STATE(2685), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3006), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3004), 28, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym_OF, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [174706] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2686), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 28, + ACTIONS(3004), 28, sym__AND, sym__MOD, sym__NAND, @@ -187915,25 +193549,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168917] = 6, + [174759] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2599), 3, + STATE(2687), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 28, + ACTIONS(3082), 28, sym__AND, sym__MOD, sym__NAND, @@ -187962,27 +193596,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [168970] = 6, + [174812] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2600), 3, + STATE(2688), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 28, + ACTIONS(3092), 28, sym__AND, - sym_ELSE, + sym_FOR, sym__MOD, sym__NAND, sym__NOR, @@ -188009,25 +193643,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169023] = 6, + [174865] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2601), 3, + ACTIONS(3290), 2, + sym_UNITS, + anon_sym_SEMI, + STATE(2689), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 28, + ACTIONS(3092), 26, sym__AND, sym__MOD, sym__NAND, @@ -188040,10 +193677,8 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_UNITS, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -188056,26 +193691,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169076] = 6, + [174920] = 30, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2602), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(3728), 1, + anon_sym_LT_LT, + ACTIONS(3736), 1, + sym_COMPONENT, + ACTIONS(3738), 1, + sym_CONFIGURATION, + ACTIONS(3740), 1, + sym_ENTITY, + ACTIONS(3742), 1, + sym_FOR, + ACTIONS(3744), 1, + sym_IF, + ACTIONS(3786), 1, + sym_BLOCK, + ACTIONS(3788), 1, + sym_CASE, + ACTIONS(3790), 1, + sym_POSTPONED, + ACTIONS(3792), 1, + sym_PROCESS, + STATE(3596), 1, + sym__direct_name, + STATE(4991), 1, + sym_if_generate, + STATE(5140), 1, + sym_name, + STATE(5293), 1, + sym_instantiated_unit, + STATE(5552), 1, + sym_for_loop, + STATE(6161), 1, + sym_with_expression, + STATE(6245), 1, + sym__target, + STATE(6312), 1, + sym_aggregate, + STATE(6934), 1, + sym_assertion, + STATE(4800), 2, + sym__identifier, + sym__external_name, + ACTIONS(3750), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2690), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4737), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3730), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [175021] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2691), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 28, + ACTIONS(2382), 27, sym__AND, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -188083,14 +193790,12 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SEVERITY, sym__SLA, sym__SLL, sym__SRA, sym__SRL, sym__XNOR, sym__XOR, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ, anon_sym_SLASH_EQ, @@ -188103,134 +193808,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169129] = 5, + [175073] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2603), 3, + STATE(2692), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3772), 34, - sym_identifier, - sym__ABS, + ACTIONS(3094), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3092), 27, sym__AND, + sym__MOD, sym__NAND, - sym_NEW, sym__NOR, - sym__NOT, - sym_NULL, sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, sym__XNOR, sym__XOR, - sym_decimal_integer, - sym_decimal_float, - sym_based_base, - sym_character_literal, - sym_string_literal, - sym_string_literal_std_logic, - sym_bit_string_length, - sym_bit_string_base, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_boolean, - sym_library_constant_character, - sym_library_constant_debug, - sym_library_constant_env, - sym_library_constant_standard, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - sym_condition_conversion, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_LT, - [169180] = 22, + anon_sym_AMP, + sym_exponentiate, + [175125] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(3776), 1, - anon_sym_LT_LT, - ACTIONS(3782), 1, - sym_TYPE, - ACTIONS(3784), 1, - sym_VIEW, - STATE(2706), 1, - sym__direct_name, - STATE(2934), 1, - sym_mode, - STATE(3915), 1, - sym_resolution_indication, - STATE(4209), 1, - sym_name, - STATE(5050), 1, - sym__interface_type_indication, - STATE(5968), 1, - sym__mode_indication, - STATE(3265), 2, - sym__identifier, - sym__external_name, - STATE(5367), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - STATE(5836), 2, - sym_simple_mode_indication, - sym__mode_view_indication, - STATE(5965), 2, - sym_record_mode_view_indication, - sym_array_mode_view_indication, - ACTIONS(3786), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2604), 3, + STATE(2693), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3266), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3778), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(3780), 5, - sym_BUFFER, - sym_IN, - sym_INOUT, - sym_LINKAGE, - sym_OUT, - [169264] = 6, + ACTIONS(3100), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3098), 27, + sym__AND, + sym_GENERATE, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [175177] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2605), 3, + STATE(2694), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 27, + ACTIONS(3130), 27, sym__AND, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -188242,7 +193932,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -188257,26 +193946,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169316] = 6, + [175229] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2606), 3, + STATE(2695), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 27, + ACTIONS(3134), 27, sym__AND, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -188284,7 +193974,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -188303,25 +193992,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169368] = 6, + [175281] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2607), 3, + STATE(2696), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 27, + ACTIONS(3140), 27, sym__AND, sym_LOOP, sym__MOD, @@ -188349,25 +194038,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169420] = 6, + [175333] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2608), 3, + STATE(2697), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 27, + ACTIONS(3092), 27, sym__AND, sym_LOOP, sym__MOD, @@ -188395,26 +194084,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169472] = 6, + [175385] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2609), 3, + STATE(2698), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 27, + ACTIONS(2382), 27, sym__AND, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -188422,7 +194112,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -188441,25 +194130,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169524] = 6, + [175437] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2610), 3, + STATE(2699), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 27, + ACTIONS(2382), 27, + sym__AND, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [175489] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2700), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3010), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3008), 27, sym__AND, sym_LOOP, sym__MOD, @@ -188487,27 +194222,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169576] = 6, + [175541] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2611), 3, + STATE(2701), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(3092), 27, sym__AND, - sym_INERTIAL, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -188533,88 +194268,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169628] = 22, + [175593] = 22, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(3776), 1, + ACTIONS(3796), 1, anon_sym_LT_LT, - ACTIONS(3782), 1, + ACTIONS(3802), 1, sym_TYPE, - ACTIONS(3784), 1, + ACTIONS(3804), 1, sym_VIEW, - STATE(2706), 1, + STATE(2793), 1, sym__direct_name, - STATE(2934), 1, + STATE(3051), 1, sym_mode, - STATE(3915), 1, + STATE(4241), 1, sym_resolution_indication, - STATE(4209), 1, + STATE(4326), 1, sym_name, - STATE(5050), 1, + STATE(5182), 1, sym__interface_type_indication, - STATE(5942), 1, + STATE(6174), 1, sym__mode_indication, - STATE(3265), 2, + STATE(3358), 2, sym__identifier, sym__external_name, - STATE(5367), 2, + STATE(5408), 2, sym_unspecified_type_indication, sym_subtype_indication, - STATE(5836), 2, - sym_simple_mode_indication, - sym__mode_view_indication, - STATE(5965), 2, + STATE(6169), 2, sym_record_mode_view_indication, sym_array_mode_view_indication, - ACTIONS(3786), 3, + STATE(6173), 2, + sym_simple_mode_indication, + sym__mode_view_indication, + ACTIONS(3806), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2612), 3, + STATE(2702), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3266), 3, + STATE(3357), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3778), 4, + ACTIONS(3798), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(3780), 5, + ACTIONS(3800), 5, sym_BUFFER, sym_IN, sym_INOUT, sym_LINKAGE, sym_OUT, - [169712] = 6, + [175677] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2613), 3, + STATE(2703), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 27, + ACTIONS(3140), 27, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -188622,7 +194358,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -188641,89 +194376,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169764] = 22, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(3776), 1, - anon_sym_LT_LT, - ACTIONS(3782), 1, - sym_TYPE, - ACTIONS(3784), 1, - sym_VIEW, - STATE(2706), 1, - sym__direct_name, - STATE(2934), 1, - sym_mode, - STATE(3915), 1, - sym_resolution_indication, - STATE(4209), 1, - sym_name, - STATE(5050), 1, - sym__interface_type_indication, - STATE(5939), 1, - sym__mode_indication, - STATE(3265), 2, - sym__identifier, - sym__external_name, - STATE(5367), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - STATE(5836), 2, - sym_simple_mode_indication, - sym__mode_view_indication, - STATE(5965), 2, - sym_record_mode_view_indication, - sym_array_mode_view_indication, - ACTIONS(3786), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2614), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3266), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3778), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(3780), 5, - sym_BUFFER, - sym_IN, - sym_INOUT, - sym_LINKAGE, - sym_OUT, - [169848] = 6, + [175729] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2615), 3, + STATE(2704), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(3134), 27, sym__AND, - sym_GENERATE, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -188749,87 +194422,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [169900] = 22, + [175781] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(3776), 1, - anon_sym_LT_LT, - ACTIONS(3782), 1, - sym_TYPE, - ACTIONS(3784), 1, - sym_VIEW, - STATE(2706), 1, - sym__direct_name, - STATE(2934), 1, - sym_mode, - STATE(3915), 1, - sym_resolution_indication, - STATE(4209), 1, - sym_name, - STATE(5050), 1, - sym__interface_type_indication, - STATE(5937), 1, - sym__mode_indication, - STATE(3265), 2, - sym__identifier, - sym__external_name, - STATE(5367), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - STATE(5836), 2, - sym_simple_mode_indication, - sym__mode_view_indication, - STATE(5965), 2, - sym_record_mode_view_indication, - sym_array_mode_view_indication, - ACTIONS(3786), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2616), 3, + STATE(2705), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3266), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3778), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(3780), 5, - sym_BUFFER, - sym_IN, - sym_INOUT, - sym_LINKAGE, - sym_OUT, - [169984] = 6, + ACTIONS(3132), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3130), 27, + sym__AND, + sym_IS, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [175833] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2617), 3, + STATE(2706), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 27, + ACTIONS(3112), 27, sym__AND, sym_GENERATE, sym__MOD, @@ -188857,27 +194514,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170036] = 6, + [175885] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2618), 3, + STATE(2707), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(3066), 27, sym__AND, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -188903,26 +194560,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170088] = 6, + [175937] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2619), 3, + STATE(2708), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(3008), 27, sym__AND, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -188930,7 +194588,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -188949,27 +194606,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170140] = 6, + [175989] = 22, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2620), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(3796), 1, + anon_sym_LT_LT, + ACTIONS(3802), 1, + sym_TYPE, + ACTIONS(3804), 1, + sym_VIEW, + STATE(2793), 1, + sym__direct_name, + STATE(3051), 1, + sym_mode, + STATE(4241), 1, + sym_resolution_indication, + STATE(4326), 1, + sym_name, + STATE(5182), 1, + sym__interface_type_indication, + STATE(6143), 1, + sym__mode_indication, + STATE(3358), 2, + sym__identifier, + sym__external_name, + STATE(5408), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + STATE(6169), 2, + sym_record_mode_view_indication, + sym_array_mode_view_indication, + STATE(6173), 2, + sym_simple_mode_indication, + sym__mode_view_indication, + ACTIONS(3806), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2709), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3357), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3798), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(3800), 5, + sym_BUFFER, + sym_IN, + sym_INOUT, + sym_LINKAGE, + sym_OUT, + [176073] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2710), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 27, + ACTIONS(3082), 27, sym__AND, - sym_IS, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -188995,25 +194714,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170192] = 6, + [176125] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2621), 3, + STATE(2711), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 27, + ACTIONS(3008), 27, sym__AND, sym__MOD, sym__NAND, @@ -189041,26 +194760,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170244] = 6, + [176177] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2622), 3, + STATE(2712), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 27, + ACTIONS(3112), 27, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -189068,7 +194788,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -189087,25 +194806,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170296] = 6, + [176229] = 22, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2623), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(3796), 1, + anon_sym_LT_LT, + ACTIONS(3802), 1, + sym_TYPE, + ACTIONS(3804), 1, + sym_VIEW, + STATE(2793), 1, + sym__direct_name, + STATE(3051), 1, + sym_mode, + STATE(4241), 1, + sym_resolution_indication, + STATE(4326), 1, + sym_name, + STATE(5182), 1, + sym__interface_type_indication, + STATE(6144), 1, + sym__mode_indication, + STATE(3358), 2, + sym__identifier, + sym__external_name, + STATE(5408), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + STATE(6169), 2, + sym_record_mode_view_indication, + sym_array_mode_view_indication, + STATE(6173), 2, + sym_simple_mode_indication, + sym__mode_view_indication, + ACTIONS(3806), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2713), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + STATE(3357), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3798), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(3800), 5, + sym_BUFFER, + sym_IN, + sym_INOUT, + sym_LINKAGE, + sym_OUT, + [176313] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2714), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 27, + ACTIONS(3098), 27, sym__AND, sym_IS, sym__MOD, @@ -189133,27 +194914,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170348] = 6, + [176365] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2624), 3, + ACTIONS(3290), 1, + sym_LOOP, + STATE(2715), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 27, + ACTIONS(3092), 26, sym__AND, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -189179,27 +194961,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170400] = 6, + [176419] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2625), 3, + STATE(2716), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 27, + ACTIONS(2428), 27, sym__AND, - sym_LOOP, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -189225,27 +195007,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170452] = 6, + [176471] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2626), 3, + STATE(2717), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 27, + ACTIONS(3098), 27, sym__AND, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -189253,6 +195034,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -189271,27 +195053,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170504] = 6, + [176523] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2627), 3, + STATE(2718), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 27, + ACTIONS(3082), 27, sym__AND, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -189299,6 +195080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -189317,27 +195099,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170556] = 6, + [176575] = 22, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2628), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(3796), 1, + anon_sym_LT_LT, + ACTIONS(3802), 1, + sym_TYPE, + ACTIONS(3804), 1, + sym_VIEW, + STATE(2793), 1, + sym__direct_name, + STATE(3051), 1, + sym_mode, + STATE(4241), 1, + sym_resolution_indication, + STATE(4326), 1, + sym_name, + STATE(5182), 1, + sym__interface_type_indication, + STATE(6140), 1, + sym__mode_indication, + STATE(3358), 2, + sym__identifier, + sym__external_name, + STATE(5408), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + STATE(6169), 2, + sym_record_mode_view_indication, + sym_array_mode_view_indication, + STATE(6173), 2, + sym_simple_mode_indication, + sym__mode_view_indication, + ACTIONS(3806), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2719), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + STATE(3357), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3798), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(3800), 5, + sym_BUFFER, + sym_IN, + sym_INOUT, + sym_LINKAGE, + sym_OUT, + [176659] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2720), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 27, + ACTIONS(3066), 27, sym__AND, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -189345,6 +195188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -189363,26 +195207,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170608] = 6, + [176711] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2629), 3, + STATE(2721), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 27, + ACTIONS(3008), 27, sym__AND, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -189390,7 +195235,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -189409,27 +195253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170660] = 6, + [176763] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2630), 3, + STATE(2722), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 27, + ACTIONS(3082), 27, sym__AND, - sym_INERTIAL, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -189455,27 +195299,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170712] = 6, + [176815] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2631), 3, + STATE(2723), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 27, + ACTIONS(3066), 27, sym__AND, - sym_LOOP, + sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -189501,27 +195345,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170764] = 6, + [176867] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2632), 3, + ACTIONS(3290), 1, + sym_IS, + STATE(2724), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 27, + ACTIONS(3092), 26, sym__AND, - sym_IS, sym__MOD, sym__NAND, sym__NOR, @@ -189547,25 +195392,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170816] = 6, + [176921] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2633), 3, + STATE(2725), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 27, + ACTIONS(2382), 27, + sym__AND, + sym__MOD, + sym__NAND, + sym__NOR, + sym__OR, + sym__REM, + sym__ROL, + sym__ROR, + sym_SELECT, + sym__SLA, + sym__SLL, + sym__SRA, + sym__SRL, + sym__XNOR, + sym__XOR, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_SLASH_EQ, + anon_sym_QMARK_LT_EQ, + anon_sym_QMARK_GT_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + sym_exponentiate, + [176973] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2726), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3142), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK_LT, + anon_sym_QMARK_GT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3140), 27, sym__AND, sym_INERTIAL, sym__MOD, @@ -189593,27 +195484,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170868] = 6, + [177025] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2634), 3, + STATE(2727), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 27, + ACTIONS(3134), 27, sym__AND, - sym_IS, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -189639,27 +195530,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170920] = 6, + [177077] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2635), 3, + STATE(2728), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 27, + ACTIONS(3004), 27, sym__AND, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -189671,6 +195561,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -189685,27 +195576,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [170972] = 6, + [177129] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2636), 3, + STATE(2729), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 27, + ACTIONS(3130), 27, sym__AND, - sym_IS, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -189731,25 +195622,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171024] = 6, + [177181] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2637), 3, + STATE(2730), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 27, + ACTIONS(3004), 27, sym__AND, sym_LOOP, sym__MOD, @@ -189777,25 +195668,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171076] = 6, + [177233] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2638), 3, + STATE(2731), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 27, + ACTIONS(3112), 27, sym__AND, sym_LOOP, sym__MOD, @@ -189823,25 +195714,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171128] = 6, + [177285] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2639), 3, + STATE(2732), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 27, + ACTIONS(3112), 27, sym__AND, sym_INERTIAL, sym__MOD, @@ -189869,27 +195760,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171180] = 6, + [177337] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2640), 3, + STATE(2733), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 27, + ACTIONS(3008), 27, sym__AND, - sym_INERTIAL, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -189915,27 +195806,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171232] = 6, + [177389] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2641), 3, + STATE(2734), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 27, + ACTIONS(3004), 27, sym__AND, - sym_IS, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -189961,25 +195852,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171284] = 6, + [177441] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2642), 3, + STATE(2735), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 27, + ACTIONS(3004), 27, sym__AND, sym_IS, sym__MOD, @@ -190007,27 +195898,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171336] = 6, + [177493] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2643), 3, + STATE(2736), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 27, + ACTIONS(2428), 27, sym__AND, - sym_IS, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -190053,26 +195944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171388] = 6, + [177545] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2644), 3, + STATE(2737), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3082), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 27, + ACTIONS(3082), 27, sym__AND, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -190084,7 +195976,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -190099,27 +195990,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171440] = 6, + [177597] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2645), 3, + STATE(2738), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 27, + ACTIONS(3066), 27, sym__AND, - sym_LOOP, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -190145,26 +196036,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171492] = 6, + [177649] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2646), 3, + STATE(2739), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 27, + ACTIONS(3082), 27, sym__AND, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -190176,7 +196068,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -190191,25 +196082,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171544] = 6, + [177701] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2647), 3, + STATE(2740), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 27, + ACTIONS(3140), 27, sym__AND, sym__MOD, sym__NAND, @@ -190218,11 +196109,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -190237,27 +196128,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171596] = 6, + [177753] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2648), 3, + STATE(2741), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(3098), 27, sym__AND, - sym_LOOP, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -190283,27 +196174,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171648] = 6, + [177805] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2649), 3, + STATE(2742), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 27, + ACTIONS(3066), 27, sym__AND, - sym_INERTIAL, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -190329,25 +196220,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171700] = 6, + [177857] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2650), 3, + STATE(2743), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3068), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 27, + ACTIONS(3066), 27, sym__AND, sym__MOD, sym__NAND, @@ -190356,11 +196247,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -190375,27 +196266,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171752] = 6, + [177909] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2651), 3, + STATE(2744), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 27, + ACTIONS(3130), 27, sym__AND, - sym_INERTIAL, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -190421,27 +196312,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171804] = 6, + [177961] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2652), 3, + STATE(2745), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3084), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 27, + ACTIONS(3082), 27, sym__AND, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -190453,6 +196343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -190467,25 +196358,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171856] = 6, + [178013] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2653), 3, + STATE(2746), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3010), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 27, + ACTIONS(3008), 27, sym__AND, sym__MOD, sym__NAND, @@ -190513,25 +196404,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171908] = 6, + [178065] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2654), 3, + STATE(2747), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 27, + ACTIONS(2428), 27, sym__AND, sym_IS, sym__MOD, @@ -190559,27 +196450,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [171960] = 6, + [178117] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2655), 3, + STATE(2748), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 27, + ACTIONS(3004), 27, sym__AND, - sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -190587,6 +196477,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -190605,25 +196496,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172012] = 6, + [178169] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2656), 3, + STATE(2749), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 27, + ACTIONS(2428), 27, sym__AND, sym__MOD, sym__NAND, @@ -190651,26 +196542,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172064] = 6, + [178221] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2657), 3, + STATE(2750), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 27, + ACTIONS(2428), 27, sym__AND, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -190678,7 +196570,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -190697,26 +196588,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172116] = 6, + [178273] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2658), 3, + STATE(2751), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3006), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 27, + ACTIONS(3004), 27, sym__AND, + sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -190728,7 +196620,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -190743,27 +196634,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172168] = 6, + [178325] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2659), 3, + STATE(2752), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 27, + ACTIONS(3112), 27, sym__AND, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -190771,6 +196661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -190789,25 +196680,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172220] = 6, + [178377] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2660), 3, + STATE(2753), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3052), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3050), 27, + ACTIONS(3134), 27, sym__AND, sym_GENERATE, sym__MOD, @@ -190835,25 +196726,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172272] = 6, + [178429] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2661), 3, + STATE(2754), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2430), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 27, + ACTIONS(2428), 27, sym__AND, sym__MOD, sym__NAND, @@ -190881,25 +196772,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172324] = 6, + [178481] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2662), 3, + ACTIONS(3290), 1, + sym_GENERATE, + STATE(2755), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 27, + ACTIONS(3092), 26, sym__AND, sym__MOD, sym__NAND, @@ -190912,7 +196805,6 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -190927,27 +196819,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172376] = 7, + [178535] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3248), 1, - sym_LOOP, - STATE(2663), 3, + STATE(2756), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(2382), 27, sym__AND, sym__MOD, sym__NAND, @@ -190960,6 +196850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -190974,25 +196865,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172430] = 6, + [178587] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2664), 3, + STATE(2757), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2390), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 27, + ACTIONS(3092), 27, sym__AND, sym__MOD, sym__NAND, @@ -191020,26 +196911,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172482] = 6, + [178639] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2665), 3, + STATE(2758), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3078), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3076), 27, + ACTIONS(3098), 27, sym__AND, + sym_LOOP, sym__MOD, sym__NAND, sym__NOR, @@ -191047,7 +196939,6 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, - sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -191066,27 +196957,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172534] = 7, + [178691] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3248), 1, - sym_GENERATE, - STATE(2666), 3, + STATE(2759), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(3140), 27, sym__AND, sym__MOD, sym__NAND, @@ -191099,6 +196988,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -191113,27 +197003,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172588] = 6, + [178743] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2667), 3, + STATE(2760), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 27, + ACTIONS(3134), 27, sym__AND, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -191145,6 +197034,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -191159,27 +197049,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172640] = 6, + [178795] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2668), 3, + STATE(2761), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2402), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2400), 27, + ACTIONS(3130), 27, sym__AND, - sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -191191,6 +197080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -191205,27 +197095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172692] = 7, + [178847] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3248), 1, - sym_IS, - STATE(2669), 3, + STATE(2762), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3066), 6, + ACTIONS(3132), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3064), 26, + ACTIONS(3130), 27, sym__AND, sym__MOD, sym__NAND, @@ -191234,6 +197122,7 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, @@ -191252,25 +197141,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172746] = 6, + [178899] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2670), 3, + STATE(2763), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(3136), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 27, + ACTIONS(3134), 27, sym__AND, sym__MOD, sym__NAND, @@ -191279,11 +197168,11 @@ static const uint16_t ts_small_parse_table[] = { sym__REM, sym__ROL, sym__ROR, + sym_SELECT, sym__SLA, sym__SLL, sym__SRA, sym__SRL, - sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -191298,25 +197187,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172798] = 6, + [178951] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2671), 3, + STATE(2764), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3086), 6, + ACTIONS(3142), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3084), 27, + ACTIONS(3140), 27, sym__AND, sym_GENERATE, sym__MOD, @@ -191344,25 +197233,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172850] = 6, + [179003] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2672), 3, + STATE(2765), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3114), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 27, + ACTIONS(3112), 27, sym__AND, sym__MOD, sym__NAND, @@ -191390,25 +197279,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172902] = 6, + [179055] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2673), 3, + STATE(2766), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3102), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3100), 27, + ACTIONS(3092), 27, sym__AND, sym_GENERATE, sym__MOD, @@ -191436,27 +197325,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [172954] = 6, + [179107] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2674), 3, + STATE(2767), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3098), 6, + ACTIONS(3100), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3096), 27, + ACTIONS(3098), 27, sym__AND, - sym_GENERATE, sym__MOD, sym__NAND, sym__NOR, @@ -191468,6 +197356,7 @@ static const uint16_t ts_small_parse_table[] = { sym__SLL, sym__SRA, sym__SRL, + sym_THEN, sym__XNOR, sym__XOR, anon_sym_LT_EQ, @@ -191482,25 +197371,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [173006] = 6, + [179159] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2675), 3, + STATE(2768), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3094), 6, + ACTIONS(2384), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3092), 27, + ACTIONS(2382), 27, sym__AND, sym_GENERATE, sym__MOD, @@ -191528,27 +197417,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [173058] = 6, + [179211] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2676), 3, + STATE(2769), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3090), 6, + ACTIONS(3094), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK_LT, anon_sym_QMARK_GT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3088), 27, + ACTIONS(3092), 27, sym__AND, - sym_GENERATE, + sym_INERTIAL, sym__MOD, sym__NAND, sym__NOR, @@ -191574,55 +197463,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, sym_exponentiate, - [173110] = 21, + [179263] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, + STATE(6017), 1, + sym__identifier, + STATE(7670), 1, sym_identifier_list, - STATE(7382), 1, + STATE(7687), 1, sym_interface_list, - ACTIONS(3796), 2, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2677), 3, + STATE(2770), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -191631,55 +197520,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173188] = 21, + [179341] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7104), 1, + STATE(6017), 1, + sym__identifier, + STATE(6876), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2678), 3, + STATE(2771), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -191688,55 +197577,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173266] = 21, + [179419] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7383), 1, + STATE(6017), 1, + sym__identifier, + STATE(7024), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2679), 3, + STATE(2772), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -191745,55 +197634,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173344] = 21, + [179497] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7423), 1, + STATE(6017), 1, + sym__identifier, + STATE(6875), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2680), 3, + STATE(2773), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -191802,55 +197691,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173422] = 21, + [179575] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + ACTIONS(3828), 1, + anon_sym_RPAREN, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(6017), 1, + sym__identifier, + STATE(6179), 1, sym__interface_declaration, - STATE(6685), 1, + STATE(7670), 1, sym_identifier_list, - STATE(6759), 1, - sym_interface_list, - ACTIONS(3796), 2, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2681), 3, + STATE(2774), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -191859,55 +197748,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173500] = 21, + [179653] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7169), 1, + STATE(6017), 1, + sym__identifier, + STATE(7190), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2682), 3, + STATE(2775), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -191916,55 +197805,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173578] = 21, + [179731] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7534), 1, + STATE(6017), 1, + sym__identifier, + STATE(7240), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2683), 3, + STATE(2776), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -191973,55 +197862,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173656] = 21, + [179809] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7409), 1, + STATE(6017), 1, + sym__identifier, + STATE(7614), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2684), 3, + STATE(2777), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192030,55 +197919,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173734] = 21, + [179887] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6661), 1, + STATE(6017), 1, + sym__identifier, + STATE(6749), 1, sym_interface_list, - STATE(6685), 1, + STATE(7670), 1, sym_identifier_list, - ACTIONS(3796), 2, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2685), 3, + STATE(2778), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192087,55 +197976,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173812] = 21, + [179965] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6536), 1, + STATE(6017), 1, + sym__identifier, + STATE(7432), 1, sym_interface_list, - STATE(6685), 1, + STATE(7670), 1, sym_identifier_list, - ACTIONS(3796), 2, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2686), 3, + STATE(2779), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192144,55 +198033,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173890] = 21, + [180043] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6535), 1, + STATE(6017), 1, + sym__identifier, + STATE(6626), 1, sym_interface_list, - STATE(6685), 1, + STATE(7670), 1, sym_identifier_list, - ACTIONS(3796), 2, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2687), 3, + STATE(2780), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192201,55 +198090,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [173968] = 21, + [180121] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7105), 1, + STATE(6017), 1, + sym__identifier, + STATE(7430), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2688), 3, + STATE(2781), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192258,55 +198147,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [174046] = 21, + [180199] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(6807), 1, + STATE(6017), 1, + sym__identifier, + STATE(7591), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2689), 3, + STATE(2782), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192315,55 +198204,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [174124] = 21, + [180277] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(6691), 1, + STATE(6017), 1, + sym__identifier, + STATE(6750), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2690), 3, + STATE(2783), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192372,55 +198261,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [174202] = 21, + [180355] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7986), 1, + STATE(6017), 1, + sym__identifier, + STATE(7588), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2691), 3, + STATE(2784), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192429,55 +198318,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [174280] = 21, + [180433] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - STATE(7982), 1, + STATE(6017), 1, + sym__identifier, + STATE(7607), 1, sym_interface_list, - ACTIONS(3796), 2, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2692), 3, + STATE(2785), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192486,55 +198375,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [174358] = 21, + [180511] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - ACTIONS(3808), 1, - anon_sym_RPAREN, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5973), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6685), 1, + STATE(6017), 1, + sym__identifier, + STATE(6975), 1, + sym_interface_list, + STATE(7670), 1, sym_identifier_list, - ACTIONS(3796), 2, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2693), 3, + STATE(2786), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192543,55 +198432,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [174436] = 21, + [180589] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - ACTIONS(3810), 1, + ACTIONS(3830), 1, anon_sym_RPAREN, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5973), 1, + STATE(6017), 1, + sym__identifier, + STATE(6179), 1, sym__interface_declaration, - STATE(6685), 1, + STATE(7670), 1, sym_identifier_list, - ACTIONS(3796), 2, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2694), 3, + STATE(2787), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192600,55 +198489,55 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [174514] = 21, + [180667] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, + ACTIONS(3810), 1, sym_CONSTANT, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_FILE, - ACTIONS(3794), 1, + ACTIONS(3814), 1, sym_FUNCTION, - ACTIONS(3798), 1, + ACTIONS(3818), 1, sym_PACKAGE, - ACTIONS(3800), 1, + ACTIONS(3820), 1, sym_PROCEDURE, - ACTIONS(3802), 1, + ACTIONS(3822), 1, sym_SIGNAL, - ACTIONS(3804), 1, + ACTIONS(3824), 1, sym_TYPE, - ACTIONS(3806), 1, + ACTIONS(3826), 1, sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, + STATE(5839), 1, sym__interface_subprogram_specification, - STATE(5639), 1, + STATE(5840), 1, sym__interface_declaration, - STATE(6660), 1, + STATE(6017), 1, + sym__identifier, + STATE(7481), 1, sym_interface_list, - STATE(6685), 1, + STATE(7670), 1, sym_identifier_list, - ACTIONS(3796), 2, + ACTIONS(3816), 2, sym_IMPURE, sym_PURE, - STATE(5626), 2, + STATE(5838), 2, sym_interface_procedure_specification, sym_interface_function_specification, - STATE(2695), 3, + STATE(2788), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(6284), 8, + STATE(6280), 8, sym_interface_package_declaration, sym_interface_file_declaration, sym_interface_type_declaration, @@ -192657,42 +198546,42 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_signal_declaration, sym_interface_variable_declaration, sym_interface_subprogram_declaration, - [174592] = 15, + [180745] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3812), 1, + ACTIONS(3832), 1, anon_sym_DOT, - ACTIONS(3814), 1, + ACTIONS(3834), 1, anon_sym_LPAREN, - ACTIONS(3816), 1, + ACTIONS(3836), 1, anon_sym_SQUOTE, - ACTIONS(3818), 1, + ACTIONS(3838), 1, anon_sym_LBRACK, - ACTIONS(3820), 1, + ACTIONS(3840), 1, sym_GENERIC, - ACTIONS(3822), 1, + ACTIONS(3842), 1, sym_PARAMETER, - STATE(2699), 1, + STATE(2792), 1, aux_sym_name_repeat1, - STATE(2941), 1, + STATE(3040), 1, sym_generic_map_aspect, STATE(3245), 1, - sym_name_selector, - STATE(2696), 3, + sym__name_selector, + STATE(2789), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3243), 5, + STATE(3256), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1503), 14, + ACTIONS(1487), 14, sym_identifier, sym_RANGE, sym_character_literal, @@ -192707,42 +198596,96 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_LT_LT, anon_sym_GT_GT, - [174657] = 15, + [180810] = 20, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(3810), 1, + sym_CONSTANT, ACTIONS(3812), 1, - anon_sym_DOT, + sym_FILE, ACTIONS(3814), 1, + sym_FUNCTION, + ACTIONS(3818), 1, + sym_PACKAGE, + ACTIONS(3820), 1, + sym_PROCEDURE, + ACTIONS(3822), 1, + sym_SIGNAL, + ACTIONS(3824), 1, + sym_TYPE, + ACTIONS(3826), 1, + sym_VARIABLE, + STATE(5839), 1, + sym__interface_subprogram_specification, + STATE(6017), 1, + sym__identifier, + STATE(6179), 1, + sym__interface_declaration, + STATE(7670), 1, + sym_identifier_list, + ACTIONS(3816), 2, + sym_IMPURE, + sym_PURE, + STATE(5838), 2, + sym_interface_procedure_specification, + sym_interface_function_specification, + STATE(2790), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(6280), 8, + sym_interface_package_declaration, + sym_interface_file_declaration, + sym_interface_type_declaration, + sym_interface_declaration, + sym_interface_constant_declaration, + sym_interface_signal_declaration, + sym_interface_variable_declaration, + sym_interface_subprogram_declaration, + [180885] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3844), 1, + anon_sym_DOT, + ACTIONS(3847), 1, anon_sym_LPAREN, - ACTIONS(3816), 1, + ACTIONS(3850), 1, anon_sym_SQUOTE, - ACTIONS(3818), 1, + ACTIONS(3853), 1, anon_sym_LBRACK, - ACTIONS(3820), 1, + ACTIONS(3856), 1, sym_GENERIC, - ACTIONS(3822), 1, + ACTIONS(3859), 1, sym_PARAMETER, - STATE(2696), 1, - aux_sym_name_repeat1, - STATE(2941), 1, + STATE(3040), 1, sym_generic_map_aspect, STATE(3245), 1, - sym_name_selector, - STATE(2697), 3, + sym__name_selector, + STATE(2791), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3243), 5, + aux_sym_name_repeat1, + STATE(3256), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1487), 14, + ACTIONS(1465), 14, sym_identifier, sym_RANGE, sym_character_literal, @@ -192757,97 +198700,94 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_LT_LT, anon_sym_GT_GT, - [174722] = 20, + [180948] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3790), 1, - sym_CONSTANT, - ACTIONS(3792), 1, - sym_FILE, - ACTIONS(3794), 1, - sym_FUNCTION, - ACTIONS(3798), 1, - sym_PACKAGE, - ACTIONS(3800), 1, - sym_PROCEDURE, - ACTIONS(3802), 1, - sym_SIGNAL, - ACTIONS(3804), 1, - sym_TYPE, - ACTIONS(3806), 1, - sym_VARIABLE, - STATE(5583), 1, - sym__identifier, - STATE(5638), 1, - sym__interface_subprogram_specification, - STATE(5973), 1, - sym__interface_declaration, - STATE(6685), 1, - sym_identifier_list, - ACTIONS(3796), 2, - sym_IMPURE, - sym_PURE, - STATE(5626), 2, - sym_interface_procedure_specification, - sym_interface_function_specification, - STATE(2698), 3, + ACTIONS(3832), 1, + anon_sym_DOT, + ACTIONS(3834), 1, + anon_sym_LPAREN, + ACTIONS(3836), 1, + anon_sym_SQUOTE, + ACTIONS(3838), 1, + anon_sym_LBRACK, + ACTIONS(3840), 1, + sym_GENERIC, + ACTIONS(3842), 1, + sym_PARAMETER, + STATE(2791), 1, + aux_sym_name_repeat1, + STATE(3040), 1, + sym_generic_map_aspect, + STATE(3245), 1, + sym__name_selector, + STATE(2792), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + STATE(3256), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1503), 14, sym_identifier, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - STATE(6284), 8, - sym_interface_package_declaration, - sym_interface_file_declaration, - sym_interface_type_declaration, - sym_interface_declaration, - sym_interface_constant_declaration, - sym_interface_signal_declaration, - sym_interface_variable_declaration, - sym_interface_subprogram_declaration, - [174797] = 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + [181013] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3824), 1, + ACTIONS(3862), 1, anon_sym_DOT, - ACTIONS(3827), 1, + ACTIONS(3864), 1, anon_sym_LPAREN, - ACTIONS(3830), 1, + ACTIONS(3866), 1, anon_sym_SQUOTE, - ACTIONS(3833), 1, + ACTIONS(3868), 1, anon_sym_LBRACK, - ACTIONS(3836), 1, + ACTIONS(3870), 1, sym_GENERIC, - ACTIONS(3839), 1, + ACTIONS(3872), 1, sym_PARAMETER, - STATE(2941), 1, + STATE(2794), 1, + aux_sym_name_repeat1, + STATE(3338), 1, sym_generic_map_aspect, - STATE(3245), 1, - sym_name_selector, - STATE(2699), 4, + STATE(3362), 1, + sym__name_selector, + STATE(2793), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(3243), 5, + STATE(3364), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1465), 14, + ACTIONS(1487), 13, sym_identifier, + sym_BUS, sym_RANGE, sym_character_literal, sym_operator_symbol, @@ -192856,95 +198796,87 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, - [174860] = 21, + [181077] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(3842), 1, - sym_END, - ACTIONS(3844), 1, - sym_POSTPONED, - ACTIONS(3846), 1, - sym_PROCESS, - STATE(2705), 1, - aux_sym_entity_body_repeat1, - STATE(2920), 1, - sym__direct_name, - STATE(3316), 1, - sym_label_declaration, - STATE(4268), 1, - sym__entity_statement, - STATE(6786), 1, - sym__label, - STATE(7217), 1, - sym_assertion, - STATE(7638), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2700), 3, + ACTIONS(3862), 1, + anon_sym_DOT, + ACTIONS(3864), 1, + anon_sym_LPAREN, + ACTIONS(3866), 1, + anon_sym_SQUOTE, + ACTIONS(3868), 1, + anon_sym_LBRACK, + ACTIONS(3870), 1, + sym_GENERIC, + ACTIONS(3872), 1, + sym_PARAMETER, + STATE(2796), 1, + aux_sym_name_repeat1, + STATE(3338), 1, + sym_generic_map_aspect, + STATE(3362), 1, + sym__name_selector, + STATE(2794), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4279), 3, - sym_process_statement, - sym_concurrent_assertion_statement, - sym_concurrent_procedure_call_statement, - ACTIONS(13), 4, + STATE(3364), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1503), 13, sym_identifier, + sym_BUS, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [174936] = 14, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + [181141] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3848), 1, + ACTIONS(3874), 1, anon_sym_DOT, - ACTIONS(3851), 1, + ACTIONS(3877), 1, anon_sym_LPAREN, - ACTIONS(3854), 1, + ACTIONS(3880), 1, anon_sym_SQUOTE, - ACTIONS(3857), 1, + ACTIONS(3883), 1, anon_sym_LBRACK, - ACTIONS(3860), 1, + ACTIONS(3886), 1, sym_GENERIC, - ACTIONS(3863), 1, + ACTIONS(3889), 1, sym_PARAMETER, - STATE(3216), 1, + STATE(3323), 1, sym_generic_map_aspect, - STATE(3315), 1, - sym_name_selector, - STATE(2701), 4, + STATE(3387), 1, + sym__name_selector, + STATE(2795), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(3317), 5, + STATE(3386), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -192964,46 +198896,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, sym_variable_assignment, anon_sym_LT_LT, - [174998] = 15, + [181203] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3866), 1, + ACTIONS(3892), 1, anon_sym_DOT, - ACTIONS(3868), 1, + ACTIONS(3895), 1, anon_sym_LPAREN, - ACTIONS(3870), 1, + ACTIONS(3898), 1, anon_sym_SQUOTE, - ACTIONS(3872), 1, + ACTIONS(3901), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3904), 1, sym_GENERIC, - ACTIONS(3876), 1, + ACTIONS(3907), 1, sym_PARAMETER, - STATE(2708), 1, - aux_sym_name_repeat1, - STATE(3216), 1, + STATE(3338), 1, sym_generic_map_aspect, - STATE(3315), 1, - sym_name_selector, - STATE(2702), 3, + STATE(3362), 1, + sym__name_selector, + STATE(2796), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3317), 5, + aux_sym_name_repeat1, + STATE(3364), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1487), 13, + ACTIONS(1465), 13, sym_identifier, sym_BUS, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -193011,46 +198941,104 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - [175062] = 14, + [181265] = 21, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(3910), 1, + sym_END, + ACTIONS(3912), 1, + sym_POSTPONED, + ACTIONS(3914), 1, + sym_PROCESS, + STATE(2799), 1, + aux_sym_entity_body_repeat1, + STATE(3020), 1, + sym__direct_name, + STATE(3429), 1, + sym_label_declaration, + STATE(4443), 1, + sym__entity_statement, + STATE(6939), 1, + sym__label, + STATE(7293), 1, + sym_assertion, + STATE(7596), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2797), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(4420), 3, + sym_process_statement, + sym_concurrent_assertion_statement, + sym_concurrent_procedure_call_statement, + ACTIONS(13), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [181341] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3878), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(3881), 1, + ACTIONS(3918), 1, anon_sym_LPAREN, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_SQUOTE, - ACTIONS(3887), 1, + ACTIONS(3922), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3924), 1, sym_GENERIC, - ACTIONS(3893), 1, + ACTIONS(3926), 1, sym_PARAMETER, - STATE(3161), 1, + STATE(2801), 1, + aux_sym_name_repeat1, + STATE(3323), 1, sym_generic_map_aspect, - STATE(3247), 1, - sym_name_selector, - STATE(2703), 4, + STATE(3387), 1, + sym__name_selector, + STATE(2798), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(3267), 5, + STATE(3386), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1465), 13, + ACTIONS(1487), 13, sym_identifier, sym_BUS, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -193058,64 +199046,63 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - [175124] = 20, + [181405] = 20, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3896), 1, + ACTIONS(3928), 1, anon_sym_LT_LT, - ACTIONS(3902), 1, + ACTIONS(3934), 1, sym_ASSERT, - ACTIONS(3905), 1, + ACTIONS(3937), 1, sym_END, - ACTIONS(3907), 1, + ACTIONS(3939), 1, sym_POSTPONED, - ACTIONS(3910), 1, + ACTIONS(3942), 1, sym_PROCESS, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(3316), 1, + STATE(3429), 1, sym_label_declaration, - STATE(4268), 1, + STATE(4443), 1, sym__entity_statement, - STATE(6786), 1, + STATE(6939), 1, sym__label, - STATE(7217), 1, + STATE(7293), 1, sym_assertion, - STATE(7638), 1, + STATE(7596), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(3913), 3, + ACTIONS(3945), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4279), 3, + STATE(4420), 3, sym_process_statement, sym_concurrent_assertion_statement, sym_concurrent_procedure_call_statement, - ACTIONS(3899), 4, + ACTIONS(3931), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(2704), 4, + STATE(2799), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_entity_body_repeat1, - [175198] = 21, + [181479] = 21, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -193126,42 +199113,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(19), 1, sym_ASSERT, - ACTIONS(3844), 1, + ACTIONS(3912), 1, sym_POSTPONED, - ACTIONS(3846), 1, + ACTIONS(3914), 1, sym_PROCESS, - ACTIONS(3916), 1, + ACTIONS(3948), 1, sym_END, - STATE(2704), 1, + STATE(2797), 1, aux_sym_entity_body_repeat1, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(3316), 1, + STATE(3429), 1, sym_label_declaration, - STATE(4268), 1, + STATE(4443), 1, sym__entity_statement, - STATE(6786), 1, + STATE(6939), 1, sym__label, - STATE(7217), 1, + STATE(7293), 1, sym_assertion, - STATE(7638), 1, + STATE(7596), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2705), 3, + STATE(2800), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4279), 3, + STATE(4420), 3, sym_process_statement, sym_concurrent_assertion_statement, sym_concurrent_procedure_call_statement, @@ -193170,134 +199157,36 @@ static const uint16_t ts_small_parse_table[] = { sym_library_constant, sym_library_function, sym_library_type, - [175274] = 15, + [181555] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3918), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(3920), 1, - anon_sym_LPAREN, - ACTIONS(3922), 1, - anon_sym_SQUOTE, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - sym_GENERIC, - ACTIONS(3928), 1, - sym_PARAMETER, - STATE(2707), 1, - aux_sym_name_repeat1, - STATE(3161), 1, - sym_generic_map_aspect, - STATE(3247), 1, - sym_name_selector, - STATE(2706), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3267), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1487), 13, - sym_identifier, - sym_BUS, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - [175338] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, ACTIONS(3918), 1, - anon_sym_DOT, - ACTIONS(3920), 1, - anon_sym_LPAREN, - ACTIONS(3922), 1, - anon_sym_SQUOTE, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - sym_GENERIC, - ACTIONS(3928), 1, - sym_PARAMETER, - STATE(2703), 1, - aux_sym_name_repeat1, - STATE(3161), 1, - sym_generic_map_aspect, - STATE(3247), 1, - sym_name_selector, - STATE(2707), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3267), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1503), 13, - sym_identifier, - sym_BUS, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - [175402] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3866), 1, - anon_sym_DOT, - ACTIONS(3868), 1, anon_sym_LPAREN, - ACTIONS(3870), 1, + ACTIONS(3920), 1, anon_sym_SQUOTE, - ACTIONS(3872), 1, + ACTIONS(3922), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3924), 1, sym_GENERIC, - ACTIONS(3876), 1, + ACTIONS(3926), 1, sym_PARAMETER, - STATE(2701), 1, + STATE(2795), 1, aux_sym_name_repeat1, - STATE(3216), 1, + STATE(3323), 1, sym_generic_map_aspect, - STATE(3315), 1, - sym_name_selector, - STATE(2708), 3, + STATE(3387), 1, + sym__name_selector, + STATE(2801), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3317), 5, + STATE(3386), 5, sym_function_call, sym_parenthesis_group, sym_attribute, @@ -193317,56 +199206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, sym_variable_assignment, anon_sym_LT_LT, - [175466] = 5, + [181619] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2709), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3930), 26, - sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [175509] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2710), 3, + STATE(2802), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3932), 26, + ACTIONS(3950), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193393,94 +199244,66 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [175552] = 5, + [181662] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2711), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3934), 26, - sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, + ACTIONS(3952), 1, + anon_sym_DOT, + ACTIONS(3954), 1, anon_sym_LPAREN, - anon_sym_LT_LT, - [175595] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2712), 3, + ACTIONS(3956), 1, + anon_sym_SQUOTE, + ACTIONS(3958), 1, + anon_sym_LBRACK, + ACTIONS(3960), 1, + sym_GENERIC, + ACTIONS(3962), 1, + sym_PARAMETER, + STATE(2841), 1, + aux_sym_name_repeat1, + STATE(3378), 1, + sym_generic_map_aspect, + STATE(3483), 1, + sym__name_selector, + STATE(2803), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3936), 26, + STATE(3482), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1503), 12, sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, - sym_WITH, + sym_IS, + sym_OPEN, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_LT, - [175638] = 5, + [181725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2713), 3, + STATE(2804), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3938), 26, + ACTIONS(3964), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193507,18 +199330,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [175681] = 5, + [181768] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2714), 3, + STATE(2805), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3940), 26, + ACTIONS(3966), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193545,18 +199368,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [175724] = 5, + [181811] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2715), 3, + STATE(2806), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3942), 26, + ACTIONS(3968), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193583,18 +199406,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [175767] = 5, + [181854] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2716), 3, + STATE(2807), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3944), 26, + ACTIONS(3970), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193621,18 +199444,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [175810] = 5, + [181897] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2717), 3, + STATE(2808), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3946), 26, + ACTIONS(3972), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193659,18 +199482,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [175853] = 5, + [181940] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2718), 3, + STATE(2809), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3948), 26, + ACTIONS(3974), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193697,94 +199520,66 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [175896] = 5, + [181983] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2719), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3950), 26, - sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, + ACTIONS(3952), 1, + anon_sym_DOT, + ACTIONS(3954), 1, anon_sym_LPAREN, - anon_sym_LT_LT, - [175939] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2720), 3, + ACTIONS(3956), 1, + anon_sym_SQUOTE, + ACTIONS(3958), 1, + anon_sym_LBRACK, + ACTIONS(3960), 1, + sym_GENERIC, + ACTIONS(3962), 1, + sym_PARAMETER, + STATE(2803), 1, + aux_sym_name_repeat1, + STATE(3378), 1, + sym_generic_map_aspect, + STATE(3483), 1, + sym__name_selector, + STATE(2810), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3952), 26, + STATE(3482), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1487), 12, sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, - sym_WITH, + sym_IS, + sym_OPEN, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_LT, - [175982] = 5, + [182046] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2721), 3, + STATE(2811), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3954), 26, + ACTIONS(3976), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193811,18 +199606,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176025] = 5, + [182089] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2722), 3, + STATE(2812), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3956), 26, + ACTIONS(3978), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193849,18 +199644,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176068] = 5, + [182132] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2723), 3, + STATE(2813), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3958), 26, + ACTIONS(3980), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193887,18 +199682,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176111] = 5, + [182175] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2724), 3, + STATE(2814), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3960), 26, + ACTIONS(3982), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193925,18 +199720,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176154] = 5, + [182218] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2725), 3, + STATE(2815), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3962), 26, + ACTIONS(3984), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -193963,18 +199758,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176197] = 5, + [182261] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2726), 3, + STATE(2816), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3964), 26, + ACTIONS(3986), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194001,18 +199796,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176240] = 5, + [182304] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2727), 3, + STATE(2817), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3966), 26, + ACTIONS(3988), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194039,18 +199834,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176283] = 5, + [182347] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2728), 3, + STATE(2818), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3968), 26, + ACTIONS(3990), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194077,18 +199872,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176326] = 5, + [182390] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2729), 3, + STATE(2819), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3970), 26, + ACTIONS(3992), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194115,18 +199910,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176369] = 5, + [182433] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2730), 3, + STATE(2820), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3972), 26, + ACTIONS(3994), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194153,18 +199948,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176412] = 5, + [182476] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2731), 3, + STATE(2821), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3974), 26, + ACTIONS(3996), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194191,18 +199986,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176455] = 5, + [182519] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2732), 3, + STATE(2822), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3976), 26, + ACTIONS(3998), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194229,18 +200024,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176498] = 5, + [182562] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2733), 3, + STATE(2823), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3978), 26, + ACTIONS(4000), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194267,18 +200062,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176541] = 5, + [182605] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2734), 3, + STATE(2824), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3980), 26, + ACTIONS(4002), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194305,18 +200100,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176584] = 5, + [182648] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2735), 3, + STATE(2825), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3982), 26, + ACTIONS(4004), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194343,18 +200138,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176627] = 5, + [182691] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2736), 3, + STATE(2826), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3984), 26, + ACTIONS(4006), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194381,18 +200176,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176670] = 5, + [182734] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2737), 3, + STATE(2827), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3986), 26, + ACTIONS(4008), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194419,18 +200214,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176713] = 5, + [182777] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2738), 3, + STATE(2828), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3988), 26, + ACTIONS(4010), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194457,18 +200252,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176756] = 5, + [182820] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2739), 3, + STATE(2829), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3990), 26, + ACTIONS(4012), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194495,18 +200290,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176799] = 5, + [182863] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2740), 3, + STATE(2830), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3992), 26, + ACTIONS(4014), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194533,18 +200328,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176842] = 5, + [182906] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2741), 3, + STATE(2831), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3994), 26, + ACTIONS(4016), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194571,18 +200366,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176885] = 5, + [182949] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2742), 3, + STATE(2832), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3996), 26, + ACTIONS(4018), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194609,18 +200404,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176928] = 5, + [182992] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2743), 3, + STATE(2833), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3998), 26, + ACTIONS(4020), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194647,18 +200442,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [176971] = 5, + [183035] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2744), 3, + STATE(2834), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4000), 26, + ACTIONS(4022), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194685,18 +200480,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177014] = 5, + [183078] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2745), 3, + STATE(2835), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4002), 26, + ACTIONS(4024), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194723,18 +200518,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177057] = 5, + [183121] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2746), 3, + STATE(2836), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4004), 26, + ACTIONS(4026), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194761,18 +200556,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177100] = 5, + [183164] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2747), 3, + STATE(2837), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4006), 26, + ACTIONS(4028), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194799,18 +200594,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177143] = 5, + [183207] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2748), 3, + STATE(2838), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4008), 26, + ACTIONS(4030), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194837,18 +200632,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177186] = 5, + [183250] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2749), 3, + STATE(2839), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4010), 26, + ACTIONS(4032), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194875,65 +200670,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177229] = 14, + [183293] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4012), 1, - anon_sym_DOT, - ACTIONS(4015), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_SQUOTE, - ACTIONS(4021), 1, - anon_sym_LBRACK, - ACTIONS(4024), 1, - sym_GENERIC, - ACTIONS(4027), 1, - sym_PARAMETER, - STATE(3313), 1, - sym_generic_map_aspect, - STATE(3336), 1, - sym_name_selector, - STATE(2750), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_name_repeat1, - STATE(3335), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1465), 12, - sym_identifier, - sym_IS, - sym_OPEN, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_LT_LT, - [177290] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2751), 3, + STATE(2840), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4030), 26, + ACTIONS(4034), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -194960,56 +200708,65 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177333] = 5, + [183336] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2752), 3, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4039), 1, + anon_sym_LPAREN, + ACTIONS(4042), 1, + anon_sym_SQUOTE, + ACTIONS(4045), 1, + anon_sym_LBRACK, + ACTIONS(4048), 1, + sym_GENERIC, + ACTIONS(4051), 1, + sym_PARAMETER, + STATE(3378), 1, + sym_generic_map_aspect, + STATE(3483), 1, + sym__name_selector, + STATE(2841), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4032), 26, + aux_sym_name_repeat1, + STATE(3482), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1465), 12, sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, - sym_WITH, + sym_IS, + sym_OPEN, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_LT, - [177376] = 5, + [183397] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2753), 3, + STATE(2842), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4034), 26, + ACTIONS(4054), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195036,18 +200793,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177419] = 5, + [183440] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2754), 3, + STATE(2843), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4036), 26, + ACTIONS(4056), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195074,18 +200831,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177462] = 5, + [183483] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2755), 3, + STATE(2844), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4038), 26, + ACTIONS(4058), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195112,18 +200869,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177505] = 5, + [183526] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2756), 3, + STATE(2845), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4040), 26, + ACTIONS(4060), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195150,18 +200907,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177548] = 5, + [183569] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2757), 3, + STATE(2846), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4042), 26, + ACTIONS(4062), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195188,18 +200945,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177591] = 5, + [183612] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2758), 3, + STATE(2847), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4044), 26, + ACTIONS(4064), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195226,18 +200983,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177634] = 5, + [183655] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2759), 3, + STATE(2848), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4046), 26, + ACTIONS(4066), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195264,18 +201021,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177677] = 5, + [183698] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2760), 3, + STATE(2849), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4048), 26, + ACTIONS(4068), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195302,18 +201059,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177720] = 5, + [183741] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2761), 3, + STATE(2850), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4050), 26, + ACTIONS(4070), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195340,18 +201097,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177763] = 5, + [183784] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2762), 3, + STATE(2851), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4052), 26, + ACTIONS(4072), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195378,18 +201135,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177806] = 5, + [183827] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2763), 3, + STATE(2852), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4054), 26, + ACTIONS(4074), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195416,18 +201173,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177849] = 5, + [183870] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2764), 3, + STATE(2853), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4056), 26, + ACTIONS(4076), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195454,18 +201211,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177892] = 5, + [183913] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2765), 3, + STATE(2854), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4058), 26, + ACTIONS(4078), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195492,18 +201249,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177935] = 5, + [183956] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2766), 3, + STATE(2855), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4060), 26, + ACTIONS(4080), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195530,18 +201287,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [177978] = 5, + [183999] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2767), 3, + STATE(2856), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4062), 26, + ACTIONS(4082), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195568,18 +201325,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178021] = 5, + [184042] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2768), 3, + STATE(2857), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4064), 26, + ACTIONS(4084), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195606,66 +201363,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178064] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4066), 1, - anon_sym_DOT, - ACTIONS(4068), 1, - anon_sym_LPAREN, - ACTIONS(4070), 1, - anon_sym_SQUOTE, - ACTIONS(4072), 1, - anon_sym_LBRACK, - ACTIONS(4074), 1, - sym_GENERIC, - ACTIONS(4076), 1, - sym_PARAMETER, - STATE(2771), 1, - aux_sym_name_repeat1, - STATE(3313), 1, - sym_generic_map_aspect, - STATE(3336), 1, - sym_name_selector, - STATE(2769), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3335), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1487), 12, - sym_identifier, - sym_IS, - sym_OPEN, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_LT_LT, - [178127] = 5, + [184085] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2770), 3, + STATE(2858), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4078), 26, + ACTIONS(4086), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195692,66 +201401,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178170] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4066), 1, - anon_sym_DOT, - ACTIONS(4068), 1, - anon_sym_LPAREN, - ACTIONS(4070), 1, - anon_sym_SQUOTE, - ACTIONS(4072), 1, - anon_sym_LBRACK, - ACTIONS(4074), 1, - sym_GENERIC, - ACTIONS(4076), 1, - sym_PARAMETER, - STATE(2750), 1, - aux_sym_name_repeat1, - STATE(3313), 1, - sym_generic_map_aspect, - STATE(3336), 1, - sym_name_selector, - STATE(2771), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3335), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1503), 12, - sym_identifier, - sym_IS, - sym_OPEN, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_LT_LT, - [178233] = 5, + [184128] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2772), 3, + STATE(2859), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4080), 26, + ACTIONS(4088), 26, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -195778,22 +201439,24 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178276] = 5, + [184171] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2773), 3, + STATE(2860), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4000), 25, + ACTIONS(4090), 26, sym_identifier, sym_ASSERT, sym_BLOCK, sym_CASE, + sym_ELSE, + sym_ELSIF, sym_END, sym_EXIT, sym_FOR, @@ -195804,7 +201467,6 @@ static const uint16_t ts_small_parse_table[] = { sym_REPORT, sym_RETURN, sym_WAIT, - sym_WHEN, sym_WHILE, sym_WITH, sym_character_literal, @@ -195815,22 +201477,24 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178318] = 5, + [184214] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2774), 3, + STATE(2861), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3980), 25, + ACTIONS(4092), 26, sym_identifier, sym_ASSERT, sym_BLOCK, sym_CASE, + sym_ELSE, + sym_ELSIF, sym_END, sym_EXIT, sym_FOR, @@ -195841,7 +201505,6 @@ static const uint16_t ts_small_parse_table[] = { sym_REPORT, sym_RETURN, sym_WAIT, - sym_WHEN, sym_WHILE, sym_WITH, sym_character_literal, @@ -195852,22 +201515,24 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178360] = 5, + [184257] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2775), 3, + STATE(2862), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3930), 25, + ACTIONS(4094), 26, sym_identifier, sym_ASSERT, sym_BLOCK, sym_CASE, + sym_ELSE, + sym_ELSIF, sym_END, sym_EXIT, sym_FOR, @@ -195878,7 +201543,6 @@ static const uint16_t ts_small_parse_table[] = { sym_REPORT, sym_RETURN, sym_WAIT, - sym_WHEN, sym_WHILE, sym_WITH, sym_character_literal, @@ -195889,68 +201553,24 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178402] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3812), 1, - anon_sym_DOT, - ACTIONS(3814), 1, - anon_sym_LPAREN, - ACTIONS(3816), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - sym_PARAMETER, - STATE(2781), 1, - aux_sym_name_repeat1, - STATE(2941), 1, - sym_generic_map_aspect, - STATE(3245), 1, - sym_name_selector, - STATE(2776), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3243), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1487), 12, - sym_identifier, - sym_GENERIC, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - sym_variable_assignment, - anon_sym_LT_LT, - [178462] = 5, + [184300] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2777), 3, + STATE(2863), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3974), 25, + ACTIONS(4096), 26, sym_identifier, sym_ASSERT, sym_BLOCK, sym_CASE, + sym_ELSE, + sym_ELSIF, sym_END, sym_EXIT, sym_FOR, @@ -195961,7 +201581,6 @@ static const uint16_t ts_small_parse_table[] = { sym_REPORT, sym_RETURN, sym_WAIT, - sym_WHEN, sym_WHILE, sym_WITH, sym_character_literal, @@ -195972,22 +201591,24 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178504] = 5, + [184343] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2778), 3, + STATE(2864), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3966), 25, + ACTIONS(4098), 26, sym_identifier, sym_ASSERT, sym_BLOCK, sym_CASE, + sym_ELSE, + sym_ELSIF, sym_END, sym_EXIT, sym_FOR, @@ -195998,7 +201619,6 @@ static const uint16_t ts_small_parse_table[] = { sym_REPORT, sym_RETURN, sym_WAIT, - sym_WHEN, sym_WHILE, sym_WITH, sym_character_literal, @@ -196009,22 +201629,24 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178546] = 5, + [184386] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2779), 3, + STATE(2865), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3964), 25, + ACTIONS(4100), 26, sym_identifier, sym_ASSERT, sym_BLOCK, sym_CASE, + sym_ELSE, + sym_ELSIF, sym_END, sym_EXIT, sym_FOR, @@ -196035,7 +201657,6 @@ static const uint16_t ts_small_parse_table[] = { sym_REPORT, sym_RETURN, sym_WAIT, - sym_WHEN, sym_WHILE, sym_WITH, sym_character_literal, @@ -196046,18 +201667,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178588] = 5, + [184429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2780), 3, + STATE(2866), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4056), 25, + ACTIONS(4030), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196083,64 +201704,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178630] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3812), 1, - anon_sym_DOT, - ACTIONS(3814), 1, - anon_sym_LPAREN, - ACTIONS(3816), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - sym_PARAMETER, - STATE(2699), 1, - aux_sym_name_repeat1, - STATE(2941), 1, - sym_generic_map_aspect, - STATE(3245), 1, - sym_name_selector, - STATE(2781), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3243), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1503), 12, - sym_identifier, - sym_GENERIC, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - sym_variable_assignment, - anon_sym_LT_LT, - [178690] = 5, + [184471] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2782), 3, + STATE(2867), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4052), 25, + ACTIONS(4074), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196166,18 +201741,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178732] = 5, + [184513] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2783), 3, + STATE(2868), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3962), 25, + ACTIONS(4060), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196203,18 +201778,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178774] = 5, + [184555] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2784), 3, + STATE(2869), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3960), 25, + ACTIONS(4062), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196240,18 +201815,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178816] = 5, + [184597] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2785), 3, + STATE(2870), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4040), 25, + ACTIONS(4082), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196277,18 +201852,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178858] = 5, + [184639] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2786), 3, + STATE(2871), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4050), 25, + ACTIONS(4064), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196314,92 +201889,164 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [178900] = 5, + [184681] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2787), 3, + ACTIONS(3832), 1, + anon_sym_DOT, + ACTIONS(3834), 1, + anon_sym_LPAREN, + ACTIONS(3836), 1, + anon_sym_SQUOTE, + ACTIONS(3838), 1, + anon_sym_LBRACK, + ACTIONS(3842), 1, + sym_PARAMETER, + STATE(2791), 1, + aux_sym_name_repeat1, + STATE(3040), 1, + sym_generic_map_aspect, + STATE(3245), 1, + sym__name_selector, + STATE(2872), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3954), 25, + STATE(3256), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1503), 12, sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHEN, - sym_WHILE, - sym_WITH, + sym_GENERIC, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, + anon_sym_SEMI, + sym_variable_assignment, anon_sym_LT_LT, - [178942] = 5, + [184741] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2788), 3, + ACTIONS(3832), 1, + anon_sym_DOT, + ACTIONS(3834), 1, + anon_sym_LPAREN, + ACTIONS(3836), 1, + anon_sym_SQUOTE, + ACTIONS(3838), 1, + anon_sym_LBRACK, + ACTIONS(3842), 1, + sym_PARAMETER, + STATE(2872), 1, + aux_sym_name_repeat1, + STATE(3040), 1, + sym_generic_map_aspect, + STATE(3245), 1, + sym__name_selector, + STATE(2873), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4002), 25, + STATE(3256), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1487), 12, sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHEN, - sym_WHILE, - sym_WITH, + sym_GENERIC, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, + anon_sym_SEMI, + sym_variable_assignment, anon_sym_LT_LT, - [178984] = 5, + [184801] = 22, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2789), 3, + ACTIONS(4102), 1, + sym_ALIAS, + ACTIONS(4104), 1, + sym_ATTRIBUTE, + ACTIONS(4106), 1, + sym_BODY, + ACTIONS(4108), 1, + sym_END, + ACTIONS(4110), 1, + sym_FUNCTION, + ACTIONS(4112), 1, + sym_GENERIC, + ACTIONS(4114), 1, + sym_PROCEDURE, + ACTIONS(4116), 1, + sym_PRIVATE, + ACTIONS(4118), 1, + sym_USE, + STATE(3088), 1, + aux_sym_protected_type_declaration_repeat1, + STATE(3089), 1, + sym_protected_type_header, + STATE(4498), 1, + sym_generic_clause, + STATE(4847), 1, + sym__protected_type_declarative_item, + STATE(7478), 1, + sym__subprogram_specification, + STATE(8007), 1, + sym_protected_type_declaration_end, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(2874), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3990), 25, + STATE(4766), 6, + sym_use_clause, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_alias_declaration, + sym_attribute_specification, + sym_private_variable_declaration, + [184877] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2875), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4034), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196425,18 +202072,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179026] = 5, + [184919] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2790), 3, + STATE(2876), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4038), 25, + ACTIONS(4028), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196462,18 +202109,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179068] = 5, + [184961] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2791), 3, + STATE(2877), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4036), 25, + ACTIONS(4026), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196499,18 +202146,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179110] = 5, + [185003] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2792), 3, + STATE(2878), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4032), 25, + ACTIONS(4020), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196536,18 +202183,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179152] = 5, + [185045] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2793), 3, + STATE(2879), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4044), 25, + ACTIONS(4018), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196573,18 +202220,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179194] = 5, + [185087] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2794), 3, + STATE(2880), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4080), 25, + ACTIONS(4070), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196610,18 +202257,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179236] = 5, + [185129] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2795), 3, + STATE(2881), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4058), 25, + ACTIONS(4076), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196647,18 +202294,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179278] = 5, + [185171] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2796), 3, + STATE(2882), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4054), 25, + ACTIONS(4016), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196684,18 +202331,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179320] = 5, + [185213] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2797), 3, + STATE(2883), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3976), 25, + ACTIONS(4014), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196721,18 +202368,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179362] = 5, + [185255] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2798), 3, + STATE(2884), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4034), 25, + ACTIONS(4012), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196758,18 +202405,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179404] = 5, + [185297] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2799), 3, + STATE(2885), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3952), 25, + ACTIONS(4090), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196795,18 +202442,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179446] = 5, + [185339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2800), 3, + STATE(2886), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3972), 25, + ACTIONS(4010), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196832,18 +202479,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179488] = 5, + [185381] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2801), 3, + STATE(2887), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3948), 25, + ACTIONS(4088), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196869,18 +202516,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179530] = 5, + [185423] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2802), 3, + STATE(2888), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3970), 25, + ACTIONS(4086), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196906,18 +202553,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179572] = 5, + [185465] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2803), 3, + STATE(2889), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4042), 25, + ACTIONS(4084), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196943,18 +202590,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179614] = 5, + [185507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2804), 3, + STATE(2890), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4030), 25, + ACTIONS(3950), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -196980,18 +202627,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179656] = 5, + [185549] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2805), 3, + STATE(2891), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4010), 25, + ACTIONS(4100), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197017,18 +202664,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179698] = 5, + [185591] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2806), 3, + STATE(2892), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3958), 25, + ACTIONS(4092), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197054,18 +202701,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179740] = 5, + [185633] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2807), 3, + STATE(2893), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3984), 25, + ACTIONS(4080), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197091,18 +202738,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179782] = 5, + [185675] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2808), 3, + STATE(2894), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3968), 25, + ACTIONS(4078), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197128,14 +202775,14 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179824] = 5, + [185717] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2809), 3, + STATE(2895), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -197165,18 +202812,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179866] = 5, + [185759] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2810), 3, + STATE(2896), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3950), 25, + ACTIONS(3990), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197202,18 +202849,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179908] = 5, + [185801] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2811), 3, + STATE(2897), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3946), 25, + ACTIONS(4000), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197239,18 +202886,240 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179950] = 5, + [185843] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2812), 3, + STATE(2898), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4008), 25, + ACTIONS(4004), 25, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHEN, + sym_WHILE, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [185885] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2899), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4002), 25, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHEN, + sym_WHILE, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [185927] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2900), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3998), 25, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHEN, + sym_WHILE, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [185969] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2901), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 25, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHEN, + sym_WHILE, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [186011] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2902), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4068), 25, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHEN, + sym_WHILE, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [186053] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2903), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4056), 25, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHEN, + sym_WHILE, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [186095] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2904), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4006), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197276,18 +203145,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [179992] = 5, + [186137] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2813), 3, + STATE(2905), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3942), 25, + ACTIONS(4054), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197313,18 +203182,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180034] = 5, + [186179] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2814), 3, + STATE(2906), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3998), 25, + ACTIONS(4008), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197350,18 +203219,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180076] = 5, + [186221] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2815), 3, + STATE(2907), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3938), 25, + ACTIONS(3970), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197387,18 +203256,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180118] = 5, + [186263] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2816), 3, + STATE(2908), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3944), 25, + ACTIONS(3966), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197424,18 +203293,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180160] = 5, + [186305] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2817), 3, + STATE(2909), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4062), 25, + ACTIONS(3968), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197461,18 +203330,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180202] = 5, + [186347] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2818), 3, + STATE(2910), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3994), 25, + ACTIONS(3974), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197498,18 +203367,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180244] = 5, + [186389] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2819), 3, + STATE(2911), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4004), 25, + ACTIONS(3978), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197535,18 +203404,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180286] = 5, + [186431] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2820), 3, + STATE(2912), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3932), 25, + ACTIONS(3964), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197572,18 +203441,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180328] = 5, + [186473] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2821), 3, + STATE(2913), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4006), 25, + ACTIONS(4022), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197609,18 +203478,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180370] = 5, + [186515] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2822), 3, + STATE(2914), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3956), 25, + ACTIONS(3972), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197646,18 +203515,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180412] = 5, + [186557] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2823), 3, + STATE(2915), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3936), 25, + ACTIONS(4024), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197683,18 +203552,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180454] = 5, + [186599] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2824), 3, + STATE(2916), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4078), 25, + ACTIONS(3982), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197720,18 +203589,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180496] = 5, + [186641] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2825), 3, + STATE(2917), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4046), 25, + ACTIONS(3988), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197757,18 +203626,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180538] = 5, + [186683] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2826), 3, + STATE(2918), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4048), 25, + ACTIONS(3994), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197794,18 +203663,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180580] = 5, + [186725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2827), 3, + STATE(2919), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3940), 25, + ACTIONS(3984), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197831,18 +203700,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180622] = 5, + [186767] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2828), 3, + STATE(2920), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3988), 25, + ACTIONS(3986), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197868,72 +203737,55 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180664] = 22, + [186809] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4082), 1, - sym_ALIAS, - ACTIONS(4084), 1, - sym_ATTRIBUTE, - ACTIONS(4086), 1, - sym_BODY, - ACTIONS(4088), 1, - sym_END, - ACTIONS(4090), 1, - sym_FUNCTION, - ACTIONS(4092), 1, - sym_GENERIC, - ACTIONS(4094), 1, - sym_PROCEDURE, - ACTIONS(4096), 1, - sym_PRIVATE, - ACTIONS(4098), 1, - sym_USE, - STATE(2989), 1, - aux_sym_protected_type_declaration_repeat1, - STATE(3088), 1, - sym_protected_type_header, - STATE(4370), 1, - sym_generic_clause, - STATE(4546), 1, - sym__protected_type_declarative_item, - STATE(6942), 1, - sym_protected_type_declaration_end, - STATE(7521), 1, - sym__subprogram_specification, - ACTIONS(2117), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2829), 3, + STATE(2921), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4554), 6, - sym_use_clause, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_alias_declaration, - sym_attribute_specification, - sym_private_variable_declaration, - [180740] = 5, + ACTIONS(3992), 25, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHEN, + sym_WHILE, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [186851] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2830), 3, + STATE(2922), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3986), 25, + ACTIONS(3980), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197959,18 +203811,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180782] = 5, + [186893] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2831), 3, + STATE(2923), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3934), 25, + ACTIONS(3976), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -197996,18 +203848,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180824] = 5, + [186935] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2832), 3, + STATE(2924), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3982), 25, + ACTIONS(4098), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198033,18 +203885,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180866] = 5, + [186977] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2833), 3, + STATE(2925), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3992), 25, + ACTIONS(4096), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198070,18 +203922,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180908] = 5, + [187019] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2834), 3, + STATE(2926), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4064), 25, + ACTIONS(4094), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198107,18 +203959,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180950] = 5, + [187061] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2835), 3, + STATE(2927), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3978), 25, + ACTIONS(4072), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198144,18 +203996,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [180992] = 5, + [187103] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2836), 3, + STATE(2928), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4060), 25, + ACTIONS(4032), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198181,18 +204033,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181034] = 5, + [187145] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2837), 3, + STATE(2929), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3986), 24, + ACTIONS(4058), 25, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198207,6 +204059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_REPORT, sym_RETURN, sym_WAIT, + sym_WHEN, sym_WHILE, sym_WITH, sym_character_literal, @@ -198217,18 +204070,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181075] = 5, + [187187] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2838), 3, + STATE(2930), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4034), 24, + ACTIONS(4054), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198253,18 +204106,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181116] = 5, + [187228] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2839), 3, + STATE(2931), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4038), 24, + ACTIONS(3974), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198289,18 +204142,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181157] = 5, + [187269] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2840), 3, + STATE(2932), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3932), 24, + ACTIONS(4024), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198325,18 +204178,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181198] = 5, + [187310] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2841), 3, + STATE(2933), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4044), 24, + ACTIONS(4056), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198361,18 +204214,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181239] = 5, + [187351] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2842), 3, + STATE(2934), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4006), 24, + ACTIONS(4060), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198397,18 +204250,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181280] = 5, + [187392] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2843), 3, + STATE(2935), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4080), 24, + ACTIONS(4062), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198433,18 +204286,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181321] = 5, + [187433] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2844), 3, + STATE(2936), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4032), 24, + ACTIONS(4058), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198469,18 +204322,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181362] = 5, + [187474] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2845), 3, + STATE(2937), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3994), 24, + ACTIONS(4082), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198505,103 +204358,90 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181403] = 8, + [187515] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - STATE(7466), 1, - sym_verification_unit_binding_indication, - STATE(7537), 1, - sym_end_for, - STATE(2846), 3, + STATE(2938), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2962), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, + ACTIONS(4064), 24, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [181450] = 15, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHILE, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [187556] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_SQUOTE, - ACTIONS(4106), 1, - anon_sym_LBRACK, - ACTIONS(4108), 1, - sym_GENERIC, - ACTIONS(4110), 1, - sym_PARAMETER, - STATE(2854), 1, - aux_sym_name_repeat1, - STATE(3507), 1, - sym_generic_map_aspect, - STATE(3763), 1, - sym_name_selector, - STATE(2847), 3, + STATE(2939), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3754), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1487), 10, + ACTIONS(4074), 24, sym_identifier, - sym_IS, - sym_RANGE, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHILE, + sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_LPAREN, anon_sym_LT_LT, - [181511] = 5, + [187597] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2848), 3, + STATE(2940), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3978), 24, + ACTIONS(4092), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198626,18 +204466,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181552] = 5, + [187638] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2849), 3, + STATE(2941), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3980), 24, + ACTIONS(4094), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198662,63 +204502,54 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181593] = 14, + [187679] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4112), 1, - anon_sym_DOT, - ACTIONS(4115), 1, - anon_sym_LPAREN, - ACTIONS(4118), 1, - anon_sym_SQUOTE, - ACTIONS(4121), 1, - anon_sym_LBRACK, - ACTIONS(4124), 1, - sym_GENERIC, - ACTIONS(4127), 1, - sym_PARAMETER, - STATE(3507), 1, - sym_generic_map_aspect, - STATE(3763), 1, - sym_name_selector, - STATE(2850), 4, + STATE(2942), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(3754), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1465), 10, + ACTIONS(4066), 24, sym_identifier, - sym_IS, - sym_RANGE, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHILE, + sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_LPAREN, anon_sym_LT_LT, - [181652] = 5, + [187720] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2851), 3, + STATE(2943), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4048), 24, + ACTIONS(4068), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198743,18 +204574,63 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181693] = 5, + [187761] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2852), 3, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4123), 1, + anon_sym_LPAREN, + ACTIONS(4126), 1, + anon_sym_SQUOTE, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4132), 1, + sym_GENERIC, + ACTIONS(4135), 1, + sym_PARAMETER, + STATE(3642), 1, + sym_generic_map_aspect, + STATE(3743), 1, + sym__name_selector, + STATE(2944), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3988), 24, + aux_sym_name_repeat1, + STATE(3742), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1465), 10, + sym_identifier, + sym_IS, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LT_LT, + [187820] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2945), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198779,18 +204655,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181734] = 5, + [187861] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2853), 3, + STATE(2946), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4046), 24, + ACTIONS(4072), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198815,64 +204691,54 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181775] = 15, + [187902] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4100), 1, - anon_sym_DOT, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_SQUOTE, - ACTIONS(4106), 1, - anon_sym_LBRACK, - ACTIONS(4108), 1, - sym_GENERIC, - ACTIONS(4110), 1, - sym_PARAMETER, - STATE(2850), 1, - aux_sym_name_repeat1, - STATE(3507), 1, - sym_generic_map_aspect, - STATE(3763), 1, - sym_name_selector, - STATE(2854), 3, + STATE(2947), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3754), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1503), 10, + ACTIONS(4008), 24, sym_identifier, - sym_IS, - sym_RANGE, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_END, + sym_EXIT, + sym_FOR, + sym_IF, + sym_LOOP, + sym_NEXT, + sym_NULL, + sym_REPORT, + sym_RETURN, + sym_WAIT, + sym_WHILE, + sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_LPAREN, anon_sym_LT_LT, - [181836] = 5, + [187943] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2855), 3, + STATE(2948), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3942), 24, + ACTIONS(4098), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198897,18 +204763,54 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181877] = 5, + [187984] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2856), 3, + STATE(2949), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3976), 24, + ACTIONS(4138), 24, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GENERIC, + sym_GROUP, + sym_IMPURE, + sym_IS, + sym_PACKAGE, + sym_PORT, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [188025] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2950), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3998), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198933,18 +204835,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181918] = 5, + [188066] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2857), 3, + STATE(2951), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3972), 24, + ACTIONS(4002), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -198969,18 +204871,64 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [181959] = 5, + [188107] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2858), 3, + ACTIONS(4140), 1, + anon_sym_DOT, + ACTIONS(4142), 1, + anon_sym_LPAREN, + ACTIONS(4144), 1, + anon_sym_SQUOTE, + ACTIONS(4146), 1, + anon_sym_LBRACK, + ACTIONS(4148), 1, + sym_GENERIC, + ACTIONS(4150), 1, + sym_PARAMETER, + STATE(2983), 1, + aux_sym_name_repeat1, + STATE(3642), 1, + sym_generic_map_aspect, + STATE(3743), 1, + sym__name_selector, + STATE(2952), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3742), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1487), 10, + sym_identifier, + sym_IS, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LT_LT, + [188168] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2953), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3940), 24, + ACTIONS(3996), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199005,18 +204953,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182000] = 5, + [188209] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2859), 3, + STATE(2954), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3970), 24, + ACTIONS(4010), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199041,18 +204989,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182041] = 5, + [188250] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2860), 3, + STATE(2955), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4000), 24, + ACTIONS(4012), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199077,18 +205025,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182082] = 5, + [188291] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2861), 3, + STATE(2956), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3968), 24, + ACTIONS(4014), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199113,18 +205061,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182123] = 5, + [188332] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2862), 3, + STATE(2957), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4004), 24, + ACTIONS(4016), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199149,18 +205097,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182164] = 5, + [188373] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2863), 3, + STATE(2958), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3956), 24, + ACTIONS(3970), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199185,18 +205133,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182205] = 5, + [188414] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2864), 3, + STATE(2959), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4002), 24, + ACTIONS(3966), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199221,18 +205169,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182246] = 5, + [188455] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2865), 3, + STATE(2960), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4058), 24, + ACTIONS(3976), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199257,18 +205205,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182287] = 5, + [188496] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2866), 3, + STATE(2961), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4056), 24, + ACTIONS(4018), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199293,18 +205241,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182328] = 5, + [188537] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2867), 3, + STATE(2962), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4054), 24, + ACTIONS(3968), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199329,18 +205277,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182369] = 5, + [188578] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2868), 3, + STATE(2963), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4052), 24, + ACTIONS(4004), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199365,18 +205313,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182410] = 5, + [188619] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2869), 3, + STATE(2964), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3996), 24, + ACTIONS(3978), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199401,18 +205349,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182451] = 5, + [188660] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2870), 3, + STATE(2965), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4040), 24, + ACTIONS(3964), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199437,18 +205385,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182492] = 5, + [188701] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2871), 3, + STATE(2966), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3952), 24, + ACTIONS(4020), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199473,18 +205421,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182533] = 5, + [188742] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2872), 3, + STATE(2967), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4060), 24, + ACTIONS(3972), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199509,18 +205457,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182574] = 5, + [188783] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2873), 3, + STATE(2968), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4064), 24, + ACTIONS(3982), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199545,18 +205493,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182615] = 5, + [188824] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2874), 3, + STATE(2969), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3984), 24, + ACTIONS(3988), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199581,18 +205529,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182656] = 5, + [188865] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2875), 3, + STATE(2970), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3948), 24, + ACTIONS(3994), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199617,18 +205565,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182697] = 5, + [188906] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2876), 3, + STATE(2971), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3998), 24, + ACTIONS(3984), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199653,18 +205601,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182738] = 5, + [188947] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2877), 3, + STATE(2972), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4042), 24, + ACTIONS(3986), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199689,18 +205637,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182779] = 5, + [188988] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2878), 3, + STATE(2973), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3930), 24, + ACTIONS(4086), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199725,18 +205673,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182820] = 5, + [189029] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2879), 3, + STATE(2974), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4050), 24, + ACTIONS(3992), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199761,18 +205709,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182861] = 5, + [189070] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2880), 3, + STATE(2975), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3992), 24, + ACTIONS(3980), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199797,18 +205745,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182902] = 5, + [189111] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2881), 3, + STATE(2976), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3990), 24, + ACTIONS(4026), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199833,18 +205781,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182943] = 5, + [189152] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2882), 3, + STATE(2977), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3974), 24, + ACTIONS(4088), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199869,18 +205817,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [182984] = 5, + [189193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2883), 3, + STATE(2978), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3966), 24, + ACTIONS(4070), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199905,18 +205853,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183025] = 5, + [189234] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2884), 3, + STATE(2979), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3954), 24, + ACTIONS(4076), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199941,18 +205889,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183066] = 5, + [189275] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2885), 3, + STATE(2980), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3964), 24, + ACTIONS(4028), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -199977,18 +205925,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183107] = 5, + [189316] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2886), 3, + STATE(2981), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3962), 24, + ACTIONS(4030), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200013,18 +205961,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183148] = 5, + [189357] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2887), 3, + STATE(2982), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4036), 24, + ACTIONS(4034), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200049,18 +205997,64 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183189] = 5, + [189398] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2888), 3, + ACTIONS(4140), 1, + anon_sym_DOT, + ACTIONS(4142), 1, + anon_sym_LPAREN, + ACTIONS(4144), 1, + anon_sym_SQUOTE, + ACTIONS(4146), 1, + anon_sym_LBRACK, + ACTIONS(4148), 1, + sym_GENERIC, + ACTIONS(4150), 1, + sym_PARAMETER, + STATE(2944), 1, + aux_sym_name_repeat1, + STATE(3642), 1, + sym_generic_map_aspect, + STATE(3743), 1, + sym__name_selector, + STATE(2983), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3958), 24, + STATE(3742), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1503), 10, + sym_identifier, + sym_IS, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LT_LT, + [189459] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2984), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4078), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200085,18 +206079,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183230] = 5, + [189500] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2889), 3, + ACTIONS(2992), 1, + sym_END, + STATE(7485), 1, + sym_end_for, + STATE(7685), 1, + sym_verification_unit_binding_indication, + STATE(2985), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3950), 24, + ACTIONS(2990), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [189547] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2986), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3990), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200121,18 +206154,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183271] = 5, + [189588] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2890), 3, + STATE(2987), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4078), 24, + ACTIONS(4080), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200157,18 +206190,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183312] = 5, + [189629] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2891), 3, + STATE(2988), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3982), 24, + ACTIONS(4022), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200193,18 +206226,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183353] = 5, + [189670] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2892), 3, + STATE(2989), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3946), 24, + ACTIONS(4084), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200229,18 +206262,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183394] = 5, + [189711] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2893), 3, + STATE(2990), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3960), 24, + ACTIONS(4000), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200265,54 +206298,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183435] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2894), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4130), 24, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GENERIC, - sym_GROUP, - sym_IMPURE, - sym_IS, - sym_PACKAGE, - sym_PORT, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [183476] = 5, + [189752] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2895), 3, + STATE(2991), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4062), 24, + ACTIONS(4032), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200337,18 +206334,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183517] = 5, + [189793] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2896), 3, + STATE(2992), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3938), 24, + ACTIONS(3950), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200373,18 +206370,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183558] = 5, + [189834] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2897), 3, + STATE(2993), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4030), 24, + ACTIONS(4100), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200409,18 +206406,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183599] = 5, + [189875] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2898), 3, + STATE(2994), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4010), 24, + ACTIONS(4090), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200445,18 +206442,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183640] = 5, + [189916] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2899), 3, + STATE(2995), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3944), 24, + ACTIONS(4006), 24, sym_identifier, sym_ASSERT, sym_BLOCK, @@ -200481,59 +206478,158 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183681] = 5, + [189957] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2900), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(69), 1, + sym_WITH, + ACTIONS(4152), 1, + sym_PROCESS, + STATE(3020), 1, + sym__direct_name, + STATE(6159), 1, + sym_with_expression, + STATE(6234), 1, + sym__target, + STATE(6312), 1, + sym_aggregate, + STATE(6424), 1, + sym_name, + STATE(6919), 1, + sym_assertion, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2996), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4008), 24, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [190025] = 19, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, + ACTIONS(69), 1, sym_WITH, + ACTIONS(4154), 1, + sym_PROCESS, + STATE(3020), 1, + sym__direct_name, + STATE(6168), 1, + sym_with_expression, + STATE(6269), 1, + sym__target, + STATE(6312), 1, + sym_aggregate, + STATE(6407), 1, + sym_name, + STATE(7043), 1, + sym_assertion, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, + STATE(2997), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [183722] = 5, + [190093] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2901), 3, + STATE(5961), 1, + sym__entity_class, + STATE(5964), 1, + sym_entity_class_entry, + STATE(6877), 1, + sym_entity_class_entry_list, + STATE(2998), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 20, + sym_ARCHITECTURE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_ENTITY, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_LABEL, + sym_LITERAL, + sym_PACKAGE, + sym_PROCEDURE, + sym_PROPERTY, + sym_SEQUENCE, + sym_SIGNAL, + sym_SUBTYPE, + sym_TYPE, + sym_UNITS, + sym_VARIABLE, + sym_VIEW, + [190139] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2999), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3936), 24, + ACTIONS(3720), 23, sym_identifier, sym_ASSERT, sym_BLOCK, sym_CASE, - sym_END, sym_EXIT, sym_FOR, sym_IF, @@ -200553,54 +206649,67 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [183763] = 5, + [190179] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2902), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3934), 24, - sym_identifier, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(19), 1, sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_END, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, + ACTIONS(69), 1, sym_WITH, + ACTIONS(4158), 1, + sym_PROCESS, + STATE(3020), 1, + sym__direct_name, + STATE(6312), 1, + sym_aggregate, + STATE(6582), 1, + sym_with_expression, + STATE(6586), 1, + sym_name, + STATE(6587), 1, + sym__target, + STATE(6724), 1, + sym_assertion, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, + STATE(3000), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [183804] = 5, + [190247] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2903), 3, + STATE(3001), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4132), 23, + ACTIONS(4160), 23, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -200624,24 +206733,24 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [183844] = 8, + [190287] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5543), 1, + STATE(5961), 1, sym__entity_class, - STATE(5544), 1, + STATE(5964), 1, sym_entity_class_entry, - STATE(6760), 1, + STATE(6976), 1, sym_entity_class_entry_list, - STATE(2904), 3, + STATE(3002), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4134), 20, + ACTIONS(4156), 20, sym_ARCHITECTURE, sym_COMPONENT, sym_CONFIGURATION, @@ -200662,7 +206771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_UNITS, sym_VARIABLE, sym_VIEW, - [183890] = 19, + [190333] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -200677,90 +206786,41 @@ static const uint16_t ts_small_parse_table[] = { sym_ASSERT, ACTIONS(69), 1, sym_WITH, - ACTIONS(4136), 1, + ACTIONS(4162), 1, sym_PROCESS, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(5976), 1, + STATE(6187), 1, sym_with_expression, - STATE(6067), 1, - sym__target, - STATE(6083), 1, + STATE(6312), 1, sym_aggregate, - STATE(6169), 1, - sym_name, - STATE(6898), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2905), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [183958] = 19, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(4138), 1, - sym_PROCESS, - STATE(2920), 1, - sym__direct_name, - STATE(5961), 1, - sym_with_expression, - STATE(6036), 1, + STATE(6315), 1, sym__target, - STATE(6083), 1, - sym_aggregate, - STATE(6220), 1, + STATE(6379), 1, sym_name, - STATE(6723), 1, + STATE(7502), 1, sym_assertion, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2906), 3, + STATE(3003), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [184026] = 19, + [190401] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -200775,101 +206835,58 @@ static const uint16_t ts_small_parse_table[] = { sym_ASSERT, ACTIONS(69), 1, sym_WITH, - ACTIONS(4140), 1, + ACTIONS(3764), 1, sym_PROCESS, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(5992), 1, + STATE(6195), 1, sym_with_expression, - STATE(6037), 1, - sym_name, - STATE(6083), 1, + STATE(6312), 1, sym_aggregate, - STATE(6105), 1, + STATE(6330), 1, sym__target, - STATE(7578), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2907), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [184094] = 13, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(5848), 1, + STATE(6372), 1, sym_name, - STATE(5989), 1, - sym_resolution_indication, - STATE(4246), 2, + STATE(7525), 1, + sym_assertion, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2908), 3, + STATE(3004), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(2396), 7, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [184150] = 8, + [190469] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5543), 1, + STATE(5961), 1, sym__entity_class, - STATE(5544), 1, + STATE(5964), 1, sym_entity_class_entry, - STATE(6538), 1, + STATE(7025), 1, sym_entity_class_entry_list, - STATE(2909), 3, + STATE(3005), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4134), 20, + ACTIONS(4156), 20, sym_ARCHITECTURE, sym_COMPONENT, sym_CONFIGURATION, @@ -200890,24 +206907,24 @@ static const uint16_t ts_small_parse_table[] = { sym_UNITS, sym_VARIABLE, sym_VIEW, - [184196] = 8, + [190515] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5543), 1, + STATE(5961), 1, sym__entity_class, - STATE(5544), 1, + STATE(5964), 1, sym_entity_class_entry, - STATE(6839), 1, + STATE(7057), 1, sym_entity_class_entry_list, - STATE(2910), 3, + STATE(3006), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4134), 20, + ACTIONS(4156), 20, sym_ARCHITECTURE, sym_COMPONENT, sym_CONFIGURATION, @@ -200928,7 +206945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_UNITS, sym_VARIABLE, sym_VIEW, - [184242] = 19, + [190561] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -200943,90 +206960,122 @@ static const uint16_t ts_small_parse_table[] = { sym_ASSERT, ACTIONS(69), 1, sym_WITH, - ACTIONS(3736), 1, + ACTIONS(3792), 1, sym_PROCESS, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(5982), 1, + STATE(6161), 1, sym_with_expression, - STATE(6083), 1, - sym_aggregate, - STATE(6089), 1, + STATE(6245), 1, sym__target, - STATE(6161), 1, + STATE(6312), 1, + sym_aggregate, + STATE(6416), 1, sym_name, - STATE(6924), 1, + STATE(6934), 1, sym_assertion, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2911), 3, + STATE(3007), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [184310] = 19, + [190629] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5961), 1, + sym__entity_class, + STATE(5964), 1, + sym_entity_class_entry, + STATE(6752), 1, + sym_entity_class_entry_list, + STATE(3008), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 20, + sym_ARCHITECTURE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_ENTITY, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_LABEL, + sym_LITERAL, + sym_PACKAGE, + sym_PROCEDURE, + sym_PROPERTY, + sym_SEQUENCE, + sym_SIGNAL, + sym_SUBTYPE, + sym_TYPE, + sym_UNITS, + sym_VARIABLE, + sym_VIEW, + [190675] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, ACTIONS(11), 1, anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(3760), 1, - sym_PROCESS, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(5966), 1, - sym_with_expression, - STATE(6049), 1, - sym__target, - STATE(6083), 1, - sym_aggregate, - STATE(6208), 1, + STATE(6192), 1, + sym_resolution_indication, + STATE(6350), 1, sym_name, - STATE(6783), 1, - sym_assertion, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2912), 3, + STATE(3009), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [184378] = 19, + ACTIONS(2450), 7, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [190731] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -201041,96 +207090,58 @@ static const uint16_t ts_small_parse_table[] = { sym_ASSERT, ACTIONS(69), 1, sym_WITH, - ACTIONS(4142), 1, + ACTIONS(3778), 1, sym_PROCESS, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6083), 1, - sym_aggregate, - STATE(6203), 1, + STATE(6180), 1, sym_with_expression, - STATE(6206), 1, - sym_name, - STATE(6207), 1, + STATE(6287), 1, sym__target, - STATE(6935), 1, + STATE(6312), 1, + sym_aggregate, + STATE(6399), 1, + sym_name, + STATE(7055), 1, sym_assertion, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2913), 3, + STATE(3010), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [184446] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(5543), 1, - sym__entity_class, - STATE(5544), 1, - sym_entity_class_entry, - STATE(6675), 1, - sym_entity_class_entry_list, - STATE(2914), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4134), 20, - sym_ARCHITECTURE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_CONSTANT, - sym_ENTITY, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_LABEL, - sym_LITERAL, - sym_PACKAGE, - sym_PROCEDURE, - sym_PROPERTY, - sym_SEQUENCE, - sym_SIGNAL, - sym_SUBTYPE, - sym_TYPE, - sym_UNITS, - sym_VARIABLE, - sym_VIEW, - [184492] = 8, + [190799] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5543), 1, + STATE(5961), 1, sym__entity_class, - STATE(5544), 1, + STATE(5964), 1, sym_entity_class_entry, - STATE(6662), 1, + STATE(7638), 1, sym_entity_class_entry_list, - STATE(2915), 3, + STATE(3011), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4134), 20, + ACTIONS(4156), 20, sym_ARCHITECTURE, sym_COMPONENT, sym_CONFIGURATION, @@ -201151,7 +207162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_UNITS, sym_VARIABLE, sym_VIEW, - [184538] = 19, + [190845] = 19, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -201166,200 +207177,158 @@ static const uint16_t ts_small_parse_table[] = { sym_ASSERT, ACTIONS(69), 1, sym_WITH, - ACTIONS(3768), 1, + ACTIONS(3748), 1, sym_PROCESS, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(5999), 1, + STATE(6312), 1, + sym_aggregate, + STATE(6360), 1, sym_with_expression, - STATE(6014), 1, + STATE(6362), 1, sym_name, - STATE(6083), 1, - sym_aggregate, - STATE(6125), 1, + STATE(6367), 1, sym__target, - STATE(7782), 1, + STATE(7556), 1, sym_assertion, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2916), 3, + STATE(3012), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [184606] = 19, + [190913] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, + ACTIONS(1473), 1, + anon_sym_COLON, + ACTIONS(4164), 1, + anon_sym_DOT, + ACTIONS(4167), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(69), 1, - sym_WITH, - ACTIONS(3750), 1, - sym_PROCESS, - STATE(2920), 1, - sym__direct_name, - STATE(6083), 1, - sym_aggregate, - STATE(6142), 1, - sym_with_expression, - STATE(6143), 1, - sym_name, - STATE(6144), 1, - sym__target, - STATE(7348), 1, - sym_assertion, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2917), 3, + ACTIONS(4170), 1, + anon_sym_SQUOTE, + ACTIONS(4173), 1, + anon_sym_LBRACK, + ACTIONS(4176), 1, + sym_GENERIC, + ACTIONS(4179), 1, + sym_PARAMETER, + STATE(4130), 1, + sym_generic_map_aspect, + STATE(4325), 1, + sym__name_selector, + STATE(3013), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [184674] = 8, + aux_sym_name_repeat1, + STATE(4327), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1465), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_RBRACK, + [190972] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5543), 1, - sym__entity_class, - STATE(5544), 1, - sym_entity_class_entry, - STATE(6808), 1, - sym_entity_class_entry_list, - STATE(2918), 3, + ACTIONS(1635), 1, + sym_GENERIC, + STATE(7668), 1, + sym_generic_map_aspect, + STATE(3014), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4134), 20, - sym_ARCHITECTURE, + ACTIONS(4182), 20, + sym_ALIAS, + sym_ATTRIBUTE, sym_COMPONENT, - sym_CONFIGURATION, sym_CONSTANT, - sym_ENTITY, + sym_DISCONNECT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, - sym_LABEL, - sym_LITERAL, + sym_IMPURE, sym_PACKAGE, sym_PROCEDURE, - sym_PROPERTY, - sym_SEQUENCE, + sym_PURE, sym_SIGNAL, + sym_SHARED, sym_SUBTYPE, sym_TYPE, - sym_UNITS, + sym_USE, sym_VARIABLE, sym_VIEW, - [184720] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2919), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3704), 23, - sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_EXIT, - sym_FOR, - sym_IF, - sym_LOOP, - sym_NEXT, - sym_NULL, - sym_REPORT, - sym_RETURN, - sym_WAIT, - sym_WHILE, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [184760] = 16, + [191015] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1493), 1, + ACTIONS(1505), 1, anon_sym_COLON, - ACTIONS(4144), 1, + ACTIONS(4184), 1, anon_sym_DOT, - ACTIONS(4146), 1, + ACTIONS(4186), 1, anon_sym_LPAREN, - ACTIONS(4148), 1, + ACTIONS(4188), 1, anon_sym_SQUOTE, - ACTIONS(4150), 1, + ACTIONS(4190), 1, anon_sym_LBRACK, - ACTIONS(4152), 1, + ACTIONS(4192), 1, sym_GENERIC, - ACTIONS(4154), 1, + ACTIONS(4194), 1, sym_PARAMETER, - STATE(2928), 1, + STATE(3013), 1, aux_sym_name_repeat1, - STATE(3969), 1, + STATE(4130), 1, sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, - STATE(2920), 3, + STATE(4325), 1, + sym__name_selector, + STATE(3015), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4235), 5, + STATE(4327), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - ACTIONS(1487), 7, + ACTIONS(1503), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -201367,31 +207336,31 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_GT_GT, anon_sym_RBRACK, - [184821] = 5, + [191076] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2921), 3, + STATE(3016), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4156), 22, + ACTIONS(3198), 22, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, + sym_END, sym_FILE, sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, sym_PACKAGE, - sym_PORT, sym_PROCEDURE, sym_PURE, sym_SIGNAL, @@ -201401,18 +207370,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [184860] = 5, + [191115] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2922), 3, + STATE(3017), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3198), 22, + ACTIONS(3190), 22, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -201435,29 +207404,27 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [184899] = 7, + [191154] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - STATE(6539), 1, - sym_generic_map_aspect, - STATE(2923), 3, + STATE(3018), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4158), 20, + ACTIONS(3196), 22, sym_ALIAS, sym_ATTRIBUTE, + sym_BEGIN, sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, sym_FILE, + sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, @@ -201471,18 +207438,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [184942] = 5, + [191193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2924), 3, + STATE(3019), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3190), 22, + ACTIONS(3200), 22, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -201505,22 +207472,67 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [184981] = 7, + [191232] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1493), 1, + anon_sym_COLON, + ACTIONS(4184), 1, + anon_sym_DOT, + ACTIONS(4186), 1, + anon_sym_LPAREN, + ACTIONS(4188), 1, + anon_sym_SQUOTE, + ACTIONS(4190), 1, + anon_sym_LBRACK, + ACTIONS(4192), 1, + sym_GENERIC, + ACTIONS(4194), 1, + sym_PARAMETER, + STATE(3015), 1, + aux_sym_name_repeat1, + STATE(4130), 1, + sym_generic_map_aspect, + STATE(4325), 1, + sym__name_selector, + STATE(3020), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4327), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1487), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_RBRACK, + [191293] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5543), 1, + STATE(5961), 1, sym__entity_class, - STATE(5932), 1, + STATE(6127), 1, sym_entity_class_entry, - STATE(2925), 3, + STATE(3021), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4134), 20, + ACTIONS(4156), 20, sym_ARCHITECTURE, sym_COMPONENT, sym_CONFIGURATION, @@ -201541,69 +207553,587 @@ static const uint16_t ts_small_parse_table[] = { sym_UNITS, sym_VARIABLE, sym_VIEW, - [185024] = 15, + [191336] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1473), 1, - anon_sym_COLON, - ACTIONS(4160), 1, - anon_sym_DOT, - ACTIONS(4163), 1, + STATE(3022), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3184), 22, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [191375] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3023), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4196), 22, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PORT, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [191414] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4166), 1, - anon_sym_SQUOTE, - ACTIONS(4169), 1, - anon_sym_LBRACK, - ACTIONS(4172), 1, - sym_GENERIC, - ACTIONS(4175), 1, - sym_PARAMETER, - STATE(3969), 1, - sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, - STATE(2926), 4, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(8232), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3024), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [191474] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(6888), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3025), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [191534] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(6929), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3026), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [191594] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(6956), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3027), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [191654] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(6969), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3028), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [191714] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(6970), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3029), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [191774] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7020), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3030), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [191834] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3031), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3338), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [191872] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7026), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3032), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [191932] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3033), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3366), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [191970] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3034), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3368), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [192008] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7029), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3035), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(4235), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1465), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_RBRACK, - [185083] = 5, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [192068] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2927), 3, + STATE(3036), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3134), 22, + ACTIONS(3372), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, - sym_END, sym_FILE, sym_FOR, sym_FUNCTION, @@ -201619,70 +208149,57 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [185122] = 16, + [192106] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1505), 1, - anon_sym_COLON, - ACTIONS(4144), 1, - anon_sym_DOT, - ACTIONS(4146), 1, - anon_sym_LPAREN, - ACTIONS(4148), 1, - anon_sym_SQUOTE, - ACTIONS(4150), 1, - anon_sym_LBRACK, - ACTIONS(4152), 1, - sym_GENERIC, - ACTIONS(4154), 1, - sym_PARAMETER, - STATE(2926), 1, - aux_sym_name_repeat1, - STATE(3969), 1, - sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, - STATE(2928), 3, + STATE(3037), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4235), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1503), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_RBRACK, - [185183] = 5, + ACTIONS(3380), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [192144] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2929), 3, + STATE(3038), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3136), 22, + ACTIONS(3384), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, - sym_END, sym_FILE, sym_FOR, sym_FUNCTION, @@ -201698,25 +208215,24 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [185222] = 5, + [192182] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2930), 3, + STATE(3039), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3150), 22, + ACTIONS(3386), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, - sym_END, sym_FILE, sym_FOR, sym_FUNCTION, @@ -201732,7 +208248,43 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [185261] = 16, + [192220] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3834), 1, + anon_sym_LPAREN, + ACTIONS(4204), 1, + sym_PARAMETER, + STATE(3298), 1, + sym_parenthesis_group, + STATE(3040), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2097), 18, + sym_identifier, + sym_GENERIC, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [192264] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -201741,86 +208293,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7826), 1, + STATE(4275), 1, + sym_name, + STATE(7212), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2931), 3, + STATE(3041), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185321] = 16, + [192324] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(3776), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - ACTIONS(3782), 1, - sym_TYPE, - STATE(2706), 1, + STATE(2789), 1, sym__direct_name, - STATE(3915), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4209), 1, + STATE(4275), 1, sym_name, - STATE(5273), 1, - sym__incomplete_subtype_indication, - STATE(3265), 2, + STATE(7230), 1, + sym__interface_type_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(5295), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(3786), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2932), 3, + STATE(3042), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3266), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3778), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185381] = 16, + [192384] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -201829,86 +208381,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6737), 1, + STATE(4275), 1, + sym_name, + STATE(7247), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2933), 3, + STATE(3043), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185441] = 16, + [192444] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(3776), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - ACTIONS(3782), 1, - sym_TYPE, - STATE(2706), 1, + STATE(2789), 1, sym__direct_name, - STATE(3915), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4209), 1, + STATE(4275), 1, sym_name, - STATE(5093), 1, + STATE(7204), 1, sym__interface_type_indication, - STATE(3265), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(5367), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(3786), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2934), 3, + STATE(3044), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3266), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3778), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185501] = 16, + [192504] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -201917,42 +208469,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7062), 1, + STATE(4275), 1, + sym_name, + STATE(7413), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2935), 3, + STATE(3045), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185561] = 16, + [192564] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -201961,53 +208513,53 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6734), 1, + STATE(4275), 1, + sym_name, + STATE(7438), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2936), 3, + STATE(3046), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185621] = 5, + [192624] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2937), 3, + STATE(3047), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3280), 21, + ACTIONS(3388), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -202029,51 +208581,40 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [185659] = 16, + [192662] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7619), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2938), 3, + STATE(3048), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [185719] = 16, + ACTIONS(3394), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [192700] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202082,42 +208623,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6720), 1, - sym__interface_type_indication, - STATE(3230), 2, + STATE(4275), 1, + sym_name, + STATE(5530), 1, + sym__incomplete_subtype_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(5544), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2939), 3, + STATE(3049), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185779] = 16, + [192760] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202126,244 +208667,195 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6518), 1, + STATE(4275), 1, + sym_name, + STATE(7523), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2940), 3, + STATE(3050), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185839] = 8, + [192820] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3814), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, - sym_PARAMETER, - STATE(3232), 1, - sym_parenthesis_group, - STATE(2941), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2189), 18, - sym_identifier, - sym_GENERIC, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_RPAREN, - sym_variable_assignment, + ACTIONS(3796), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [185883] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(247), 1, + ACTIONS(3802), 1, sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, + STATE(2793), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(4241), 1, sym_resolution_indication, - STATE(7788), 1, + STATE(4326), 1, + sym_name, + STATE(5220), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3358), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(5408), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(3806), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2942), 3, + STATE(3051), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3357), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(3798), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [185943] = 6, + [192880] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7820), 1, - sym__entity_class, - STATE(2943), 3, + STATE(3052), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4186), 20, - sym_ARCHITECTURE, + ACTIONS(3404), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, sym_COMPONENT, - sym_CONFIGURATION, sym_CONSTANT, - sym_ENTITY, + sym_DISCONNECT, sym_FILE, + sym_FOR, sym_FUNCTION, sym_GROUP, - sym_LABEL, - sym_LITERAL, + sym_IMPURE, sym_PACKAGE, sym_PROCEDURE, - sym_PROPERTY, - sym_SEQUENCE, + sym_PURE, sym_SIGNAL, + sym_SHARED, sym_SUBTYPE, sym_TYPE, - sym_UNITS, + sym_USE, sym_VARIABLE, sym_VIEW, - [185983] = 16, + [192918] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7817), 1, - sym__interface_type_indication, - STATE(3230), 2, + ACTIONS(4208), 1, + sym_ELSE, + ACTIONS(4210), 1, + sym_ELSIF, + ACTIONS(4212), 1, + sym_END, + ACTIONS(4214), 1, + sym_IF, + ACTIONS(4216), 1, + sym_directive_error, + ACTIONS(4218), 1, + sym_directive_protect, + ACTIONS(4220), 1, + sym_directive_warning, + STATE(5906), 1, sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2944), 3, + STATE(7648), 1, + sym__directive, + STATE(3053), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4206), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186043] = 16, + STATE(7640), 8, + sym_user_directive, + sym_protect_directive, + sym_warning_directive, + sym_error_directive, + sym_if_conditional_analysis, + sym_elsif_conditional_analysis, + sym_else_conditional_analysis, + sym_end_conditional_analysis, + [192976] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6798), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2945), 3, + STATE(3054), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [186103] = 16, + ACTIONS(3410), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [193014] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202372,42 +208864,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7502), 1, + STATE(4275), 1, + sym_name, + STATE(6993), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2946), 3, + STATE(3055), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186163] = 16, + [193074] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202416,42 +208908,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6549), 1, + STATE(4275), 1, + sym_name, + STATE(6995), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2947), 3, + STATE(3056), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186223] = 16, + [193134] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202460,53 +208952,53 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6550), 1, + STATE(4275), 1, + sym_name, + STATE(7524), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2948), 3, + STATE(3057), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186283] = 5, + [193194] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2949), 3, + STATE(3058), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3432), 21, + ACTIONS(3420), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -202528,7 +209020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [186321] = 16, + [193232] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202537,42 +209029,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6551), 1, + STATE(4275), 1, + sym_name, + STATE(7816), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2950), 3, + STATE(3059), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186381] = 16, + [193292] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202581,42 +209073,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6663), 1, + STATE(4275), 1, + sym_name, + STATE(7532), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2951), 3, + STATE(3060), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186441] = 16, + [193352] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202625,42 +209117,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7821), 1, + STATE(4275), 1, + sym_name, + STATE(7567), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2952), 3, + STATE(3061), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186501] = 16, + [193412] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202669,42 +209161,108 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6656), 1, + STATE(4275), 1, + sym_name, + STATE(7569), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2953), 3, + STATE(3062), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186561] = 16, + [193472] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3063), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [193510] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3064), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4160), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PORT, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [193548] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202713,42 +209271,207 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7469), 1, + STATE(4275), 1, + sym_name, + STATE(6999), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2954), 3, + STATE(3065), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186621] = 16, + [193608] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3066), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3424), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [193646] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3067), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3426), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [193684] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3068), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3428), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [193722] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3069), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3322), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [193760] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3070), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3316), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [193798] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202757,42 +209480,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6649), 1, + STATE(4275), 1, + sym_name, + STATE(7570), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2955), 3, + STATE(3071), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [193858] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(4224), 1, + sym_based_base, + ACTIONS(4226), 1, + sym_library_constant_unit, + STATE(3020), 1, + sym__direct_name, + STATE(3813), 1, + sym__abstract_literal, + STATE(4771), 1, + sym_based_literal, + STATE(8254), 1, + sym_name, + ACTIONS(4222), 2, + sym_decimal_integer, + sym_decimal_float, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3072), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186681] = 16, + [193918] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202801,53 +209568,198 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7064), 1, + STATE(4275), 1, + sym_name, + STATE(7635), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2956), 3, + STATE(3073), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186741] = 5, + [193978] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2957), 3, + STATE(3074), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [194016] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3075), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3308), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [194054] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3076), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3306), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [194092] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4102), 1, + sym_ALIAS, + ACTIONS(4104), 1, + sym_ATTRIBUTE, + ACTIONS(4108), 1, + sym_END, + ACTIONS(4110), 1, + sym_FUNCTION, + ACTIONS(4114), 1, + sym_PROCEDURE, + ACTIONS(4116), 1, + sym_PRIVATE, + ACTIONS(4118), 1, + sym_USE, + STATE(3347), 1, + aux_sym_protected_type_declaration_repeat1, + STATE(4847), 1, + sym__protected_type_declarative_item, + STATE(7478), 1, + sym__subprogram_specification, + STATE(8185), 1, + sym_protected_type_declaration_end, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(3077), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4766), 6, + sym_use_clause, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_alias_declaration, + sym_attribute_specification, + sym_private_variable_declaration, + [194156] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3078), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3438), 21, + ACTIONS(3446), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -202869,7 +209781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [186779] = 16, + [194194] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202878,42 +209790,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7065), 1, + STATE(4275), 1, + sym_name, + STATE(7641), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2958), 3, + STATE(3079), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186839] = 16, + [194254] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202922,42 +209834,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7596), 1, + STATE(4275), 1, + sym_name, + STATE(7642), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2959), 3, + STATE(3080), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186899] = 16, + [194314] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -202966,42 +209878,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6606), 1, + STATE(4275), 1, + sym_name, + STATE(7677), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2960), 3, + STATE(3081), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [186959] = 16, + [194374] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203010,42 +209922,75 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7592), 1, + STATE(4275), 1, + sym_name, + STATE(7680), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2961), 3, + STATE(3082), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187019] = 16, + [194434] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3083), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3304), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [194472] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203054,97 +209999,119 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7855), 1, + STATE(4275), 1, + sym_name, + STATE(7683), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2962), 3, + STATE(3084), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187079] = 16, + [194532] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3085), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3460), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [194570] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6603), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2963), 3, + STATE(3086), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [187139] = 5, + ACTIONS(3462), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [194608] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2964), 3, + STATE(3087), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3384), 21, + ACTIONS(3466), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -203166,51 +210133,99 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [187177] = 16, + [194646] = 18, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7591), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2965), 3, + ACTIONS(4102), 1, + sym_ALIAS, + ACTIONS(4104), 1, + sym_ATTRIBUTE, + ACTIONS(4108), 1, + sym_END, + ACTIONS(4110), 1, + sym_FUNCTION, + ACTIONS(4114), 1, + sym_PROCEDURE, + ACTIONS(4116), 1, + sym_PRIVATE, + ACTIONS(4118), 1, + sym_USE, + STATE(3347), 1, + aux_sym_protected_type_declaration_repeat1, + STATE(4847), 1, + sym__protected_type_declarative_item, + STATE(7478), 1, + sym__subprogram_specification, + STATE(8113), 1, + sym_protected_type_declaration_end, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(3088), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [187237] = 16, + STATE(4766), 6, + sym_use_clause, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_alias_declaration, + sym_attribute_specification, + sym_private_variable_declaration, + [194710] = 18, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4102), 1, + sym_ALIAS, + ACTIONS(4104), 1, + sym_ATTRIBUTE, + ACTIONS(4108), 1, + sym_END, + ACTIONS(4110), 1, + sym_FUNCTION, + ACTIONS(4114), 1, + sym_PROCEDURE, + ACTIONS(4116), 1, + sym_PRIVATE, + ACTIONS(4118), 1, + sym_USE, + STATE(3077), 1, + aux_sym_protected_type_declaration_repeat1, + STATE(4847), 1, + sym__protected_type_declarative_item, + STATE(7478), 1, + sym__subprogram_specification, + STATE(8113), 1, + sym_protected_type_declaration_end, + ACTIONS(2173), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(3089), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4766), 6, + sym_use_clause, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_alias_declaration, + sym_attribute_specification, + sym_private_variable_declaration, + [194774] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203219,42 +210234,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6594), 1, + STATE(4275), 1, + sym_name, + STATE(7700), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2966), 3, + STATE(3090), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187297] = 16, + [194834] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203263,42 +210278,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6519), 1, + STATE(4275), 1, + sym_name, + STATE(7702), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2967), 3, + STATE(3091), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187357] = 16, + [194894] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203307,53 +210322,53 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6514), 1, + STATE(4275), 1, + sym_name, + STATE(7705), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2968), 3, + STATE(3092), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187417] = 5, + [194954] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2969), 3, + STATE(3093), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3382), 21, + ACTIONS(3470), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -203375,7 +210390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [187455] = 16, + [194992] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203384,42 +210399,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6467), 1, - sym__interface_type_indication, - STATE(3230), 2, + STATE(4275), 1, + sym_name, + STATE(5535), 1, + sym__incomplete_subtype_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(5544), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2970), 3, + STATE(3094), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187515] = 16, + [195052] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203428,42 +210443,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6511), 1, + STATE(4275), 1, + sym_name, + STATE(7731), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2971), 3, + STATE(3095), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187575] = 16, + [195112] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203472,42 +210487,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6590), 1, + STATE(4275), 1, + sym_name, + STATE(7733), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2972), 3, + STATE(3096), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187635] = 16, + [195172] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203516,42 +210531,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7857), 1, + STATE(4275), 1, + sym_name, + STATE(6698), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2973), 3, + STATE(3097), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187695] = 16, + [195232] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203560,86 +210575,75 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7569), 1, + STATE(4275), 1, + sym_name, + STATE(7734), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2974), 3, + STATE(3098), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187755] = 16, + [195292] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7566), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2975), 3, + STATE(3099), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [187815] = 16, + ACTIONS(3286), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [195330] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203648,42 +210652,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7562), 1, + STATE(4275), 1, + sym_name, + STATE(7758), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2976), 3, + STATE(3100), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187875] = 16, + [195390] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203692,42 +210696,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7535), 1, + STATE(4275), 1, + sym_name, + STATE(6700), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2977), 3, + STATE(3101), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187935] = 16, + [195450] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203736,86 +210740,76 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7865), 1, + STATE(4275), 1, + sym_name, + STATE(6705), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2978), 3, + STATE(3102), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [187995] = 16, + [195510] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7532), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2979), 3, + STATE(8020), 1, + sym__entity_class, + STATE(3103), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [188055] = 16, + ACTIONS(4228), 20, + sym_ARCHITECTURE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_CONSTANT, + sym_ENTITY, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_LABEL, + sym_LITERAL, + sym_PACKAGE, + sym_PROCEDURE, + sym_PROPERTY, + sym_SEQUENCE, + sym_SIGNAL, + sym_SUBTYPE, + sym_TYPE, + sym_UNITS, + sym_VARIABLE, + sym_VIEW, + [195550] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203824,42 +210818,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7531), 1, + STATE(4275), 1, + sym_name, + STATE(7759), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2980), 3, + STATE(3104), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188115] = 16, + [195610] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203868,42 +210862,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7508), 1, + STATE(4275), 1, + sym_name, + STATE(7760), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2981), 3, + STATE(3105), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188175] = 16, + [195670] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203912,42 +210906,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7941), 1, + STATE(4275), 1, + sym_name, + STATE(7787), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2982), 3, + STATE(3106), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188235] = 16, + [195730] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -203956,42 +210950,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7938), 1, + STATE(4275), 1, + sym_name, + STATE(7788), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2983), 3, + STATE(3107), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188295] = 16, + [195790] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204000,42 +210994,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7503), 1, + STATE(4275), 1, + sym_name, + STATE(7789), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2984), 3, + STATE(3108), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188355] = 16, + [195850] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204044,42 +211038,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7473), 1, + STATE(4275), 1, + sym_name, + STATE(6723), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2985), 3, + STATE(3109), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188415] = 16, + [195910] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204088,75 +211082,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7472), 1, + STATE(4275), 1, + sym_name, + STATE(7815), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2986), 3, + STATE(3110), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188475] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(2987), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3380), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [188513] = 16, + [195970] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204165,88 +211126,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7259), 1, + STATE(4275), 1, + sym_name, + STATE(6727), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2988), 3, + STATE(3111), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188573] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4082), 1, - sym_ALIAS, - ACTIONS(4084), 1, - sym_ATTRIBUTE, - ACTIONS(4088), 1, - sym_END, - ACTIONS(4090), 1, - sym_FUNCTION, - ACTIONS(4094), 1, - sym_PROCEDURE, - ACTIONS(4096), 1, - sym_PRIVATE, - ACTIONS(4098), 1, - sym_USE, - STATE(3213), 1, - aux_sym_protected_type_declaration_repeat1, - STATE(4546), 1, - sym__protected_type_declarative_item, - STATE(7521), 1, - sym__subprogram_specification, - STATE(7905), 1, - sym_protected_type_declaration_end, - ACTIONS(2117), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2989), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4554), 6, - sym_use_clause, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_alias_declaration, - sym_attribute_specification, - sym_private_variable_declaration, - [188637] = 16, + [196030] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204255,42 +211170,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7939), 1, + STATE(4275), 1, + sym_name, + STATE(7818), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2990), 3, + STATE(3112), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188697] = 16, + [196090] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204299,42 +211214,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6802), 1, + STATE(4275), 1, + sym_name, + STATE(7821), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2991), 3, + STATE(3113), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188757] = 16, + [196150] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204343,53 +211258,53 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6593), 1, + STATE(4275), 1, + sym_name, + STATE(6728), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2992), 3, + STATE(3114), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [188817] = 5, + [196210] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2993), 3, + STATE(3115), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3284), 21, + ACTIONS(3272), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -204411,96 +211326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [188855] = 18, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4082), 1, - sym_ALIAS, - ACTIONS(4084), 1, - sym_ATTRIBUTE, - ACTIONS(4088), 1, - sym_END, - ACTIONS(4090), 1, - sym_FUNCTION, - ACTIONS(4094), 1, - sym_PROCEDURE, - ACTIONS(4096), 1, - sym_PRIVATE, - ACTIONS(4098), 1, - sym_USE, - STATE(3213), 1, - aux_sym_protected_type_declaration_repeat1, - STATE(4546), 1, - sym__protected_type_declarative_item, - STATE(7521), 1, - sym__subprogram_specification, - STATE(7973), 1, - sym_protected_type_declaration_end, - ACTIONS(2117), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(2994), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4554), 6, - sym_use_clause, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_alias_declaration, - sym_attribute_specification, - sym_private_variable_declaration, - [188919] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4190), 1, - sym_ELSE, - ACTIONS(4192), 1, - sym_ELSIF, - ACTIONS(4194), 1, - sym_END, - ACTIONS(4196), 1, - sym_IF, - ACTIONS(4198), 1, - sym_directive_error, - ACTIONS(4200), 1, - sym_directive_protect, - ACTIONS(4202), 1, - sym_directive_warning, - STATE(5601), 1, - sym__identifier, - STATE(7460), 1, - sym__directive, - STATE(2995), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4188), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(7459), 8, - sym_user_directive, - sym_protect_directive, - sym_warning_directive, - sym_error_directive, - sym_if_conditional_analysis, - sym_elsif_conditional_analysis, - sym_else_conditional_analysis, - sym_end_conditional_analysis, - [188977] = 16, + [196248] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204509,130 +211335,75 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6823), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2996), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [189037] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, + STATE(4275), 1, sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7444), 1, + STATE(6757), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2997), 3, + STATE(3116), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189097] = 16, + [196308] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7439), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(2998), 3, + STATE(3117), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [189157] = 16, + ACTIONS(3270), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [196346] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204641,42 +211412,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7437), 1, + STATE(4275), 1, + sym_name, + STATE(6758), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2999), 3, + STATE(3118), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189217] = 16, + [196406] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204685,42 +211456,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7390), 1, + STATE(4275), 1, + sym_name, + STATE(6759), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3000), 3, + STATE(3119), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189277] = 16, + [196466] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204729,42 +211500,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6627), 1, + STATE(4275), 1, + sym_name, + STATE(6792), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3001), 3, + STATE(3120), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189337] = 16, + [196526] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204773,42 +211544,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6431), 1, + STATE(4275), 1, + sym_name, + STATE(7840), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3002), 3, + STATE(3121), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189397] = 16, + [196586] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204817,42 +211588,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7379), 1, + STATE(4275), 1, + sym_name, + STATE(6874), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3003), 3, + STATE(3122), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189457] = 16, + [196646] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204861,42 +211632,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6628), 1, + STATE(4275), 1, + sym_name, + STATE(6873), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3004), 3, + STATE(3123), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189517] = 16, + [196706] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204905,42 +211676,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6457), 1, + STATE(4275), 1, + sym_name, + STATE(6871), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3005), 3, + STATE(3124), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189577] = 16, + [196766] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204949,42 +211720,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8000), 1, + STATE(4275), 1, + sym_name, + STATE(6899), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3006), 3, + STATE(3125), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189637] = 16, + [196826] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -204993,53 +211764,53 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7875), 1, + STATE(4275), 1, + sym_name, + STATE(6927), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3007), 3, + STATE(3126), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189697] = 5, + [196886] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3008), 3, + STATE(3127), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3446), 21, + ACTIONS(3252), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -205061,7 +211832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [189735] = 16, + [196924] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205070,42 +211841,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6458), 1, + STATE(4275), 1, + sym_name, + STATE(8004), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3009), 3, + STATE(3128), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189795] = 16, + [196984] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205114,42 +211885,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, + STATE(4275), 1, + sym_name, STATE(8008), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3010), 3, + STATE(3129), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189855] = 16, + [197044] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205158,86 +211929,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6632), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3011), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [189915] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, + STATE(4275), 1, sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6652), 1, + STATE(6799), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3012), 3, + STATE(3130), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [189975] = 16, + [197104] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205246,42 +211973,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6654), 1, + STATE(4275), 1, + sym_name, + STATE(6798), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3013), 3, + STATE(3131), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190035] = 16, + [197164] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205290,174 +212017,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7376), 1, + STATE(4275), 1, + sym_name, + STATE(6794), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3014), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [190095] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3015), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3356), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [190133] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3016), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3458), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [190171] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3017), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3242), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [190209] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3018), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3214), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [190247] = 16, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3132), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [197224] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205466,42 +212061,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7214), 1, + STATE(4275), 1, + sym_name, + STATE(8050), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3019), 3, + STATE(3133), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190307] = 16, + [197284] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205510,42 +212105,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8055), 1, + STATE(4275), 1, + sym_name, + STATE(8051), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3020), 3, + STATE(3134), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190367] = 16, + [197344] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205554,42 +212149,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6655), 1, + STATE(4275), 1, + sym_name, + STATE(8053), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3021), 3, + STATE(3135), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190427] = 16, + [197404] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205598,62 +212193,62 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8059), 1, + STATE(4275), 1, + sym_name, + STATE(6901), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3022), 3, + STATE(3136), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190487] = 5, + [197464] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3023), 3, + STATE(3137), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4132), 21, + ACTIONS(3458), 21, sym_ALIAS, sym_ATTRIBUTE, + sym_BEGIN, sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, - sym_END, sym_FILE, + sym_FOR, sym_FUNCTION, - sym_GENERIC, sym_GROUP, sym_IMPURE, sym_PACKAGE, @@ -205666,51 +212261,51 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [190525] = 16, + [197502] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(3796), 1, anon_sym_LT_LT, - STATE(2697), 1, + ACTIONS(3802), 1, + sym_TYPE, + STATE(2793), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(4241), 1, sym_resolution_indication, - STATE(6680), 1, - sym__interface_type_indication, - STATE(3230), 2, + STATE(4326), 1, + sym_name, + STATE(5559), 1, + sym__incomplete_subtype_indication, + STATE(3358), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(5561), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(3806), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3024), 3, + STATE(3138), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3357), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(3798), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190585] = 16, + [197562] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205719,119 +212314,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7211), 1, + STATE(4275), 1, + sym_name, + STATE(8107), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3025), 3, + STATE(3139), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190645] = 16, + [197622] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(3776), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - ACTIONS(3782), 1, - sym_TYPE, - STATE(2706), 1, + STATE(2789), 1, sym__direct_name, - STATE(3915), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4209), 1, + STATE(4275), 1, sym_name, - STATE(5293), 1, - sym__incomplete_subtype_indication, - STATE(3265), 2, + STATE(8124), 1, + sym__interface_type_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(5295), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(3786), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3026), 3, + STATE(3140), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3266), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3778), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190705] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3027), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3454), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [190743] = 16, + [197682] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205840,42 +212402,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6906), 1, + STATE(4275), 1, + sym_name, + STATE(6691), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3028), 3, + STATE(3141), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190803] = 16, + [197742] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205884,42 +212446,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8061), 1, + STATE(4275), 1, + sym_name, + STATE(8125), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3029), 3, + STATE(3142), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190863] = 16, + [197802] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205928,42 +212490,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6481), 1, + STATE(4275), 1, + sym_name, + STATE(6900), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3030), 3, + STATE(3143), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190923] = 16, + [197862] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -205972,42 +212534,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6482), 1, + STATE(4275), 1, + sym_name, + STATE(8188), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3031), 3, + STATE(3144), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [190983] = 16, + [197922] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206016,42 +212578,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6484), 1, + STATE(4275), 1, + sym_name, + STATE(8190), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3032), 3, + STATE(3145), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191043] = 16, + [197982] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206060,42 +212622,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7207), 1, + STATE(4275), 1, + sym_name, + STATE(8192), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3033), 3, + STATE(3146), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191103] = 16, + [198042] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206104,42 +212666,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7818), 1, + STATE(4275), 1, + sym_name, + STATE(8096), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3034), 3, + STATE(3147), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191163] = 16, + [198102] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206148,97 +212710,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7007), 1, + STATE(4275), 1, + sym_name, + STATE(8229), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3035), 3, + STATE(3148), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191223] = 16, + [198162] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7338), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3036), 3, + STATE(3149), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [191283] = 5, + ACTIONS(3468), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [198200] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3037), 3, + STATE(3150), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3378), 21, + ACTIONS(3444), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -206260,7 +212811,51 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [191321] = 16, + [198238] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(3796), 1, + anon_sym_LT_LT, + ACTIONS(3802), 1, + sym_TYPE, + STATE(2793), 1, + sym__direct_name, + STATE(4241), 1, + sym_resolution_indication, + STATE(4326), 1, + sym_name, + STATE(5496), 1, + sym__incomplete_subtype_indication, + STATE(3358), 2, + sym__identifier, + sym__external_name, + STATE(5561), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(3806), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3151), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3357), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3798), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [198298] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206269,42 +212864,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8103), 1, + STATE(4275), 1, + sym_name, + STATE(6735), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3038), 3, + STATE(3152), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191381] = 16, + [198358] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206313,42 +212908,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7339), 1, + STATE(4275), 1, + sym_name, + STATE(8280), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3039), 3, + STATE(3153), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191441] = 16, + [198418] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206357,42 +212952,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8104), 1, + STATE(4275), 1, + sym_name, + STATE(8282), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3040), 3, + STATE(3154), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191501] = 16, + [198478] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206401,75 +212996,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8105), 1, + STATE(4275), 1, + sym_name, + STATE(6734), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3041), 3, + STATE(3155), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191561] = 5, + [198538] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3042), 3, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(8287), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3156), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3286), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [191599] = 16, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [198598] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206478,42 +213084,75 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(5259), 1, - sym__incomplete_subtype_indication, - STATE(3230), 2, + STATE(4275), 1, + sym_name, + STATE(8330), 1, + sym__interface_type_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(5229), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3043), 3, + STATE(3157), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191659] = 16, + [198658] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3158), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3236), 21, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_FILE, + sym_FOR, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [198696] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206522,53 +213161,53 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6522), 1, + STATE(4275), 1, + sym_name, + STATE(6733), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3044), 3, + STATE(3159), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191719] = 5, + [198756] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3045), 3, + STATE(3160), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3294), 21, + ACTIONS(3448), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -206590,18 +213229,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [191757] = 5, + [198794] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3046), 3, + STATE(3161), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3394), 21, + ACTIONS(3232), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -206623,7 +213262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [191795] = 16, + [198832] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206632,42 +213271,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6684), 1, + STATE(4275), 1, + sym_name, + STATE(8331), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3047), 3, + STATE(3162), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191855] = 16, + [198892] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206676,42 +213315,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6688), 1, + STATE(4275), 1, + sym_name, + STATE(8333), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3048), 3, + STATE(3163), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191915] = 16, + [198952] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206720,42 +213359,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6721), 1, + STATE(4275), 1, + sym_name, + STATE(7637), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3049), 3, + STATE(3164), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [191975] = 16, + [199012] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206764,108 +213403,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(5230), 1, - sym__incomplete_subtype_indication, - STATE(3230), 2, + STATE(4275), 1, + sym_name, + STATE(7202), 1, + sym__interface_type_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(5229), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3050), 3, + STATE(3165), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192035] = 5, + [199072] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3051), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3282), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, + ACTIONS(247), 1, sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [192073] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3052), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(8228), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3166), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3374), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [192111] = 16, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [199132] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206874,42 +213491,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6595), 1, + STATE(4275), 1, + sym_name, + STATE(8273), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3053), 3, + STATE(3167), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192171] = 16, + [199192] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -206918,86 +213535,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6733), 1, + STATE(4275), 1, + sym_name, + STATE(8262), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3054), 3, + STATE(3168), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192231] = 16, + [199252] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, anon_sym_LT_LT, - ACTIONS(4206), 1, - sym_based_base, - ACTIONS(4208), 1, - sym_library_constant_unit, - STATE(2920), 1, + STATE(2789), 1, sym__direct_name, - STATE(3796), 1, - sym__abstract_literal, - STATE(4620), 1, - sym_based_literal, - STATE(8034), 1, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, sym_name, - ACTIONS(4204), 2, - sym_decimal_integer, - sym_decimal_float, - STATE(4246), 2, + STATE(8258), 1, + sym__interface_type_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3055), 3, + STATE(3169), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192291] = 16, + [199312] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207006,42 +213623,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6523), 1, + STATE(4275), 1, + sym_name, + STATE(7825), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3056), 3, + STATE(3170), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192351] = 16, + [199372] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207050,42 +213667,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8127), 1, + STATE(4275), 1, + sym_name, + STATE(6680), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3057), 3, + STATE(3171), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192411] = 16, + [199432] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207094,42 +213711,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7457), 1, + STATE(4275), 1, + sym_name, + STATE(7400), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3058), 3, + STATE(3172), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192471] = 16, + [199492] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207138,42 +213755,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6525), 1, + STATE(4275), 1, + sym_name, + STATE(8209), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3059), 3, + STATE(3173), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192531] = 16, + [199552] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207182,141 +213799,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7052), 1, + STATE(4275), 1, + sym_name, + STATE(7399), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3060), 3, + STATE(3174), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192591] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3061), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3302), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [192629] = 5, + [199612] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3062), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3220), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, + ACTIONS(247), 1, sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [192667] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3063), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7397), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3175), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3460), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [192705] = 16, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [199672] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207325,108 +213887,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7249), 1, + STATE(4275), 1, + sym_name, + STATE(8204), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3064), 3, + STATE(3176), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192765] = 5, + [199732] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3065), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3222), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, + ACTIONS(247), 1, sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [192803] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3066), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(8203), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3177), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3450), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [192841] = 16, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [199792] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207435,42 +213975,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8080), 1, + STATE(4275), 1, + sym_name, + STATE(8078), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3067), 3, + STATE(3178), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192901] = 16, + [199852] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207479,42 +214019,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8069), 1, + STATE(4275), 1, + sym_name, + STATE(8072), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3068), 3, + STATE(3179), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [192961] = 16, + [199912] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207523,75 +214063,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7343), 1, + STATE(4275), 1, + sym_name, + STATE(6675), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3069), 3, + STATE(3180), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193021] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3070), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3408), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [193059] = 16, + [199972] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207600,42 +214107,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(8064), 1, + STATE(4275), 1, + sym_name, + STATE(6859), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3071), 3, + STATE(3181), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193119] = 16, + [200032] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207644,42 +214151,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6840), 1, + STATE(4275), 1, + sym_name, + STATE(8066), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3072), 3, + STATE(3182), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193179] = 16, + [200092] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207688,108 +214195,130 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7128), 1, + STATE(4275), 1, + sym_name, + STATE(7839), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3073), 3, + STATE(3183), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193239] = 5, + [200152] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3074), 3, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7837), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3184), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3352), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [193277] = 5, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [200212] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3075), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3410), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, + ACTIONS(247), 1, sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [193315] = 16, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7836), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3185), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [200272] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207798,42 +214327,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6837), 1, + STATE(4275), 1, + sym_name, + STATE(7772), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3076), 3, + STATE(3186), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193375] = 16, + [200332] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207842,42 +214371,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6836), 1, + STATE(4275), 1, + sym_name, + STATE(7767), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3077), 3, + STATE(3187), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193435] = 16, + [200392] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207886,53 +214415,53 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7054), 1, + STATE(4275), 1, + sym_name, + STATE(7766), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3078), 3, + STATE(3188), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193495] = 5, + [200452] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3079), 3, + STATE(3189), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3436), 21, + ACTIONS(3280), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -207954,7 +214483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [193533] = 16, + [200490] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -207963,42 +214492,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7127), 1, + STATE(4275), 1, + sym_name, + STATE(6835), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3080), 3, + STATE(3190), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193593] = 16, + [200550] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208007,42 +214536,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6517), 1, + STATE(4275), 1, + sym_name, + STATE(6869), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3081), 3, + STATE(3191), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193653] = 16, + [200610] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208051,42 +214580,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7126), 1, + STATE(4275), 1, + sym_name, + STATE(6673), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3082), 3, + STATE(3192), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193713] = 16, + [200670] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208095,42 +214624,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6993), 1, + STATE(4275), 1, + sym_name, + STATE(7721), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3083), 3, + STATE(3193), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193773] = 16, + [200730] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208139,42 +214668,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6515), 1, + STATE(4275), 1, + sym_name, + STATE(6795), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3084), 3, + STATE(3194), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193833] = 16, + [200790] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208183,42 +214712,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6788), 1, + STATE(4275), 1, + sym_name, + STATE(6857), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3085), 3, + STATE(3195), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193893] = 16, + [200850] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208227,42 +214756,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6992), 1, + STATE(4275), 1, + sym_name, + STATE(7720), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3086), 3, + STATE(3196), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [193953] = 16, + [200910] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208271,111 +214800,109 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7647), 1, + STATE(4275), 1, + sym_name, + STATE(7712), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3087), 3, + STATE(3197), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194013] = 18, + [200970] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4082), 1, - sym_ALIAS, - ACTIONS(4084), 1, - sym_ATTRIBUTE, - ACTIONS(4088), 1, - sym_END, - ACTIONS(4090), 1, - sym_FUNCTION, - ACTIONS(4094), 1, - sym_PROCEDURE, - ACTIONS(4096), 1, - sym_PRIVATE, - ACTIONS(4098), 1, - sym_USE, - STATE(2994), 1, - aux_sym_protected_type_declaration_repeat1, - STATE(4546), 1, - sym__protected_type_declarative_item, - STATE(7521), 1, - sym__subprogram_specification, - STATE(7905), 1, - sym_protected_type_declaration_end, - ACTIONS(2117), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(3088), 3, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7656), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3198), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4554), 6, - sym_use_clause, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_alias_declaration, - sym_attribute_specification, - sym_private_variable_declaration, - [194077] = 5, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [201030] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3089), 3, + STATE(3199), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4132), 21, + ACTIONS(3408), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, - sym_END, sym_FILE, + sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, sym_PACKAGE, - sym_PORT, sym_PROCEDURE, sym_PURE, sym_SIGNAL, @@ -208385,7 +214912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [194115] = 16, + [201068] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208394,86 +214921,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7336), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3090), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [194175] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, + STATE(4275), 1, sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6576), 1, + STATE(7650), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3091), 3, + STATE(3200), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194235] = 16, + [201128] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208482,42 +214965,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6864), 1, + STATE(4275), 1, + sym_name, + STATE(6631), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3092), 3, + STATE(3201), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194295] = 16, + [201188] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208526,42 +215009,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7405), 1, + STATE(4275), 1, + sym_name, + STATE(7647), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3093), 3, + STATE(3202), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194355] = 16, + [201248] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208570,42 +215053,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6909), 1, + STATE(4275), 1, + sym_name, + STATE(7537), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3094), 3, + STATE(3203), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194415] = 16, + [201308] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208614,42 +215097,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6908), 1, + STATE(4275), 1, + sym_name, + STATE(7534), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3095), 3, + STATE(3204), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194475] = 16, + [201368] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208658,42 +215141,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7954), 1, + STATE(4275), 1, + sym_name, + STATE(7512), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3096), 3, + STATE(3205), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194535] = 16, + [201428] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208702,53 +215185,53 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7467), 1, + STATE(4275), 1, + sym_name, + STATE(7155), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3097), 3, + STATE(3206), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194595] = 5, + [201488] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3098), 3, + STATE(3207), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3300), 21, + ACTIONS(3334), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -208770,18 +215253,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [194633] = 5, + [201526] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3099), 3, + STATE(3208), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3416), 21, + ACTIONS(3312), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -208803,18 +215286,62 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [194671] = 5, + [201564] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3100), 3, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7832), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3209), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3312), 21, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [201624] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3210), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3320), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -208836,7 +215363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [194709] = 16, + [201662] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208845,42 +215372,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7544), 1, + STATE(4275), 1, + sym_name, + STATE(7156), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3101), 3, + STATE(3211), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194769] = 16, + [201722] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208889,42 +215416,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7948), 1, + STATE(4275), 1, + sym_name, + STATE(7257), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3102), 3, + STATE(3212), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194829] = 16, + [201782] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208933,42 +215460,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6796), 1, + STATE(4275), 1, + sym_name, + STATE(7158), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3103), 3, + STATE(3213), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194889] = 16, + [201842] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -208977,42 +215504,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7946), 1, + STATE(4275), 1, + sym_name, + STATE(6630), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3104), 3, + STATE(3214), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [194949] = 16, + [201902] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209021,42 +215548,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7841), 1, + STATE(4275), 1, + sym_name, + STATE(7105), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3105), 3, + STATE(3215), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195009] = 16, + [201962] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209065,42 +215592,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7839), 1, + STATE(4275), 1, + sym_name, + STATE(6945), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3106), 3, + STATE(3216), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195069] = 16, + [202022] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209109,42 +215636,86 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, sym_name, - STATE(4043), 1, + STATE(6983), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3217), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [202082] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, sym_resolution_indication, - STATE(6794), 1, + STATE(4275), 1, + sym_name, + STATE(6628), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3107), 3, + STATE(3218), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195129] = 16, + [202142] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209153,86 +215724,185 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, sym_name, - STATE(4043), 1, + STATE(6729), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3219), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [202202] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, sym_resolution_indication, - STATE(6578), 1, + STATE(4275), 1, + sym_name, + STATE(6737), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3108), 3, + STATE(3220), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195189] = 5, + [202262] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3109), 3, + ACTIONS(247), 1, + sym_TYPE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(6972), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3221), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3396), 21, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_FILE, - sym_FOR, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [202322] = 16, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(247), 1, sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [195227] = 5, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(6954), 1, + sym__interface_type_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + STATE(7817), 2, + sym_unspecified_type_indication, + sym_subtype_indication, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3222), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [202382] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3110), 3, + STATE(3223), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3254), 21, + ACTIONS(3336), 21, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -209254,7 +215924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [195265] = 16, + [202420] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209263,42 +215933,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7493), 1, + STATE(4275), 1, + sym_name, + STATE(6839), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3111), 3, + STATE(3224), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195325] = 16, + [202480] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209307,42 +215977,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7617), 1, + STATE(4275), 1, + sym_name, + STATE(6897), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3112), 3, + STATE(3225), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195385] = 16, + [202540] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209351,42 +216021,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7607), 1, + STATE(4275), 1, + sym_name, + STATE(6893), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3113), 3, + STATE(3226), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195445] = 16, + [202600] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209395,42 +216065,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7539), 1, + STATE(4275), 1, + sym_name, + STATE(6928), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3114), 3, + STATE(3227), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195505] = 16, + [202660] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209439,42 +216109,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7536), 1, + STATE(4275), 1, + sym_name, + STATE(6838), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3115), 3, + STATE(3228), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195565] = 16, + [202720] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209483,42 +216153,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7528), 1, + STATE(4275), 1, + sym_name, + STATE(6745), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3116), 3, + STATE(3229), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195625] = 16, + [202780] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209527,42 +216197,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6579), 1, + STATE(4275), 1, + sym_name, + STATE(6822), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3117), 3, + STATE(3230), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195685] = 16, + [202840] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209571,62 +216241,62 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7357), 1, + STATE(4275), 1, + sym_name, + STATE(6821), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3118), 3, + STATE(3231), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195745] = 5, + [202900] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3119), 3, + STATE(3232), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3314), 21, + ACTIONS(4160), 21, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, + sym_END, sym_FILE, - sym_FOR, sym_FUNCTION, + sym_GENERIC, sym_GROUP, sym_IMPURE, sym_PACKAGE, @@ -209639,7 +216309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [195783] = 16, + [202938] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -209648,61 +216318,92 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(247), 1, sym_TYPE, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6726), 1, + STATE(4275), 1, + sym_name, + STATE(6820), 1, sym__interface_type_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(7419), 2, + STATE(7817), 2, sym_unspecified_type_indication, sym_subtype_indication, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3120), 3, + STATE(3233), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [195843] = 5, + [202998] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3121), 3, + STATE(3234), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2506), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [203035] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3235), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3344), 21, + ACTIONS(3388), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, - sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, + sym_END, sym_FILE, - sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, @@ -209716,70 +216417,57 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [195881] = 16, + [203072] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6725), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3122), 3, + STATE(3236), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [195941] = 5, + ACTIONS(4230), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [203109] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3123), 3, + STATE(3237), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3346), 21, + ACTIONS(3336), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, - sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, + sym_END, sym_FILE, - sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, @@ -209793,26 +216481,25 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [195979] = 5, + [203146] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3124), 3, + STATE(3238), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3422), 21, + ACTIONS(3422), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, - sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, + sym_END, sym_FILE, - sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, @@ -209826,70 +216513,205 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196017] = 16, + [203183] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, + STATE(3239), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3420), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6724), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [203220] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3240), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2450), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, sym_character_literal, sym_operator_symbol, + sym_library_constant, sym_library_constant_std_logic, - STATE(3125), 3, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [203257] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3241), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(2606), 20, sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [196077] = 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [203294] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3126), 3, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4234), 1, + anon_sym_LPAREN, + ACTIONS(4236), 1, + anon_sym_SQUOTE, + ACTIONS(4238), 1, + anon_sym_LBRACK, + ACTIONS(4240), 1, + sym_GENERIC, + ACTIONS(4242), 1, + sym_PARAMETER, + STATE(3286), 1, + aux_sym_name_repeat1, + STATE(4390), 1, + sym_generic_map_aspect, + STATE(4403), 1, + sym__name_selector, + STATE(3242), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4404), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1503), 6, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + [203351] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4234), 1, + anon_sym_LPAREN, + ACTIONS(4236), 1, + anon_sym_SQUOTE, + ACTIONS(4238), 1, + anon_sym_LBRACK, + ACTIONS(4240), 1, + sym_GENERIC, + ACTIONS(4242), 1, + sym_PARAMETER, + STATE(3242), 1, + aux_sym_name_repeat1, + STATE(4390), 1, + sym_generic_map_aspect, + STATE(4403), 1, + sym__name_selector, + STATE(3243), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4404), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1487), 6, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + [203408] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3244), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3360), 21, + ACTIONS(3442), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, - sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, + sym_END, sym_FILE, - sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, @@ -209903,158 +216725,153 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196115] = 16, + [203445] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6761), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3127), 3, + STATE(3245), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(2580), 20, sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [196175] = 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [203482] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, + STATE(3246), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3444), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6756), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3128), 3, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [203519] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3247), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [196235] = 16, + ACTIONS(3446), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [203556] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7476), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3129), 3, + STATE(3248), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [196295] = 5, + ACTIONS(3460), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [203593] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3130), 3, + STATE(3249), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3290), 21, + ACTIONS(3462), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, - sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, + sym_END, sym_FILE, - sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, @@ -210068,158 +216885,121 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196333] = 16, + [203630] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7468), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3131), 3, + STATE(3250), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [196393] = 16, + ACTIONS(3466), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [203667] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6636), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3132), 3, + STATE(3251), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [196453] = 16, + ACTIONS(3470), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [203704] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6633), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3133), 3, + STATE(3252), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [196513] = 5, + ACTIONS(4244), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [203741] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3134), 3, + STATE(3253), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3418), 21, + ACTIONS(4246), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, + sym_END, sym_FILE, - sym_FOR, sym_FUNCTION, sym_GROUP, sym_IMPURE, @@ -210233,150 +217013,114 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196551] = 16, + [203778] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6754), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3135), 3, + STATE(3254), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(2424), 20, sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [196611] = 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [203815] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6630), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3136), 3, + STATE(3255), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(2420), 20, sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [196671] = 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [203852] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(247), 1, - sym_TYPE, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7458), 1, - sym__interface_type_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - STATE(7419), 2, - sym_unspecified_type_indication, - sym_subtype_indication, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3137), 3, + STATE(3256), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4180), 4, + ACTIONS(2670), 20, sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [196731] = 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [203889] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3138), 3, + STATE(3257), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 20, + ACTIONS(2404), 20, sym_identifier, sym_GENERIC, sym_PARAMETER, @@ -210397,21 +217141,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [196768] = 5, + [203926] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3139), 3, + STATE(3258), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3282), 20, + ACTIONS(3252), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -210429,21 +217173,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196805] = 5, + [203963] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3140), 3, + STATE(3259), 3, sym__tool_directive, sym_line_comment, sym_block_comment, ACTIONS(3286), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -210461,18 +217205,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196842] = 5, + [204000] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3141), 3, + STATE(3260), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3312), 20, + ACTIONS(3410), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -210493,18 +217237,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196879] = 5, + [204037] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3142), 3, + STATE(3261), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3254), 20, + ACTIONS(3408), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -210525,21 +217269,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196916] = 5, + [204074] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3143), 3, + STATE(3262), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3290), 20, + ACTIONS(3404), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_COMPONENT, + sym_BEGIN, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -210557,18 +217301,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196953] = 5, + [204111] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3144), 3, + STATE(3263), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3280), 20, + ACTIONS(3270), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -210589,18 +217333,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [196990] = 5, + [204148] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3145), 3, + STATE(3264), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3294), 20, + ACTIONS(3272), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -210621,21 +217365,64 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197027] = 5, + [204185] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3146), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(4248), 1, + anon_sym_LPAREN, + STATE(3009), 1, + sym__identifier, + STATE(3020), 1, + sym__direct_name, + STATE(4332), 1, + sym__external_name, + STATE(5883), 1, + sym_record_element_resolution, + STATE(6350), 1, + sym_name, + STATE(7436), 1, + sym__element_resolution, + STATE(7575), 2, + sym_resolution_indication, + sym_record_resolution, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3265), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3394), 20, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4250), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [204244] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3266), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3272), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -210653,18 +217440,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197064] = 5, + [204281] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3147), 3, + STATE(3267), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3374), 20, + ACTIONS(3394), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -210685,21 +217472,53 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197101] = 5, + [204318] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3148), 3, + STATE(3268), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2528), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [204355] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3269), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3222), 20, + ACTIONS(4252), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_COMPONENT, + sym_BEGIN, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -210717,18 +217536,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197138] = 5, + [204392] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3149), 3, + STATE(3270), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3302), 20, + ACTIONS(3386), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -210749,18 +217568,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197175] = 5, + [204429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3150), 3, + STATE(3271), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3220), 20, + ACTIONS(3384), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -210781,18 +217600,50 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197212] = 5, + [204466] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3151), 3, + STATE(3272), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3280), 20, + ACTIONS(2556), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [204503] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3273), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3380), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -210813,21 +217664,53 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197249] = 5, + [204540] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3152), 3, + STATE(3274), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2666), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [204577] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3275), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4210), 20, + ACTIONS(4254), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -210845,50 +217728,50 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197286] = 5, + [204614] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3153), 3, + STATE(3276), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3704), 20, + ACTIONS(2428), 20, sym_identifier, - sym_ASSERT, - sym_BLOCK, - sym_CASE, - sym_COMPONENT, - sym_CONFIGURATION, - sym_ENTITY, - sym_FOR, - sym_IF, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_LT_LT, - [197323] = 5, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [204651] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3154), 3, + STATE(3277), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4212), 20, + ACTIONS(3286), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -210909,63 +217792,53 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197360] = 15, + [204688] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4214), 1, - anon_sym_LT_LT, - STATE(3556), 1, - sym__direct_name, - STATE(4253), 1, - sym_component_specification, - STATE(4427), 1, - sym_name, - STATE(5571), 1, - sym__label, - STATE(6464), 1, - sym_instantiation_list, - ACTIONS(4218), 2, - sym_ALL, - sym_OTHERS, - STATE(4561), 2, - sym__identifier, - sym__external_name, - ACTIONS(4220), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3155), 3, + STATE(3278), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4562), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4216), 4, + ACTIONS(2636), 20, sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [197417] = 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [204725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3156), 3, + STATE(3279), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3312), 20, + ACTIONS(3372), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_COMPONENT, + sym_BEGIN, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -210983,18 +217856,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197454] = 5, + [204762] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3157), 3, + STATE(3280), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4156), 20, + ACTIONS(3408), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -211015,18 +217888,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197491] = 5, + [204799] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3158), 3, + STATE(3281), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3314), 20, + ACTIONS(3368), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -211047,18 +217920,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197528] = 5, + [204836] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3159), 3, + STATE(3282), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3344), 20, + ACTIONS(3366), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -211079,96 +217952,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197565] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(4222), 1, - anon_sym_LPAREN, - STATE(2908), 1, - sym__identifier, - STATE(2920), 1, - sym__direct_name, - STATE(4246), 1, - sym__external_name, - STATE(5834), 1, - sym_record_element_resolution, - STATE(5848), 1, - sym_name, - STATE(7391), 1, - sym__element_resolution, - STATE(8097), 2, - sym_resolution_indication, - sym_record_resolution, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3160), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4224), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [197624] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3920), 1, - anon_sym_LPAREN, - ACTIONS(4226), 1, - sym_PARAMETER, - STATE(3272), 1, - sym_parenthesis_group, - STATE(3161), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2189), 17, - sym_identifier, - sym_BUS, - sym_GENERIC, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [197667] = 5, + [204873] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3162), 3, + STATE(3283), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 20, + ACTIONS(2470), 20, sym_identifier, sym_GENERIC, sym_PARAMETER, @@ -211189,18 +217984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [197704] = 5, + [204910] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3163), 3, + STATE(3284), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3432), 20, + ACTIONS(3338), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -211221,21 +218016,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197741] = 5, + [204947] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3164), 3, + STATE(3285), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3242), 20, + ACTIONS(3336), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -211253,18 +218048,59 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197778] = 5, + [204984] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3165), 3, + ACTIONS(4256), 1, + anon_sym_DOT, + ACTIONS(4259), 1, + anon_sym_LPAREN, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4265), 1, + anon_sym_LBRACK, + ACTIONS(4268), 1, + sym_GENERIC, + ACTIONS(4271), 1, + sym_PARAMETER, + STATE(4390), 1, + sym_generic_map_aspect, + STATE(4403), 1, + sym__name_selector, + STATE(3286), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_name_repeat1, + STATE(4404), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1465), 6, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + [205039] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3287), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 20, + ACTIONS(2602), 20, sym_identifier, sym_GENERIC, sym_PARAMETER, @@ -211285,18 +218121,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [197815] = 5, + [205076] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3166), 3, + STATE(3288), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2610), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [205113] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3289), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3458), 20, + ACTIONS(3322), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -211317,18 +218185,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197852] = 5, + [205150] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3167), 3, + STATE(3290), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3346), 20, + ACTIONS(3316), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -211349,21 +218217,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197889] = 5, + [205187] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3168), 3, + STATE(3291), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3460), 20, + ACTIONS(3304), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -211381,21 +218249,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197926] = 5, + [205224] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3169), 3, + STATE(3292), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3450), 20, + ACTIONS(3312), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -211413,18 +218281,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [197963] = 5, + [205261] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3170), 3, + STATE(3293), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3438), 20, + ACTIONS(3308), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -211445,18 +218313,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198000] = 5, + [205298] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3171), 3, + STATE(3294), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3254), 20, + ACTIONS(3306), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -211477,53 +218345,85 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198037] = 5, + [205335] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3172), 3, + STATE(3295), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3282), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [198074] = 5, + ACTIONS(2640), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [205372] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3173), 3, + STATE(3296), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3286), 20, + ACTIONS(2576), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [205409] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3297), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3304), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_COMPONENT, + sym_BEGIN, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -211541,61 +218441,188 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198111] = 16, + [205446] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(4222), 1, + STATE(3298), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2572), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, anon_sym_LPAREN, - STATE(2908), 1, - sym__identifier, - STATE(2920), 1, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [205483] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4274), 1, + anon_sym_LT_LT, + STATE(3628), 1, sym__direct_name, - STATE(4246), 1, - sym__external_name, - STATE(5834), 1, - sym_record_element_resolution, - STATE(5848), 1, + STATE(4393), 1, + sym_component_specification, + STATE(4557), 1, sym_name, - STATE(8098), 1, - sym__element_resolution, - STATE(8097), 2, - sym_resolution_indication, - sym_record_resolution, - ACTIONS(71), 3, + STATE(5600), 1, + sym__label, + STATE(6674), 1, + sym_instantiation_list, + ACTIONS(4278), 2, + sym_ALL, + sym_OTHERS, + STATE(4658), 2, + sym__identifier, + sym__external_name, + ACTIONS(4280), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3174), 3, + STATE(3299), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4704), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4224), 4, + ACTIONS(4276), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [198170] = 5, + [205540] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3175), 3, + STATE(3300), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2374), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [205577] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3301), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2674), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [205614] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3302), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2662), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [205651] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3303), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3294), 20, + ACTIONS(3470), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211616,18 +218643,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198207] = 5, + [205688] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3176), 3, + STATE(3304), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3438), 20, + ACTIONS(3306), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211648,21 +218675,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198244] = 5, + [205725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3177), 3, + STATE(3305), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3436), 20, + ACTIONS(3308), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -211680,18 +218707,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198281] = 5, + [205762] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3178), 3, + STATE(3306), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3302), 20, + ACTIONS(3316), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211712,18 +218739,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198318] = 5, + [205799] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3179), 3, + STATE(3307), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3314), 20, + ACTIONS(3322), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211744,18 +218771,50 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198355] = 5, + [205836] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3180), 3, + STATE(3308), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3432), 20, + ACTIONS(3720), 20, + sym_identifier, + sym_ASSERT, + sym_BLOCK, + sym_CASE, + sym_COMPONENT, + sym_CONFIGURATION, + sym_ENTITY, + sym_FOR, + sym_IF, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [205873] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3309), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3338), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211776,18 +218835,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198392] = 5, + [205910] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3181), 3, + STATE(3310), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3344), 20, + ACTIONS(3466), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211808,18 +218867,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198429] = 5, + [205947] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3182), 3, + STATE(3311), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3346), 20, + ACTIONS(3280), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211840,21 +218899,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198466] = 5, + [205984] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3183), 3, + STATE(3312), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3374), 20, + ACTIONS(4196), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_COMPONENT, + sym_BEGIN, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -211872,18 +218931,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198503] = 5, + [206021] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3184), 3, + STATE(3313), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3378), 20, + ACTIONS(3366), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211904,18 +218963,61 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198540] = 5, + [206058] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3185), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(4248), 1, + anon_sym_LPAREN, + STATE(3009), 1, + sym__identifier, + STATE(3020), 1, + sym__direct_name, + STATE(4332), 1, + sym__external_name, + STATE(5883), 1, + sym_record_element_resolution, + STATE(6350), 1, + sym_name, + STATE(7576), 1, + sym__element_resolution, + STATE(7575), 2, + sym_resolution_indication, + sym_record_resolution, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3314), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3380), 20, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4250), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [206117] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3315), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3462), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211936,18 +219038,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198577] = 5, + [206154] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3186), 3, + STATE(3316), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3384), 20, + ACTIONS(3460), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -211968,21 +219070,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198614] = 5, + [206191] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3187), 3, + STATE(3317), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3290), 20, + ACTIONS(3404), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -212000,21 +219102,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198651] = 5, + [206228] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3188), 3, + STATE(3318), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3408), 20, + ACTIONS(3270), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_COMPONENT, + sym_BEGIN, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -212032,21 +219134,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198688] = 5, + [206265] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3189), 3, + STATE(3319), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3454), 20, + ACTIONS(3446), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -212064,18 +219166,50 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198725] = 5, + [206302] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3190), 3, + STATE(3320), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3418), 20, + ACTIONS(2614), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [206339] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3321), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3252), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -212096,18 +219230,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198762] = 5, + [206376] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3191), 3, + STATE(3322), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3284), 20, + ACTIONS(3368), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -212128,22 +219262,29 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198799] = 5, + [206413] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3192), 3, + ACTIONS(3918), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, + sym_PARAMETER, + STATE(3417), 1, + sym_parenthesis_group, + STATE(3323), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 20, + ACTIONS(2097), 17, sym_identifier, + sym_BUS, sym_GENERIC, - sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -212151,30 +219292,26 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [198836] = 5, + [206456] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3193), 3, + STATE(3324), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3410), 20, + ACTIONS(3428), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_COMPONENT, + sym_BEGIN, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -212192,18 +219329,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [198873] = 5, + [206493] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3194), 3, + STATE(3325), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 20, + ACTIONS(2370), 20, sym_identifier, sym_GENERIC, sym_PARAMETER, @@ -212224,60 +219361,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [198910] = 15, + [206530] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4228), 1, - anon_sym_DOT, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_SQUOTE, - ACTIONS(4234), 1, - anon_sym_LBRACK, - ACTIONS(4236), 1, - sym_GENERIC, - ACTIONS(4238), 1, - sym_PARAMETER, - STATE(3237), 1, - aux_sym_name_repeat1, - STATE(4261), 1, - sym_generic_map_aspect, - STATE(4270), 1, - sym_name_selector, - STATE(3195), 3, + STATE(3326), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4271), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1487), 6, - sym_RANGE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, - [198967] = 5, + ACTIONS(3380), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [206567] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3196), 3, + STATE(3327), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3214), 20, + ACTIONS(3384), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -212298,21 +219425,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199004] = 5, + [206604] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3197), 3, + STATE(3328), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3416), 20, + ACTIONS(3386), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -212330,18 +219457,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199041] = 5, + [206641] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3198), 3, + STATE(3329), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3416), 20, + ACTIONS(3394), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -212362,50 +219489,50 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199078] = 5, + [206678] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3199), 3, + STATE(3330), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 20, - sym_identifier, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [199115] = 5, + ACTIONS(3468), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_COMPONENT, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [206715] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3200), 3, + STATE(3331), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3410), 20, + ACTIONS(3312), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -212426,18 +219553,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199152] = 5, + [206752] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3201), 3, + STATE(3332), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3408), 20, + ACTIONS(3424), 20, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -212458,18 +219585,50 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199189] = 5, + [206789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3202), 3, + STATE(3333), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 20, + ACTIONS(3426), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [206826] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3334), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2502), 20, sym_identifier, sym_GENERIC, sym_PARAMETER, @@ -212490,18 +219649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [199226] = 5, + [206863] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3203), 3, + STATE(3335), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 20, + ACTIONS(2378), 20, sym_identifier, sym_GENERIC, sym_PARAMETER, @@ -212522,50 +219681,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [199263] = 5, + [206900] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3204), 3, + STATE(3336), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3418), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [199300] = 5, + ACTIONS(2498), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [206937] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3205), 3, + STATE(3337), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3454), 20, + ACTIONS(3334), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -212586,18 +219745,53 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199337] = 5, + [206974] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3206), 3, + ACTIONS(3864), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + sym_PARAMETER, + STATE(3372), 1, + sym_parenthesis_group, + STATE(3338), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3436), 20, + ACTIONS(2097), 17, + sym_identifier, + sym_BUS, + sym_GENERIC, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [207017] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3339), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3410), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -212618,18 +219812,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199374] = 5, + [207054] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3207), 3, + STATE(3340), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 20, + ACTIONS(2474), 20, sym_identifier, sym_GENERIC, sym_PARAMETER, @@ -212650,53 +219844,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [199411] = 5, + [207091] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3208), 3, + STATE(3341), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3450), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [199448] = 5, + ACTIONS(2466), 20, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [207128] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3209), 3, + STATE(3342), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3460), 20, + ACTIONS(3444), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_COMPONENT, + sym_BEGIN, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -212714,18 +219908,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199485] = 5, + [207165] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3210), 3, + STATE(3343), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3458), 20, + ACTIONS(3442), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -212738,142 +219932,26 @@ static const uint16_t ts_small_parse_table[] = { sym_IMPURE, sym_PACKAGE, sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [199522] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3211), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3222), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [199559] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4240), 1, - anon_sym_DOT, - ACTIONS(4243), 1, - anon_sym_LPAREN, - ACTIONS(4246), 1, - anon_sym_SQUOTE, - ACTIONS(4249), 1, - anon_sym_LBRACK, - ACTIONS(4252), 1, - sym_GENERIC, - ACTIONS(4255), 1, - sym_PARAMETER, - STATE(4261), 1, - sym_generic_map_aspect, - STATE(4270), 1, - sym_name_selector, - STATE(3212), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_name_repeat1, - STATE(4271), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1465), 6, - sym_RANGE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, - [199614] = 16, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4258), 1, - sym_ALIAS, - ACTIONS(4261), 1, - sym_ATTRIBUTE, - ACTIONS(4264), 1, - sym_END, - ACTIONS(4266), 1, - sym_FUNCTION, - ACTIONS(4272), 1, - sym_PROCEDURE, - ACTIONS(4275), 1, - sym_PRIVATE, - ACTIONS(4278), 1, - sym_USE, - STATE(4546), 1, - sym__protected_type_declarative_item, - STATE(7521), 1, - sym__subprogram_specification, - ACTIONS(4269), 2, - sym_IMPURE, - sym_PURE, - STATE(8082), 2, - sym_procedure_specification, - sym_function_specification, - STATE(3213), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_protected_type_declaration_repeat1, - STATE(4554), 6, - sym_use_clause, - sym_subprogram_declaration, - sym_subprogram_instantiation_declaration, - sym_alias_declaration, - sym_attribute_specification, - sym_private_variable_declaration, - [199673] = 5, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [207202] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3214), 3, + STATE(3344), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3396), 20, + ACTIONS(3420), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -212894,21 +219972,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199710] = 5, + [207239] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3215), 3, + STATE(3345), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3360), 20, + ACTIONS(3422), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -212926,85 +220004,93 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199747] = 8, + [207276] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3868), 1, - anon_sym_LPAREN, - ACTIONS(4281), 1, - sym_PARAMETER, - STATE(3305), 1, - sym_parenthesis_group, - STATE(3216), 3, + STATE(3346), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 17, - sym_identifier, - sym_BUS, - sym_GENERIC, - sym_RANGE, - sym_REGISTER, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [199790] = 5, + ACTIONS(3468), 20, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_DISCONNECT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SIGNAL, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + sym_VIEW, + [207313] = 16, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3217), 3, + ACTIONS(4286), 1, + sym_ALIAS, + ACTIONS(4289), 1, + sym_ATTRIBUTE, + ACTIONS(4292), 1, + sym_END, + ACTIONS(4294), 1, + sym_FUNCTION, + ACTIONS(4300), 1, + sym_PROCEDURE, + ACTIONS(4303), 1, + sym_PRIVATE, + ACTIONS(4306), 1, + sym_USE, + STATE(4847), 1, + sym__protected_type_declarative_item, + STATE(7478), 1, + sym__subprogram_specification, + ACTIONS(4297), 2, + sym_IMPURE, + sym_PURE, + STATE(8303), 2, + sym_procedure_specification, + sym_function_specification, + STATE(3347), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 20, - sym_identifier, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [199827] = 5, + aux_sym_protected_type_declaration_repeat1, + STATE(4766), 6, + sym_use_clause, + sym_subprogram_declaration, + sym_subprogram_instantiation_declaration, + sym_alias_declaration, + sym_attribute_specification, + sym_private_variable_declaration, + [207372] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3218), 3, + STATE(3348), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3242), 20, + ACTIONS(3428), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -213025,18 +220111,18 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199864] = 5, + [207409] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3219), 3, + STATE(3349), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4283), 20, + ACTIONS(3426), 20, sym_ALIAS, sym_ATTRIBUTE, sym_COMPONENT, @@ -213057,21 +220143,21 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199901] = 5, + [207446] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3220), 3, + STATE(3350), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3396), 20, + ACTIONS(3424), 20, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, + sym_COMPONENT, sym_CONSTANT, sym_DISCONNECT, sym_END, @@ -213089,54 +220175,106 @@ static const uint16_t ts_small_parse_table[] = { sym_USE, sym_VARIABLE, sym_VIEW, - [199938] = 5, + [207483] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3221), 3, + ACTIONS(4309), 1, + anon_sym_DOT, + ACTIONS(4311), 1, + anon_sym_LPAREN, + ACTIONS(4313), 1, + anon_sym_SQUOTE, + ACTIONS(4315), 1, + anon_sym_LBRACK, + ACTIONS(4317), 1, + sym_GENERIC, + ACTIONS(4319), 1, + sym_PARAMETER, + STATE(3359), 1, + aux_sym_name_repeat1, + STATE(4441), 1, + sym_generic_map_aspect, + STATE(4517), 1, + sym__name_selector, + STATE(3351), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 20, - sym_identifier, - sym_GENERIC, - sym_PARAMETER, + ACTIONS(1503), 5, + sym_BUS, sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(4518), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [207539] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4309), 1, + anon_sym_DOT, + ACTIONS(4311), 1, + anon_sym_LPAREN, + ACTIONS(4313), 1, anon_sym_SQUOTE, + ACTIONS(4315), 1, anon_sym_LBRACK, - [199975] = 5, + ACTIONS(4317), 1, + sym_GENERIC, + ACTIONS(4319), 1, + sym_PARAMETER, + STATE(3351), 1, + aux_sym_name_repeat1, + STATE(4441), 1, + sym_generic_map_aspect, + STATE(4517), 1, + sym__name_selector, + STATE(3352), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1487), 5, + sym_BUS, + sym_RANGE, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + STATE(4518), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [207595] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3222), 3, + STATE(3353), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 20, + ACTIONS(2428), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -213144,31 +220282,30 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200012] = 5, + [207631] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3223), 3, + STATE(3354), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 20, + ACTIONS(2666), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -213176,63 +220313,30 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200049] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3224), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3394), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [200086] = 5, + [207667] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3225), 3, + STATE(3355), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 20, + ACTIONS(2556), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -213240,60 +220344,67 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200123] = 5, + [207703] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3226), 3, + ACTIONS(4321), 1, + anon_sym_LPAREN, + ACTIONS(4323), 1, + sym_ACCESS, + ACTIONS(4325), 1, + sym_ARRAY, + ACTIONS(4327), 1, + sym_FILE, + ACTIONS(4329), 1, + sym_NEW, + ACTIONS(4331), 1, + sym_PROTECTED, + ACTIONS(4333), 1, + sym_RANGE, + ACTIONS(4335), 1, + sym_RECORD, + STATE(6411), 1, + sym_range_constraint, + STATE(7023), 1, + sym__type_definition, + STATE(3356), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4285), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [200160] = 5, + STATE(7221), 9, + sym_array_type_definition, + sym_access_type_definition, + sym_file_type_definition, + sym_protected_type_instantiation_definition, + sym_protected_type_declaration, + sym_protected_type_body, + sym_physical_type_definition, + sym_enumeration_type_definition, + sym_record_type_definition, + [207759] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3227), 3, + STATE(3357), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 20, + ACTIONS(2606), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213304,28 +220415,27 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200197] = 5, + [207795] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3228), 3, + STATE(3358), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 20, + ACTIONS(2450), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213336,60 +220446,108 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200234] = 5, + [207831] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3229), 3, + ACTIONS(4337), 1, + anon_sym_DOT, + ACTIONS(4340), 1, + anon_sym_LPAREN, + ACTIONS(4343), 1, + anon_sym_SQUOTE, + ACTIONS(4346), 1, + anon_sym_LBRACK, + ACTIONS(4349), 1, + sym_GENERIC, + ACTIONS(4352), 1, + sym_PARAMETER, + STATE(4441), 1, + sym_generic_map_aspect, + STATE(4517), 1, + sym__name_selector, + STATE(3359), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3220), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [200271] = 5, + aux_sym_name_repeat1, + ACTIONS(1465), 5, + sym_BUS, + sym_RANGE, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + STATE(4518), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [207885] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3230), 3, + ACTIONS(4355), 1, + anon_sym_DOT, + ACTIONS(4357), 1, + anon_sym_LPAREN, + ACTIONS(4359), 1, + anon_sym_SQUOTE, + ACTIONS(4361), 1, + anon_sym_LBRACK, + ACTIONS(4363), 1, + sym_GENERIC, + ACTIONS(4365), 1, + sym_PARAMETER, + STATE(3424), 1, + aux_sym_name_repeat1, + STATE(4421), 1, + sym_generic_map_aspect, + STATE(4506), 1, + sym__name_selector, + STATE(3360), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1503), 5, + sym_BUS, + sym_RANGE, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + STATE(4507), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [207941] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3361), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 20, + ACTIONS(2528), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213400,28 +220558,27 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200308] = 5, + [207977] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3231), 3, + STATE(3362), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 20, + ACTIONS(2580), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213432,28 +220589,68 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200345] = 5, + [208013] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3232), 3, + ACTIONS(4355), 1, + anon_sym_DOT, + ACTIONS(4357), 1, + anon_sym_LPAREN, + ACTIONS(4359), 1, + anon_sym_SQUOTE, + ACTIONS(4361), 1, + anon_sym_LBRACK, + ACTIONS(4363), 1, + sym_GENERIC, + ACTIONS(4365), 1, + sym_PARAMETER, + STATE(3360), 1, + aux_sym_name_repeat1, + STATE(4421), 1, + sym_generic_map_aspect, + STATE(4506), 1, + sym__name_selector, + STATE(3363), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1487), 5, + sym_BUS, + sym_RANGE, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + STATE(4507), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [208069] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3364), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 20, + ACTIONS(2670), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213464,31 +220661,31 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200382] = 5, + [208105] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3233), 3, + STATE(3365), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 20, + ACTIONS(2470), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -213496,95 +220693,70 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200419] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3234), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3384), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [200456] = 5, + [208141] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3235), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(5646), 1, + sym_name, + STATE(7612), 1, + sym_signal_list, + STATE(7613), 1, + sym_guarded_signal_specification, + ACTIONS(4367), 2, + sym_ALL, + sym_OTHERS, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3366), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3382), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [200493] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [208195] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3236), 3, + STATE(3367), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 20, + ACTIONS(2466), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -213592,102 +220764,57 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200530] = 15, + [208231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4228), 1, - anon_sym_DOT, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_SQUOTE, - ACTIONS(4234), 1, - anon_sym_LBRACK, - ACTIONS(4236), 1, - sym_GENERIC, - ACTIONS(4238), 1, - sym_PARAMETER, - STATE(3212), 1, - aux_sym_name_repeat1, - STATE(4261), 1, - sym_generic_map_aspect, - STATE(4270), 1, - sym_name_selector, - STATE(3237), 3, + STATE(3368), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4271), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1503), 6, + ACTIONS(2666), 19, + sym_identifier, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, - [200587] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3238), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3380), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [200624] = 5, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [208267] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3239), 3, + STATE(3369), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 20, + ACTIONS(2636), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213698,28 +220825,27 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200661] = 5, + [208303] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3240), 3, + STATE(3370), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 20, + ACTIONS(2610), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213730,28 +220856,27 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200698] = 5, + [208339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3241), 3, + STATE(3371), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 20, + ACTIONS(2576), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213762,28 +220887,27 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200735] = 5, + [208375] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3242), 3, + STATE(3372), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 20, + ACTIONS(2572), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213794,31 +220918,31 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200772] = 5, + [208411] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3243), 3, + STATE(3373), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 20, + ACTIONS(2610), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -213826,60 +220950,26 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200809] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3244), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3378), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [200846] = 5, + [208447] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3245), 3, + STATE(3374), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 20, + ACTIONS(2506), 19, sym_identifier, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -213890,59 +220980,25 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200883] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3246), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4287), 20, - sym_ALIAS, - sym_ATTRIBUTE, - sym_COMPONENT, - sym_CONSTANT, - sym_DISCONNECT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SIGNAL, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - sym_VIEW, - [200920] = 5, + [208483] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3247), 3, + STATE(3375), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 19, + ACTIONS(2424), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -213962,24 +221018,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200956] = 5, + [208519] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3248), 3, + STATE(3376), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 19, + ACTIONS(2370), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -213989,69 +221044,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [200992] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4291), 1, - sym_ACCESS, - ACTIONS(4293), 1, - sym_ARRAY, - ACTIONS(4295), 1, - sym_FILE, - ACTIONS(4297), 1, - sym_NEW, - ACTIONS(4299), 1, - sym_PROTECTED, - ACTIONS(4301), 1, - sym_RANGE, - ACTIONS(4303), 1, - sym_RECORD, - STATE(6382), 1, - sym_range_constraint, - STATE(6874), 1, - sym__type_definition, - STATE(3249), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(6531), 9, - sym_array_type_definition, - sym_access_type_definition, - sym_file_type_definition, - sym_protected_type_instantiation_definition, - sym_protected_type_declaration, - sym_protected_type_body, - sym_physical_type_definition, - sym_enumeration_type_definition, - sym_record_type_definition, - [201048] = 5, + [208555] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3250), 3, + STATE(3377), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 19, + ACTIONS(2502), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214061,150 +221075,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201084] = 14, + [208591] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4305), 1, - anon_sym_DOT, - ACTIONS(4308), 1, + ACTIONS(3954), 1, anon_sym_LPAREN, - ACTIONS(4311), 1, - anon_sym_SQUOTE, - ACTIONS(4314), 1, - anon_sym_LBRACK, - ACTIONS(4317), 1, - sym_GENERIC, - ACTIONS(4320), 1, + ACTIONS(4369), 1, sym_PARAMETER, - STATE(4285), 1, - sym_generic_map_aspect, - STATE(4344), 1, - sym_name_selector, - STATE(3251), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_name_repeat1, - ACTIONS(1465), 5, - sym_BUS, - sym_RANGE, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - STATE(4345), 5, - sym_function_call, + STATE(3451), 1, sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [201138] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4291), 1, - sym_ACCESS, - ACTIONS(4293), 1, - sym_ARRAY, - ACTIONS(4295), 1, - sym_FILE, - ACTIONS(4297), 1, - sym_NEW, - ACTIONS(4299), 1, - sym_PROTECTED, - ACTIONS(4301), 1, - sym_RANGE, - ACTIONS(4303), 1, - sym_RECORD, - STATE(6382), 1, - sym_range_constraint, - STATE(7138), 1, - sym__type_definition, - STATE(3252), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(6531), 9, - sym_array_type_definition, - sym_access_type_definition, - sym_file_type_definition, - sym_protected_type_instantiation_definition, - sym_protected_type_declaration, - sym_protected_type_body, - sym_physical_type_definition, - sym_enumeration_type_definition, - sym_record_type_definition, - [201194] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4291), 1, - sym_ACCESS, - ACTIONS(4293), 1, - sym_ARRAY, - ACTIONS(4295), 1, - sym_FILE, - ACTIONS(4297), 1, - sym_NEW, - ACTIONS(4299), 1, - sym_PROTECTED, - ACTIONS(4301), 1, - sym_RANGE, - ACTIONS(4303), 1, - sym_RECORD, - STATE(6382), 1, - sym_range_constraint, - STATE(6653), 1, - sym__type_definition, - STATE(3253), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(6531), 9, - sym_array_type_definition, - sym_access_type_definition, - sym_file_type_definition, - sym_protected_type_instantiation_definition, - sym_protected_type_declaration, - sym_protected_type_body, - sym_physical_type_definition, - sym_enumeration_type_definition, - sym_record_type_definition, - [201250] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3254), 3, + STATE(3378), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 19, + ACTIONS(2097), 16, sym_identifier, - sym_BUS, sym_GENERIC, - sym_PARAMETER, + sym_IS, + sym_OPEN, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214213,43 +221111,41 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201286] = 15, + [208633] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4289), 1, + ACTIONS(4321), 1, anon_sym_LPAREN, - ACTIONS(4291), 1, + ACTIONS(4323), 1, sym_ACCESS, - ACTIONS(4293), 1, + ACTIONS(4325), 1, sym_ARRAY, - ACTIONS(4295), 1, + ACTIONS(4327), 1, sym_FILE, - ACTIONS(4297), 1, + ACTIONS(4329), 1, sym_NEW, - ACTIONS(4299), 1, + ACTIONS(4331), 1, sym_PROTECTED, - ACTIONS(4301), 1, + ACTIONS(4333), 1, sym_RANGE, - ACTIONS(4303), 1, + ACTIONS(4335), 1, sym_RECORD, - STATE(6382), 1, + STATE(6411), 1, sym_range_constraint, - STATE(6526), 1, + STATE(6816), 1, sym__type_definition, - STATE(3255), 3, + STATE(3379), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(6531), 9, + STATE(7221), 9, sym_array_type_definition, sym_access_type_definition, sym_file_type_definition, @@ -214259,89 +221155,18 @@ static const uint16_t ts_small_parse_table[] = { sym_physical_type_definition, sym_enumeration_type_definition, sym_record_type_definition, - [201342] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4326), 1, - anon_sym_LPAREN, - ACTIONS(4329), 1, - anon_sym_SQUOTE, - ACTIONS(4332), 1, - anon_sym_LBRACK, - ACTIONS(4335), 1, - sym_GENERIC, - ACTIONS(4338), 1, - sym_PARAMETER, - STATE(4267), 1, - sym_generic_map_aspect, - STATE(4394), 1, - sym_name_selector, - STATE(3256), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_name_repeat1, - ACTIONS(1465), 5, - sym_BUS, - sym_RANGE, - sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - STATE(4395), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [201396] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3257), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2666), 19, - sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_REGISTER, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [201432] = 5, + [208689] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3258), 3, + STATE(3380), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 19, + ACTIONS(2506), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -214361,58 +221186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201468] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(4341), 1, - anon_sym_QMARK, - STATE(2920), 1, - sym__direct_name, - STATE(6188), 1, - sym__target, - STATE(4246), 2, - sym__identifier, - sym__external_name, - STATE(6083), 2, - sym_name, - sym_aggregate, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3259), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [201522] = 5, + [208725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3260), 3, + STATE(3381), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 19, + ACTIONS(2370), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -214432,186 +221217,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201558] = 15, + [208761] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4343), 1, + ACTIONS(4371), 1, anon_sym_DOT, - ACTIONS(4345), 1, + ACTIONS(4374), 1, anon_sym_LPAREN, - ACTIONS(4347), 1, + ACTIONS(4377), 1, anon_sym_SQUOTE, - ACTIONS(4349), 1, + ACTIONS(4380), 1, anon_sym_LBRACK, - ACTIONS(4351), 1, + ACTIONS(4383), 1, sym_GENERIC, - ACTIONS(4353), 1, + ACTIONS(4386), 1, sym_PARAMETER, - STATE(3262), 1, - aux_sym_name_repeat1, - STATE(4267), 1, + STATE(4433), 1, sym_generic_map_aspect, - STATE(4394), 1, - sym_name_selector, - STATE(3261), 3, + STATE(4461), 1, + sym__name_selector, + STATE(3382), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1487), 5, - sym_BUS, - sym_RANGE, - sym_REGISTER, + aux_sym_name_repeat1, + ACTIONS(1465), 5, + sym_END, + sym_FOR, + sym_PORT, + sym_USE, anon_sym_SEMI, - sym_variable_assignment, - STATE(4395), 5, + STATE(4462), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [201614] = 15, + [208815] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4343), 1, - anon_sym_DOT, - ACTIONS(4345), 1, - anon_sym_LPAREN, - ACTIONS(4347), 1, - anon_sym_SQUOTE, - ACTIONS(4349), 1, - anon_sym_LBRACK, - ACTIONS(4351), 1, - sym_GENERIC, - ACTIONS(4353), 1, - sym_PARAMETER, - STATE(3256), 1, - aux_sym_name_repeat1, - STATE(4267), 1, - sym_generic_map_aspect, - STATE(4394), 1, - sym_name_selector, - STATE(3262), 3, + STATE(3383), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1503), 5, + ACTIONS(2502), 19, + sym_identifier, sym_BUS, + sym_GENERIC, + sym_PARAMETER, sym_RANGE, sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - STATE(4395), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [201670] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4291), 1, - sym_ACCESS, - ACTIONS(4293), 1, - sym_ARRAY, - ACTIONS(4295), 1, - sym_FILE, - ACTIONS(4297), 1, - sym_NEW, - ACTIONS(4299), 1, - sym_PROTECTED, - ACTIONS(4301), 1, - sym_RANGE, - ACTIONS(4303), 1, - sym_RECORD, - STATE(6382), 1, - sym_range_constraint, - STATE(7431), 1, - sym__type_definition, - STATE(3263), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(6531), 9, - sym_array_type_definition, - sym_access_type_definition, - sym_file_type_definition, - sym_protected_type_instantiation_definition, - sym_protected_type_declaration, - sym_protected_type_body, - sym_physical_type_definition, - sym_enumeration_type_definition, - sym_record_type_definition, - [201726] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(5574), 1, - sym_name, - STATE(7401), 1, - sym_signal_list, - STATE(7402), 1, - sym_guarded_signal_specification, - ACTIONS(4355), 2, - sym_ALL, - sym_OTHERS, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3264), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [201780] = 5, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + sym_variable_assignment, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [208851] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3265), 3, + STATE(3384), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 19, + ACTIONS(2498), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214621,28 +221315,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201816] = 5, + [208887] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3266), 3, + STATE(3385), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 19, + ACTIONS(2474), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214652,28 +221346,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201852] = 5, + [208923] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3267), 3, + STATE(3386), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 19, + ACTIONS(2670), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214683,28 +221377,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201888] = 5, + [208959] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3268), 3, + STATE(3387), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 19, + ACTIONS(2580), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214714,23 +221408,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201924] = 5, + [208995] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3269), 3, + STATE(3388), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 19, + ACTIONS(2498), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -214750,18 +221443,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201960] = 5, + [209031] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3270), 3, + STATE(3389), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 19, + ACTIONS(2556), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -214781,23 +221474,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [201996] = 5, + [209067] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3271), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(4389), 1, + anon_sym_QMARK, + STATE(3020), 1, + sym__direct_name, + STATE(6540), 1, + sym__target, + STATE(4332), 2, + sym__identifier, + sym__external_name, + STATE(6312), 2, + sym_name, + sym_aggregate, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3390), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 19, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [209121] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3391), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2576), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214807,28 +221541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202032] = 5, + [209157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3272), 3, + STATE(3392), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 19, + ACTIONS(2636), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214838,23 +221572,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202068] = 5, + [209193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3273), 3, + STATE(3393), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 19, + ACTIONS(2378), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -214874,24 +221607,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202104] = 5, + [209229] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3274), 3, + ACTIONS(4321), 1, + anon_sym_LPAREN, + ACTIONS(4323), 1, + sym_ACCESS, + ACTIONS(4325), 1, + sym_ARRAY, + ACTIONS(4327), 1, + sym_FILE, + ACTIONS(4329), 1, + sym_NEW, + ACTIONS(4331), 1, + sym_PROTECTED, + ACTIONS(4333), 1, + sym_RANGE, + ACTIONS(4335), 1, + sym_RECORD, + STATE(6411), 1, + sym_range_constraint, + STATE(6808), 1, + sym__type_definition, + STATE(3394), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(7221), 9, + sym_array_type_definition, + sym_access_type_definition, + sym_file_type_definition, + sym_protected_type_instantiation_definition, + sym_protected_type_declaration, + sym_protected_type_body, + sym_physical_type_definition, + sym_enumeration_type_definition, + sym_record_type_definition, + [209285] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3395), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 19, + ACTIONS(2474), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214901,22 +221674,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202140] = 5, + [209321] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3275), 3, + STATE(3396), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 19, + ACTIONS(2466), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -214936,24 +221710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202176] = 5, + [209357] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3276), 3, + STATE(3397), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 19, + ACTIONS(2378), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214963,27 +221736,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202212] = 5, + [209393] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3277), 3, + STATE(3398), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 19, + ACTIONS(2614), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -214993,23 +221768,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202248] = 5, + [209429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3278), 3, + STATE(3399), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 19, + ACTIONS(2662), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215029,23 +221803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202284] = 5, + [209465] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3279), 3, + STATE(3400), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 19, + ACTIONS(2674), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -215055,12 +221830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202320] = 14, + [209501] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -215069,49 +221843,49 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(5574), 1, + STATE(5646), 1, sym_name, - STATE(7401), 1, + STATE(7612), 1, sym_signal_list, - STATE(7426), 1, + STATE(7645), 1, sym_guarded_signal_specification, - ACTIONS(4355), 2, + ACTIONS(4367), 2, sym_ALL, sym_OTHERS, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3280), 3, + STATE(3401), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [202374] = 5, + [209555] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3281), 3, + STATE(3402), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 19, + ACTIONS(2470), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215131,23 +221905,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202410] = 5, + [209591] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3282), 3, + STATE(3403), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 19, + ACTIONS(2374), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -215157,54 +221932,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202446] = 5, + [209627] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3283), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(5646), 1, + sym_name, + STATE(7612), 1, + sym_signal_list, + STATE(7710), 1, + sym_guarded_signal_specification, + ACTIONS(4367), 2, + sym_ALL, + sym_OTHERS, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3404), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 19, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [202482] = 5, + [209681] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3284), 3, + STATE(3405), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 19, + ACTIONS(2614), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215224,18 +222007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202518] = 5, + [209717] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3285), 3, + STATE(3406), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 19, + ACTIONS(2662), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215255,18 +222038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202554] = 5, + [209753] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3286), 3, + STATE(3407), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 19, + ACTIONS(2674), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215286,18 +222069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202590] = 5, + [209789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3287), 3, + STATE(3408), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 19, + ACTIONS(2374), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215317,24 +222100,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202626] = 5, + [209825] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3288), 3, + STATE(3409), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 19, + ACTIONS(2640), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -215344,148 +222126,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202662] = 14, + [209861] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4357), 1, - anon_sym_DOT, - ACTIONS(4359), 1, - anon_sym_LPAREN, - ACTIONS(4361), 1, - anon_sym_SQUOTE, - ACTIONS(4363), 1, - anon_sym_LBRACK, - ACTIONS(4365), 1, - sym_PARAMETER, - STATE(3299), 1, - aux_sym_name_repeat1, - STATE(4291), 1, - sym_generic_map_aspect, - STATE(4314), 1, - sym_name_selector, - STATE(3289), 3, + STATE(3410), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4312), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1503), 6, - sym_END, - sym_FOR, + ACTIONS(2602), 19, + sym_identifier, + sym_BUS, sym_GENERIC, - sym_PORT, - sym_USE, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_SEMI, - [202716] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4357), 1, anon_sym_DOT, - ACTIONS(4359), 1, anon_sym_LPAREN, - ACTIONS(4361), 1, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_LT_LT, anon_sym_SQUOTE, - ACTIONS(4363), 1, anon_sym_LBRACK, - ACTIONS(4365), 1, - sym_PARAMETER, - STATE(3289), 1, - aux_sym_name_repeat1, - STATE(4291), 1, - sym_generic_map_aspect, - STATE(4314), 1, - sym_name_selector, - STATE(3290), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4312), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - ACTIONS(1487), 6, - sym_END, - sym_FOR, - sym_GENERIC, - sym_PORT, - sym_USE, - anon_sym_SEMI, - [202770] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4291), 1, - sym_ACCESS, - ACTIONS(4293), 1, - sym_ARRAY, - ACTIONS(4295), 1, - sym_FILE, - ACTIONS(4297), 1, - sym_NEW, - ACTIONS(4299), 1, - sym_PROTECTED, - ACTIONS(4301), 1, - sym_RANGE, - ACTIONS(4303), 1, - sym_RECORD, - STATE(6382), 1, - sym_range_constraint, - STATE(6749), 1, - sym__type_definition, - STATE(3291), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(6531), 9, - sym_array_type_definition, - sym_access_type_definition, - sym_file_type_definition, - sym_protected_type_instantiation_definition, - sym_protected_type_declaration, - sym_protected_type_body, - sym_physical_type_definition, - sym_enumeration_type_definition, - sym_record_type_definition, - [202826] = 5, + [209897] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3292), 3, + STATE(3411), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 19, + ACTIONS(2640), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -215495,12 +222189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [202862] = 14, + [209933] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -215509,136 +222202,127 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(5574), 1, + STATE(5646), 1, sym_name, - STATE(7401), 1, + STATE(7612), 1, sym_signal_list, - STATE(7491), 1, + STATE(7770), 1, sym_guarded_signal_specification, - ACTIONS(4355), 2, + ACTIONS(4367), 2, sym_ALL, sym_OTHERS, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3293), 3, + STATE(3412), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [202916] = 15, + [209987] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4367), 1, - anon_sym_DOT, - ACTIONS(4369), 1, + ACTIONS(4321), 1, anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_SQUOTE, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4375), 1, - sym_GENERIC, - ACTIONS(4377), 1, - sym_PARAMETER, - STATE(3251), 1, - aux_sym_name_repeat1, - STATE(4285), 1, - sym_generic_map_aspect, - STATE(4344), 1, - sym_name_selector, - STATE(3294), 3, + ACTIONS(4323), 1, + sym_ACCESS, + ACTIONS(4325), 1, + sym_ARRAY, + ACTIONS(4327), 1, + sym_FILE, + ACTIONS(4329), 1, + sym_NEW, + ACTIONS(4331), 1, + sym_PROTECTED, + ACTIONS(4333), 1, + sym_RANGE, + ACTIONS(4335), 1, + sym_RECORD, + STATE(6411), 1, + sym_range_constraint, + STATE(7214), 1, + sym__type_definition, + STATE(3413), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1503), 5, - sym_BUS, - sym_RANGE, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - STATE(4345), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [202972] = 15, + STATE(7221), 9, + sym_array_type_definition, + sym_access_type_definition, + sym_file_type_definition, + sym_protected_type_instantiation_definition, + sym_protected_type_declaration, + sym_protected_type_body, + sym_physical_type_definition, + sym_enumeration_type_definition, + sym_record_type_definition, + [210043] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4367), 1, - anon_sym_DOT, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_SQUOTE, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4375), 1, - sym_GENERIC, - ACTIONS(4377), 1, - sym_PARAMETER, - STATE(3294), 1, - aux_sym_name_repeat1, - STATE(4285), 1, - sym_generic_map_aspect, - STATE(4344), 1, - sym_name_selector, - STATE(3295), 3, + STATE(3414), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1487), 5, + ACTIONS(2404), 19, + sym_identifier, sym_BUS, + sym_GENERIC, + sym_PARAMETER, sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - STATE(4345), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [203028] = 5, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [210079] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3296), 3, + STATE(3415), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 19, + ACTIONS(2602), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -215648,23 +222332,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203064] = 5, + [210115] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3297), 3, + STATE(3416), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 19, + ACTIONS(2420), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215684,18 +222367,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203100] = 5, + [210151] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3298), 3, + STATE(3417), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 19, + ACTIONS(2572), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215715,63 +222398,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203136] = 14, + [210187] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4321), 1, + anon_sym_LPAREN, + ACTIONS(4323), 1, + sym_ACCESS, + ACTIONS(4325), 1, + sym_ARRAY, + ACTIONS(4327), 1, + sym_FILE, + ACTIONS(4329), 1, + sym_NEW, + ACTIONS(4331), 1, + sym_PROTECTED, + ACTIONS(4333), 1, + sym_RANGE, + ACTIONS(4335), 1, + sym_RECORD, + STATE(6411), 1, + sym_range_constraint, + STATE(7455), 1, + sym__type_definition, + STATE(3418), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(7221), 9, + sym_array_type_definition, + sym_access_type_definition, + sym_file_type_definition, + sym_protected_type_instantiation_definition, + sym_protected_type_declaration, + sym_protected_type_body, + sym_physical_type_definition, + sym_enumeration_type_definition, + sym_record_type_definition, + [210243] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4379), 1, + ACTIONS(4391), 1, anon_sym_DOT, - ACTIONS(4382), 1, + ACTIONS(4393), 1, anon_sym_LPAREN, - ACTIONS(4385), 1, + ACTIONS(4395), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4397), 1, anon_sym_LBRACK, - ACTIONS(4391), 1, - sym_GENERIC, - ACTIONS(4394), 1, + ACTIONS(4399), 1, sym_PARAMETER, - STATE(4291), 1, + STATE(3420), 1, + aux_sym_name_repeat1, + STATE(4433), 1, sym_generic_map_aspect, - STATE(4314), 1, - sym_name_selector, - STATE(3299), 4, + STATE(4461), 1, + sym__name_selector, + STATE(3419), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - ACTIONS(1465), 5, + STATE(4462), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + ACTIONS(1487), 6, sym_END, sym_FOR, + sym_GENERIC, sym_PORT, sym_USE, anon_sym_SEMI, - STATE(4312), 5, + [210297] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4391), 1, + anon_sym_DOT, + ACTIONS(4393), 1, + anon_sym_LPAREN, + ACTIONS(4395), 1, + anon_sym_SQUOTE, + ACTIONS(4397), 1, + anon_sym_LBRACK, + ACTIONS(4399), 1, + sym_PARAMETER, + STATE(3382), 1, + aux_sym_name_repeat1, + STATE(4433), 1, + sym_generic_map_aspect, + STATE(4461), 1, + sym__name_selector, + STATE(3420), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4462), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [203190] = 5, + ACTIONS(1503), 6, + sym_END, + sym_FOR, + sym_GENERIC, + sym_PORT, + sym_USE, + anon_sym_SEMI, + [210351] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3300), 3, + STATE(3421), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 19, + ACTIONS(2404), 19, sym_identifier, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -215781,54 +222546,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203226] = 5, + [210387] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3301), 3, + ACTIONS(4321), 1, + anon_sym_LPAREN, + ACTIONS(4323), 1, + sym_ACCESS, + ACTIONS(4325), 1, + sym_ARRAY, + ACTIONS(4327), 1, + sym_FILE, + ACTIONS(4329), 1, + sym_NEW, + ACTIONS(4331), 1, + sym_PROTECTED, + ACTIONS(4333), 1, + sym_RANGE, + ACTIONS(4335), 1, + sym_RECORD, + STATE(6411), 1, + sym_range_constraint, + STATE(7213), 1, + sym__type_definition, + STATE(3422), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 19, - sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203262] = 5, + STATE(7221), 9, + sym_array_type_definition, + sym_access_type_definition, + sym_file_type_definition, + sym_protected_type_instantiation_definition, + sym_protected_type_declaration, + sym_protected_type_body, + sym_physical_type_definition, + sym_enumeration_type_definition, + sym_record_type_definition, + [210443] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3302), 3, + STATE(3423), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 19, + ACTIONS(2528), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215848,49 +222622,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203298] = 5, + [210479] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3303), 3, + ACTIONS(4401), 1, + anon_sym_DOT, + ACTIONS(4404), 1, + anon_sym_LPAREN, + ACTIONS(4407), 1, + anon_sym_SQUOTE, + ACTIONS(4410), 1, + anon_sym_LBRACK, + ACTIONS(4413), 1, + sym_GENERIC, + ACTIONS(4416), 1, + sym_PARAMETER, + STATE(4421), 1, + sym_generic_map_aspect, + STATE(4506), 1, + sym__name_selector, + STATE(3424), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 19, - sym_identifier, + aux_sym_name_repeat1, + ACTIONS(1465), 5, sym_BUS, - sym_GENERIC, - sym_PARAMETER, sym_RANGE, sym_REGISTER, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203334] = 5, + STATE(4507), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [210533] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3304), 3, + STATE(3425), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 19, + ACTIONS(2420), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215910,18 +222693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203370] = 5, + [210569] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3305), 3, + STATE(3426), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 19, + ACTIONS(2424), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215941,18 +222724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203406] = 5, + [210605] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3306), 3, + STATE(3427), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 19, + ACTIONS(2428), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -215972,14 +222755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203442] = 5, + [210641] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3307), 3, + STATE(3428), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -216003,7 +222786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203478] = 14, + [210677] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -216012,49 +222795,50 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(4419), 1, + sym_POSTPONED, + ACTIONS(4421), 1, + sym_PROCESS, + STATE(3020), 1, sym__direct_name, - STATE(5574), 1, + STATE(7283), 1, + sym_assertion, + STATE(8035), 1, sym_name, - STATE(7401), 1, - sym_signal_list, - STATE(7551), 1, - sym_guarded_signal_specification, - ACTIONS(4355), 2, - sym_ALL, - sym_OTHERS, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3308), 3, + STATE(3429), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [203532] = 5, + [210733] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3309), 3, + STATE(3430), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 19, + ACTIONS(2606), 19, sym_identifier, sym_BUS, sym_GENERIC, @@ -216074,148 +222858,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203568] = 5, + [210769] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3310), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(247), 1, + sym_TYPE, + STATE(3020), 1, + sym__direct_name, + STATE(5344), 1, + sym_name, + STATE(5407), 1, + sym_unspecified_type_indication, + STATE(5410), 1, + sym__incomplete_type_mark, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3431), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 19, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_REGISTER, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203604] = 5, + [210822] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3311), 3, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(3435), 1, + sym__attribute, + STATE(3455), 1, + sym_parenthesis_expression, + STATE(3456), 1, + sym__attribute_designator, + STATE(3432), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 19, + ACTIONS(4425), 4, sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_REGISTER, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203640] = 5, + ACTIONS(4427), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [210867] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3312), 3, + ACTIONS(4429), 1, + anon_sym_LPAREN, + STATE(2124), 1, + sym__attribute_designator, + STATE(2126), 1, + sym_parenthesis_expression, + STATE(2207), 1, + sym__attribute, + STATE(3433), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 19, + ACTIONS(4431), 4, sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_REGISTER, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203676] = 8, + ACTIONS(4433), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [210912] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4068), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4397), 1, - sym_PARAMETER, - STATE(3327), 1, - sym_parenthesis_group, - STATE(3313), 3, + ACTIONS(4435), 1, + anon_sym_LT_LT, + STATE(2952), 1, + sym__direct_name, + STATE(4221), 1, + sym_resolution_indication, + STATE(4496), 1, + sym_name, + STATE(7745), 1, + sym_subtype_indication, + STATE(3748), 2, + sym__identifier, + sym__external_name, + ACTIONS(4439), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3434), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 16, + STATE(3744), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4437), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203718] = 5, + [210965] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3314), 3, + STATE(3435), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 19, + ACTIONS(2378), 18, sym_identifier, - sym_BUS, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, sym_character_literal, @@ -216227,132 +223033,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203754] = 5, + [211000] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3315), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4441), 1, + anon_sym_LT_LT, + STATE(2810), 1, + sym__direct_name, + STATE(4245), 1, + sym_resolution_indication, + STATE(4391), 1, + sym_name, + STATE(5356), 1, + sym_subtype_indication, + STATE(3517), 2, + sym__identifier, + sym__external_name, + ACTIONS(4445), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3436), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 19, + STATE(3504), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4443), 4, sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_REGISTER, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203790] = 15, + [211053] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(4399), 1, - sym_POSTPONED, - ACTIONS(4401), 1, - sym_PROCESS, - STATE(2920), 1, + STATE(2952), 1, sym__direct_name, - STATE(7205), 1, - sym_assertion, - STATE(7831), 1, + STATE(4221), 1, + sym_resolution_indication, + STATE(4496), 1, sym_name, - STATE(4246), 2, + STATE(6260), 1, + sym_subtype_indication, + STATE(3748), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(4439), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3316), 3, + STATE(3437), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(3744), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(4437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [203846] = 5, + [211106] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3317), 3, + ACTIONS(4447), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__attribute, + STATE(869), 1, + sym_parenthesis_expression, + STATE(877), 1, + sym__attribute_designator, + STATE(3438), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 19, + ACTIONS(4449), 4, sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_REGISTER, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203882] = 5, + ACTIONS(4451), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [211151] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3318), 3, + STATE(3439), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 19, + ACTIONS(2466), 18, sym_identifier, - sym_BUS, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -216362,59 +223176,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203918] = 5, + [211186] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3319), 3, + ACTIONS(4453), 1, + anon_sym_LPAREN, + STATE(4885), 1, + sym__attribute, + STATE(4904), 1, + sym_parenthesis_expression, + STATE(4905), 1, + sym__attribute_designator, + STATE(3440), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 19, + ACTIONS(4455), 4, sym_identifier, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [203954] = 5, + ACTIONS(4457), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [211231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3320), 3, + STATE(3441), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 19, + ACTIONS(2474), 18, sym_identifier, - sym_BUS, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -216424,28 +223241,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [203990] = 5, + [211266] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3321), 3, + ACTIONS(4459), 1, + anon_sym_LPAREN, + STATE(4415), 1, + sym__attribute_designator, + STATE(4418), 1, + sym_parenthesis_expression, + STATE(4431), 1, + sym__attribute, + STATE(3442), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 19, + ACTIONS(4461), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(4463), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [211311] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3443), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2498), 18, sym_identifier, - sym_BUS, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -216455,28 +223306,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [204026] = 5, + [211346] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3322), 3, + STATE(3444), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 19, + ACTIONS(2502), 18, sym_identifier, - sym_BUS, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, - sym_REGISTER, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -216486,74 +223336,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [204062] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4403), 1, - anon_sym_DOT, - ACTIONS(4405), 1, - anon_sym_LPAREN, - ACTIONS(4407), 1, - anon_sym_SQUOTE, - ACTIONS(4409), 1, - anon_sym_LBRACK, - ACTIONS(4411), 1, - sym_GENERIC, - ACTIONS(4413), 1, - sym_PARAMETER, - STATE(3408), 1, - aux_sym_name_repeat1, - STATE(4324), 1, - sym_generic_map_aspect, - STATE(4476), 1, - sym_name_selector, - STATE(3323), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - STATE(4477), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [204117] = 9, + [211381] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4415), 1, + ACTIONS(4465), 1, anon_sym_LPAREN, - STATE(4732), 1, + STATE(1860), 1, sym__attribute, - STATE(4757), 2, - sym__attribute_designator, + STATE(1908), 1, sym_parenthesis_expression, - STATE(3324), 3, + STATE(1912), 1, + sym__attribute_designator, + STATE(3445), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4417), 4, + ACTIONS(4467), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4419), 10, + ACTIONS(4469), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -216564,87 +223374,88 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [204160] = 5, + [211426] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3325), 3, + ACTIONS(4471), 1, + anon_sym_LPAREN, + STATE(4612), 1, + sym__attribute_designator, + STATE(4613), 1, + sym_parenthesis_expression, + STATE(4648), 1, + sym__attribute, + STATE(3446), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 18, + ACTIONS(4473), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [204195] = 14, + ACTIONS(4475), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [211471] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4477), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, - anon_sym_LT_LT, - STATE(2847), 1, - sym__direct_name, - STATE(4145), 1, - sym_resolution_indication, - STATE(4387), 1, - sym_name, - STATE(7580), 1, - sym_subtype_indication, - STATE(3770), 2, - sym__identifier, - sym__external_name, - ACTIONS(4425), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3326), 3, + STATE(4681), 1, + sym__attribute_designator, + STATE(4682), 1, + sym_parenthesis_expression, + STATE(4841), 1, + sym__attribute, + STATE(3447), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3768), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4423), 4, + ACTIONS(4479), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [204248] = 5, + ACTIONS(4481), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [211516] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3327), 3, + STATE(3448), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 18, + ACTIONS(2370), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -216663,57 +223474,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [204283] = 14, + [211551] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4435), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2952), 1, sym__direct_name, - STATE(4032), 1, + STATE(4221), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4496), 1, sym_name, - STATE(5150), 1, + STATE(7799), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3748), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4439), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3328), 3, + STATE(3449), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + STATE(3744), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [204336] = 5, + [211604] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3329), 3, + STATE(3450), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 18, + ACTIONS(2506), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -216732,18 +223543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [204371] = 5, + [211639] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3330), 3, + STATE(3451), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 18, + ACTIONS(2572), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -216762,147 +223573,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [204406] = 5, + [211674] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3331), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2618), 18, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2873), 1, + sym__direct_name, + STATE(4185), 1, + sym_resolution_indication, + STATE(4394), 1, + sym_name, + STATE(5329), 1, + sym_subtype_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [204441] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3332), 3, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3452), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 18, + ACTIONS(4200), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [204476] = 5, + [211727] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3333), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_LT_LT, + STATE(2952), 1, + sym__direct_name, + STATE(4221), 1, + sym_resolution_indication, + STATE(4496), 1, + sym_name, + STATE(6229), 1, + sym_subtype_indication, + STATE(3748), 2, + sym__identifier, + sym__external_name, + ACTIONS(4439), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3453), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 18, + STATE(3744), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4437), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [204511] = 14, + [211780] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2873), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(5197), 1, + STATE(4394), 1, + sym_name, + STATE(5231), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3334), 3, + STATE(3454), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [204564] = 5, + [211833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3335), 3, + STATE(3455), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 18, + ACTIONS(2576), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -216921,18 +223720,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [204599] = 5, + [211868] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3336), 3, + STATE(3456), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 18, + ACTIONS(2610), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -216951,66 +223750,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [204634] = 5, + [211903] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3337), 3, + ACTIONS(4483), 1, + anon_sym_LPAREN, + STATE(3373), 1, + sym__attribute_designator, + STATE(3391), 1, + sym_parenthesis_expression, + STATE(3393), 1, + sym__attribute, + STATE(3457), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 18, + ACTIONS(4485), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [204669] = 14, + ACTIONS(4487), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [211948] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4293), 1, + ACTIONS(4325), 1, sym_ARRAY, - ACTIONS(4427), 1, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4491), 1, sym_ACCESS, - ACTIONS(4431), 1, + ACTIONS(4493), 1, sym_FILE, - ACTIONS(4433), 1, + ACTIONS(4495), 1, sym_PRIVATE, - ACTIONS(4435), 1, + ACTIONS(4497), 1, sym_RANGE, - ACTIONS(4437), 1, + ACTIONS(4499), 1, sym_UNITS, - ACTIONS(4439), 1, + ACTIONS(4501), 1, sym_box, - STATE(5938), 1, + STATE(6142), 1, sym__incomplete_type_definition, - STATE(3338), 3, + STATE(3458), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(5177), 9, + STATE(5461), 9, sym_private_incomplete_type_definition, sym_scalar_incomplete_type_definition, sym_discrete_incomplete_type_definition, @@ -217020,503 +223824,442 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type_definition, sym_access_incomplete_type_definition, sym_file_incomplete_type_definition, - [204722] = 5, + [212001] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3339), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2396), 18, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(6157), 1, + sym_subtype_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [204757] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4441), 1, - anon_sym_LPAREN, - STATE(1270), 1, - sym__attribute, - STATE(1253), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3340), 3, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3459), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4443), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4445), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [204800] = 14, + [212054] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6875), 1, + STATE(4275), 1, + sym_name, + STATE(5845), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3341), 3, + STATE(3460), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [204853] = 14, + [212107] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2697), 1, + ACTIONS(19), 1, + sym_ASSERT, + ACTIONS(4503), 1, + sym_PROCESS, + STATE(3020), 1, sym__direct_name, - STATE(3972), 1, + STATE(7259), 1, + sym_assertion, + STATE(8144), 1, sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(5941), 1, - sym_subtype_indication, - STATE(3230), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3342), 3, + STATE(3461), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [204906] = 14, + [212160] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4447), 1, + ACTIONS(4435), 1, anon_sym_LT_LT, - STATE(2702), 1, + STATE(2952), 1, sym__direct_name, - STATE(4137), 1, + STATE(4221), 1, sym_resolution_indication, - STATE(4207), 1, + STATE(4496), 1, sym_name, - STATE(4914), 1, + STATE(6302), 1, sym_subtype_indication, - STATE(3248), 2, + STATE(3748), 2, sym__identifier, sym__external_name, - ACTIONS(4451), 3, + ACTIONS(4439), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3303), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3343), 3, + STATE(3462), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4449), 4, + STATE(3744), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [204959] = 9, + [212213] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4453), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - STATE(1973), 1, - sym__attribute, - STATE(1928), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3344), 3, + ACTIONS(4435), 1, + anon_sym_LT_LT, + STATE(2952), 1, + sym__direct_name, + STATE(4221), 1, + sym_resolution_indication, + STATE(4496), 1, + sym_name, + STATE(7681), 1, + sym_subtype_indication, + STATE(3748), 2, + sym__identifier, + sym__external_name, + ACTIONS(4439), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3463), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4455), 4, + STATE(3744), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4457), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [205002] = 9, + [212266] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4459), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - STATE(1583), 1, - sym__attribute, - STATE(1625), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3345), 3, + ACTIONS(4435), 1, + anon_sym_LT_LT, + STATE(2952), 1, + sym__direct_name, + STATE(4221), 1, + sym_resolution_indication, + STATE(4496), 1, + sym_name, + STATE(7833), 1, + sym_subtype_indication, + STATE(3748), 2, + sym__identifier, + sym__external_name, + ACTIONS(4439), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3464), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4461), 4, + STATE(3744), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4463), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [205045] = 14, + [212319] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4465), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2769), 1, + STATE(2789), 1, sym__direct_name, - STATE(3878), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4254), 1, + STATE(4275), 1, sym_name, - STATE(5215), 1, + STATE(5853), 1, sym_subtype_indication, - STATE(3339), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4469), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3337), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3346), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4467), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [205098] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4471), 1, - anon_sym_LPAREN, - STATE(1548), 1, - sym__attribute, - STATE(1570), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3347), 3, + STATE(3465), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4473), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4475), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [205141] = 14, + [212372] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4441), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2810), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(4245), 1, sym_resolution_indication, - STATE(5726), 1, + STATE(4391), 1, + sym_name, + STATE(5419), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3517), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4445), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3348), 3, + STATE(3466), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + STATE(3504), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4443), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [205194] = 9, + [212425] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4477), 1, - anon_sym_LPAREN, - STATE(1158), 1, - sym__attribute, - STATE(1178), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3349), 3, + STATE(3467), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4479), 4, + ACTIONS(2470), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - ACTIONS(4481), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [205237] = 14, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [212460] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2873), 1, sym__direct_name, - STATE(4032), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4394), 1, sym_name, - STATE(5106), 1, + STATE(5325), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3350), 3, + STATE(3468), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [205290] = 14, + [212513] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2776), 1, - sym__direct_name, - STATE(4032), 1, - sym_resolution_indication, - STATE(4260), 1, - sym_name, - STATE(5005), 1, - sym_subtype_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3351), 3, + STATE(3469), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(2636), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [205343] = 9, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [212548] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4483), 1, + ACTIONS(4505), 1, anon_sym_LPAREN, - STATE(1916), 1, - sym__attribute, - STATE(1869), 2, + STATE(1995), 1, sym__attribute_designator, + STATE(1996), 1, sym_parenthesis_expression, - STATE(3352), 3, + STATE(2189), 1, + sym__attribute, + STATE(3470), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4485), 4, + ACTIONS(4507), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4487), 10, + ACTIONS(4509), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -217527,176 +224270,178 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [205386] = 9, + [212593] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4489), 1, - anon_sym_LPAREN, - STATE(3285), 1, - sym__attribute, - STATE(3271), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3353), 3, + STATE(3471), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4491), 4, + ACTIONS(2666), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - ACTIONS(4493), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [205429] = 14, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [212628] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(6752), 1, + STATE(4275), 1, + sym_name, + STATE(7030), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3354), 3, + STATE(3472), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [205482] = 9, + [212681] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4495), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - STATE(1447), 1, - sym__attribute, - STATE(1484), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3355), 3, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(5546), 1, + sym_subtype_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3473), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4497), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4499), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [205525] = 14, + [212734] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4465), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2769), 1, + STATE(2789), 1, sym__direct_name, - STATE(3878), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4254), 1, + STATE(4275), 1, sym_name, - STATE(5218), 1, + STATE(6910), 1, sym_subtype_indication, - STATE(3339), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4469), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3337), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3356), 3, + STATE(3474), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4467), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [205578] = 9, + [212787] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4501), 1, + ACTIONS(4511), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4589), 1, sym__attribute, - STATE(4512), 2, - sym__attribute_designator, + STATE(4621), 1, sym_parenthesis_expression, - STATE(3357), 3, + STATE(4622), 1, + sym__attribute_designator, + STATE(3475), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4503), 4, + ACTIONS(4513), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4505), 10, + ACTIONS(4515), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -217707,281 +224452,234 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [205621] = 9, + [212832] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4507), 1, - anon_sym_LPAREN, - STATE(1877), 1, - sym__attribute, - STATE(1896), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3358), 3, + STATE(3476), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4509), 4, + ACTIONS(2556), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - ACTIONS(4511), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [205664] = 14, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [212867] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4517), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2798), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(4124), 1, sym_resolution_indication, - STATE(5725), 1, + STATE(4337), 1, + sym_name, + STATE(5138), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3428), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4521), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3430), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3359), 3, + STATE(3477), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4519), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [205717] = 14, + [212920] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2847), 1, + STATE(2873), 1, sym__direct_name, - STATE(4145), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4387), 1, + STATE(4394), 1, sym_name, - STATE(6060), 1, + STATE(5324), 1, sym_subtype_indication, - STATE(3770), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4425), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3360), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3768), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4423), 4, + STATE(3478), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [205770] = 14, + [212973] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2847), 1, + STATE(2873), 1, sym__direct_name, - STATE(4145), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4387), 1, + STATE(4394), 1, sym_name, - STATE(7526), 1, + STATE(5204), 1, sym_subtype_indication, - STATE(3770), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4425), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3361), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3768), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4423), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [205823] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4513), 1, - anon_sym_LPAREN, - STATE(994), 1, - sym__attribute, - STATE(1060), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3362), 3, + STATE(3479), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4515), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4517), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [205866] = 14, + [213026] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2789), 1, sym__direct_name, - STATE(4032), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4275), 1, sym_name, - STATE(5037), 1, + STATE(7336), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3363), 3, + STATE(3480), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [205919] = 14, + [213079] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4519), 1, + STATE(3481), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2428), 18, + sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4525), 1, + anon_sym_LT_LT, anon_sym_SQUOTE, - ACTIONS(4528), 1, anon_sym_LBRACK, - ACTIONS(4531), 1, - sym_GENERIC, - ACTIONS(4534), 1, - sym_PARAMETER, - STATE(4324), 1, - sym_generic_map_aspect, - STATE(4476), 1, - sym_name_selector, - ACTIONS(1465), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - STATE(3364), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_name_repeat1, - STATE(4477), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [205972] = 5, + [213114] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3365), 3, + STATE(3482), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 18, + ACTIONS(2670), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -218000,64 +224698,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [206007] = 9, + [213149] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4537), 1, - anon_sym_LPAREN, - STATE(1022), 1, - sym__attribute, - STATE(1067), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3366), 3, + STATE(3483), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4539), 4, + ACTIONS(2580), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - ACTIONS(4541), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [206050] = 9, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [213184] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4543), 1, + ACTIONS(4523), 1, anon_sym_LPAREN, - STATE(905), 1, - sym__attribute, - STATE(890), 2, + STATE(1849), 1, sym__attribute_designator, + STATE(1850), 1, sym_parenthesis_expression, - STATE(3367), 3, + STATE(1897), 1, + sym__attribute, + STATE(3484), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4545), 4, + ACTIONS(4525), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4547), 10, + ACTIONS(4527), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -218068,147 +224763,187 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [206093] = 14, + [213229] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(7110), 1, + STATE(4275), 1, + sym_name, + STATE(8187), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3368), 3, + STATE(3485), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [206146] = 14, + [213282] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4447), 1, + ACTIONS(4441), 1, anon_sym_LT_LT, - STATE(2702), 1, + STATE(2810), 1, sym__direct_name, - STATE(4137), 1, + STATE(4245), 1, sym_resolution_indication, - STATE(4207), 1, + STATE(4391), 1, sym_name, - STATE(4958), 1, + STATE(5411), 1, sym_subtype_indication, - STATE(3248), 2, + STATE(3517), 2, sym__identifier, sym__external_name, - ACTIONS(4451), 3, + ACTIONS(4445), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3303), 3, + STATE(3486), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3504), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3369), 3, + ACTIONS(4443), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [213335] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4441), 1, + anon_sym_LT_LT, + STATE(2810), 1, + sym__direct_name, + STATE(4245), 1, + sym_resolution_indication, + STATE(4391), 1, + sym_name, + STATE(5475), 1, + sym_subtype_indication, + STATE(3517), 2, + sym__identifier, + sym__external_name, + ACTIONS(4445), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3487), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4449), 4, + STATE(3504), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4443), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [206199] = 14, + [213388] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4517), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2798), 1, sym__direct_name, - STATE(4032), 1, + STATE(4124), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4337), 1, sym_name, - STATE(5128), 1, + STATE(5117), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3428), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4521), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3430), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3370), 3, + STATE(3488), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4519), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [206252] = 9, + [213441] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4549), 1, + ACTIONS(4529), 1, anon_sym_LPAREN, - STATE(4594), 1, + STATE(1370), 1, sym__attribute, - STATE(4540), 2, + STATE(1384), 1, sym__attribute_designator, + STATE(1386), 1, sym_parenthesis_expression, - STATE(3371), 3, + STATE(3489), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4551), 4, + ACTIONS(4531), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4553), 10, + ACTIONS(4533), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -218219,69 +224954,109 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [206295] = 14, + [213486] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, anon_sym_LT_LT, - ACTIONS(19), 1, - sym_ASSERT, - ACTIONS(4555), 1, - sym_PROCESS, - STATE(2920), 1, + STATE(2789), 1, sym__direct_name, - STATE(7182), 1, - sym_assertion, - STATE(7934), 1, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, sym_name, - STATE(4246), 2, + STATE(5736), 1, + sym_subtype_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3372), 3, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3490), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [213539] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_LT_LT, + STATE(2952), 1, + sym__direct_name, + STATE(4221), 1, + sym_resolution_indication, + STATE(4496), 1, + sym_name, + STATE(7854), 1, + sym_subtype_indication, + STATE(3748), 2, + sym__identifier, + sym__external_name, + ACTIONS(4439), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3491), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3744), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(4437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [206348] = 9, + [213592] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4557), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - STATE(1764), 1, + STATE(2047), 1, sym__attribute, - STATE(1849), 2, - sym__attribute_designator, + STATE(2086), 1, sym_parenthesis_expression, - STATE(3373), 3, + STATE(2087), 1, + sym__attribute_designator, + STATE(3492), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4559), 4, + ACTIONS(4537), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4561), 10, + ACTIONS(4539), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -218292,108 +225067,105 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [206391] = 14, + [213637] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4541), 1, anon_sym_LPAREN, - ACTIONS(4465), 1, - anon_sym_LT_LT, - STATE(2769), 1, - sym__direct_name, - STATE(3878), 1, - sym_resolution_indication, - STATE(4254), 1, - sym_name, - STATE(5380), 1, - sym_subtype_indication, - STATE(3339), 2, - sym__identifier, - sym__external_name, - ACTIONS(4469), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3337), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3374), 3, + STATE(4656), 1, + sym__attribute, + STATE(4796), 1, + sym_parenthesis_expression, + STATE(4797), 1, + sym__attribute_designator, + STATE(3493), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4467), 4, + ACTIONS(4543), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [206444] = 14, + ACTIONS(4545), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [213682] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4441), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2810), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(4245), 1, sym_resolution_indication, - STATE(5388), 1, + STATE(4391), 1, + sym_name, + STATE(5515), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3517), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4445), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3375), 3, + STATE(3494), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + STATE(3504), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4443), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [206497] = 9, + [213735] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4563), 1, + ACTIONS(4547), 1, anon_sym_LPAREN, - STATE(1658), 1, + STATE(4494), 1, + sym_parenthesis_expression, + STATE(4499), 1, sym__attribute, - STATE(1682), 2, + STATE(4527), 1, sym__attribute_designator, - sym_parenthesis_expression, - STATE(3376), 3, + STATE(3495), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4565), 4, + ACTIONS(4549), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4567), 10, + ACTIONS(4551), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -218404,103 +225176,169 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [206540] = 14, + [213780] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + STATE(3496), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2424), 18, + sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [213815] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4325), 1, + sym_ARRAY, + ACTIONS(4489), 1, + anon_sym_LPAREN, + ACTIONS(4491), 1, + sym_ACCESS, + ACTIONS(4493), 1, + sym_FILE, + ACTIONS(4495), 1, + sym_PRIVATE, + ACTIONS(4497), 1, + sym_RANGE, + ACTIONS(4499), 1, + sym_UNITS, + ACTIONS(4501), 1, + sym_box, + STATE(5436), 1, + sym__incomplete_type_definition, + STATE(3497), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(5461), 9, + sym_private_incomplete_type_definition, + sym_scalar_incomplete_type_definition, + sym_discrete_incomplete_type_definition, + sym_integer_incomplete_type_definition, + sym_physical_incomplete_type_definition, + sym_floating_incomplete_type_definition, + sym_array_type_definition, + sym_access_incomplete_type_definition, + sym_file_incomplete_type_definition, + [213868] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2789), 1, sym__direct_name, - STATE(4032), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4275), 1, sym_name, - STATE(5083), 1, + STATE(5655), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3377), 3, + STATE(3498), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [206593] = 9, + [213921] = 5, ACTIONS(3), 1, sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4569), 1, - anon_sym_LPAREN, - STATE(4473), 1, - sym__attribute, - STATE(4453), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3378), 3, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3499), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4571), 4, + ACTIONS(2420), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - ACTIONS(4573), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [206636] = 9, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [213956] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4575), 1, + ACTIONS(4553), 1, anon_sym_LPAREN, - STATE(4605), 1, + STATE(1361), 1, sym__attribute, - STATE(4587), 2, - sym__attribute_designator, + STATE(1391), 1, sym_parenthesis_expression, - STATE(3379), 3, + STATE(1392), 1, + sym__attribute_designator, + STATE(3500), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4577), 4, + ACTIONS(4555), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4579), 10, + ACTIONS(4557), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -218511,181 +225349,178 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [206679] = 14, + [214001] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2789), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(5613), 1, + STATE(4275), 1, + sym_name, + STATE(6073), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3380), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [206732] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4581), 1, - anon_sym_LPAREN, - STATE(3411), 1, - sym__attribute, - STATE(3329), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3381), 3, + STATE(3501), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4583), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4585), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [206775] = 14, + [214054] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4465), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2769), 1, + STATE(2873), 1, sym__direct_name, - STATE(3878), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4254), 1, + STATE(4394), 1, sym_name, - STATE(5286), 1, + STATE(5321), 1, sym_subtype_indication, - STATE(3339), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4469), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3337), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3382), 3, + STATE(3502), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4467), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [206828] = 14, + [214107] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4435), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2952), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(4221), 1, sym_resolution_indication, - STATE(6665), 1, + STATE(4496), 1, + sym_name, + STATE(7866), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3748), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4439), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3503), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(3744), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3383), 3, + ACTIONS(4437), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [214160] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3504), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(2606), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [206881] = 9, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [214195] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4587), 1, + ACTIONS(4559), 1, anon_sym_LPAREN, - STATE(1493), 1, + STATE(2114), 1, sym__attribute, - STATE(1566), 2, - sym__attribute_designator, + STATE(2150), 1, sym_parenthesis_expression, - STATE(3384), 3, + STATE(2151), 1, + sym__attribute_designator, + STATE(3505), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4589), 4, + ACTIONS(4561), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4591), 10, + ACTIONS(4563), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -218696,30 +225531,31 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [206924] = 9, + [214240] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4593), 1, + ACTIONS(4565), 1, anon_sym_LPAREN, - STATE(4680), 1, - sym__attribute, - STATE(4625), 2, + STATE(1006), 1, sym__attribute_designator, + STATE(1009), 1, sym_parenthesis_expression, - STATE(3385), 3, + STATE(1109), 1, + sym__attribute, + STATE(3506), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4595), 4, + ACTIONS(4567), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4597), 10, + ACTIONS(4569), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -218730,30 +225566,31 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [206967] = 9, + [214285] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4599), 1, + ACTIONS(4571), 1, anon_sym_LPAREN, - STATE(4610), 1, - sym__attribute, - STATE(4649), 2, + STATE(1493), 1, sym__attribute_designator, + STATE(1494), 1, sym_parenthesis_expression, - STATE(3386), 3, + STATE(1519), 1, + sym__attribute, + STATE(3507), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4601), 4, + ACTIONS(4573), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4603), 10, + ACTIONS(4575), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -218764,18 +225601,18 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [207010] = 5, + [214330] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3387), 3, + STATE(3508), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 18, + ACTIONS(2404), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -218794,199 +225631,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [207045] = 14, + [214365] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4517), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2798), 1, sym__direct_name, - STATE(4032), 1, + STATE(4124), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4337), 1, sym_name, - STATE(5017), 1, + STATE(5151), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3428), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4521), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3430), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3388), 3, + STATE(3509), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4519), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [207098] = 9, + [214418] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4605), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - STATE(4821), 1, - sym__attribute, - STATE(4886), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3389), 3, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2789), 1, + sym__direct_name, + STATE(3991), 1, + sym_resolution_indication, + STATE(4275), 1, + sym_name, + STATE(7215), 1, + sym_subtype_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3510), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4607), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4609), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [207141] = 14, + [214471] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4577), 1, + anon_sym_LPAREN, + ACTIONS(4579), 1, + sym_ACCESS, + ACTIONS(4581), 1, + sym_ARRAY, + ACTIONS(4583), 1, + sym_FILE, + ACTIONS(4585), 1, + sym_PRIVATE, + ACTIONS(4587), 1, + sym_RANGE, + ACTIONS(4589), 1, + sym_UNITS, + ACTIONS(4591), 1, + sym_box, + STATE(5564), 1, + sym__incomplete_type_definition, + STATE(3511), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(5509), 9, + sym_private_incomplete_type_definition, + sym_scalar_incomplete_type_definition, + sym_discrete_incomplete_type_definition, + sym_integer_incomplete_type_definition, + sym_physical_incomplete_type_definition, + sym_floating_incomplete_type_definition, + sym_array_type_definition, + sym_access_incomplete_type_definition, + sym_file_incomplete_type_definition, + [214524] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(3796), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2793), 1, sym__direct_name, - STATE(4032), 1, + STATE(4241), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4326), 1, sym_name, - STATE(5008), 1, + STATE(5547), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3358), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(3806), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3357), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3390), 3, + STATE(3512), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(3798), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [207194] = 14, + [214577] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2873), 1, sym__direct_name, - STATE(4032), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4394), 1, sym_name, - STATE(4993), 1, + STATE(5297), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3391), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [207247] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3392), 3, + STATE(3513), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 18, + ACTIONS(4200), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [207282] = 5, + [214630] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3393), 3, + STATE(3514), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 18, + ACTIONS(2614), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -219005,30 +225856,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [207317] = 9, + [214665] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4611), 1, + ACTIONS(4593), 1, anon_sym_LPAREN, - STATE(4374), 1, - sym__attribute, - STATE(4352), 2, + STATE(1535), 1, sym__attribute_designator, + STATE(1538), 1, sym_parenthesis_expression, - STATE(3394), 3, + STATE(1558), 1, + sym__attribute, + STATE(3515), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4613), 4, + ACTIONS(4595), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4615), 10, + ACTIONS(4597), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -219039,53 +225891,53 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [207360] = 14, + [214710] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2873), 1, sym__direct_name, - STATE(4032), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4394), 1, sym_name, - STATE(5034), 1, + STATE(5654), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3395), 3, + STATE(3516), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [207413] = 5, + [214763] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3396), 3, + STATE(3517), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -219108,37 +225960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [207448] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3397), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2434), 18, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [207483] = 14, + [214798] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -219149,165 +225971,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(19), 1, sym_ASSERT, - ACTIONS(4401), 1, + ACTIONS(4421), 1, sym_PROCESS, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7205), 1, + STATE(7283), 1, sym_assertion, - STATE(7831), 1, + STATE(8035), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3398), 3, + STATE(3518), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [207536] = 9, + [214851] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4617), 1, + ACTIONS(4599), 1, + anon_sym_DOT, + ACTIONS(4601), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym__attribute, - STATE(3302), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3399), 3, + ACTIONS(4603), 1, + anon_sym_SQUOTE, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, + sym_GENERIC, + ACTIONS(4609), 1, + sym_PARAMETER, + STATE(3568), 1, + aux_sym_name_repeat1, + STATE(4453), 1, + sym_generic_map_aspect, + STATE(4647), 1, + sym__name_selector, + STATE(3519), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4619), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4621), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [207579] = 14, + ACTIONS(1503), 4, + sym_FOR, + sym_UNTIL, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(4645), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [214906] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4623), 1, + ACTIONS(4599), 1, anon_sym_DOT, - ACTIONS(4626), 1, + ACTIONS(4601), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4603), 1, anon_sym_SQUOTE, - ACTIONS(4632), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4635), 1, + ACTIONS(4607), 1, sym_GENERIC, - ACTIONS(4638), 1, + ACTIONS(4609), 1, sym_PARAMETER, - STATE(4355), 1, + STATE(3519), 1, + aux_sym_name_repeat1, + STATE(4453), 1, sym_generic_map_aspect, - STATE(4470), 1, - sym_name_selector, - ACTIONS(1465), 4, - sym_IS, - sym_OPEN, - sym_RANGE, - anon_sym_SEMI, - STATE(3400), 4, + STATE(4647), 1, + sym__name_selector, + STATE(3520), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(4452), 5, + ACTIONS(1487), 4, + sym_FOR, + sym_UNTIL, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(4645), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [207632] = 9, + [214961] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4641), 1, + ACTIONS(4611), 1, anon_sym_LPAREN, - STATE(977), 1, + STATE(2171), 1, sym__attribute, - STATE(964), 2, - sym__attribute_designator, + STATE(2259), 1, sym_parenthesis_expression, - STATE(3401), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4643), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4645), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [207675] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4647), 1, - anon_sym_LPAREN, - STATE(1243), 1, - sym__attribute, - STATE(1227), 2, + STATE(2260), 1, sym__attribute_designator, - sym_parenthesis_expression, - STATE(3402), 3, + STATE(3521), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4649), 4, + ACTIONS(4613), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4651), 10, + ACTIONS(4615), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -219318,400 +226114,265 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [207718] = 14, + [215006] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2789), 1, sym__direct_name, - STATE(4032), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4275), 1, sym_name, - STATE(5132), 1, + STATE(5715), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3403), 3, + STATE(3522), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [207771] = 13, + [215059] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4441), 1, anon_sym_LT_LT, - ACTIONS(247), 1, - sym_TYPE, - STATE(2920), 1, + STATE(2810), 1, sym__direct_name, - STATE(5255), 1, - sym_incomplete_type_mark, - STATE(4246), 2, + STATE(4245), 1, + sym_resolution_indication, + STATE(4391), 1, + sym_name, + STATE(5491), 1, + sym_subtype_indication, + STATE(3517), 2, sym__identifier, sym__external_name, - STATE(5252), 2, - sym_unspecified_type_indication, - sym_name, - ACTIONS(71), 3, + ACTIONS(4445), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3404), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(3504), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(3523), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4443), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [207822] = 14, + [215112] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2847), 1, + STATE(2789), 1, sym__direct_name, - STATE(4145), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4387), 1, + STATE(4275), 1, sym_name, - STATE(6099), 1, + STATE(6814), 1, sym_subtype_indication, - STATE(3770), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4425), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3405), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3768), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4423), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [207875] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4653), 1, - anon_sym_LPAREN, - STATE(1313), 1, - sym__attribute, - STATE(1256), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3406), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4655), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4657), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [207918] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4659), 1, - anon_sym_LPAREN, - STATE(1378), 1, - sym__attribute, - STATE(1337), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3407), 3, + STATE(3524), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4661), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4663), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [207961] = 15, + [215165] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4403), 1, + ACTIONS(4617), 1, anon_sym_DOT, - ACTIONS(4405), 1, + ACTIONS(4620), 1, anon_sym_LPAREN, - ACTIONS(4407), 1, + ACTIONS(4623), 1, anon_sym_SQUOTE, - ACTIONS(4409), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, - ACTIONS(4411), 1, + ACTIONS(4629), 1, sym_GENERIC, - ACTIONS(4413), 1, + ACTIONS(4632), 1, sym_PARAMETER, - STATE(3364), 1, - aux_sym_name_repeat1, - STATE(4324), 1, + STATE(4456), 1, sym_generic_map_aspect, - STATE(4476), 1, - sym_name_selector, - STATE(3408), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(1503), 4, + STATE(4631), 1, + sym__name_selector, + ACTIONS(1465), 4, sym_BUS, anon_sym_SEMI, anon_sym_RPAREN, sym_variable_assignment, - STATE(4477), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [208016] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4665), 1, - anon_sym_DOT, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4671), 1, - anon_sym_SQUOTE, - ACTIONS(4674), 1, - anon_sym_LBRACK, - ACTIONS(4677), 1, - sym_GENERIC, - ACTIONS(4680), 1, - sym_PARAMETER, - STATE(4360), 1, - sym_generic_map_aspect, - STATE(4436), 1, - sym_name_selector, - ACTIONS(1465), 4, - sym_FOR, - sym_UNTIL, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(3409), 4, + STATE(3525), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(4437), 5, + STATE(4632), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [208069] = 14, + [215218] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2697), 1, + STATE(2873), 1, sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(5903), 1, + STATE(4394), 1, + sym_name, + STATE(5309), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3410), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [208122] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3411), 3, + STATE(3526), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 18, + ACTIONS(4200), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [208157] = 13, + [215271] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(2873), 1, sym__direct_name, - STATE(6417), 1, - sym__target, - STATE(4246), 2, + STATE(4185), 1, + sym_resolution_indication, + STATE(4394), 1, + sym_name, + STATE(5165), 1, + sym_subtype_indication, + STATE(3240), 2, sym__identifier, sym__external_name, - STATE(6083), 2, - sym_name, - sym_aggregate, - ACTIONS(71), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3412), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(3527), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [208208] = 9, + [215324] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4683), 1, + ACTIONS(4635), 1, anon_sym_LPAREN, - STATE(4332), 1, - sym__attribute, - STATE(4392), 2, - sym__attribute_designator, + STATE(1130), 1, sym_parenthesis_expression, - STATE(3413), 3, + STATE(1209), 1, + sym__attribute_designator, + STATE(1219), 1, + sym__attribute, + STATE(3528), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4685), 4, + ACTIONS(4637), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4687), 10, + ACTIONS(4639), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -219722,254 +226383,214 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [208251] = 14, + [215369] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4641), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, - anon_sym_LT_LT, - STATE(2847), 1, - sym__direct_name, - STATE(4145), 1, - sym_resolution_indication, - STATE(4387), 1, - sym_name, - STATE(7462), 1, - sym_subtype_indication, - STATE(3770), 2, - sym__identifier, - sym__external_name, - ACTIONS(4425), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3414), 3, + STATE(1949), 1, + sym__attribute, + STATE(1987), 1, + sym_parenthesis_expression, + STATE(1988), 1, + sym__attribute_designator, + STATE(3529), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3768), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4423), 4, + ACTIONS(4643), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [208304] = 14, + ACTIONS(4645), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [215414] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4647), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, - anon_sym_LT_LT, - STATE(2847), 1, - sym__direct_name, - STATE(4145), 1, - sym_resolution_indication, - STATE(4387), 1, - sym_name, - STATE(6383), 1, - sym_subtype_indication, - STATE(3770), 2, - sym__identifier, - sym__external_name, - ACTIONS(4425), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3415), 3, + STATE(3735), 1, + sym_parenthesis_expression, + STATE(3736), 1, + sym__attribute_designator, + STATE(3762), 1, + sym__attribute, + STATE(3530), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3768), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4423), 4, + ACTIONS(4649), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [208357] = 14, + ACTIONS(4651), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [215459] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2847), 1, + STATE(2873), 1, sym__direct_name, - STATE(4145), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4387), 1, + STATE(4394), 1, sym_name, - STATE(7613), 1, + STATE(5303), 1, sym_subtype_indication, - STATE(3770), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4425), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3416), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3768), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4423), 4, + STATE(3531), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [208410] = 13, + [215512] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3782), 1, - sym_TYPE, - ACTIONS(4689), 1, - anon_sym_LT_LT, - STATE(3323), 1, - sym__direct_name, - STATE(5282), 1, - sym_incomplete_type_mark, - STATE(4474), 2, - sym__identifier, - sym__external_name, - STATE(5283), 2, - sym_unspecified_type_indication, - sym_name, - ACTIONS(4693), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3417), 3, + ACTIONS(4653), 1, + anon_sym_LPAREN, + STATE(4473), 1, + sym__attribute_designator, + STATE(4474), 1, + sym_parenthesis_expression, + STATE(4491), 1, + sym__attribute, + STATE(3532), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4475), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4691), 4, + ACTIONS(4655), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [208461] = 14, + ACTIONS(4657), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [215557] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4517), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2798), 1, sym__direct_name, - STATE(4032), 1, + STATE(4124), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4337), 1, sym_name, - STATE(5110), 1, + STATE(5131), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3428), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4521), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3430), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3418), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [208514] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3419), 3, + STATE(3533), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 18, + ACTIONS(4519), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [208549] = 9, + [215610] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4695), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - STATE(1678), 1, - sym__attribute, - STATE(1797), 2, + STATE(3370), 1, sym__attribute_designator, + STATE(3371), 1, sym_parenthesis_expression, - STATE(3420), 3, + STATE(3397), 1, + sym__attribute, + STATE(3534), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4697), 4, + ACTIONS(4661), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4699), 10, + ACTIONS(4663), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -219980,69 +226601,109 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [208592] = 14, + [215655] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2789), 1, sym__direct_name, - STATE(4032), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4275), 1, sym_name, - STATE(5775), 1, + STATE(7027), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3421), 3, + STATE(3535), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [208645] = 9, + [215708] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4701), 1, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4668), 1, anon_sym_LPAREN, - STATE(3217), 1, - sym__attribute, - STATE(3233), 2, - sym__attribute_designator, + ACTIONS(4671), 1, + anon_sym_SQUOTE, + ACTIONS(4674), 1, + anon_sym_LBRACK, + ACTIONS(4677), 1, + sym_GENERIC, + ACTIONS(4680), 1, + sym_PARAMETER, + STATE(4480), 1, + sym_generic_map_aspect, + STATE(4596), 1, + sym__name_selector, + ACTIONS(1465), 4, + sym_IS, + sym_OPEN, + sym_RANGE, + anon_sym_SEMI, + STATE(3536), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_name_repeat1, + STATE(4599), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [215761] = 10, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4683), 1, + anon_sym_LPAREN, + STATE(4321), 1, sym_parenthesis_expression, - STATE(3422), 3, + STATE(4322), 1, + sym__attribute_designator, + STATE(4353), 1, + sym__attribute, + STATE(3537), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4703), 4, + ACTIONS(4685), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4705), 10, + ACTIONS(4687), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -220053,30 +226714,31 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [208688] = 9, + [215806] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4707), 1, + ACTIONS(4689), 1, anon_sym_LPAREN, - STATE(1794), 1, + STATE(4736), 1, sym__attribute, - STATE(1841), 2, - sym__attribute_designator, + STATE(4763), 1, sym_parenthesis_expression, - STATE(3423), 3, + STATE(4770), 1, + sym__attribute_designator, + STATE(3538), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4709), 4, + ACTIONS(4691), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4711), 10, + ACTIONS(4693), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -220087,57 +226749,53 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [208731] = 14, + [215851] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4695), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(6459), 1, - sym_subtype_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3424), 3, + STATE(972), 1, + sym__attribute_designator, + STATE(985), 1, + sym_parenthesis_expression, + STATE(987), 1, + sym__attribute, + STATE(3539), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4697), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [208784] = 5, + ACTIONS(4699), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [215896] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3425), 3, + STATE(3540), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 18, + ACTIONS(2662), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -220156,109 +226814,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [208819] = 14, + [215931] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4447), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2702), 1, + STATE(2873), 1, sym__direct_name, - STATE(4137), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4207), 1, + STATE(4394), 1, sym_name, - STATE(4942), 1, + STATE(5569), 1, sym_subtype_indication, - STATE(3248), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4451), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3303), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3426), 3, + STATE(3541), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4449), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [208872] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4713), 1, - anon_sym_DOT, - ACTIONS(4715), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_SQUOTE, - ACTIONS(4719), 1, - anon_sym_LBRACK, - ACTIONS(4721), 1, - sym_GENERIC, - ACTIONS(4723), 1, - sym_PARAMETER, - STATE(3429), 1, - aux_sym_name_repeat1, - STATE(4355), 1, - sym_generic_map_aspect, - STATE(4470), 1, - sym_name_selector, - STATE(3427), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 4, - sym_IS, - sym_OPEN, - sym_RANGE, - anon_sym_SEMI, - STATE(4452), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [208927] = 9, + [215984] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4725), 1, + ACTIONS(4701), 1, anon_sym_LPAREN, - STATE(1084), 1, - sym__attribute, - STATE(1047), 2, + STATE(1630), 1, sym__attribute_designator, + STATE(1631), 1, sym_parenthesis_expression, - STATE(3428), 3, + STATE(1642), 1, + sym__attribute, + STATE(3542), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4727), 4, + ACTIONS(4703), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4729), 10, + ACTIONS(4705), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -220269,178 +226888,135 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [208970] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4713), 1, - anon_sym_DOT, - ACTIONS(4715), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_SQUOTE, - ACTIONS(4719), 1, - anon_sym_LBRACK, - ACTIONS(4721), 1, - sym_GENERIC, - ACTIONS(4723), 1, - sym_PARAMETER, - STATE(3400), 1, - aux_sym_name_repeat1, - STATE(4355), 1, - sym_generic_map_aspect, - STATE(4470), 1, - sym_name_selector, - STATE(3429), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(1503), 4, - sym_IS, - sym_OPEN, - sym_RANGE, - anon_sym_SEMI, - STATE(4452), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [209025] = 14, + [216029] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4421), 1, - anon_sym_LT_LT, - STATE(2847), 1, - sym__direct_name, - STATE(4145), 1, - sym_resolution_indication, - STATE(4387), 1, - sym_name, - STATE(7634), 1, - sym_subtype_indication, - STATE(3770), 2, - sym__identifier, - sym__external_name, - ACTIONS(4425), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3430), 3, + STATE(3543), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3768), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4423), 4, + ACTIONS(2674), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [209078] = 14, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [216064] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4465), 1, + ACTIONS(3802), 1, + sym_TYPE, + ACTIONS(4707), 1, anon_sym_LT_LT, - STATE(2769), 1, + STATE(3559), 1, sym__direct_name, - STATE(3878), 1, - sym_resolution_indication, - STATE(4254), 1, + STATE(5503), 1, sym_name, - STATE(5221), 1, - sym_subtype_indication, - STATE(3339), 2, + STATE(5505), 1, + sym__incomplete_type_mark, + STATE(5514), 1, + sym_unspecified_type_indication, + STATE(4651), 2, sym__identifier, sym__external_name, - ACTIONS(4469), 3, + ACTIONS(4711), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3337), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3431), 3, + STATE(3544), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4467), 4, + STATE(4653), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4709), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [209131] = 5, + [216117] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3432), 3, + ACTIONS(4713), 1, + anon_sym_LPAREN, + STATE(1059), 1, + sym__attribute_designator, + STATE(1065), 1, + sym_parenthesis_expression, + STATE(1106), 1, + sym__attribute, + STATE(3545), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 18, + ACTIONS(4715), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [209166] = 9, + ACTIONS(4717), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [216162] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4731), 1, + ACTIONS(4719), 1, anon_sym_LPAREN, - STATE(1117), 1, + STATE(4620), 1, sym__attribute, - STATE(1127), 2, + STATE(4641), 1, sym__attribute_designator, + STATE(4642), 1, sym_parenthesis_expression, - STATE(3433), 3, + STATE(3546), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4733), 4, + ACTIONS(4721), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4735), 10, + ACTIONS(4723), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -220451,138 +227027,138 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [209209] = 14, + [216207] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2776), 1, - sym__direct_name, - STATE(4032), 1, - sym_resolution_indication, - STATE(4260), 1, - sym_name, - STATE(5751), 1, - sym_subtype_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3434), 3, + STATE(3547), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(2374), 18, sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [209262] = 14, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [216242] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, + ACTIONS(4435), 1, anon_sym_LT_LT, - STATE(2847), 1, + STATE(2952), 1, sym__direct_name, - STATE(4145), 1, + STATE(4221), 1, sym_resolution_indication, - STATE(4387), 1, + STATE(4496), 1, sym_name, - STATE(6034), 1, + STATE(6408), 1, sym_subtype_indication, - STATE(3770), 2, + STATE(3748), 2, sym__identifier, sym__external_name, - ACTIONS(4425), 3, + ACTIONS(4439), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3435), 3, + STATE(3548), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3768), 3, + STATE(3744), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4423), 4, + ACTIONS(4437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [209315] = 5, + [216295] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3436), 3, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6368), 1, + sym__target, + STATE(4332), 2, + sym__identifier, + sym__external_name, + STATE(6312), 2, + sym_name, + sym_aggregate, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3549), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 18, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [209350] = 9, + [216346] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4737), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - STATE(968), 1, + STATE(908), 1, sym__attribute, - STATE(945), 2, - sym__attribute_designator, + STATE(920), 1, sym_parenthesis_expression, - STATE(3437), 3, + STATE(921), 1, + sym__attribute_designator, + STATE(3550), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4739), 4, + ACTIONS(4727), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4741), 10, + ACTIONS(4729), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -220593,30 +227169,31 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [209393] = 9, + [216391] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4743), 1, + ACTIONS(4731), 1, anon_sym_LPAREN, - STATE(2136), 1, + STATE(1243), 1, sym__attribute, - STATE(1946), 2, - sym__attribute_designator, + STATE(1295), 1, sym_parenthesis_expression, - STATE(3438), 3, + STATE(1296), 1, + sym__attribute_designator, + STATE(3551), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4745), 4, + ACTIONS(4733), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4747), 10, + ACTIONS(4735), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -220627,76 +227204,77 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [209436] = 14, + [216436] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4737), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(5768), 1, - sym_subtype_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3439), 3, + STATE(4867), 1, + sym__attribute, + STATE(4879), 1, + sym_parenthesis_expression, + STATE(4882), 1, + sym__attribute_designator, + STATE(3552), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4739), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [209489] = 5, + ACTIONS(4741), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [216481] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3440), 3, + ACTIONS(4743), 1, + anon_sym_LPAREN, + STATE(1332), 1, + sym__attribute, + STATE(1351), 1, + sym_parenthesis_expression, + STATE(1352), 1, + sym__attribute_designator, + STATE(3553), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 18, + ACTIONS(4745), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [209524] = 9, + ACTIONS(4747), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [216526] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -220705,12 +227283,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(4749), 1, anon_sym_LPAREN, - STATE(845), 1, + STATE(1120), 1, sym__attribute, - STATE(882), 2, - sym__attribute_designator, + STATE(1168), 1, sym_parenthesis_expression, - STATE(3441), 3, + STATE(1175), 1, + sym__attribute_designator, + STATE(3554), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -220730,76 +227309,85 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [209567] = 5, + [216571] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3442), 3, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2873), 1, + sym__direct_name, + STATE(4185), 1, + sym_resolution_indication, + STATE(4394), 1, + sym_name, + STATE(5203), 1, + sym_subtype_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3555), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 18, + ACTIONS(4200), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [209602] = 14, + [216624] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2847), 1, + STATE(2873), 1, sym__direct_name, - STATE(4145), 1, + STATE(4185), 1, sym_resolution_indication, - STATE(4387), 1, + STATE(4394), 1, sym_name, - STATE(6871), 1, + STATE(5290), 1, sym_subtype_indication, - STATE(3770), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4425), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3443), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(3768), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4423), 4, + STATE(3556), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [209655] = 9, + [216677] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -220808,12 +227396,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(4755), 1, anon_sym_LPAREN, - STATE(4435), 1, - sym__attribute, - STATE(4422), 2, - sym__attribute_designator, + STATE(5029), 1, sym_parenthesis_expression, - STATE(3444), 3, + STATE(5038), 1, + sym__attribute_designator, + STATE(5057), 1, + sym__attribute, + STATE(3557), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -220833,46 +227422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [209698] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7975), 1, - sym_subtype_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3445), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [209751] = 9, + [216722] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -220881,12 +227431,13 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(4761), 1, anon_sym_LPAREN, - STATE(1331), 1, - sym__attribute, - STATE(1353), 2, + STATE(1829), 1, sym__attribute_designator, + STATE(1832), 1, sym_parenthesis_expression, - STATE(3446), 3, + STATE(1883), 1, + sym__attribute, + STATE(3558), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -220906,18 +227457,58 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [209794] = 5, + [216767] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3447), 3, + ACTIONS(4767), 1, + anon_sym_DOT, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_SQUOTE, + ACTIONS(4773), 1, + anon_sym_LBRACK, + ACTIONS(4775), 1, + sym_GENERIC, + ACTIONS(4777), 1, + sym_PARAMETER, + STATE(3561), 1, + aux_sym_name_repeat1, + STATE(4456), 1, + sym_generic_map_aspect, + STATE(4631), 1, + sym__name_selector, + STATE(3559), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1487), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + STATE(4632), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [216822] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3560), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 18, + ACTIONS(2640), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -220936,7 +227527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [209829] = 9, + [216857] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -220944,22 +227535,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, sym__block_comment_start, ACTIONS(4767), 1, + anon_sym_DOT, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_SQUOTE, + ACTIONS(4773), 1, + anon_sym_LBRACK, + ACTIONS(4775), 1, + sym_GENERIC, + ACTIONS(4777), 1, + sym_PARAMETER, + STATE(3525), 1, + aux_sym_name_repeat1, + STATE(4456), 1, + sym_generic_map_aspect, + STATE(4631), 1, + sym__name_selector, + STATE(3561), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1503), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + STATE(4632), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [216912] = 10, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4779), 1, anon_sym_LPAREN, - STATE(4497), 1, + STATE(1036), 1, sym__attribute, - STATE(4483), 2, + STATE(1039), 1, sym__attribute_designator, + STATE(1068), 1, sym_parenthesis_expression, - STATE(3448), 3, + STATE(3562), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4769), 4, + ACTIONS(4781), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4771), 10, + ACTIONS(4783), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -220970,108 +227602,61 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [209872] = 14, + [216957] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4773), 1, - anon_sym_LPAREN, - ACTIONS(4775), 1, - sym_ACCESS, - ACTIONS(4777), 1, - sym_ARRAY, - ACTIONS(4779), 1, - sym_FILE, - ACTIONS(4781), 1, - sym_PRIVATE, - ACTIONS(4783), 1, - sym_RANGE, - ACTIONS(4785), 1, - sym_UNITS, - ACTIONS(4787), 1, - sym_box, - STATE(5300), 1, - sym__incomplete_type_definition, - STATE(3449), 3, + STATE(3563), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(5338), 9, - sym_private_incomplete_type_definition, - sym_scalar_incomplete_type_definition, - sym_discrete_incomplete_type_definition, - sym_integer_incomplete_type_definition, - sym_physical_incomplete_type_definition, - sym_floating_incomplete_type_definition, - sym_array_type_definition, - sym_access_incomplete_type_definition, - sym_file_incomplete_type_definition, - [209925] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(3776), 1, - anon_sym_LT_LT, - STATE(2706), 1, - sym__direct_name, - STATE(3915), 1, - sym_resolution_indication, - STATE(4209), 1, - sym_name, - STATE(5321), 1, - sym_subtype_indication, - STATE(3265), 2, - sym__identifier, - sym__external_name, - ACTIONS(3786), 3, + ACTIONS(2528), 18, + sym_identifier, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, sym_character_literal, sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3266), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3450), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3778), 4, - sym_identifier, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [209978] = 9, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [216992] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4789), 1, + ACTIONS(4785), 1, anon_sym_LPAREN, - STATE(1657), 1, + STATE(4679), 1, sym__attribute, - STATE(1715), 2, - sym__attribute_designator, + STATE(4690), 1, sym_parenthesis_expression, - STATE(3451), 3, + STATE(4757), 1, + sym__attribute_designator, + STATE(3564), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4791), 4, + ACTIONS(4787), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4793), 10, + ACTIONS(4789), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -221082,18 +227667,18 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [210021] = 5, + [217037] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3452), 3, + STATE(3565), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 18, + ACTIONS(2602), 18, sym_identifier, sym_GENERIC, sym_IS, @@ -221112,30 +227697,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [210056] = 9, + [217072] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3794), 1, + anon_sym_LPAREN, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2873), 1, + sym__direct_name, + STATE(4185), 1, + sym_resolution_indication, + STATE(4394), 1, + sym_name, + STATE(5284), 1, + sym_subtype_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3566), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [217125] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4795), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - STATE(4397), 1, + STATE(1684), 1, sym__attribute, - STATE(4340), 2, + STATE(1722), 1, sym__attribute_designator, + STATE(1728), 1, sym_parenthesis_expression, - STATE(3453), 3, + STATE(3567), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4797), 4, + ACTIONS(4793), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4799), 10, + ACTIONS(4795), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -221146,110 +227771,70 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [210099] = 15, + [217170] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4801), 1, + ACTIONS(4797), 1, anon_sym_DOT, - ACTIONS(4803), 1, + ACTIONS(4800), 1, anon_sym_LPAREN, - ACTIONS(4805), 1, + ACTIONS(4803), 1, anon_sym_SQUOTE, - ACTIONS(4807), 1, + ACTIONS(4806), 1, anon_sym_LBRACK, ACTIONS(4809), 1, sym_GENERIC, - ACTIONS(4811), 1, + ACTIONS(4812), 1, sym_PARAMETER, - STATE(3455), 1, - aux_sym_name_repeat1, - STATE(4360), 1, + STATE(4453), 1, sym_generic_map_aspect, - STATE(4436), 1, - sym_name_selector, - STATE(3454), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 4, + STATE(4647), 1, + sym__name_selector, + ACTIONS(1465), 4, sym_FOR, sym_UNTIL, anon_sym_SEMI, anon_sym_COMMA, - STATE(4437), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [210154] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4801), 1, - anon_sym_DOT, - ACTIONS(4803), 1, - anon_sym_LPAREN, - ACTIONS(4805), 1, - anon_sym_SQUOTE, - ACTIONS(4807), 1, - anon_sym_LBRACK, - ACTIONS(4809), 1, - sym_GENERIC, - ACTIONS(4811), 1, - sym_PARAMETER, - STATE(3409), 1, - aux_sym_name_repeat1, - STATE(4360), 1, - sym_generic_map_aspect, - STATE(4436), 1, - sym_name_selector, - STATE(3455), 3, + STATE(3568), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1503), 4, - sym_FOR, - sym_UNTIL, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(4437), 5, + aux_sym_name_repeat1, + STATE(4645), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [210209] = 9, + [217223] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4813), 1, + ACTIONS(4815), 1, anon_sym_LPAREN, - STATE(4226), 1, - sym__attribute, - STATE(4239), 2, + STATE(3288), 1, sym__attribute_designator, + STATE(3296), 1, sym_parenthesis_expression, - STATE(3456), 3, + STATE(3335), 1, + sym__attribute, + STATE(3569), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4815), 4, + ACTIONS(4817), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4817), 10, + ACTIONS(4819), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -221260,30 +227845,31 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [210252] = 9, + [217268] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4819), 1, + ACTIONS(4821), 1, anon_sym_LPAREN, - STATE(2201), 1, + STATE(1249), 1, sym__attribute, - STATE(2175), 2, - sym__attribute_designator, + STATE(1283), 1, sym_parenthesis_expression, - STATE(3457), 3, + STATE(1285), 1, + sym__attribute_designator, + STATE(3570), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4821), 4, + ACTIONS(4823), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4823), 10, + ACTIONS(4825), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -221294,30 +227880,31 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [210295] = 9, + [217313] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4825), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - STATE(4682), 1, - sym__attribute, - STATE(4710), 2, + STATE(1755), 1, sym__attribute_designator, + STATE(1758), 1, sym_parenthesis_expression, - STATE(3458), 3, + STATE(1796), 1, + sym__attribute, + STATE(3571), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4827), 4, + ACTIONS(4829), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4829), 10, + ACTIONS(4831), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -221328,119 +227915,46 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [210338] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4293), 1, - sym_ARRAY, - ACTIONS(4427), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, - sym_ACCESS, - ACTIONS(4431), 1, - sym_FILE, - ACTIONS(4433), 1, - sym_PRIVATE, - ACTIONS(4435), 1, - sym_RANGE, - ACTIONS(4437), 1, - sym_UNITS, - ACTIONS(4439), 1, - sym_box, - STATE(5208), 1, - sym__incomplete_type_definition, - STATE(3459), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(5177), 9, - sym_private_incomplete_type_definition, - sym_scalar_incomplete_type_definition, - sym_discrete_incomplete_type_definition, - sym_integer_incomplete_type_definition, - sym_physical_incomplete_type_definition, - sym_floating_incomplete_type_definition, - sym_array_type_definition, - sym_access_incomplete_type_definition, - sym_file_incomplete_type_definition, - [210391] = 14, + [217358] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2776), 1, + STATE(2789), 1, sym__direct_name, - STATE(4032), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4260), 1, + STATE(4275), 1, sym_name, - STATE(5066), 1, + STATE(5989), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3460), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [210444] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4831), 1, - anon_sym_LPAREN, - STATE(1402), 1, - sym__attribute, - STATE(1599), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3461), 3, + STATE(3572), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4833), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4835), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [210487] = 14, + [217411] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -221449,163 +227963,136 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - ACTIONS(4837), 1, + ACTIONS(4833), 1, sym_ALL, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(5523), 1, + STATE(5823), 1, sym_name, - STATE(7078), 1, + STATE(6885), 1, sym__process_sensitivity_list, - STATE(7083), 1, + STATE(6887), 1, sym_sensitivity_list, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3462), 3, + STATE(3573), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [210540] = 9, + [217464] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4839), 1, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, anon_sym_LPAREN, - STATE(3691), 1, - sym__attribute, - STATE(3721), 2, - sym__attribute_designator, - sym_parenthesis_expression, - STATE(3463), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4841), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4843), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [210583] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3464), 3, + ACTIONS(4839), 1, + anon_sym_SQUOTE, + ACTIONS(4841), 1, + anon_sym_LBRACK, + ACTIONS(4843), 1, + sym_GENERIC, + ACTIONS(4845), 1, + sym_PARAMETER, + STATE(3536), 1, + aux_sym_name_repeat1, + STATE(4480), 1, + sym_generic_map_aspect, + STATE(4596), 1, + sym__name_selector, + STATE(3574), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 18, - sym_identifier, - sym_GENERIC, + ACTIONS(1503), 4, sym_IS, sym_OPEN, - sym_PARAMETER, sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [210618] = 14, + STATE(4599), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [217519] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4847), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(5868), 1, - sym_subtype_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3465), 3, + STATE(1441), 1, + sym__attribute, + STATE(1620), 1, + sym_parenthesis_expression, + STATE(1621), 1, + sym__attribute_designator, + STATE(3575), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4849), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [210671] = 9, + ACTIONS(4851), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [217564] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4845), 1, + ACTIONS(4853), 1, anon_sym_LPAREN, - STATE(2032), 1, + STATE(4446), 1, sym__attribute, - STATE(2056), 2, + STATE(4525), 1, sym__attribute_designator, + STATE(4526), 1, sym_parenthesis_expression, - STATE(3466), 3, + STATE(3576), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4847), 4, + ACTIONS(4855), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4849), 10, + ACTIONS(4857), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -221616,264 +228103,219 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [210714] = 14, + [217609] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, - sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(5634), 1, - sym_subtype_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3467), 3, + ACTIONS(4839), 1, + anon_sym_SQUOTE, + ACTIONS(4841), 1, + anon_sym_LBRACK, + ACTIONS(4843), 1, + sym_GENERIC, + ACTIONS(4845), 1, + sym_PARAMETER, + STATE(3574), 1, + aux_sym_name_repeat1, + STATE(4480), 1, + sym_generic_map_aspect, + STATE(4596), 1, + sym__name_selector, + STATE(3577), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [210767] = 14, + ACTIONS(1487), 4, + sym_IS, + sym_OPEN, + sym_RANGE, + anon_sym_SEMI, + STATE(4599), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [217664] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4421), 1, + ACTIONS(4435), 1, anon_sym_LT_LT, - STATE(2847), 1, + STATE(2952), 1, sym__direct_name, - STATE(4145), 1, + STATE(4221), 1, sym_resolution_indication, - STATE(4387), 1, + STATE(4496), 1, sym_name, - STATE(7645), 1, + STATE(7666), 1, sym_subtype_indication, - STATE(3770), 2, + STATE(3748), 2, sym__identifier, sym__external_name, - ACTIONS(4425), 3, + ACTIONS(4439), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3468), 3, + STATE(3578), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(3768), 3, + STATE(3744), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4423), 4, + ACTIONS(4437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [210820] = 14, + [217717] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4859), 1, anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2776), 1, - sym__direct_name, - STATE(4032), 1, - sym_resolution_indication, - STATE(4260), 1, - sym_name, - STATE(5143), 1, - sym_subtype_indication, - STATE(3230), 2, - sym__identifier, - sym__external_name, - ACTIONS(4182), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3231), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3469), 3, + STATE(964), 1, + sym__attribute, + STATE(976), 1, + sym_parenthesis_expression, + STATE(977), 1, + sym__attribute_designator, + STATE(3579), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4861), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [210873] = 14, + ACTIONS(4863), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [217762] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(4865), 1, anon_sym_LPAREN, - ACTIONS(4465), 1, - anon_sym_LT_LT, - STATE(2769), 1, - sym__direct_name, - STATE(3878), 1, - sym_resolution_indication, - STATE(4254), 1, - sym_name, - STATE(5269), 1, - sym_subtype_indication, - STATE(3339), 2, - sym__identifier, - sym__external_name, - ACTIONS(4469), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3337), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3470), 3, + STATE(4828), 1, + sym__attribute, + STATE(4846), 1, + sym__attribute_designator, + STATE(4849), 1, + sym_parenthesis_expression, + STATE(3580), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4467), 4, + ACTIONS(4867), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [210926] = 14, + ACTIONS(4869), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [217807] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4447), 1, + ACTIONS(4198), 1, anon_sym_LT_LT, - STATE(2702), 1, + STATE(2789), 1, sym__direct_name, - STATE(4137), 1, + STATE(3991), 1, sym_resolution_indication, - STATE(4207), 1, - sym_name, - STATE(4906), 1, - sym_subtype_indication, - STATE(3248), 2, - sym__identifier, - sym__external_name, - ACTIONS(4451), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3303), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3471), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4449), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [210979] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(4178), 1, - anon_sym_LT_LT, - STATE(2697), 1, - sym__direct_name, - STATE(3972), 1, + STATE(4275), 1, sym_name, - STATE(4043), 1, - sym_resolution_indication, - STATE(7452), 1, + STATE(6090), 1, sym_subtype_indication, - STATE(3230), 2, + STATE(3240), 2, sym__identifier, sym__external_name, - ACTIONS(4182), 3, + ACTIONS(4202), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3231), 3, + STATE(3241), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3472), 3, + STATE(3581), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4180), 4, + ACTIONS(4200), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211032] = 9, + [217860] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4851), 1, + ACTIONS(4871), 1, anon_sym_LPAREN, - STATE(4293), 1, - sym__attribute, - STATE(4289), 2, + STATE(1446), 1, sym__attribute_designator, + STATE(1449), 1, sym_parenthesis_expression, - STATE(3473), 3, + STATE(1575), 1, + sym__attribute, + STATE(3582), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4853), 4, + ACTIONS(4873), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4855), 10, + ACTIONS(4875), 10, sym_attribute_function, sym_attribute_impure_function, sym_attribute_mode_view, @@ -221884,180 +228326,143 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_type, sym_attribute_value, sym_library_attribute, - [211075] = 14, + [217905] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4228), 1, - anon_sym_DOT, - ACTIONS(4230), 1, + ACTIONS(3794), 1, anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_SQUOTE, - ACTIONS(4234), 1, - anon_sym_LBRACK, - ACTIONS(4238), 1, - sym_PARAMETER, - STATE(3212), 1, - aux_sym_name_repeat1, - STATE(4261), 1, - sym_generic_map_aspect, - STATE(4270), 1, - sym_name_selector, - STATE(3474), 3, + ACTIONS(4198), 1, + anon_sym_LT_LT, + STATE(2873), 1, + sym__direct_name, + STATE(4185), 1, + sym_resolution_indication, + STATE(4394), 1, + sym_name, + STATE(5300), 1, + sym_subtype_indication, + STATE(3240), 2, + sym__identifier, + sym__external_name, + ACTIONS(4202), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3241), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3583), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1503), 4, - sym_GENERIC, - sym_RANGE, - anon_sym_SEMI, - sym_variable_assignment, - STATE(4271), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [211127] = 13, + ACTIONS(4200), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [217958] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4859), 1, + ACTIONS(4879), 1, anon_sym_RBRACK, - ACTIONS(4863), 1, + ACTIONS(4883), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5203), 1, + STATE(5470), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3475), 3, + STATE(3584), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211177] = 13, + [218008] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4867), 1, + ACTIONS(4887), 1, anon_sym_RBRACK, - ACTIONS(4869), 1, + ACTIONS(4889), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5369), 1, + STATE(5473), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3476), 3, + STATE(3585), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, - sym_library_type, - [211227] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(4874), 1, - anon_sym_LPAREN, - ACTIONS(4877), 1, - anon_sym_SQUOTE, - ACTIONS(4880), 1, - anon_sym_LBRACK, - ACTIONS(4883), 1, - sym_GENERIC, - ACTIONS(4886), 1, - sym_PARAMETER, - STATE(4421), 1, - sym_generic_map_aspect, - STATE(4570), 1, - sym_name_selector, - ACTIONS(1465), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(3477), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_name_repeat1, - STATE(4572), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [211279] = 14, + sym_library_type, + [218058] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4889), 1, - anon_sym_DOT, ACTIONS(4891), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4893), 1, - anon_sym_SQUOTE, + anon_sym_LPAREN, ACTIONS(4895), 1, - anon_sym_LBRACK, + anon_sym_SQUOTE, ACTIONS(4897), 1, + anon_sym_LBRACK, + ACTIONS(4899), 1, sym_PARAMETER, - STATE(3481), 1, + STATE(3597), 1, aux_sym_name_repeat1, - STATE(4456), 1, + STATE(4559), 1, sym_generic_map_aspect, - STATE(4520), 1, - sym_name_selector, - STATE(3478), 3, + STATE(4795), 1, + sym__name_selector, + STATE(3586), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -222066,2534 +228471,2616 @@ static const uint16_t ts_small_parse_table[] = { sym_PORT, sym_USE, anon_sym_SEMI, - STATE(4524), 5, + STATE(4794), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [211331] = 15, + [218110] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4899), 1, - anon_sym_DOT, + ACTIONS(4877), 1, + anon_sym_LT_LT, ACTIONS(4901), 1, - anon_sym_LPAREN, + anon_sym_RBRACK, ACTIONS(4903), 1, - anon_sym_SQUOTE, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(4907), 1, - sym_GENERIC, - ACTIONS(4909), 1, - sym_PARAMETER, - STATE(3515), 1, - aux_sym_name_repeat1, - STATE(4445), 1, - sym_generic_map_aspect, - STATE(4588), 1, - sym_name_selector, - ACTIONS(1503), 3, sym_RETURN, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3479), 3, + STATE(3590), 1, + sym__direct_name, + STATE(5466), 1, + sym_name, + STATE(4659), 2, + sym__identifier, + sym__external_name, + ACTIONS(4885), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3587), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4590), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [211385] = 13, + STATE(4660), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4881), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [218160] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4911), 1, + ACTIONS(4905), 1, anon_sym_RBRACK, - ACTIONS(4913), 1, + ACTIONS(4907), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5164), 1, + STATE(5550), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3480), 3, + STATE(3588), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211435] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4889), 1, - anon_sym_DOT, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4893), 1, - anon_sym_SQUOTE, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - sym_PARAMETER, - STATE(3503), 1, - aux_sym_name_repeat1, - STATE(4456), 1, - sym_generic_map_aspect, - STATE(4520), 1, - sym_name_selector, - STATE(3481), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(1503), 4, - sym_GENERIC, - sym_PORT, - sym_USE, - anon_sym_SEMI, - STATE(4524), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [211487] = 13, + [218210] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4915), 1, + ACTIONS(4909), 1, anon_sym_RBRACK, - ACTIONS(4917), 1, + ACTIONS(4911), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5362), 1, + STATE(5481), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3482), 3, + STATE(3589), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211537] = 9, + [218260] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7414), 1, - sym__attribute_designator, - STATE(7415), 1, - sym__identifier, - STATE(7416), 1, - sym__attribute, - STATE(3483), 3, + ACTIONS(4913), 1, + anon_sym_DOT, + ACTIONS(4915), 1, + anon_sym_LPAREN, + ACTIONS(4917), 1, + anon_sym_SQUOTE, + ACTIONS(4919), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, + sym_GENERIC, + ACTIONS(4923), 1, + sym_PARAMETER, + STATE(3594), 1, + aux_sym_name_repeat1, + STATE(4638), 1, + sym_generic_map_aspect, + STATE(4663), 1, + sym__name_selector, + ACTIONS(1487), 3, + sym_RETURN, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3590), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4919), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4921), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [211579] = 13, + STATE(4664), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [218314] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4923), 1, - anon_sym_RBRACK, ACTIONS(4925), 1, + anon_sym_RBRACK, + ACTIONS(4927), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5178), 1, + STATE(5488), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3484), 3, + STATE(3591), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211629] = 13, + [218364] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4927), 1, - anon_sym_RBRACK, ACTIONS(4929), 1, + anon_sym_RBRACK, + ACTIONS(4931), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5351), 1, + STATE(5487), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3485), 3, + STATE(3592), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211679] = 13, + [218414] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4931), 1, - anon_sym_RBRACK, ACTIONS(4933), 1, + anon_sym_RBRACK, + ACTIONS(4935), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5356), 1, + STATE(5457), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3486), 3, + STATE(3593), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211729] = 15, + [218464] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4899), 1, + ACTIONS(4913), 1, anon_sym_DOT, - ACTIONS(4901), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4917), 1, anon_sym_SQUOTE, - ACTIONS(4905), 1, + ACTIONS(4919), 1, anon_sym_LBRACK, - ACTIONS(4907), 1, + ACTIONS(4921), 1, sym_GENERIC, - ACTIONS(4909), 1, + ACTIONS(4923), 1, sym_PARAMETER, - STATE(3479), 1, + STATE(3605), 1, aux_sym_name_repeat1, - STATE(4445), 1, + STATE(4638), 1, sym_generic_map_aspect, - STATE(4588), 1, - sym_name_selector, - ACTIONS(1487), 3, + STATE(4663), 1, + sym__name_selector, + ACTIONS(1503), 3, sym_RETURN, anon_sym_COMMA, anon_sym_RBRACK, - STATE(3487), 3, + STATE(3594), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4590), 5, + STATE(4664), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [211783] = 13, + [218518] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4935), 1, - anon_sym_RBRACK, ACTIONS(4937), 1, + anon_sym_RBRACK, + ACTIONS(4939), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5256), 1, + STATE(5459), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3488), 3, + STATE(3595), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211833] = 13, + [218568] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4941), 1, + anon_sym_DOT, + ACTIONS(4943), 1, + anon_sym_LPAREN, + ACTIONS(4945), 1, + anon_sym_SQUOTE, + ACTIONS(4947), 1, + anon_sym_LBRACK, + ACTIONS(4949), 1, + sym_PARAMETER, + STATE(3657), 1, + aux_sym_name_repeat1, + STATE(4572), 1, + sym_generic_map_aspect, + STATE(4825), 1, + sym__name_selector, + STATE(3596), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1487), 4, + sym_GENERIC, + sym_PORT, + anon_sym_SEMI, + anon_sym_LT_EQ, + STATE(4827), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [218620] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4891), 1, + anon_sym_DOT, + ACTIONS(4893), 1, + anon_sym_LPAREN, + ACTIONS(4895), 1, + anon_sym_SQUOTE, + ACTIONS(4897), 1, + anon_sym_LBRACK, + ACTIONS(4899), 1, + sym_PARAMETER, + STATE(3623), 1, + aux_sym_name_repeat1, + STATE(4559), 1, + sym_generic_map_aspect, + STATE(4795), 1, + sym__name_selector, + STATE(3597), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1503), 4, + sym_GENERIC, + sym_PORT, + sym_USE, + anon_sym_SEMI, + STATE(4794), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [218672] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4939), 1, + ACTIONS(4951), 1, anon_sym_RBRACK, - ACTIONS(4941), 1, + ACTIONS(4953), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5354), 1, + STATE(5454), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3489), 3, + STATE(3598), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211883] = 13, + [218722] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4943), 1, + ACTIONS(4955), 1, anon_sym_RBRACK, - ACTIONS(4945), 1, + ACTIONS(4957), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5344), 1, + STATE(5448), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3490), 3, + STATE(3599), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211933] = 13, + [218772] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4947), 1, + ACTIONS(4959), 1, anon_sym_RBRACK, - ACTIONS(4949), 1, + ACTIONS(4961), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5333), 1, + STATE(5492), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3491), 3, + STATE(3600), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [211983] = 13, + [218822] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4951), 1, + ACTIONS(4963), 1, anon_sym_RBRACK, - ACTIONS(4953), 1, + ACTIONS(4965), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5336), 1, + STATE(5450), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3492), 3, + STATE(3601), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212033] = 13, + [218872] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4955), 1, + ACTIONS(4967), 1, anon_sym_RBRACK, - ACTIONS(4957), 1, + ACTIONS(4969), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5330), 1, + STATE(5502), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3493), 3, + STATE(3602), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212083] = 13, + [218922] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4959), 1, + ACTIONS(4971), 1, anon_sym_RBRACK, - ACTIONS(4961), 1, + ACTIONS(4973), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5181), 1, + STATE(5504), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3494), 3, + STATE(3603), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212133] = 13, + [218972] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4963), 1, + ACTIONS(4975), 1, anon_sym_RBRACK, - ACTIONS(4965), 1, + ACTIONS(4977), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5168), 1, + STATE(5444), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3495), 3, + STATE(3604), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212183] = 9, + [219022] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7416), 1, - sym__attribute, - STATE(7424), 1, - sym__identifier, - STATE(8044), 1, - sym__attribute_designator, - STATE(3496), 3, + ACTIONS(4979), 1, + anon_sym_DOT, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_SQUOTE, + ACTIONS(4988), 1, + anon_sym_LBRACK, + ACTIONS(4991), 1, + sym_GENERIC, + ACTIONS(4994), 1, + sym_PARAMETER, + STATE(4638), 1, + sym_generic_map_aspect, + STATE(4663), 1, + sym__name_selector, + ACTIONS(1465), 3, + sym_RETURN, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3605), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4919), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4921), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [212225] = 13, + aux_sym_name_repeat1, + STATE(4664), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [219074] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4967), 1, + ACTIONS(4997), 1, anon_sym_RBRACK, - ACTIONS(4969), 1, + ACTIONS(4999), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5184), 1, + STATE(5513), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3497), 3, + STATE(3606), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212275] = 13, + [219124] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4971), 1, + ACTIONS(5001), 1, anon_sym_RBRACK, - ACTIONS(4973), 1, + ACTIONS(5003), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5373), 1, + STATE(5429), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3498), 3, + STATE(3607), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212325] = 13, + [219174] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4975), 1, + ACTIONS(5005), 1, anon_sym_RBRACK, - ACTIONS(4977), 1, + ACTIONS(5007), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5322), 1, + STATE(5438), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3499), 3, + STATE(3608), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212375] = 13, + [219224] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4979), 1, + ACTIONS(5009), 1, anon_sym_RBRACK, - ACTIONS(4981), 1, + ACTIONS(5011), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5324), 1, + STATE(5425), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3500), 3, + STATE(3609), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212425] = 13, + [219274] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4983), 1, + ACTIONS(5013), 1, anon_sym_RBRACK, - ACTIONS(4985), 1, + ACTIONS(5015), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5317), 1, + STATE(5519), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3501), 3, + STATE(3610), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212475] = 13, + [219324] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(4222), 1, - anon_sym_LPAREN, - STATE(2920), 1, + ACTIONS(5017), 1, + anon_sym_RBRACK, + ACTIONS(5019), 1, + sym_RETURN, + STATE(3590), 1, sym__direct_name, - STATE(5848), 1, + STATE(5421), 1, sym_name, - STATE(5989), 1, - sym_resolution_indication, - STATE(4246), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3502), 3, + STATE(3611), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212525] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4987), 1, - anon_sym_DOT, - ACTIONS(4990), 1, - anon_sym_LPAREN, - ACTIONS(4993), 1, - anon_sym_SQUOTE, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4999), 1, - sym_GENERIC, - ACTIONS(5002), 1, - sym_PARAMETER, - STATE(4456), 1, - sym_generic_map_aspect, - STATE(4520), 1, - sym_name_selector, - ACTIONS(1465), 3, - sym_PORT, - sym_USE, - anon_sym_SEMI, - STATE(3503), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_name_repeat1, - STATE(4524), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [212577] = 13, + [219374] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5005), 1, + ACTIONS(5021), 1, anon_sym_RBRACK, - ACTIONS(5007), 1, + ACTIONS(5023), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5189), 1, + STATE(5511), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3504), 3, + STATE(3612), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212627] = 9, + [219424] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7416), 1, - sym__attribute, - STATE(7622), 1, + ACTIONS(4877), 1, + anon_sym_LT_LT, + ACTIONS(5025), 1, + anon_sym_RBRACK, + ACTIONS(5027), 1, + sym_RETURN, + STATE(3590), 1, + sym__direct_name, + STATE(5416), 1, + sym_name, + STATE(4659), 2, sym__identifier, - STATE(8070), 1, - sym__attribute_designator, - STATE(3505), 3, + sym__external_name, + ACTIONS(4885), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3613), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4919), 4, + STATE(4660), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4921), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [212669] = 13, + [219474] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5009), 1, + ACTIONS(5029), 1, anon_sym_RBRACK, - ACTIONS(5011), 1, + ACTIONS(5031), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5194), 1, + STATE(5414), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3506), 3, + STATE(3614), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212719] = 8, + [219524] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(5013), 1, - sym_PARAMETER, - STATE(3718), 1, - sym_parenthesis_group, - STATE(3507), 3, + ACTIONS(4877), 1, + anon_sym_LT_LT, + ACTIONS(5033), 1, + anon_sym_RBRACK, + ACTIONS(5035), 1, + sym_RETURN, + STATE(3590), 1, + sym__direct_name, + STATE(5525), 1, + sym_name, + STATE(4659), 2, + sym__identifier, + sym__external_name, + ACTIONS(4885), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3615), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 14, + STATE(4660), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4881), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [212759] = 13, + [219574] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5015), 1, + ACTIONS(5037), 1, anon_sym_RBRACK, - ACTIONS(5017), 1, + ACTIONS(5039), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5199), 1, + STATE(5527), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3508), 3, + STATE(3616), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212809] = 13, + [219624] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5019), 1, + ACTIONS(5041), 1, anon_sym_RBRACK, - ACTIONS(5021), 1, + ACTIONS(5043), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5378), 1, + STATE(5524), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3509), 3, + STATE(3617), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212859] = 13, + [219674] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5045), 1, + anon_sym_DOT, + ACTIONS(5047), 1, + anon_sym_LPAREN, + ACTIONS(5049), 1, + anon_sym_SQUOTE, + ACTIONS(5051), 1, + anon_sym_LBRACK, + ACTIONS(5053), 1, + sym_GENERIC, + ACTIONS(5055), 1, + sym_PARAMETER, + STATE(3637), 1, + aux_sym_name_repeat1, + STATE(4595), 1, + sym_generic_map_aspect, + STATE(4818), 1, + sym__name_selector, + ACTIONS(1503), 3, + sym_OF, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(3618), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4830), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [219728] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5023), 1, + ACTIONS(5057), 1, anon_sym_RBRACK, - ACTIONS(5025), 1, + ACTIONS(5059), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5309), 1, + STATE(5532), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3510), 3, + STATE(3619), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [212909] = 9, + [219778] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7416), 1, - sym__attribute, - STATE(7593), 1, + ACTIONS(4877), 1, + anon_sym_LT_LT, + ACTIONS(5061), 1, + anon_sym_RBRACK, + ACTIONS(5063), 1, + sym_RETURN, + STATE(3590), 1, + sym__direct_name, + STATE(5536), 1, + sym_name, + STATE(4659), 2, sym__identifier, - STATE(8065), 1, - sym__attribute_designator, - STATE(3511), 3, + sym__external_name, + ACTIONS(4885), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3620), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4919), 4, + STATE(4660), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4921), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [212951] = 14, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(4228), 1, - anon_sym_DOT, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_SQUOTE, - ACTIONS(4234), 1, - anon_sym_LBRACK, - ACTIONS(4238), 1, - sym_PARAMETER, - STATE(3474), 1, - aux_sym_name_repeat1, - STATE(4261), 1, - sym_generic_map_aspect, - STATE(4270), 1, - sym_name_selector, - STATE(3512), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 4, - sym_GENERIC, - sym_RANGE, - anon_sym_SEMI, - sym_variable_assignment, - STATE(4271), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [213003] = 13, + [219828] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5027), 1, + ACTIONS(5065), 1, anon_sym_RBRACK, - ACTIONS(5029), 1, + ACTIONS(5067), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5170), 1, + STATE(5542), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3513), 3, + STATE(3621), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213053] = 14, + [219878] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5031), 1, + ACTIONS(5045), 1, anon_sym_DOT, - ACTIONS(5034), 1, + ACTIONS(5047), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5040), 1, + ACTIONS(5051), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, + ACTIONS(5053), 1, sym_GENERIC, - ACTIONS(5046), 1, + ACTIONS(5055), 1, sym_PARAMETER, - STATE(4498), 1, + STATE(3618), 1, + aux_sym_name_repeat1, + STATE(4595), 1, sym_generic_map_aspect, - STATE(4691), 1, - sym_name_selector, - ACTIONS(1465), 3, + STATE(4818), 1, + sym__name_selector, + ACTIONS(1487), 3, sym_OF, anon_sym_SEMI, anon_sym_RPAREN, - STATE(3514), 4, + STATE(3622), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(4661), 5, + STATE(4830), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [213105] = 14, + [219932] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5049), 1, + ACTIONS(5069), 1, anon_sym_DOT, - ACTIONS(5052), 1, + ACTIONS(5072), 1, anon_sym_LPAREN, - ACTIONS(5055), 1, + ACTIONS(5075), 1, anon_sym_SQUOTE, - ACTIONS(5058), 1, + ACTIONS(5078), 1, anon_sym_LBRACK, - ACTIONS(5061), 1, + ACTIONS(5081), 1, sym_GENERIC, - ACTIONS(5064), 1, + ACTIONS(5084), 1, sym_PARAMETER, - STATE(4445), 1, + STATE(4559), 1, sym_generic_map_aspect, - STATE(4588), 1, - sym_name_selector, + STATE(4795), 1, + sym__name_selector, ACTIONS(1465), 3, - sym_RETURN, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3515), 4, + sym_PORT, + sym_USE, + anon_sym_SEMI, + STATE(3623), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(4590), 5, + STATE(4794), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [213157] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(7416), 1, - sym__attribute, - STATE(7549), 1, - sym__identifier, - STATE(8058), 1, - sym__attribute_designator, - STATE(3516), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4919), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4921), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [213199] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(7416), 1, - sym__attribute, - STATE(7489), 1, - sym__identifier, - STATE(8051), 1, - sym__attribute_designator, - STATE(3517), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(4919), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4921), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [213241] = 13, + [219984] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5067), 1, + ACTIONS(5087), 1, anon_sym_RBRACK, - ACTIONS(5069), 1, + ACTIONS(5089), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5225), 1, + STATE(5406), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3518), 3, + STATE(3624), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213291] = 13, + [220034] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5091), 1, anon_sym_RBRACK, - ACTIONS(5073), 1, + ACTIONS(5093), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5207), 1, + STATE(5400), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3519), 3, + STATE(3625), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213341] = 13, + [220084] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5075), 1, + ACTIONS(5095), 1, anon_sym_RBRACK, - ACTIONS(5077), 1, + ACTIONS(5097), 1, sym_RETURN, - STATE(3487), 1, - sym__direct_name, - STATE(5306), 1, - sym_name, - STATE(4582), 2, - sym__identifier, - sym__external_name, - ACTIONS(4865), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3520), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4584), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4861), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [213391] = 13, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(5079), 1, - sym_box, - STATE(2920), 1, + STATE(3590), 1, sym__direct_name, - STATE(5969), 1, - sym__interface_subprogram_default, - STATE(5971), 1, + STATE(5399), 1, sym_name, - STATE(4246), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3521), 3, + STATE(3626), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213441] = 5, + [220134] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3522), 3, + ACTIONS(5099), 1, + anon_sym_DOT, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_SQUOTE, + ACTIONS(5105), 1, + anon_sym_LBRACK, + ACTIONS(5107), 1, + sym_GENERIC, + ACTIONS(5109), 1, + sym_PARAMETER, + STATE(3647), 1, + aux_sym_name_repeat1, + STATE(4607), 1, + sym_generic_map_aspect, + STATE(4718), 1, + sym__name_selector, + ACTIONS(1503), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(3627), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5081), 17, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_IS, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [213475] = 15, + STATE(4720), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [220188] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5083), 1, + ACTIONS(5099), 1, anon_sym_DOT, - ACTIONS(5085), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5087), 1, + ACTIONS(5103), 1, anon_sym_SQUOTE, - ACTIONS(5089), 1, + ACTIONS(5105), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5107), 1, sym_GENERIC, - ACTIONS(5093), 1, + ACTIONS(5109), 1, sym_PARAMETER, - STATE(3514), 1, + STATE(3627), 1, aux_sym_name_repeat1, - STATE(4498), 1, + STATE(4607), 1, sym_generic_map_aspect, - STATE(4691), 1, - sym_name_selector, - ACTIONS(1503), 3, - sym_OF, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(3523), 3, + STATE(4718), 1, + sym__name_selector, + ACTIONS(1487), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(3628), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4661), 5, + STATE(4720), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [213529] = 13, + [220242] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - ACTIONS(5095), 1, - anon_sym_RBRACK, - ACTIONS(5097), 1, - sym_RETURN, - STATE(3487), 1, + ACTIONS(5111), 1, + sym_box, + STATE(3020), 1, sym__direct_name, - STATE(5340), 1, + STATE(6177), 1, + sym__interface_subprogram_default, + STATE(6178), 1, sym_name, - STATE(4582), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3524), 3, + STATE(3629), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213579] = 13, + [220292] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - ACTIONS(5099), 1, + ACTIONS(4248), 1, + anon_sym_LPAREN, + STATE(3020), 1, + sym__direct_name, + STATE(6192), 1, + sym_resolution_indication, + STATE(6350), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3630), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [220342] = 13, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4877), 1, + anon_sym_LT_LT, + ACTIONS(5113), 1, anon_sym_RBRACK, - ACTIONS(5101), 1, + ACTIONS(5115), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5299), 1, + STATE(5395), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3525), 3, + STATE(3631), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213629] = 13, + [220392] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5103), 1, + ACTIONS(5117), 1, anon_sym_RBRACK, - ACTIONS(5105), 1, + ACTIONS(5119), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5302), 1, + STATE(5393), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3526), 3, + STATE(3632), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213679] = 13, + [220442] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5107), 1, + ACTIONS(5121), 1, anon_sym_RBRACK, - ACTIONS(5109), 1, + ACTIONS(5123), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5296), 1, + STATE(5392), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3527), 3, + STATE(3633), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213729] = 13, + [220492] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, + ACTIONS(5125), 1, anon_sym_RBRACK, - ACTIONS(5113), 1, + ACTIONS(5127), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5209), 1, + STATE(5386), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3528), 3, + STATE(3634), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213779] = 13, + [220542] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5115), 1, + ACTIONS(5129), 1, anon_sym_RBRACK, - ACTIONS(5117), 1, + ACTIONS(5131), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5288), 1, + STATE(5415), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3529), 3, + STATE(3635), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213829] = 13, + [220592] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5119), 1, + ACTIONS(5133), 1, anon_sym_RBRACK, - ACTIONS(5121), 1, + ACTIONS(5135), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5285), 1, + STATE(5554), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3530), 3, + STATE(3636), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213879] = 13, + [220642] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5137), 1, + anon_sym_DOT, + ACTIONS(5140), 1, + anon_sym_LPAREN, + ACTIONS(5143), 1, + anon_sym_SQUOTE, + ACTIONS(5146), 1, + anon_sym_LBRACK, + ACTIONS(5149), 1, + sym_GENERIC, + ACTIONS(5152), 1, + sym_PARAMETER, + STATE(4595), 1, + sym_generic_map_aspect, + STATE(4818), 1, + sym__name_selector, + ACTIONS(1465), 3, + sym_OF, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(3637), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_name_repeat1, + STATE(4830), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [220694] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5123), 1, + ACTIONS(5155), 1, anon_sym_RBRACK, - ACTIONS(5125), 1, + ACTIONS(5157), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5279), 1, + STATE(5486), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3531), 3, + STATE(3638), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [213929] = 15, + [220744] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5083), 1, + ACTIONS(5159), 1, anon_sym_DOT, - ACTIONS(5085), 1, + ACTIONS(5162), 1, anon_sym_LPAREN, - ACTIONS(5087), 1, + ACTIONS(5165), 1, anon_sym_SQUOTE, - ACTIONS(5089), 1, + ACTIONS(5168), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5171), 1, sym_GENERIC, - ACTIONS(5093), 1, + ACTIONS(5174), 1, sym_PARAMETER, - STATE(3523), 1, - aux_sym_name_repeat1, - STATE(4498), 1, + STATE(4572), 1, sym_generic_map_aspect, - STATE(4691), 1, - sym_name_selector, - ACTIONS(1487), 3, - sym_OF, + STATE(4825), 1, + sym__name_selector, + ACTIONS(1465), 3, + sym_PORT, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(3532), 3, + anon_sym_LT_EQ, + STATE(3639), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4661), 5, + aux_sym_name_repeat1, + STATE(4827), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [213983] = 13, + [220796] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5127), 1, + ACTIONS(5177), 1, anon_sym_RBRACK, - ACTIONS(5129), 1, + ACTIONS(5179), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5272), 1, + STATE(5378), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3533), 3, + STATE(3640), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214033] = 13, + [220846] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5131), 1, + ACTIONS(5181), 1, anon_sym_RBRACK, - ACTIONS(5133), 1, + ACTIONS(5183), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5266), 1, + STATE(5379), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3534), 3, + STATE(3641), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214083] = 15, + [220896] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5135), 1, - anon_sym_DOT, - ACTIONS(5137), 1, + ACTIONS(4142), 1, anon_sym_LPAREN, - ACTIONS(5139), 1, - anon_sym_SQUOTE, - ACTIONS(5141), 1, - anon_sym_LBRACK, - ACTIONS(5143), 1, - sym_GENERIC, - ACTIONS(5145), 1, + ACTIONS(5185), 1, sym_PARAMETER, - STATE(3538), 1, - aux_sym_name_repeat1, - STATE(4496), 1, - sym_generic_map_aspect, - STATE(4694), 1, - sym_name_selector, - ACTIONS(1487), 3, + STATE(3732), 1, + sym_parenthesis_group, + STATE(3642), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2097), 14, + sym_identifier, + sym_GENERIC, sym_IS, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(3535), 3, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_DOT, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [220936] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(7625), 1, + sym__attribute_designator, + STATE(7626), 1, + sym__identifier, + STATE(7627), 1, + sym__attribute, + STATE(3643), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4695), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [214137] = 13, + ACTIONS(5187), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(5189), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [220978] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5147), 1, + ACTIONS(5191), 1, anon_sym_RBRACK, - ACTIONS(5149), 1, + ACTIONS(5193), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5281), 1, + STATE(5373), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3536), 3, + STATE(3644), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214187] = 13, + [221028] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5151), 1, + ACTIONS(5195), 1, anon_sym_RBRACK, - ACTIONS(5153), 1, + ACTIONS(5197), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5267), 1, + STATE(5347), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3537), 3, + STATE(3645), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214237] = 15, + [221078] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5135), 1, + ACTIONS(5199), 1, anon_sym_DOT, - ACTIONS(5137), 1, + ACTIONS(5201), 1, anon_sym_LPAREN, - ACTIONS(5139), 1, + ACTIONS(5203), 1, anon_sym_SQUOTE, - ACTIONS(5141), 1, + ACTIONS(5205), 1, anon_sym_LBRACK, - ACTIONS(5143), 1, + ACTIONS(5207), 1, sym_GENERIC, - ACTIONS(5145), 1, + ACTIONS(5209), 1, sym_PARAMETER, - STATE(3539), 1, + STATE(3653), 1, aux_sym_name_repeat1, - STATE(4496), 1, + STATE(4626), 1, sym_generic_map_aspect, - STATE(4694), 1, - sym_name_selector, + STATE(4701), 1, + sym__name_selector, ACTIONS(1503), 3, sym_IS, anon_sym_SEMI, anon_sym_RPAREN, - STATE(3538), 3, + STATE(3646), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4695), 5, + STATE(4700), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [214291] = 14, + [221132] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5155), 1, + ACTIONS(5211), 1, anon_sym_DOT, - ACTIONS(5158), 1, + ACTIONS(5214), 1, anon_sym_LPAREN, - ACTIONS(5161), 1, + ACTIONS(5217), 1, anon_sym_SQUOTE, - ACTIONS(5164), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5167), 1, + ACTIONS(5223), 1, sym_GENERIC, - ACTIONS(5170), 1, + ACTIONS(5226), 1, sym_PARAMETER, - STATE(4496), 1, + STATE(4607), 1, sym_generic_map_aspect, - STATE(4694), 1, - sym_name_selector, + STATE(4718), 1, + sym__name_selector, ACTIONS(1465), 3, - sym_IS, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(3539), 4, + sym_END, + sym_FOR, + sym_USE, + STATE(3647), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_name_repeat1, - STATE(4695), 5, + STATE(4720), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [214343] = 13, + [221184] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3648), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5229), 17, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_IS, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [221218] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5173), 1, + ACTIONS(5231), 1, anon_sym_RBRACK, - ACTIONS(5175), 1, + ACTIONS(5233), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5261), 1, + STATE(5453), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3540), 3, + STATE(3649), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214393] = 13, + [221268] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, - anon_sym_LT_LT, - ACTIONS(5177), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - sym_RETURN, - STATE(3487), 1, - sym__direct_name, - STATE(5310), 1, - sym_name, - STATE(4582), 2, + STATE(7627), 1, + sym__attribute, + STATE(7842), 1, sym__identifier, - sym__external_name, - ACTIONS(4865), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3541), 3, + STATE(8291), 1, + sym__attribute_designator, + STATE(3650), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(5187), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214443] = 13, + ACTIONS(5189), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [221310] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, - anon_sym_LT_LT, - ACTIONS(5181), 1, - anon_sym_RBRACK, - ACTIONS(5183), 1, - sym_RETURN, - STATE(3487), 1, - sym__direct_name, - STATE(5212), 1, - sym_name, - STATE(4582), 2, + STATE(7627), 1, + sym__attribute, + STATE(7643), 1, sym__identifier, - sym__external_name, - ACTIONS(4865), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3542), 3, + STATE(8265), 1, + sym__attribute_designator, + STATE(3651), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(5187), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214493] = 13, + ACTIONS(5189), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [221352] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, - anon_sym_LT_LT, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - sym_RETURN, - STATE(3487), 1, - sym__direct_name, - STATE(5165), 1, - sym_name, - STATE(4582), 2, + STATE(7627), 1, + sym__attribute, + STATE(7708), 1, sym__identifier, - sym__external_name, - ACTIONS(4865), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3543), 3, + STATE(8272), 1, + sym__attribute_designator, + STATE(3652), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(5187), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214543] = 14, + ACTIONS(5189), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [221394] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5189), 1, + ACTIONS(5235), 1, anon_sym_DOT, - ACTIONS(5191), 1, + ACTIONS(5238), 1, anon_sym_LPAREN, - ACTIONS(5193), 1, + ACTIONS(5241), 1, anon_sym_SQUOTE, - ACTIONS(5195), 1, + ACTIONS(5244), 1, anon_sym_LBRACK, - ACTIONS(5197), 1, + ACTIONS(5247), 1, + sym_GENERIC, + ACTIONS(5250), 1, sym_PARAMETER, - STATE(3547), 1, - aux_sym_name_repeat1, - STATE(4441), 1, + STATE(4626), 1, sym_generic_map_aspect, - STATE(4537), 1, - sym_name_selector, - STATE(3544), 3, + STATE(4701), 1, + sym__name_selector, + ACTIONS(1465), 3, + sym_IS, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(3653), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1487), 4, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - anon_sym_LT_EQ, - STATE(4544), 5, + aux_sym_name_repeat1, + STATE(4700), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [214595] = 13, + [221446] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, - anon_sym_LT_LT, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(5201), 1, - sym_RETURN, - STATE(3487), 1, - sym__direct_name, - STATE(5253), 1, - sym_name, - STATE(4582), 2, + STATE(7627), 1, + sym__attribute, + STATE(7812), 1, sym__identifier, - sym__external_name, - ACTIONS(4865), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3545), 3, + STATE(8286), 1, + sym__attribute_designator, + STATE(3654), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(5187), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214645] = 13, + ACTIONS(5189), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [221488] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5203), 1, + ACTIONS(5253), 1, anon_sym_RBRACK, - ACTIONS(5205), 1, + ACTIONS(5255), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5247), 1, + STATE(5368), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3546), 3, + STATE(3655), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214695] = 14, + [221538] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5189), 1, + ACTIONS(4232), 1, anon_sym_DOT, - ACTIONS(5191), 1, + ACTIONS(4234), 1, anon_sym_LPAREN, - ACTIONS(5193), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(5195), 1, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(5197), 1, + ACTIONS(4242), 1, sym_PARAMETER, - STATE(3553), 1, + STATE(3661), 1, aux_sym_name_repeat1, - STATE(4441), 1, + STATE(4390), 1, sym_generic_map_aspect, - STATE(4537), 1, - sym_name_selector, - STATE(3547), 3, + STATE(4403), 1, + sym__name_selector, + STATE(3656), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1487), 4, + sym_GENERIC, + sym_RANGE, + anon_sym_SEMI, + sym_variable_assignment, + STATE(4404), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [221590] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4941), 1, + anon_sym_DOT, + ACTIONS(4943), 1, + anon_sym_LPAREN, + ACTIONS(4945), 1, + anon_sym_SQUOTE, + ACTIONS(4947), 1, + anon_sym_LBRACK, + ACTIONS(4949), 1, + sym_PARAMETER, + STATE(3639), 1, + aux_sym_name_repeat1, + STATE(4572), 1, + sym_generic_map_aspect, + STATE(4825), 1, + sym__name_selector, + STATE(3657), 3, sym__tool_directive, sym_line_comment, sym_block_comment, @@ -224602,1631 +231089,1451 @@ static const uint16_t ts_small_parse_table[] = { sym_PORT, anon_sym_SEMI, anon_sym_LT_EQ, - STATE(4544), 5, + STATE(4827), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [214747] = 13, + [221642] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5207), 1, + ACTIONS(5257), 1, anon_sym_RBRACK, - ACTIONS(5209), 1, + ACTIONS(5259), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5236), 1, + STATE(5367), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3548), 3, + STATE(3658), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214797] = 13, + [221692] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5199), 1, + anon_sym_DOT, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_SQUOTE, + ACTIONS(5205), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + sym_GENERIC, + ACTIONS(5209), 1, + sym_PARAMETER, + STATE(3646), 1, + aux_sym_name_repeat1, + STATE(4626), 1, + sym_generic_map_aspect, + STATE(4701), 1, + sym__name_selector, + ACTIONS(1487), 3, + sym_IS, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(3659), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4700), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [221746] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5211), 1, + ACTIONS(5261), 1, anon_sym_RBRACK, - ACTIONS(5213), 1, + ACTIONS(5263), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5240), 1, + STATE(5549), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3549), 3, + STATE(3660), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214847] = 13, + [221796] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4232), 1, + anon_sym_DOT, + ACTIONS(4234), 1, + anon_sym_LPAREN, + ACTIONS(4236), 1, + anon_sym_SQUOTE, + ACTIONS(4238), 1, + anon_sym_LBRACK, + ACTIONS(4242), 1, + sym_PARAMETER, + STATE(3286), 1, + aux_sym_name_repeat1, + STATE(4390), 1, + sym_generic_map_aspect, + STATE(4403), 1, + sym__name_selector, + STATE(3661), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1503), 4, + sym_GENERIC, + sym_RANGE, + anon_sym_SEMI, + sym_variable_assignment, + STATE(4404), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [221848] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5215), 1, + ACTIONS(5265), 1, anon_sym_RBRACK, - ACTIONS(5217), 1, + ACTIONS(5267), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5232), 1, + STATE(5361), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3550), 3, + STATE(3662), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214897] = 13, + [221898] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5219), 1, + ACTIONS(5269), 1, anon_sym_RBRACK, - ACTIONS(5221), 1, + ACTIONS(5271), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5226), 1, + STATE(5363), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3551), 3, + STATE(3663), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214947] = 13, + [221948] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5223), 1, + ACTIONS(5273), 1, anon_sym_RBRACK, - ACTIONS(5225), 1, + ACTIONS(5275), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5222), 1, + STATE(5357), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3552), 3, + STATE(3664), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [214997] = 14, + [221998] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5227), 1, - anon_sym_DOT, - ACTIONS(5230), 1, - anon_sym_LPAREN, - ACTIONS(5233), 1, - anon_sym_SQUOTE, - ACTIONS(5236), 1, - anon_sym_LBRACK, - ACTIONS(5239), 1, - sym_GENERIC, - ACTIONS(5242), 1, - sym_PARAMETER, - STATE(4441), 1, - sym_generic_map_aspect, - STATE(4537), 1, - sym_name_selector, - ACTIONS(1465), 3, - sym_PORT, - anon_sym_SEMI, - anon_sym_LT_EQ, - STATE(3553), 4, + STATE(7627), 1, + sym__attribute, + STATE(7768), 1, + sym__identifier, + STATE(8279), 1, + sym__attribute_designator, + STATE(3665), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(4544), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [215049] = 13, + ACTIONS(5187), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(5189), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [222040] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - ACTIONS(5245), 1, + ACTIONS(5277), 1, anon_sym_RBRACK, - ACTIONS(5247), 1, + ACTIONS(5279), 1, sym_RETURN, - STATE(3487), 1, + STATE(3590), 1, sym__direct_name, - STATE(5220), 1, + STATE(5352), 1, sym_name, - STATE(4582), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3554), 3, + STATE(3666), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4584), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [215099] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5249), 1, - anon_sym_DOT, - ACTIONS(5251), 1, - anon_sym_LPAREN, - ACTIONS(5253), 1, - anon_sym_SQUOTE, - ACTIONS(5255), 1, - anon_sym_LBRACK, - ACTIONS(5257), 1, - sym_GENERIC, - ACTIONS(5259), 1, - sym_PARAMETER, - STATE(3477), 1, - aux_sym_name_repeat1, - STATE(4421), 1, - sym_generic_map_aspect, - STATE(4570), 1, - sym_name_selector, - ACTIONS(1503), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(3555), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4572), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [215153] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5249), 1, - anon_sym_DOT, - ACTIONS(5251), 1, - anon_sym_LPAREN, - ACTIONS(5253), 1, - anon_sym_SQUOTE, - ACTIONS(5255), 1, - anon_sym_LBRACK, - ACTIONS(5257), 1, - sym_GENERIC, - ACTIONS(5259), 1, - sym_PARAMETER, - STATE(3555), 1, - aux_sym_name_repeat1, - STATE(4421), 1, - sym_generic_map_aspect, - STATE(4570), 1, - sym_name_selector, - ACTIONS(1487), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(3556), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4572), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [215207] = 15, + [222090] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6812), 1, + sym__external_pathname, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7777), 1, - sym__external_pathname, - STATE(3557), 3, + STATE(3667), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [215260] = 15, + [222143] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7742), 1, + STATE(7941), 1, sym__external_pathname, - STATE(3558), 3, + STATE(3668), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [215313] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3559), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3382), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [215346] = 5, + [222196] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3560), 3, + ACTIONS(5287), 1, + anon_sym_LPAREN, + ACTIONS(5289), 1, + anon_sym_LT_LT, + STATE(3622), 1, + sym__direct_name, + STATE(5812), 1, + sym_name, + STATE(4798), 2, + sym__identifier, + sym__external_name, + ACTIONS(5293), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3669), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3360), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [215379] = 15, + STATE(4802), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5291), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [222243] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7659), 1, + STATE(7739), 1, sym__external_pathname, - STATE(3561), 3, + STATE(3670), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [215432] = 15, + [222296] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7660), 1, - sym__external_pathname, - STATE(3562), 3, + STATE(3671), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3378), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [215485] = 12, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222329] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5267), 1, - anon_sym_LT_LT, - STATE(3454), 1, - sym__direct_name, - STATE(4999), 1, - sym_name, - STATE(5419), 1, - sym_sensitivity_list, - STATE(4418), 2, - sym__identifier, - sym__external_name, - ACTIONS(5271), 3, + STATE(3672), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3406), 16, + sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, sym_character_literal, sym_operator_symbol, + sym_library_constant, sym_library_constant_std_logic, - STATE(3563), 3, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222362] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3673), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4424), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(5269), 4, + ACTIONS(3376), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [215532] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222395] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7661), 1, - sym__external_pathname, - STATE(3564), 3, + STATE(3674), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3374), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [215585] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222428] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7662), 1, - sym__external_pathname, - STATE(3565), 3, + STATE(3675), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3436), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [215638] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222461] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7663), 1, - sym__external_pathname, - STATE(3566), 3, + STATE(3676), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3286), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [222494] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3677), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3398), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [215691] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222527] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7664), 1, - sym__external_pathname, - STATE(3567), 3, + STATE(3678), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3400), 16, + sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222560] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3679), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3402), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [215744] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222593] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7665), 1, + STATE(7791), 1, sym__external_pathname, - STATE(3568), 3, + STATE(3680), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [215797] = 15, + [222646] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7666), 1, + STATE(7792), 1, sym__external_pathname, - STATE(3569), 3, + STATE(3681), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [215850] = 15, + [222699] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7658), 1, - sym__external_pathname, - STATE(3570), 3, + STATE(3682), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3414), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [215903] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222732] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7657), 1, - sym__external_pathname, - STATE(3571), 3, + STATE(3683), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3416), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [215956] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222765] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7667), 1, + STATE(7793), 1, sym__external_pathname, - STATE(3572), 3, + STATE(3684), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [216009] = 15, + [222818] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7668), 1, - sym__external_pathname, - STATE(3573), 3, + STATE(3685), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3302), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216062] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222851] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7669), 1, - sym__external_pathname, - STATE(3574), 3, + STATE(3686), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3418), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216115] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222884] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7670), 1, - sym__external_pathname, - STATE(3575), 3, + STATE(3687), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3328), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216168] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222917] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7656), 1, - sym__external_pathname, - STATE(3576), 3, + STATE(3688), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3326), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216221] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [222950] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7671), 1, + STATE(7737), 1, sym__external_pathname, - STATE(3577), 3, + STATE(3689), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [216274] = 15, + [223003] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7655), 1, - sym__external_pathname, - STATE(3578), 3, + STATE(3690), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [216327] = 15, + ACTIONS(5295), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [223036] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7654), 1, - sym__external_pathname, - STATE(3579), 3, + STATE(3691), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2374), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216380] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [223069] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7672), 1, - sym__external_pathname, - STATE(3580), 3, + STATE(3692), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3438), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216433] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [223102] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7673), 1, - sym__external_pathname, - STATE(3581), 3, + STATE(3693), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [216486] = 15, + ACTIONS(3304), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [223135] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7674), 1, - sym__external_pathname, - STATE(3582), 3, + STATE(3694), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2602), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216539] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [223168] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7675), 1, - sym__external_pathname, - STATE(3583), 3, + STATE(3695), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3440), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216592] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [223201] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7676), 1, - sym__external_pathname, - STATE(3584), 3, + STATE(3696), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2640), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216645] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [223234] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7677), 1, - sym__external_pathname, - STATE(3585), 3, + STATE(3697), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2466), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [216698] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [223267] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7678), 1, + STATE(7829), 1, sym__external_pathname, - STATE(3586), 3, + STATE(3698), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [216751] = 15, + [223320] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7653), 1, - sym__external_pathname, - STATE(3587), 3, + STATE(3699), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [216804] = 15, + ACTIONS(3272), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [223353] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7652), 1, - sym__external_pathname, - STATE(3588), 3, + STATE(3700), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [216857] = 15, + ACTIONS(3270), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [223386] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7650), 1, - sym__external_pathname, - STATE(3589), 3, + STATE(3701), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [216910] = 15, + ACTIONS(5297), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [223419] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7679), 1, - sym__external_pathname, - STATE(3590), 3, + STATE(3702), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [216963] = 5, + ACTIONS(3306), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [223452] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3591), 3, + STATE(3703), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 16, + ACTIONS(2474), 16, sym_identifier, sym_GENERIC, sym_IS, @@ -226243,453 +232550,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_SQUOTE, anon_sym_LBRACK, - [216996] = 15, + [223485] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7649), 1, + STATE(7675), 1, sym__external_pathname, - STATE(3592), 3, + STATE(3704), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [217049] = 15, + [223538] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7680), 1, + STATE(7830), 1, sym__external_pathname, - STATE(3593), 3, + STATE(3705), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [217102] = 15, + [223591] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7648), 1, + STATE(7831), 1, sym__external_pathname, - STATE(3594), 3, + STATE(3706), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [217155] = 15, + [223644] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7681), 1, + STATE(7674), 1, sym__external_pathname, - STATE(3595), 3, + STATE(3707), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [217208] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3596), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3452), 16, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [217241] = 15, + [223697] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7644), 1, + STATE(7673), 1, sym__external_pathname, - STATE(3597), 3, + STATE(3708), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [217294] = 14, + [223750] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5273), 1, - anon_sym_DOT, - ACTIONS(5276), 1, - anon_sym_LPAREN, - ACTIONS(5279), 1, - anon_sym_SQUOTE, - ACTIONS(5282), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - sym_GENERIC, - ACTIONS(5288), 1, - sym_PARAMETER, - STATE(4543), 1, - sym_generic_map_aspect, - STATE(4771), 1, - sym_name_selector, - ACTIONS(1465), 2, - sym_IS, - sym_RANGE, - STATE(3598), 4, + STATE(3709), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_name_repeat1, - STATE(4785), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [217345] = 15, + ACTIONS(3308), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [223783] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7643), 1, - sym__external_pathname, - STATE(3599), 3, + STATE(3710), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2498), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [217398] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [223816] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7642), 1, - sym__external_pathname, - STATE(3600), 3, + STATE(3711), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3218), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [217451] = 5, + anon_sym_LPAREN, + anon_sym_LT_LT, + [223849] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3601), 3, + STATE(3712), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5291), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, + ACTIONS(3464), 16, + sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [217484] = 15, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [223882] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6002), 1, + sym_name, + STATE(7080), 1, + sym_group_constituent_list, + STATE(4332), 2, sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7682), 1, - sym__external_pathname, - STATE(3602), 3, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3713), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [217537] = 15, + [223929] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7683), 1, - sym__external_pathname, - STATE(3603), 3, + STATE(3714), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3474), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [217590] = 5, + anon_sym_LPAREN, + anon_sym_LT_LT, + [223962] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3604), 3, + STATE(3715), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3424), 16, + ACTIONS(3476), 16, sym_identifier, sym_ASSERT, sym_ELSE, @@ -226706,350 +232943,314 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [217623] = 5, + [223995] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3605), 3, + STATE(3716), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5293), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [217656] = 15, + ACTIONS(2502), 16, + sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224028] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6002), 1, + sym_name, + STATE(7059), 1, + sym_group_constituent_list, + STATE(4332), 2, sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7684), 1, - sym__external_pathname, - STATE(3606), 3, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3717), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [217709] = 15, + [224075] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7685), 1, - sym__external_pathname, - STATE(3607), 3, + STATE(3718), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3300), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [217762] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [224108] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7686), 1, - sym__external_pathname, - STATE(3608), 3, + STATE(3719), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3294), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [217815] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [224141] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5299), 1, anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7633), 1, - sym__external_pathname, - STATE(3609), 3, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_SQUOTE, + ACTIONS(5308), 1, + anon_sym_LBRACK, + ACTIONS(5311), 1, + sym_GENERIC, + ACTIONS(5314), 1, + sym_PARAMETER, + STATE(4803), 1, + sym_generic_map_aspect, + STATE(4918), 1, + sym__name_selector, + ACTIONS(1465), 2, + sym_IS, + sym_RANGE, + STATE(3720), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [217868] = 15, + aux_sym_name_repeat1, + STATE(4917), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [224192] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7632), 1, - sym__external_pathname, - STATE(3610), 3, + STATE(3721), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2674), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [217921] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224225] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7687), 1, - sym__external_pathname, - STATE(3611), 3, + STATE(3722), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [217974] = 15, + ACTIONS(3252), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [224258] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7631), 1, - sym__external_pathname, - STATE(3612), 3, + STATE(3723), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2662), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218027] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224291] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7688), 1, - sym__external_pathname, - STATE(3613), 3, + STATE(3724), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2370), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218080] = 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224324] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3614), 3, + STATE(3725), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3386), 16, + ACTIONS(3316), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [224357] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3726), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3292), 16, sym_identifier, sym_ASSERT, sym_ELSE, @@ -227066,786 +233267,712 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [218113] = 15, + [224390] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7689), 1, - sym__external_pathname, - STATE(3615), 3, + STATE(3727), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [218166] = 15, + ACTIONS(5317), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [224423] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7690), 1, - sym__external_pathname, - STATE(3616), 3, + STATE(3728), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(5319), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [224456] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3729), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2506), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218219] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224489] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7611), 1, - sym__external_pathname, - STATE(3617), 3, + STATE(3730), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3478), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218272] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [224522] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6002), 1, + sym_name, + STATE(7028), 1, + sym_group_constituent_list, + STATE(4332), 2, sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7691), 1, - sym__external_pathname, - STATE(3618), 3, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3731), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [218325] = 15, + [224569] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7692), 1, - sym__external_pathname, - STATE(3619), 3, + STATE(3732), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2572), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218378] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224602] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7693), 1, - sym__external_pathname, - STATE(3620), 3, + STATE(3733), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3430), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218431] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [224635] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7610), 1, - sym__external_pathname, - STATE(3621), 3, + STATE(3734), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2614), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218484] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224668] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7694), 1, - sym__external_pathname, - STATE(3622), 3, + STATE(3735), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2576), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218537] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224701] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7609), 1, - sym__external_pathname, - STATE(3623), 3, + STATE(3736), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2610), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218590] = 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224734] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3624), 3, + STATE(3737), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3304), 16, + ACTIONS(2470), 16, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_LT, - [218623] = 15, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224767] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7695), 1, - sym__external_pathname, - STATE(3625), 3, + STATE(3738), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2636), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218676] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224800] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7696), 1, - sym__external_pathname, - STATE(3626), 3, + STATE(3739), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2666), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218729] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7697), 1, - sym__external_pathname, - STATE(3627), 3, + STATE(3740), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2556), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218782] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224866] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(4941), 1, anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7698), 1, - sym__external_pathname, - STATE(3628), 3, + ACTIONS(4945), 1, + anon_sym_SQUOTE, + ACTIONS(4947), 1, + anon_sym_LBRACK, + ACTIONS(4949), 1, + sym_PARAMETER, + STATE(3639), 1, + aux_sym_name_repeat1, + STATE(4572), 1, + sym_generic_map_aspect, + STATE(4825), 1, + sym__name_selector, + STATE(3741), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(1503), 4, + sym_GENERIC, + sym_PORT, + anon_sym_SEMI, + anon_sym_LPAREN, + STATE(4827), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [224915] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3742), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2670), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218835] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224948] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7699), 1, - sym__external_pathname, - STATE(3629), 3, + STATE(3743), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2580), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218888] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [224981] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7700), 1, - sym__external_pathname, - STATE(3630), 3, + STATE(3744), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2606), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [218941] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [225014] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6002), 1, + sym_name, + STATE(6986), 1, + sym_group_constituent_list, + STATE(4332), 2, sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7701), 1, - sym__external_pathname, - STATE(3631), 3, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3745), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [218994] = 15, + [225061] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7702), 1, + STATE(7851), 1, sym__external_pathname, - STATE(3632), 3, + STATE(3746), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219047] = 5, + [225114] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3633), 3, + ACTIONS(4941), 1, + anon_sym_DOT, + ACTIONS(4945), 1, + anon_sym_SQUOTE, + ACTIONS(4947), 1, + anon_sym_LBRACK, + ACTIONS(4949), 1, + sym_PARAMETER, + STATE(3741), 1, + aux_sym_name_repeat1, + STATE(4572), 1, + sym_generic_map_aspect, + STATE(4825), 1, + sym__name_selector, + STATE(3747), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3270), 16, - sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, + ACTIONS(1487), 4, + sym_GENERIC, + sym_PORT, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LT_LT, - [219080] = 5, + STATE(4827), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [225163] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3634), 3, + STATE(3748), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3268), 16, + ACTIONS(2450), 16, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_LT, - [219113] = 15, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [225196] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7703), 1, + STATE(7852), 1, sym__external_pathname, - STATE(3635), 3, + STATE(3749), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219166] = 5, + [225249] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3636), 3, + STATE(3750), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3250), 16, + ACTIONS(3244), 16, sym_identifier, sym_ASSERT, sym_ELSE, @@ -227862,502 +233989,432 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [219199] = 15, + [225282] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7704), 1, + STATE(7853), 1, sym__external_pathname, - STATE(3637), 3, + STATE(3751), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219252] = 15, + [225335] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7705), 1, - sym__external_pathname, - STATE(3638), 3, + STATE(3752), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3246), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [219305] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [225368] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7706), 1, - sym__external_pathname, - STATE(3639), 3, + STATE(3753), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3266), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [219358] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [225401] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7574), 1, - sym__external_pathname, - STATE(3640), 3, + STATE(7627), 1, + sym__attribute, + STATE(8296), 1, + sym__attribute_designator, + STATE(3754), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(5321), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219411] = 15, + ACTIONS(5189), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [225440] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7707), 1, - sym__external_pathname, - STATE(3641), 3, + STATE(3755), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3268), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [219464] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [225473] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6002), 1, + sym_name, + STATE(6898), 1, + sym_group_constituent_list, + STATE(4332), 2, sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7708), 1, - sym__external_pathname, - STATE(3642), 3, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3756), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219517] = 15, + [225520] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7573), 1, - sym__external_pathname, - STATE(3643), 3, + STATE(3757), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2404), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [219570] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [225553] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3758), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3322), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [225586] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7572), 1, + STATE(7863), 1, sym__external_pathname, - STATE(3644), 3, + STATE(3759), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219623] = 15, + [225639] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7709), 1, + STATE(7864), 1, sym__external_pathname, - STATE(3645), 3, + STATE(3760), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219676] = 15, + [225692] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7710), 1, - sym__external_pathname, - STATE(3646), 3, + STATE(3761), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3274), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [219729] = 15, + anon_sym_LPAREN, + anon_sym_LT_LT, + [225725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7711), 1, - sym__external_pathname, - STATE(3647), 3, + STATE(3762), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2378), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [219782] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [225758] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7712), 1, + STATE(7865), 1, sym__external_pathname, - STATE(3648), 3, + STATE(3763), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219835] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3649), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3240), 16, - sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [219868] = 5, + [225811] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3650), 3, + STATE(3764), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3228), 16, + ACTIONS(3284), 16, sym_identifier, sym_ASSERT, sym_ELSE, @@ -228374,264 +234431,279 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [219901] = 15, + [225844] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7713), 1, + STATE(7869), 1, sym__external_pathname, - STATE(3651), 3, + STATE(3765), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [219954] = 5, + [225897] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3652), 3, + STATE(3766), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3264), 16, + ACTIONS(2420), 16, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_LT, - [219987] = 5, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [225930] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3653), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6002), 1, + sym_name, + STATE(6776), 1, + sym_group_constituent_list, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3767), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3266), 16, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [220020] = 15, + [225977] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3768), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3338), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [226010] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7714), 1, + STATE(7870), 1, sym__external_pathname, - STATE(3654), 3, + STATE(3769), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220073] = 15, + [226063] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7715), 1, + STATE(7871), 1, sym__external_pathname, - STATE(3655), 3, + STATE(3770), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220126] = 15, + [226116] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7716), 1, - sym__external_pathname, - STATE(3656), 3, + STATE(3771), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(2424), 16, sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [220179] = 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [226149] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7717), 1, - sym__external_pathname, - STATE(3657), 3, + STATE(3772), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3296), 16, sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [220232] = 5, + anon_sym_LPAREN, + anon_sym_LT_LT, + [226182] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3658), 3, + STATE(3773), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3282), 16, + ACTIONS(5323), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -228648,362 +234720,324 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [220265] = 15, + [226215] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3774), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5325), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [226248] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7718), 1, + STATE(7873), 1, sym__external_pathname, - STATE(3659), 3, + STATE(3775), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [220318] = 12, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5295), 1, - anon_sym_LPAREN, - ACTIONS(5297), 1, - anon_sym_LT_LT, - STATE(3532), 1, - sym__direct_name, - STATE(5800), 1, - sym_name, - STATE(4585), 2, - sym__identifier, - sym__external_name, - ACTIONS(5301), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3660), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4706), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(5299), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220365] = 15, + [226301] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7719), 1, + STATE(7874), 1, sym__external_pathname, - STATE(3661), 3, + STATE(3776), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [220418] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3662), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2622), 16, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [220451] = 12, + [226354] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(3728), 1, anon_sym_LT_LT, - STATE(2920), 1, + ACTIONS(5327), 1, + sym_library_namespace, + STATE(3747), 1, sym__direct_name, - STATE(5743), 1, + STATE(5563), 1, sym_name, - STATE(7842), 1, - sym_verification_unit_list, - STATE(4246), 2, + STATE(4800), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(3750), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3663), 3, + STATE(3777), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4737), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3730), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220498] = 15, + [226401] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7720), 1, + STATE(7875), 1, sym__external_pathname, - STATE(3664), 3, + STATE(3778), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220551] = 15, + [226454] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7721), 1, + STATE(7876), 1, sym__external_pathname, - STATE(3665), 3, + STATE(3779), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220604] = 5, + [226507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3666), 3, + STATE(3780), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 16, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [220637] = 5, + ACTIONS(3366), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [226540] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3667), 3, + STATE(3781), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3420), 16, - sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [220670] = 15, + ACTIONS(3368), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [226573] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6002), 1, + sym_name, + STATE(8065), 1, + sym_group_constituent_list, + STATE(4332), 2, sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7722), 1, - sym__external_pathname, - STATE(3668), 3, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3782), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220723] = 5, + [226620] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3669), 3, + STATE(3783), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3434), 16, + ACTIONS(3298), 16, sym_identifier, sym_ASSERT, sym_ELSE, @@ -229020,680 +235054,727 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [220756] = 15, + [226653] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7723), 1, + STATE(7877), 1, sym__external_pathname, - STATE(3670), 3, + STATE(3784), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220809] = 15, + [226706] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7724), 1, + STATE(8001), 1, sym__external_pathname, - STATE(3671), 3, + STATE(3785), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220862] = 5, + [226759] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3672), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(8000), 1, + sym__external_pathname, + STATE(3786), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3448), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [220895] = 15, + [226812] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7725), 1, + STATE(7999), 1, sym__external_pathname, - STATE(3673), 3, + STATE(3787), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [220948] = 15, + [226865] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7726), 1, + STATE(7878), 1, sym__external_pathname, - STATE(3674), 3, + STATE(3788), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221001] = 5, + [226918] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3675), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7879), 1, + sym__external_pathname, + STATE(3789), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3456), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221034] = 15, + [226971] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7520), 1, + STATE(7998), 1, sym__external_pathname, - STATE(3676), 3, + STATE(3790), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221087] = 5, + [227024] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3677), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7880), 1, + sym__external_pathname, + STATE(3791), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3440), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221120] = 15, + [227077] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7727), 1, + STATE(7881), 1, sym__external_pathname, - STATE(3678), 3, + STATE(3792), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221173] = 5, + [227130] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3679), 3, + STATE(3793), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3430), 16, - sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221206] = 5, + ACTIONS(3372), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [227163] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3680), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(5868), 1, + sym_name, + STATE(8040), 1, + sym_verification_unit_list, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3794), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3428), 16, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221239] = 5, + [227210] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3681), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7882), 1, + sym__external_pathname, + STATE(3795), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3426), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221272] = 15, + [227263] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7728), 1, + STATE(7883), 1, sym__external_pathname, - STATE(3682), 3, + STATE(3796), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221325] = 15, + [227316] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7519), 1, + STATE(7884), 1, sym__external_pathname, - STATE(3683), 3, + STATE(3797), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221378] = 15, + [227369] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7729), 1, + STATE(7885), 1, sym__external_pathname, - STATE(3684), 3, + STATE(3798), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221431] = 15, + [227422] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7518), 1, + STATE(7886), 1, sym__external_pathname, - STATE(3685), 3, + STATE(3799), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221484] = 15, + [227475] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7730), 1, + STATE(7997), 1, sym__external_pathname, - STATE(3686), 3, + STATE(3800), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221537] = 15, + [227528] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7731), 1, + STATE(7887), 1, sym__external_pathname, - STATE(3687), 3, + STATE(3801), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221590] = 15, + [227581] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7732), 1, + STATE(7888), 1, sym__external_pathname, - STATE(3688), 3, + STATE(3802), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [221643] = 5, + [227634] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3689), 3, + STATE(3803), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3254), 16, + ACTIONS(3338), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -229710,158 +235791,208 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [221676] = 5, + [227667] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3690), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7889), 1, + sym__external_pathname, + STATE(3804), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [221709] = 5, + [227720] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3691), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7996), 1, + sym__external_pathname, + STATE(3805), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [221742] = 5, + [227773] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3692), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7890), 1, + sym__external_pathname, + STATE(3806), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3406), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221775] = 5, + [227826] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3693), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7891), 1, + sym__external_pathname, + STATE(3807), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3404), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221808] = 5, + [227879] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3694), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7995), 1, + sym__external_pathname, + STATE(3808), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3398), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221841] = 5, + [227932] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3695), 3, + STATE(3809), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3208), 16, + ACTIONS(3240), 16, sym_identifier, sym_ASSERT, sym_ELSE, @@ -229878,1236 +236009,1460 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [221874] = 5, + [227965] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3696), 3, + STATE(3810), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [227998] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7994), 1, + sym__external_pathname, + STATE(3811), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3390), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221907] = 5, + [228051] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3697), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7892), 1, + sym__external_pathname, + STATE(3812), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3206), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221940] = 5, + [228104] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3698), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + ACTIONS(5329), 1, + sym_library_constant_unit, + STATE(3020), 1, + sym__direct_name, + STATE(8264), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3813), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3388), 16, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [221973] = 15, + [228151] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7733), 1, + STATE(7993), 1, sym__external_pathname, - STATE(3699), 3, + STATE(3814), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [222026] = 5, + [228204] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3700), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7992), 1, + sym__external_pathname, + STATE(3815), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222059] = 15, + [228257] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7734), 1, + STATE(7991), 1, sym__external_pathname, - STATE(3701), 3, + STATE(3816), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [222112] = 15, + [228310] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7735), 1, + STATE(7893), 1, sym__external_pathname, - STATE(3702), 3, + STATE(3817), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [222165] = 5, + [228363] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3703), 3, + STATE(3818), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 16, + ACTIONS(3238), 16, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222198] = 5, + [228396] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3704), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7894), 1, + sym__external_pathname, + STATE(3819), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222231] = 5, + [228449] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3705), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7895), 1, + sym__external_pathname, + STATE(3820), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222264] = 8, + [228502] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7416), 1, - sym__attribute, - STATE(8075), 1, - sym__attribute_designator, - STATE(3706), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7896), 1, + sym__external_pathname, + STATE(3821), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5303), 4, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - ACTIONS(4921), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [222303] = 5, + [228555] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3707), 3, + ACTIONS(5331), 1, + anon_sym_LT_LT, + STATE(3520), 1, + sym__direct_name, + STATE(5275), 1, + sym_name, + STATE(5794), 1, + sym_sensitivity_list, + STATE(4554), 2, + sym__identifier, + sym__external_name, + ACTIONS(5335), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3822), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3222), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [222336] = 5, + STATE(4552), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5333), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [228602] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3708), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7897), 1, + sym__external_pathname, + STATE(3823), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222369] = 5, + [228655] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3709), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7990), 1, + sym__external_pathname, + STATE(3824), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222402] = 5, + [228708] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3710), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7898), 1, + sym__external_pathname, + STATE(3825), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222435] = 5, + [228761] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3711), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7989), 1, + sym__external_pathname, + STATE(3826), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222468] = 5, + [228814] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3712), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7988), 1, + sym__external_pathname, + STATE(3827), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [222501] = 5, + [228867] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3713), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7987), 1, + sym__external_pathname, + STATE(3828), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3370), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [222534] = 5, + [228920] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3714), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7986), 1, + sym__external_pathname, + STATE(3829), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3368), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [222567] = 5, + [228973] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3715), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7899), 1, + sym__external_pathname, + STATE(3830), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3362), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [222600] = 5, + [229026] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3716), 3, + STATE(3831), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 16, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222633] = 5, + ACTIONS(3380), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229059] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3717), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7985), 1, + sym__external_pathname, + STATE(3832), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 16, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222666] = 5, + [229112] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3718), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7900), 1, + sym__external_pathname, + STATE(3833), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222699] = 5, + [229165] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3719), 3, + STATE(3834), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 16, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222732] = 15, + ACTIONS(3384), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229198] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7736), 1, + STATE(7901), 1, sym__external_pathname, - STATE(3720), 3, + STATE(3835), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [222785] = 5, + [229251] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3721), 3, + STATE(3836), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 16, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222818] = 15, + ACTIONS(3470), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229284] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3837), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3466), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229317] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7737), 1, + STATE(7902), 1, sym__external_pathname, - STATE(3722), 3, + STATE(3838), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [222871] = 5, + [229370] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3723), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7903), 1, + sym__external_pathname, + STATE(3839), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222904] = 15, + [229423] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3840), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3372), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229456] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7738), 1, + STATE(7904), 1, sym__external_pathname, - STATE(3724), 3, + STATE(3841), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [222957] = 5, + [229509] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3725), 3, + STATE(3842), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 16, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [222990] = 15, + ACTIONS(3386), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229542] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7739), 1, + STATE(7905), 1, sym__external_pathname, - STATE(3726), 3, + STATE(3843), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223043] = 8, + [229595] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7416), 1, - sym__attribute, - STATE(8078), 1, - sym__attribute_designator, - STATE(3727), 3, + STATE(3844), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5303), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - ACTIONS(4921), 10, - sym_attribute_function, - sym_attribute_impure_function, - sym_attribute_mode_view, - sym_attribute_pure_function, - sym_attribute_range, - sym_attribute_signal, - sym_attribute_subtype, - sym_attribute_type, - sym_attribute_value, - sym_library_attribute, - [223082] = 15, + ACTIONS(3462), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229628] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7740), 1, + STATE(7984), 1, sym__external_pathname, - STATE(3728), 3, + STATE(3845), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223135] = 15, + [229681] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7741), 1, + STATE(7983), 1, sym__external_pathname, - STATE(3729), 3, + STATE(3846), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223188] = 15, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5305), 1, - anon_sym_DOT, - ACTIONS(5307), 1, - anon_sym_LPAREN, - ACTIONS(5309), 1, - anon_sym_SQUOTE, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(5313), 1, - sym_GENERIC, - ACTIONS(5315), 1, - sym_PARAMETER, - STATE(3745), 1, - aux_sym_name_repeat1, - STATE(4543), 1, - sym_generic_map_aspect, - STATE(4771), 1, - sym_name_selector, - ACTIONS(1487), 2, - sym_IS, - sym_RANGE, - STATE(3730), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4785), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [223241] = 15, + [229734] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7743), 1, + STATE(7982), 1, sym__external_pathname, - STATE(3731), 3, + STATE(3847), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223294] = 5, + [229787] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3732), 3, + STATE(3848), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3354), 16, - sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, + ACTIONS(3272), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [223327] = 15, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229820] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7744), 1, + STATE(7906), 1, sym__external_pathname, - STATE(3733), 3, + STATE(3849), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223380] = 5, + [229873] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3734), 3, + STATE(3850), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3308), 16, - sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, + ACTIONS(3388), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [223413] = 5, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [229906] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3735), 3, + STATE(3851), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3306), 16, + ACTIONS(3324), 16, sym_identifier, sym_ASSERT, sym_ELSE, @@ -231124,845 +237479,966 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [223446] = 15, + [229939] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7745), 1, + STATE(7907), 1, sym__external_pathname, - STATE(3736), 3, + STATE(3852), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223499] = 15, + [229992] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7746), 1, + STATE(7908), 1, sym__external_pathname, - STATE(3737), 3, + STATE(3853), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223552] = 5, + [230045] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3738), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7909), 1, + sym__external_pathname, + STATE(3854), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [223585] = 15, + [230098] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7747), 1, + STATE(7910), 1, sym__external_pathname, - STATE(3739), 3, + STATE(3855), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223638] = 5, + [230151] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3740), 3, + STATE(3856), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 16, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [223671] = 15, + ACTIONS(3460), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [230184] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7456), 1, + STATE(7911), 1, sym__external_pathname, - STATE(3741), 3, + STATE(3857), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223724] = 15, + [230237] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7455), 1, + STATE(7912), 1, sym__external_pathname, - STATE(3742), 3, + STATE(3858), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223777] = 15, + [230290] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7748), 1, + STATE(7913), 1, sym__external_pathname, - STATE(3743), 3, + STATE(3859), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223830] = 15, + [230343] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7454), 1, + STATE(7914), 1, sym__external_pathname, - STATE(3744), 3, + STATE(3860), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [223883] = 15, + [230396] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5305), 1, + STATE(3861), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [230429] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5307), 1, - anon_sym_LPAREN, - ACTIONS(5309), 1, - anon_sym_SQUOTE, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(5313), 1, - sym_GENERIC, - ACTIONS(5315), 1, - sym_PARAMETER, - STATE(3598), 1, - aux_sym_name_repeat1, - STATE(4543), 1, - sym_generic_map_aspect, - STATE(4771), 1, - sym_name_selector, - ACTIONS(1503), 2, - sym_IS, - sym_RANGE, - STATE(3745), 3, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7915), 1, + sym__external_pathname, + STATE(3862), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4785), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [223936] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [230482] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3746), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7916), 1, + sym__external_pathname, + STATE(3863), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3274), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [223969] = 5, + [230535] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3747), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7917), 1, + sym__external_pathname, + STATE(3864), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3272), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [224002] = 13, + [230588] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3865), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3388), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [230621] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5189), 1, + ACTIONS(5337), 1, anon_sym_DOT, - ACTIONS(5193), 1, + ACTIONS(5339), 1, + anon_sym_LPAREN, + ACTIONS(5341), 1, anon_sym_SQUOTE, - ACTIONS(5195), 1, + ACTIONS(5343), 1, anon_sym_LBRACK, - ACTIONS(5197), 1, + ACTIONS(5345), 1, + sym_GENERIC, + ACTIONS(5347), 1, sym_PARAMETER, - STATE(3553), 1, + STATE(3882), 1, aux_sym_name_repeat1, - STATE(4441), 1, + STATE(4803), 1, sym_generic_map_aspect, - STATE(4537), 1, - sym_name_selector, - STATE(3748), 3, + STATE(4918), 1, + sym__name_selector, + ACTIONS(1487), 2, + sym_IS, + sym_RANGE, + STATE(3866), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1503), 4, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - anon_sym_LPAREN, - STATE(4544), 5, + STATE(4917), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [224051] = 12, + [230674] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(5317), 1, - anon_sym_LPAREN, - STATE(2920), 1, - sym__direct_name, - STATE(8035), 1, - sym_name, - STATE(4246), 2, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3749), 3, + STATE(6807), 1, + sym__external_pathname, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(3867), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224098] = 5, + [230727] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3750), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7918), 1, + sym__external_pathname, + STATE(3868), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3262), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [224131] = 5, + [230780] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3751), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7919), 1, + sym__external_pathname, + STATE(3869), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3260), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [224164] = 15, + [230833] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7749), 1, + STATE(7981), 1, sym__external_pathname, - STATE(3752), 3, + STATE(3870), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224217] = 15, + [230886] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7750), 1, + STATE(7980), 1, sym__external_pathname, - STATE(3753), 3, + STATE(3871), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224270] = 5, + [230939] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3754), 3, + STATE(3872), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 16, + ACTIONS(3370), 16, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [224303] = 15, + [230972] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7751), 1, + STATE(7979), 1, sym__external_pathname, - STATE(3755), 3, + STATE(3873), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224356] = 15, + [231025] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7752), 1, + STATE(7978), 1, sym__external_pathname, - STATE(3756), 3, + STATE(3874), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224409] = 15, + [231078] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7753), 1, + STATE(7920), 1, sym__external_pathname, - STATE(3757), 3, + STATE(3875), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224462] = 15, + [231131] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7754), 1, + STATE(7977), 1, sym__external_pathname, - STATE(3758), 3, + STATE(3876), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224515] = 5, + [231184] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3759), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7976), 1, + sym__external_pathname, + STATE(3877), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5319), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [224548] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [231237] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3760), 3, + STATE(3878), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5321), 16, + ACTIONS(3394), 16, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -231979,421 +238455,418 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [224581] = 15, + [231270] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7755), 1, + STATE(7921), 1, sym__external_pathname, - STATE(3761), 3, + STATE(3879), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224634] = 15, + [231323] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(7627), 1, + sym__attribute, + STATE(8299), 1, + sym__attribute_designator, + STATE(3880), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5321), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + ACTIONS(5189), 10, + sym_attribute_function, + sym_attribute_impure_function, + sym_attribute_mode_view, + sym_attribute_pure_function, + sym_attribute_range, + sym_attribute_signal, + sym_attribute_subtype, + sym_attribute_type, + sym_attribute_value, + sym_library_attribute, + [231362] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7756), 1, + STATE(6836), 1, sym__external_pathname, - STATE(3762), 3, + STATE(3881), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224687] = 5, + [231415] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3763), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2540), 16, - sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, + ACTIONS(5337), 1, anon_sym_DOT, + ACTIONS(5339), 1, anon_sym_LPAREN, - anon_sym_LT_LT, + ACTIONS(5341), 1, anon_sym_SQUOTE, + ACTIONS(5343), 1, anon_sym_LBRACK, - [224720] = 15, + ACTIONS(5345), 1, + sym_GENERIC, + ACTIONS(5347), 1, + sym_PARAMETER, + STATE(3720), 1, + aux_sym_name_repeat1, + STATE(4803), 1, + sym_generic_map_aspect, + STATE(4918), 1, + sym__name_selector, + ACTIONS(1503), 2, + sym_IS, + sym_RANGE, + STATE(3882), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4917), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [231468] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7757), 1, + STATE(7975), 1, sym__external_pathname, - STATE(3764), 3, + STATE(3883), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224773] = 15, + [231521] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7758), 1, + STATE(7922), 1, sym__external_pathname, - STATE(3765), 3, + STATE(3884), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224826] = 15, + [231574] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7759), 1, + STATE(7974), 1, sym__external_pathname, - STATE(3766), 3, + STATE(3885), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224879] = 15, + [231627] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7760), 1, + STATE(7973), 1, sym__external_pathname, - STATE(3767), 3, + STATE(3886), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [224932] = 5, + [231680] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3768), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7972), 1, + sym__external_pathname, + STATE(3887), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [224965] = 13, + [231733] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5189), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5193), 1, - anon_sym_SQUOTE, - ACTIONS(5195), 1, - anon_sym_LBRACK, - ACTIONS(5197), 1, - sym_PARAMETER, - STATE(3748), 1, - aux_sym_name_repeat1, - STATE(4441), 1, - sym_generic_map_aspect, - STATE(4537), 1, - sym_name_selector, - STATE(3769), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 4, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - anon_sym_LPAREN, - STATE(4544), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [225014] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3770), 3, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7971), 1, + sym__external_pathname, + STATE(3888), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [225047] = 15, + [231786] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7761), 1, + STATE(7970), 1, sym__external_pathname, - STATE(3771), 3, + STATE(3889), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225100] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3772), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3344), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [225133] = 12, + [231839] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -232402,152 +238875,162 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + ACTIONS(5349), 1, + anon_sym_LPAREN, + STATE(3020), 1, sym__direct_name, - STATE(5767), 1, + STATE(8255), 1, sym_name, - STATE(7858), 1, - sym_group_constituent_list, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3773), 3, + STATE(3890), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225180] = 15, + [231886] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7762), 1, + STATE(7923), 1, sym__external_pathname, - STATE(3774), 3, + STATE(3891), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225233] = 5, + [231939] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3775), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7969), 1, + sym__external_pathname, + STATE(3892), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5323), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [225266] = 15, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [231992] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7763), 1, + STATE(7924), 1, sym__external_pathname, - STATE(3776), 3, + STATE(3893), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225319] = 5, + [232045] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3777), 3, + STATE(3894), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5325), 16, + ACTIONS(3442), 16, sym_ALIAS, sym_ATTRIBUTE, + sym_BEGIN, sym_CONSTANT, - sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -232560,438 +239043,566 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [225352] = 15, + [232078] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7764), 1, + STATE(7925), 1, sym__external_pathname, - STATE(3778), 3, + STATE(3895), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225405] = 12, + [232131] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(5767), 1, - sym_name, - STATE(6861), 1, - sym_group_constituent_list, - STATE(4246), 2, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3779), 3, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7926), 1, + sym__external_pathname, + STATE(3896), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225452] = 12, + [232184] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(5767), 1, - sym_name, - STATE(6841), 1, - sym_group_constituent_list, - STATE(4246), 2, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3780), 3, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7927), 1, + sym__external_pathname, + STATE(3897), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225499] = 15, + [232237] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7765), 1, + STATE(7928), 1, sym__external_pathname, - STATE(3781), 3, + STATE(3898), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225552] = 5, + [232290] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3782), 3, + STATE(3899), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3242), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, + ACTIONS(3396), 16, + sym_identifier, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [225585] = 15, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [232323] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7766), 1, + STATE(7929), 1, sym__external_pathname, - STATE(3783), 3, + STATE(3900), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225638] = 15, + [232376] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7767), 1, + STATE(7930), 1, sym__external_pathname, - STATE(3784), 3, + STATE(3901), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225691] = 15, + [232429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3902), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3404), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [232462] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3903), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3410), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [232495] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3904), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3428), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [232528] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7768), 1, + STATE(7931), 1, sym__external_pathname, - STATE(3785), 3, + STATE(3905), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225744] = 15, + [232581] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7769), 1, + STATE(7968), 1, sym__external_pathname, - STATE(3786), 3, + STATE(3906), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225797] = 15, + [232634] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7770), 1, + STATE(7932), 1, sym__external_pathname, - STATE(3787), 3, + STATE(3907), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [225850] = 5, + [232687] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3788), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7967), 1, + sym__external_pathname, + STATE(3908), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3348), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [225883] = 5, + [232740] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3789), 3, + STATE(3909), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3350), 16, - sym_identifier, - sym_ASSERT, - sym_ELSE, - sym_ELSIF, + ACTIONS(3426), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [232773] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3910), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3252), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [225916] = 5, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [232806] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3790), 3, + STATE(3911), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3374), 16, + ACTIONS(3270), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -233008,53 +239619,46 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [225949] = 12, + [232839] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(5767), 1, - sym_name, - STATE(6811), 1, - sym_group_constituent_list, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3791), 3, + STATE(3912), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [225996] = 5, + ACTIONS(3470), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [232872] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3792), 3, + STATE(3913), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3286), 16, + ACTIONS(3466), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -233071,316 +239675,414 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [226029] = 15, + [232905] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7771), 1, + STATE(7933), 1, sym__external_pathname, - STATE(3793), 3, + STATE(3914), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226082] = 15, + [232958] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7772), 1, + STATE(7934), 1, sym__external_pathname, - STATE(3794), 3, + STATE(3915), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226135] = 15, + [233011] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(5263), 1, - anon_sym_AT, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4471), 1, - aux_sym_relative_pathname_repeat1, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(7030), 1, - sym_partial_pathname, - STATE(7773), 1, - sym__external_pathname, - STATE(3795), 3, + STATE(3916), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, - sym_package_pathname, - sym_absolute_pathname, - sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [226188] = 12, + ACTIONS(3304), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [233044] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - ACTIONS(5327), 1, - sym_library_constant_unit, - STATE(2920), 1, - sym__direct_name, - STATE(8043), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3796), 3, + STATE(3917), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [226235] = 15, + ACTIONS(5351), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [233077] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3918), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3462), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [233110] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3919), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3460), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [233143] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7774), 1, + STATE(7935), 1, sym__external_pathname, - STATE(3797), 3, + STATE(3920), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226288] = 15, + [233196] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3921), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3420), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_BEGIN, + sym_CONSTANT, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [233229] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3922), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3306), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [233262] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7775), 1, + STATE(7936), 1, sym__external_pathname, - STATE(3798), 3, + STATE(3923), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226341] = 12, + [233315] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(5767), 1, - sym_name, - STATE(6770), 1, - sym_group_constituent_list, - STATE(4246), 2, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3799), 3, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7937), 1, + sym__external_pathname, + STATE(3924), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226388] = 15, + [233368] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7776), 1, + STATE(7938), 1, sym__external_pathname, - STATE(3800), 3, + STATE(3925), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226441] = 5, + [233421] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3801), 3, + STATE(3926), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3220), 16, + ACTIONS(3308), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -233397,129 +240099,150 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [226474] = 12, + [233454] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(5767), 1, - sym_name, - STATE(6683), 1, - sym_group_constituent_list, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3802), 3, + STATE(3927), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [226521] = 15, + ACTIONS(3316), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [233487] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7778), 1, + STATE(7966), 1, sym__external_pathname, - STATE(3803), 3, + STATE(3928), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226574] = 15, + [233540] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + STATE(3929), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3322), 16, + sym_ALIAS, + sym_ATTRIBUTE, + sym_CONSTANT, + sym_END, + sym_FILE, + sym_FUNCTION, + sym_GROUP, + sym_IMPURE, + sym_PACKAGE, + sym_PROCEDURE, + sym_PURE, + sym_SHARED, + sym_SUBTYPE, + sym_TYPE, + sym_USE, + sym_VARIABLE, + [233573] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7779), 1, + STATE(7965), 1, sym__external_pathname, - STATE(3804), 3, + STATE(3930), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226627] = 5, + [233626] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3805), 3, + STATE(3931), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3458), 16, + ACTIONS(3446), 16, sym_ALIAS, sym_ATTRIBUTE, sym_BEGIN, @@ -233536,95 +240259,60 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [226660] = 15, + [233659] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7780), 1, + STATE(7939), 1, sym__external_pathname, - STATE(3806), 3, + STATE(3932), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [226713] = 12, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(5767), 1, - sym_name, - STATE(6562), 1, - sym_group_constituent_list, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3807), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226760] = 5, + [233712] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3808), 3, + STATE(3933), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3460), 16, + ACTIONS(3366), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -233637,22 +240325,22 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [226793] = 5, + [233745] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3809), 3, + STATE(3934), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5329), 16, + ACTIONS(3368), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -233665,50 +240353,50 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [226826] = 5, + [233778] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3810), 3, + STATE(3935), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3294), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [226859] = 5, + ACTIONS(2528), 16, + sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [233811] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3811), 3, + STATE(3936), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5331), 16, + ACTIONS(3380), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -233721,18 +240409,18 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [226892] = 5, + [233844] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3812), 3, + STATE(3937), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3302), 16, + ACTIONS(3384), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -233749,56 +240437,56 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [226925] = 15, + [233877] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(7035), 1, + STATE(7964), 1, sym__external_pathname, - STATE(3813), 3, + STATE(3938), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [226978] = 5, + [233930] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3814), 3, + STATE(3939), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3314), 16, + ACTIONS(3386), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -233815,112 +240503,132 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227011] = 5, + [233963] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3815), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7963), 1, + sym__external_pathname, + STATE(3940), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3450), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227044] = 15, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234016] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7019), 1, - sym__external_pathname, - STATE(7029), 1, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(3816), 3, + STATE(7962), 1, + sym__external_pathname, + STATE(3941), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [227097] = 5, + [234069] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3817), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7961), 1, + sym__external_pathname, + STATE(3942), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3254), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227130] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234122] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3818), 3, + STATE(3943), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3280), 16, + ACTIONS(3394), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -233937,18 +240645,18 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227163] = 5, + [234155] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3819), 3, + STATE(3944), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3346), 16, + ACTIONS(3446), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -233965,56 +240673,94 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227196] = 15, + [234188] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOT, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5285), 1, anon_sym_CARET, - STATE(4471), 1, + STATE(4565), 1, aux_sym_relative_pathname_repeat1, - STATE(4804), 1, + STATE(5021), 1, aux_sym_partial_pathname_repeat1, - STATE(5614), 1, + STATE(5750), 1, sym__identifier, - STATE(7018), 1, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7960), 1, sym__external_pathname, - STATE(7029), 1, + STATE(3945), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234241] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, sym_pathname_element, - STATE(7030), 1, + STATE(6827), 1, sym_partial_pathname, - STATE(3820), 3, + STATE(7959), 1, + sym__external_pathname, + STATE(3946), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(7031), 3, + STATE(6832), 3, sym_package_pathname, sym_absolute_pathname, sym_relative_pathname, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [227249] = 5, + [234294] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3821), 3, + STATE(3947), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3458), 16, + ACTIONS(3404), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -234031,78 +240777,174 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227282] = 5, + [234327] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3822), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7958), 1, + sym__external_pathname, + STATE(3948), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3418), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227315] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234380] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3823), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7940), 1, + sym__external_pathname, + STATE(3949), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3222), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227348] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234433] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3824), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7957), 1, + sym__external_pathname, + STATE(3950), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3436), 16, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234486] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7956), 1, + sym__external_pathname, + STATE(3951), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234539] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3952), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3410), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -234115,50 +240957,88 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227381] = 5, + [234572] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3825), 3, + STATE(3953), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 16, + ACTIONS(3472), 16, sym_identifier, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, + sym_ASSERT, + sym_ELSE, + sym_ELSIF, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [227414] = 5, + [234605] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3826), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7738), 1, + sym__external_pathname, + STATE(3954), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234658] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3955), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3220), 16, + ACTIONS(3442), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -234171,22 +241051,22 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227447] = 5, + [234691] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3827), 3, + STATE(3956), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3460), 16, + ACTIONS(3424), 16, sym_ALIAS, sym_ATTRIBUTE, + sym_BEGIN, sym_CONSTANT, - sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -234199,22 +241079,22 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227480] = 5, + [234724] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3828), 3, + STATE(3957), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3450), 16, + ACTIONS(5353), 16, sym_ALIAS, sym_ATTRIBUTE, + sym_BEGIN, sym_CONSTANT, - sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -234227,57 +241107,60 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227513] = 12, + [234757] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3718), 1, - anon_sym_LT_LT, - ACTIONS(5333), 1, - sym_library_namespace, - STATE(3769), 1, - sym__direct_name, - STATE(4987), 1, - sym_name, - STATE(4553), 2, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, sym__identifier, - sym__external_name, - ACTIONS(3738), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3829), 3, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7942), 1, + sym__external_pathname, + STATE(3958), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4549), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3720), 4, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [227560] = 5, + [234810] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3830), 3, + STATE(3959), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3454), 16, + ACTIONS(3420), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -234290,46 +241173,56 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227593] = 5, + [234843] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3831), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7943), 1, + sym__external_pathname, + STATE(3960), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3436), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227626] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234896] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3832), 3, + STATE(3961), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3454), 16, + ACTIONS(3422), 16, sym_ALIAS, sym_ATTRIBUTE, sym_CONSTANT, @@ -234346,218 +241239,430 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227659] = 5, + [234929] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3833), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7955), 1, + sym__external_pathname, + STATE(3962), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3418), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227692] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [234982] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3834), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7944), 1, + sym__external_pathname, + STATE(3963), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3242), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227725] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235035] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3835), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7954), 1, + sym__external_pathname, + STATE(3964), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3280), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227758] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235088] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3836), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7953), 1, + sym__external_pathname, + STATE(3965), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3282), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227791] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235141] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3837), 3, + STATE(3966), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3286), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227824] = 5, + ACTIONS(2428), 16, + sym_identifier, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [235174] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3838), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7945), 1, + sym__external_pathname, + STATE(3967), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3294), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227857] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235227] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3839), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7946), 1, + sym__external_pathname, + STATE(3968), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3302), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [227890] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235280] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7947), 1, + sym__external_pathname, + STATE(3969), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235333] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7952), 1, + sym__external_pathname, + STATE(3970), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235386] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7951), 1, + sym__external_pathname, + STATE(3971), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235439] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7950), 1, + sym__external_pathname, + STATE(3972), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235492] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3840), 3, + STATE(3973), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3314), 16, + ACTIONS(3424), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -234570,22 +241675,22 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227923] = 5, + [235525] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3841), 3, + STATE(3974), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3344), 16, + ACTIONS(3426), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -234598,22 +241703,22 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227956] = 5, + [235558] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3842), 3, + STATE(3975), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3346), 16, + ACTIONS(3428), 16, sym_ALIAS, sym_ATTRIBUTE, - sym_BEGIN, sym_CONSTANT, + sym_END, sym_FILE, sym_FUNCTION, sym_GROUP, @@ -234626,517 +241731,659 @@ static const uint16_t ts_small_parse_table[] = { sym_TYPE, sym_USE, sym_VARIABLE, - [227989] = 5, + [235591] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3843), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7949), 1, + sym__external_pathname, + STATE(3976), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3360), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228022] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235644] = 15, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3844), 3, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(5283), 1, + anon_sym_AT, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(4565), 1, + aux_sym_relative_pathname_repeat1, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(6827), 1, + sym_partial_pathname, + STATE(7948), 1, + sym__external_pathname, + STATE(3977), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3416), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228055] = 5, + STATE(6832), 3, + sym_package_pathname, + sym_absolute_pathname, + sym_relative_pathname, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235697] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3845), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6830), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3978), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3410), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228088] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235741] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3846), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6841), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3979), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3378), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228121] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235785] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3847), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6923), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3980), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3408), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228154] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235829] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3848), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6682), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3981), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3416), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228187] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235873] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3849), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6952), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3982), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3374), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228220] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235917] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3850), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6917), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3983), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3378), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228253] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [235961] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3851), 3, + STATE(3984), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3380), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228286] = 5, + ACTIONS(3400), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [235993] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3852), 3, + ACTIONS(5355), 1, + anon_sym_LT_LT, + STATE(3419), 1, + sym__direct_name, + STATE(5109), 1, + sym_name, + STATE(4458), 2, + sym__identifier, + sym__external_name, + ACTIONS(5359), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3985), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3410), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228319] = 5, + STATE(4459), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5357), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236037] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3853), 3, + ACTIONS(5361), 1, + anon_sym_LT_LT, + STATE(3659), 1, + sym__direct_name, + STATE(5872), 1, + sym_name, + STATE(4869), 2, + sym__identifier, + sym__external_name, + ACTIONS(5365), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3986), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3408), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228352] = 5, + STATE(4870), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5363), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236081] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3854), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6977), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3987), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3396), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228385] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236125] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3855), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7012), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3988), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3384), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, - sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228418] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236169] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3856), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6903), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3989), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3382), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228451] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236213] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3857), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7019), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3990), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3384), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228484] = 5, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236257] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3858), 3, + ACTIONS(5367), 1, + anon_sym_LT_LT, + STATE(3243), 1, + sym__direct_name, + STATE(4960), 1, + sym_name, + STATE(4423), 2, + sym__identifier, + sym__external_name, + ACTIONS(5371), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3991), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3396), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_BEGIN, - sym_CONSTANT, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228517] = 5, + STATE(4402), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5369), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236301] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3859), 3, + STATE(3992), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3380), 16, - sym_ALIAS, - sym_ATTRIBUTE, - sym_CONSTANT, + ACTIONS(3402), 15, + sym_identifier, + sym_ASSERT, sym_END, - sym_FILE, - sym_FUNCTION, - sym_GROUP, - sym_IMPURE, - sym_PACKAGE, - sym_PROCEDURE, - sym_PURE, - sym_SHARED, - sym_SUBTYPE, - sym_TYPE, - sym_USE, - sym_VARIABLE, - [228550] = 12, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [236333] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(3659), 1, sym__direct_name, - STATE(4531), 1, + STATE(6084), 1, + sym_name, + STATE(4869), 2, sym__identifier, - STATE(4690), 1, sym__external_name, - STATE(5974), 1, + ACTIONS(5365), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(3993), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4870), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5363), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236377] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(3994), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3414), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [236409] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7042), 1, sym_name, - ACTIONS(5339), 3, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3860), 3, + STATE(3995), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5337), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [228596] = 11, + [236453] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235145,31 +242392,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6513), 1, + STATE(7058), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3861), 3, + STATE(3996), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [228640] = 11, + [236497] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235178,65 +242425,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7621), 1, + STATE(7062), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3862), 3, + STATE(3997), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [228684] = 12, + [236541] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(724), 1, sym__direct_name, - STATE(4525), 1, + STATE(1601), 1, + sym_name, + STATE(850), 2, sym__identifier, - STATE(4690), 1, sym__external_name, - STATE(6277), 1, + ACTIONS(746), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(876), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(3998), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(802), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236585] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6711), 1, sym_name, - ACTIONS(5339), 3, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3863), 3, + STATE(3999), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5337), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [228730] = 11, + [236629] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235245,31 +242524,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7598), 1, + STATE(6726), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3864), 3, + STATE(4000), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [228774] = 11, + [236673] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235278,58 +242557,130 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7129), 1, + STATE(7262), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3865), 3, + STATE(4001), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [228818] = 5, + [236717] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3866), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7295), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4002), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3304), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, + sym_library_constant, + sym_library_function, + sym_library_type, + [236761] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7296), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, + STATE(4003), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, sym_library_function, sym_library_type, - anon_sym_LPAREN, + [236805] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, anon_sym_LT_LT, - [228850] = 11, + STATE(3020), 1, + sym__direct_name, + STATE(6730), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4004), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236849] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235338,42 +242689,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3904), 1, + STATE(3020), 1, sym__direct_name, - STATE(5004), 1, + STATE(6895), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3867), 3, + STATE(4005), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [228894] = 5, + [236893] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3868), 3, + STATE(4006), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3270), 15, + ACTIONS(3416), 15, sym_identifier, sym_ASSERT, sym_END, @@ -235389,7 +242740,40 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [228926] = 11, + [236925] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5361), 1, + anon_sym_LT_LT, + STATE(3659), 1, + sym__direct_name, + STATE(6107), 1, + sym_name, + STATE(4869), 2, + sym__identifier, + sym__external_name, + ACTIONS(5365), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4007), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4870), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5363), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [236969] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235398,58 +242782,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7790), 1, + STATE(6890), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3869), 3, + STATE(4008), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [228970] = 5, + [237013] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3870), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(8325), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4009), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3268), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, + sym_library_constant, + sym_library_function, + sym_library_type, + [237057] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6870), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, + STATE(4010), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [229002] = 12, + [237101] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235458,65 +242881,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(4246), 1, - sym__external_name, - STATE(4767), 1, - sym__identifier, - STATE(8101), 1, + STATE(7449), 1, sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3871), 3, + STATE(4011), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5299), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229048] = 11, + [237145] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5341), 1, + ACTIONS(1291), 1, anon_sym_LT_LT, - STATE(3478), 1, + STATE(864), 1, sym__direct_name, - STATE(5249), 1, + STATE(2752), 1, sym_name, - STATE(4518), 2, + STATE(1939), 2, sym__identifier, sym__external_name, - ACTIONS(5345), 3, + ACTIONS(1303), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3872), 3, + STATE(1943), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(4012), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4506), 3, + ACTIONS(1293), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [237189] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7509), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4013), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5343), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229092] = 11, + [237233] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235525,31 +242980,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8101), 1, + STATE(6670), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3873), 3, + STATE(4014), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229136] = 11, + [237277] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235558,31 +243013,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7589), 1, + STATE(7510), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3874), 3, + STATE(4015), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229180] = 11, + [237321] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235591,31 +243046,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7588), 1, + STATE(8326), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3875), 3, + STATE(4016), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229224] = 11, + [237365] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235624,31 +243079,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7576), 1, + STATE(6855), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3876), 3, + STATE(4017), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229268] = 11, + [237409] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235657,64 +243112,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7557), 1, + STATE(6853), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3877), 3, + STATE(4018), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229312] = 11, + [237453] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5347), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3427), 1, + STATE(3020), 1, sym__direct_name, - STATE(5081), 1, + STATE(6629), 1, sym_name, - STATE(4502), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5351), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3878), 3, + STATE(4019), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4494), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5349), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229356] = 11, + [237497] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235723,31 +243178,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7553), 1, + STATE(6668), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3879), 3, + STATE(4020), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [237541] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1225), 1, + anon_sym_LT_LT, + STATE(871), 1, + sym__direct_name, + STATE(2732), 1, + sym_name, + STATE(2040), 2, + sym__identifier, + sym__external_name, + ACTIONS(1237), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(2041), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4021), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1227), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229400] = 11, + [237585] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235756,31 +243244,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3937), 1, + STATE(4084), 1, sym__direct_name, - STATE(5486), 1, + STATE(5879), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3880), 3, + STATE(4022), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229444] = 11, + [237629] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235789,31 +243277,58 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(4191), 1, + STATE(3020), 1, sym__direct_name, - STATE(6681), 1, + STATE(7782), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3881), 3, + STATE(4023), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229488] = 11, + [237673] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4024), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3398), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [237705] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235822,97 +243337,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7538), 1, + STATE(6635), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3882), 3, + STATE(4025), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229532] = 11, + [237749] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5353), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(4171), 1, + STATE(3020), 1, sym__direct_name, - STATE(6758), 1, + STATE(6676), 1, sym_name, - STATE(4859), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5357), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3883), 3, + STATE(4026), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4869), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5355), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229576] = 11, + [237793] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(4877), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3590), 1, sym__direct_name, - STATE(5213), 1, + STATE(5669), 1, sym_name, - STATE(4246), 2, + STATE(4659), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(4885), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3884), 3, + STATE(4027), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4660), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229620] = 11, + [237837] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235921,31 +243436,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7806), 1, + STATE(7536), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3885), 3, + STATE(4028), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229664] = 11, + [237881] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235954,31 +243469,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7525), 1, + STATE(7557), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3886), 3, + STATE(4029), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229708] = 11, + [237925] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -235987,31 +243502,58 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7811), 1, + STATE(7562), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3887), 3, + STATE(4030), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229752] = 11, + [237969] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4031), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3472), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [238001] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236020,31 +243562,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7823), 1, + STATE(6681), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3888), 3, + STATE(4032), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [238045] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1181), 1, + anon_sym_LT_LT, + STATE(817), 1, + sym__direct_name, + STATE(2617), 1, + sym_name, + STATE(1831), 2, + sym__identifier, + sym__external_name, + ACTIONS(1193), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1844), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4033), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1183), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229796] = 11, + [238089] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236053,31 +243628,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7524), 1, + STATE(6833), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3889), 3, + STATE(4034), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229840] = 11, + [238133] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236086,31 +243661,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7511), 1, + STATE(7153), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3890), 3, + STATE(4035), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229884] = 11, + [238177] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236119,31 +243694,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7497), 1, + STATE(6826), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3891), 3, + STATE(4036), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229928] = 11, + [238221] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236152,31 +243727,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(7496), 1, + STATE(5285), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3892), 3, + STATE(4037), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [229972] = 11, + [238265] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236185,31 +243760,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7477), 1, + STATE(6804), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3893), 3, + STATE(4038), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230016] = 11, + [238309] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236218,31 +243793,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7852), 1, + STATE(7581), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3894), 3, + STATE(4039), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230060] = 11, + [238353] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236251,31 +243826,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7786), 1, + STATE(6741), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3895), 3, + STATE(4040), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230104] = 11, + [238397] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236284,64 +243859,124 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(7854), 1, + STATE(5286), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3896), 3, + STATE(4041), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230148] = 11, + [238441] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + STATE(4042), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3378), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [238473] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1335), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(813), 1, sym__direct_name, - STATE(6230), 1, + STATE(2654), 1, sym_name, - STATE(4690), 2, + STATE(1821), 2, sym__identifier, sym__external_name, - ACTIONS(5339), 3, + ACTIONS(1347), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3897), 3, + STATE(1824), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(4043), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + ACTIONS(1337), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [238517] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6785), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4044), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5359), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230192] = 11, + [238561] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236350,97 +243985,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7461), 1, + STATE(6782), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3898), 3, + STATE(4045), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [230236] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(395), 1, - anon_sym_LT_LT, - STATE(736), 1, - sym__direct_name, - STATE(1919), 1, - sym_name, - STATE(967), 2, - sym__identifier, - sym__external_name, - ACTIONS(403), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(979), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3899), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(397), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230280] = 11, + [238605] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(3728), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3747), 1, sym__direct_name, - STATE(7451), 1, + STATE(5462), 1, sym_name, - STATE(4246), 2, + STATE(4800), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(3750), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3900), 3, + STATE(4046), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4737), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3730), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230324] = 11, + [238649] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236449,31 +244051,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7445), 1, + STATE(6763), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3901), 3, + STATE(4047), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230368] = 11, + [238693] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236482,99 +244084,66 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(7432), 1, + STATE(5339), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3902), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [230412] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5267), 1, - anon_sym_LT_LT, - STATE(3454), 1, - sym__direct_name, - STATE(5251), 1, - sym_name, - STATE(4418), 2, - sym__identifier, - sym__external_name, - ACTIONS(5271), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3903), 3, + STATE(4048), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4424), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5269), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230456] = 13, + [238737] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4144), 1, + ACTIONS(4184), 1, anon_sym_DOT, - ACTIONS(4146), 1, + ACTIONS(4186), 1, anon_sym_LPAREN, - ACTIONS(4148), 1, + ACTIONS(4188), 1, anon_sym_SQUOTE, - ACTIONS(4154), 1, + ACTIONS(4194), 1, sym_PARAMETER, - STATE(3912), 1, + STATE(4057), 1, aux_sym_name_repeat1, - STATE(3969), 1, + STATE(4130), 1, sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, + STATE(4325), 1, + sym__name_selector, ACTIONS(1487), 3, sym_GENERIC, anon_sym_SEMI, anon_sym_LBRACK, - STATE(3904), 3, + STATE(4049), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4235), 5, + STATE(4327), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [230504] = 11, + [238785] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236583,31 +244152,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7429), 1, + STATE(6738), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3905), 3, + STATE(4050), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230548] = 11, + [238829] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236616,64 +244185,85 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7400), 1, + STATE(7631), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3906), 3, + STATE(4051), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230592] = 11, + [238873] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(7059), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, + STATE(4052), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3406), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, sym_character_literal, sym_operator_symbol, + sym_library_constant, sym_library_constant_std_logic, - STATE(3907), 3, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [238905] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4053), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3376), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [230636] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [238937] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236682,42 +244272,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6855), 1, + STATE(7634), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3908), 3, + STATE(4054), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230680] = 5, + [238981] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3909), 3, + STATE(4055), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3250), 15, + ACTIONS(3430), 15, sym_identifier, sym_ASSERT, sym_END, @@ -236733,40 +244323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [230712] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(734), 1, - anon_sym_LT_LT, - STATE(766), 1, - sym__direct_name, - STATE(2390), 1, - sym_name, - STATE(840), 2, - sym__identifier, - sym__external_name, - ACTIONS(746), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(869), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3910), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(800), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [230756] = 11, + [239013] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236775,66 +244332,66 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7053), 1, + STATE(6755), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3911), 3, + STATE(4056), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230800] = 13, + [239057] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4144), 1, + ACTIONS(4184), 1, anon_sym_DOT, - ACTIONS(4146), 1, + ACTIONS(4186), 1, anon_sym_LPAREN, - ACTIONS(4148), 1, + ACTIONS(4188), 1, anon_sym_SQUOTE, - ACTIONS(4154), 1, + ACTIONS(4194), 1, sym_PARAMETER, - STATE(2926), 1, + STATE(3013), 1, aux_sym_name_repeat1, - STATE(3969), 1, + STATE(4130), 1, sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, + STATE(4325), 1, + sym__name_selector, ACTIONS(1503), 3, sym_GENERIC, anon_sym_SEMI, anon_sym_LBRACK, - STATE(3912), 3, + STATE(4057), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4235), 5, + STATE(4327), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [230848] = 11, + [239105] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236843,31 +244400,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7370), 1, + STATE(6751), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3913), 3, + STATE(4058), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230892] = 11, + [239149] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236876,64 +244433,58 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7358), 1, + STATE(7649), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3914), 3, + STATE(4059), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [230936] = 11, + [239193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5361), 1, - anon_sym_LT_LT, - STATE(3295), 1, - sym__direct_name, - STATE(4935), 1, - sym_name, - STATE(4339), 2, - sym__identifier, - sym__external_name, - ACTIONS(5365), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3915), 3, + STATE(4060), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4341), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(5363), 4, + ACTIONS(3274), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [230980] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [239225] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -236942,64 +244493,58 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7927), 1, + STATE(7669), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3916), 3, + STATE(4061), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231024] = 11, + [239269] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(7119), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3917), 3, + STATE(4062), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3374), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [231068] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [239301] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237008,31 +244553,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3937), 1, + STATE(3020), 1, sym__direct_name, - STATE(5492), 1, + STATE(6731), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3918), 3, + STATE(4063), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231112] = 11, + [239345] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237041,31 +244586,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7204), 1, + STATE(7676), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3919), 3, + STATE(4064), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231156] = 11, + [239389] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237074,31 +244619,32 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7932), 1, - sym_name, - STATE(4246), 2, - sym__identifier, + STATE(4332), 1, sym__external_name, + STATE(4949), 1, + sym__identifier, + STATE(8323), 1, + sym_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3920), 3, + STATE(4065), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5291), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231200] = 11, + [239435] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237107,31 +244653,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7947), 1, + STATE(6720), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3921), 3, + STATE(4066), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231244] = 11, + [239479] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237140,64 +244686,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7203), 1, + STATE(6778), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3922), 3, + STATE(4067), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231288] = 11, + [239523] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(3020), 1, sym__direct_name, - STATE(6222), 1, + STATE(7686), 1, sym_name, - STATE(4690), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5339), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3923), 3, + STATE(4068), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5359), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231332] = 11, + [239567] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237206,31 +244752,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(7992), 1, + STATE(5187), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3924), 3, + STATE(4069), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231376] = 11, + [239611] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237239,131 +244785,125 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6987), 1, + STATE(7696), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3925), 3, + STATE(4070), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231420] = 12, + [239655] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, - anon_sym_LT_LT, - STATE(3535), 1, - sym__direct_name, - STATE(4629), 1, - sym__identifier, - STATE(4690), 1, - sym__external_name, - STATE(6262), 1, - sym_name, - ACTIONS(5339), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3926), 3, + STATE(4071), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(5337), 4, + ACTIONS(3370), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [231466] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [239687] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(938), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(847), 1, + STATE(3020), 1, sym__direct_name, - STATE(2671), 1, + STATE(7697), 1, sym_name, - STATE(2072), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(950), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2071), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3927), 3, + STATE(4072), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1213), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231510] = 11, + [239731] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(7999), 1, - sym_name, - STATE(4246), 2, + STATE(4749), 1, sym__identifier, + STATE(4869), 1, sym__external_name, - ACTIONS(71), 3, + STATE(6329), 1, + sym_name, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3928), 3, + STATE(4073), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5373), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231554] = 11, + [239777] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237372,98 +244912,131 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7136), 1, + STATE(8323), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3929), 3, + STATE(4074), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231598] = 12, + [239821] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(850), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(774), 1, sym__direct_name, - STATE(4246), 1, + STATE(2520), 1, + sym_name, + STATE(1402), 2, + sym__identifier, sym__external_name, - STATE(4726), 1, + ACTIONS(862), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1401), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(4075), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(852), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [239865] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5361), 1, + anon_sym_LT_LT, + STATE(3659), 1, + sym__direct_name, + STATE(4661), 1, sym__identifier, - STATE(8094), 1, + STATE(4869), 1, + sym__external_name, + STATE(6338), 1, sym_name, - ACTIONS(71), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3930), 3, + STATE(4076), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5299), 4, + ACTIONS(5373), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231644] = 11, + [239911] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(1245), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(870), 1, sym__direct_name, - STATE(7411), 1, + STATE(2731), 1, sym_name, - STATE(4246), 2, + STATE(2127), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(1257), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3931), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(2125), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4077), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1247), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231688] = 11, + [239955] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237472,31 +245045,58 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6872), 1, + STATE(7146), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3932), 3, + STATE(4078), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231732] = 11, + [239999] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4079), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3328), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [240031] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237505,64 +245105,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6982), 1, + STATE(8322), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3933), 3, + STATE(4080), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231776] = 11, + [240075] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(754), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(749), 1, sym__direct_name, - STATE(8094), 1, + STATE(2411), 1, sym_name, - STATE(4246), 2, + STATE(1083), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(770), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3934), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1086), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4081), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(756), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231820] = 11, + [240119] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237571,31 +245171,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8016), 1, + STATE(7707), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3935), 3, + STATE(4082), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231864] = 11, + [240163] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237604,67 +245204,67 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8045), 1, + STATE(7727), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3936), 3, + STATE(4083), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [231908] = 14, + [240207] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4144), 1, + ACTIONS(4184), 1, anon_sym_DOT, - ACTIONS(4146), 1, + ACTIONS(4186), 1, anon_sym_LPAREN, - ACTIONS(4148), 1, + ACTIONS(4188), 1, anon_sym_SQUOTE, - ACTIONS(4150), 1, + ACTIONS(4190), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4194), 1, sym_PARAMETER, - STATE(3944), 1, + STATE(4091), 1, aux_sym_name_repeat1, - STATE(3969), 1, + STATE(4130), 1, sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, + STATE(4325), 1, + sym__name_selector, ACTIONS(1487), 2, sym_GENERIC, anon_sym_SEMI, - STATE(3937), 3, + STATE(4084), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4235), 5, + STATE(4327), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [231958] = 11, + [240257] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237673,31 +245273,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8054), 1, + STATE(6790), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3938), 3, + STATE(4085), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232002] = 11, + [240301] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237706,31 +245306,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7100), 1, + STATE(7730), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3939), 3, + STATE(4086), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232046] = 11, + [240345] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237739,31 +245339,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7004), 1, + STATE(6793), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3940), 3, + STATE(4087), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232090] = 11, + [240389] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237772,133 +245372,127 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8066), 1, + STATE(6746), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3941), 3, + STATE(4088), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232134] = 11, + [240433] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(956), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(777), 1, sym__direct_name, - STATE(6956), 1, + STATE(2515), 1, sym_name, - STATE(4246), 2, + STATE(1367), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(968), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3942), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1366), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4089), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(958), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232178] = 11, + [240477] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(6936), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3943), 3, + STATE(4090), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3396), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [232222] = 14, + anon_sym_LPAREN, + anon_sym_LT_LT, + [240509] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4144), 1, + ACTIONS(4184), 1, anon_sym_DOT, - ACTIONS(4146), 1, + ACTIONS(4186), 1, anon_sym_LPAREN, - ACTIONS(4148), 1, + ACTIONS(4188), 1, anon_sym_SQUOTE, - ACTIONS(4150), 1, + ACTIONS(4190), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4194), 1, sym_PARAMETER, - STATE(2926), 1, + STATE(3013), 1, aux_sym_name_repeat1, - STATE(3969), 1, + STATE(4130), 1, sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, + STATE(4325), 1, + sym__name_selector, ACTIONS(1503), 2, sym_GENERIC, anon_sym_SEMI, - STATE(3944), 3, + STATE(4091), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4235), 5, + STATE(4327), 5, sym_function_call, sym_parenthesis_group, sym_attribute, sym_signature, sym_selection, - [232272] = 11, + [240559] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -237907,118 +245501,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6915), 1, + STATE(7741), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3945), 3, + STATE(4092), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232316] = 11, + [240603] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3718), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3544), 1, + STATE(3020), 1, sym__direct_name, - STATE(5570), 1, + STATE(8014), 1, sym_name, - STATE(4553), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(3738), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3946), 3, + STATE(4093), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4549), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3720), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232360] = 5, + [240647] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3947), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3260), 15, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7755), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [232392] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3948), 3, + STATE(4094), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3240), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [232424] = 11, + [240691] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238027,31 +245600,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7816), 1, + STATE(6748), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3949), 3, + STATE(4095), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232468] = 11, + [240735] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238060,58 +245633,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6903), 1, + STATE(6800), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3950), 3, + STATE(4096), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232512] = 5, + [240779] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3951), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(8329), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4097), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3228), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [232544] = 11, + [240823] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238120,31 +245699,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6888), 1, + STATE(8016), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3952), 3, + STATE(4098), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232588] = 11, + [240867] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238153,31 +245732,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4084), 1, sym__direct_name, - STATE(8090), 1, + STATE(5979), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3953), 3, + STATE(4099), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232632] = 11, + [240911] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238186,64 +245765,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6869), 1, + STATE(7762), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3954), 3, + STATE(4100), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232676] = 11, + [240955] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1193), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(806), 1, + STATE(4049), 1, sym__direct_name, - STATE(2579), 1, + STATE(5180), 1, sym_name, - STATE(1634), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1205), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1733), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(3955), 3, + STATE(4101), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1195), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232720] = 11, + [240999] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238252,31 +245831,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6801), 1, + STATE(7776), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3956), 3, + STATE(4102), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232764] = 11, + [241043] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238285,64 +245864,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8099), 1, + STATE(6722), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3957), 3, + STATE(4103), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232808] = 11, + [241087] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6787), 1, + STATE(6102), 1, sym_name, - STATE(4246), 2, + STATE(4869), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3958), 3, + STATE(4104), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232852] = 11, + [241131] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238351,31 +245930,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8100), 1, + STATE(7095), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3959), 3, + STATE(4105), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232896] = 12, + [241175] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238384,32 +245963,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(4246), 1, - sym__external_name, - STATE(4739), 1, - sym__identifier, - STATE(8026), 1, + STATE(6719), 1, sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3960), 3, + STATE(4106), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5299), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232942] = 11, + [241219] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238418,31 +245996,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(6780), 1, + STATE(5304), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3961), 3, + STATE(4107), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [232986] = 11, + [241263] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238451,31 +246029,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6767), 1, + STATE(7781), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3962), 3, + STATE(4108), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233030] = 11, + [241307] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238484,31 +246062,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6887), 1, + STATE(7209), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3963), 3, + STATE(4109), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233074] = 11, + [241351] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238517,31 +246095,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4084), 1, sym__direct_name, - STATE(6751), 1, + STATE(5692), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3964), 3, + STATE(4110), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233118] = 11, + [241395] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238550,64 +246128,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6747), 1, + STATE(6710), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3965), 3, + STATE(4111), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233162] = 11, + [241439] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3718), 1, + ACTIONS(1044), 1, anon_sym_LT_LT, - STATE(3544), 1, + STATE(780), 1, sym__direct_name, - STATE(5688), 1, + STATE(2553), 1, sym_name, - STATE(4553), 2, + STATE(1477), 2, sym__identifier, sym__external_name, - ACTIONS(3738), 3, + ACTIONS(1056), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3966), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4549), 3, + STATE(1485), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3720), 4, + STATE(4112), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1046), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233206] = 11, + [241483] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238616,127 +246194,75 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(6736), 1, + STATE(5305), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3967), 3, + STATE(4113), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233250] = 5, + [241527] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3968), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3264), 15, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6805), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [233282] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2191), 1, - anon_sym_COLON, - ACTIONS(4146), 1, - anon_sym_LPAREN, - ACTIONS(5367), 1, - sym_PARAMETER, - STATE(4225), 1, - sym_parenthesis_group, - STATE(3969), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2189), 11, - sym_GENERIC, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [233322] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(3970), 3, + STATE(4114), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_GENERIC, - sym_PARAMETER, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_LT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [233354] = 5, + [241571] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3971), 3, + STATE(4115), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3266), 15, + ACTIONS(3302), 15, sym_identifier, sym_ASSERT, sym_END, @@ -238752,37 +246278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [233386] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5373), 1, - sym_RANGE, - STATE(5054), 1, - sym_range_constraint, - STATE(3972), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5369), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, - ACTIONS(5371), 8, - sym_identifier, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [233424] = 11, + [241603] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238791,31 +246287,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7637), 1, + STATE(7795), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3973), 3, + STATE(4116), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233468] = 11, + [241647] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238824,97 +246320,124 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6709), 1, + STATE(6740), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3974), 3, + STATE(4117), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233512] = 11, + [241691] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6870), 1, + STATE(6104), 1, sym_name, - STATE(4246), 2, + STATE(4869), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3975), 3, + STATE(4118), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233556] = 11, + [241735] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1447), 1, + STATE(4119), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2528), 15, + sym_identifier, + sym_GENERIC, + sym_PARAMETER, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT_LT, - STATE(785), 1, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [241767] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1313), 1, + anon_sym_LT_LT, + STATE(865), 1, sym__direct_name, - STATE(2505), 1, + STATE(2765), 1, sym_name, - STATE(1630), 2, + STATE(2218), 2, sym__identifier, sym__external_name, - ACTIONS(1459), 3, + ACTIONS(1325), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1624), 3, + STATE(2217), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(3976), 3, + STATE(4120), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1449), 4, + ACTIONS(1315), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233600] = 11, + [241811] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238923,64 +246446,58 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6706), 1, + STATE(6695), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3977), 3, + STATE(4121), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233644] = 11, + [241855] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(3904), 1, - sym__direct_name, - STATE(5141), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3978), 3, + STATE(4122), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3418), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [233688] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [241887] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -238989,64 +246506,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8107), 1, + STATE(6693), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3979), 3, + STATE(4123), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233732] = 11, + [241931] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5375), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3363), 1, sym__direct_name, - STATE(8121), 1, + STATE(5112), 1, sym_name, - STATE(4246), 2, + STATE(4503), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5379), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3980), 3, + STATE(4124), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4504), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5377), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233776] = 11, + [241975] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239055,31 +246572,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6690), 1, + STATE(6686), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3981), 3, + STATE(4125), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233820] = 11, + [242019] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239088,31 +246605,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7328), 1, + STATE(8218), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3982), 3, + STATE(4126), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233864] = 11, + [242063] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239121,64 +246638,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3937), 1, + STATE(3020), 1, sym__direct_name, - STATE(5833), 1, + STATE(7808), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3983), 3, + STATE(4127), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233908] = 11, + [242107] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(3020), 1, sym__direct_name, - STATE(5717), 1, + STATE(6818), 1, sym_name, - STATE(4690), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5339), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3984), 3, + STATE(4128), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5359), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233952] = 11, + [242151] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239187,131 +246704,131 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6678), 1, + STATE(7809), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3985), 3, + STATE(4129), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [233996] = 12, + [242195] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(4246), 1, - sym__external_name, - STATE(4756), 1, - sym__identifier, - STATE(8088), 1, - sym_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3986), 3, + ACTIONS(2099), 1, + anon_sym_COLON, + ACTIONS(4186), 1, + anon_sym_LPAREN, + ACTIONS(5381), 1, + sym_PARAMETER, + STATE(4319), 1, + sym_parenthesis_group, + STATE(4130), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(5299), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [234042] = 11, + ACTIONS(2097), 11, + sym_GENERIC, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [242235] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4857), 1, + ACTIONS(896), 1, anon_sym_LT_LT, - STATE(3487), 1, + STATE(845), 1, sym__direct_name, - STATE(5417), 1, + STATE(2706), 1, sym_name, - STATE(4582), 2, + STATE(2020), 2, sym__identifier, sym__external_name, - ACTIONS(4865), 3, + ACTIONS(908), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3987), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4584), 3, + STATE(2018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(4861), 4, + STATE(4131), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1263), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234086] = 11, + [242279] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(6676), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3988), 3, + ACTIONS(1465), 1, + sym_AFTER, + ACTIONS(5383), 1, + anon_sym_DOT, + ACTIONS(5386), 1, + anon_sym_LPAREN, + ACTIONS(5389), 1, + anon_sym_SQUOTE, + ACTIONS(5392), 1, + anon_sym_LBRACK, + ACTIONS(5395), 1, + sym_GENERIC, + ACTIONS(5398), 1, + sym_PARAMETER, + STATE(4951), 1, + sym_generic_map_aspect, + STATE(5022), 1, + sym__name_selector, + STATE(4132), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [234130] = 11, + aux_sym_name_repeat1, + STATE(5023), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [242329] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239320,31 +246837,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6657), 1, + STATE(8268), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3989), 3, + STATE(4133), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234174] = 11, + [242373] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239353,31 +246870,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7337), 1, + STATE(7824), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3990), 3, + STATE(4134), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234218] = 11, + [242417] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239386,75 +246903,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8126), 1, + STATE(6684), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3991), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [234262] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(3718), 1, - anon_sym_LT_LT, - STATE(3769), 1, - sym__direct_name, - STATE(5245), 1, - sym_name, - STATE(4553), 2, - sym__identifier, - sym__external_name, - ACTIONS(3738), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(3992), 3, + STATE(4135), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4549), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3720), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234306] = 5, + [242461] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3993), 3, + STATE(4136), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, + ACTIONS(3324), 15, sym_identifier, sym_ASSERT, sym_END, @@ -239470,7 +246954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [234338] = 11, + [242493] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239479,31 +246963,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3937), 1, + STATE(3020), 1, sym__direct_name, - STATE(5104), 1, + STATE(6856), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3994), 3, + STATE(4137), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234382] = 11, + [242537] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239512,31 +246996,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7248), 1, + STATE(7716), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3995), 3, + STATE(4138), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234426] = 11, + [242581] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239545,31 +247029,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4084), 1, sym__direct_name, - STATE(8083), 1, + STATE(5268), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3996), 3, + STATE(4139), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234470] = 11, + [242625] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239578,91 +247062,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6648), 1, + STATE(7845), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3997), 3, + STATE(4140), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234514] = 11, + [242669] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6647), 1, + STATE(5614), 1, sym_name, - STATE(4246), 2, + STATE(4869), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(3998), 3, + STATE(4141), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234558] = 5, + [242713] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3999), 3, + ACTIONS(5361), 1, + anon_sym_LT_LT, + STATE(3659), 1, + sym__direct_name, + STATE(5607), 1, + sym_name, + STATE(4869), 2, + sym__identifier, + sym__external_name, + ACTIONS(5365), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4142), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3434), 15, + STATE(4870), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5363), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [234590] = 11, + [242757] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239671,64 +247161,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6635), 1, + STATE(6679), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4000), 3, + STATE(4143), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234634] = 11, + [242801] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(1066), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(882), 1, sym__direct_name, - STATE(6624), 1, + STATE(2712), 1, sym_name, - STATE(4246), 2, + STATE(1915), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(1078), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4001), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(2287), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4144), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1068), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234678] = 11, + [242845] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239737,31 +247227,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6621), 1, + STATE(7491), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4002), 3, + STATE(4145), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234722] = 11, + [242889] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239770,31 +247260,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6835), 1, + STATE(6951), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4003), 3, + STATE(4146), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234766] = 11, + [242933] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239803,31 +247293,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6830), 1, + STATE(6935), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4004), 3, + STATE(4147), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234810] = 11, + [242977] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239836,31 +247326,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6586), 1, + STATE(7754), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4005), 3, + STATE(4148), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234854] = 11, + [243021] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239869,31 +247359,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6584), 1, + STATE(6632), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4006), 3, + STATE(4149), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234898] = 11, + [243065] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239902,31 +247392,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6570), 1, + STATE(8044), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4007), 3, + STATE(4150), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234942] = 11, + [243109] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239935,31 +247425,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6555), 1, + STATE(8047), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4008), 3, + STATE(4151), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [234986] = 11, + [243153] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -239968,31 +247458,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8081), 1, + STATE(6633), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4009), 3, + STATE(4152), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235030] = 11, + [243197] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240001,64 +247491,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(4191), 1, + STATE(3020), 1, sym__direct_name, - STATE(7907), 1, + STATE(6883), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4010), 3, + STATE(4153), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235074] = 11, + [243241] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(3728), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3596), 1, sym__direct_name, - STATE(6543), 1, + STATE(5616), 1, sym_name, - STATE(4246), 2, + STATE(4800), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(3750), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4011), 3, + STATE(4154), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4737), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3730), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235118] = 11, + [243285] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240067,97 +247557,91 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(4191), 1, + STATE(3020), 1, sym__direct_name, - STATE(7898), 1, + STATE(6867), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4012), 3, + STATE(4155), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235162] = 11, + [243329] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6540), 1, + STATE(6181), 1, sym_name, - STATE(4246), 2, + STATE(4869), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4013), 3, + STATE(4156), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235206] = 11, + [243373] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(4191), 1, - sym__direct_name, - STATE(7884), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4014), 3, + STATE(4157), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3300), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [235250] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [243405] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240166,31 +247650,68 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8052), 1, + STATE(6868), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4015), 3, + STATE(4158), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235294] = 11, + [243449] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1487), 1, + sym_AFTER, + ACTIONS(5401), 1, + anon_sym_DOT, + ACTIONS(5403), 1, + anon_sym_LPAREN, + ACTIONS(5405), 1, + anon_sym_SQUOTE, + ACTIONS(5407), 1, + anon_sym_LBRACK, + ACTIONS(5409), 1, + sym_GENERIC, + ACTIONS(5411), 1, + sym_PARAMETER, + STATE(4193), 1, + aux_sym_name_repeat1, + STATE(4951), 1, + sym_generic_map_aspect, + STATE(5022), 1, + sym__name_selector, + STATE(4159), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(5023), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [243501] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240199,42 +247720,42 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6524), 1, + STATE(6902), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4016), 3, + STATE(4160), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235338] = 5, + [243545] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4017), 3, + STATE(4161), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3448), 15, + ACTIONS(3298), 15, sym_identifier, sym_ASSERT, sym_END, @@ -240250,7 +247771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [235370] = 11, + [243577] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240259,130 +247780,131 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(4191), 1, + STATE(3020), 1, sym__direct_name, - STATE(7866), 1, + STATE(8054), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4018), 3, + STATE(4162), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235414] = 11, + [243621] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(896), 1, + ACTIONS(3728), 1, anon_sym_LT_LT, - STATE(795), 1, + STATE(3596), 1, sym__direct_name, - STATE(2512), 1, + STATE(5613), 1, sym_name, - STATE(1597), 2, + STATE(4800), 2, sym__identifier, sym__external_name, - ACTIONS(908), 3, + ACTIONS(3750), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1586), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4019), 3, + STATE(4163), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(898), 4, + STATE(4737), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3730), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235458] = 11, + [243665] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6509), 1, - sym_name, - STATE(4246), 2, + STATE(4862), 1, sym__identifier, + STATE(4869), 1, sym__external_name, - ACTIONS(71), 3, + STATE(6181), 1, + sym_name, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4020), 3, + STATE(4164), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5373), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235502] = 11, + [243711] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(1357), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(784), 1, sym__direct_name, - STATE(6502), 1, + STATE(2582), 1, sym_name, - STATE(4246), 2, + STATE(1608), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(1369), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4021), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1616), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4165), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1359), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235546] = 11, + [243755] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240391,64 +247913,58 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6500), 1, + STATE(6904), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4022), 3, + STATE(4166), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235590] = 11, + [243799] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(4191), 1, - sym__direct_name, - STATE(7840), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4023), 3, + STATE(4167), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3296), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [235634] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [243831] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240457,31 +247973,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6499), 1, + STATE(8086), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4024), 3, + STATE(4168), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235678] = 11, + [243875] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240490,31 +248006,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6489), 1, + STATE(8093), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4025), 3, + STATE(4169), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235722] = 11, + [243919] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240523,130 +248039,125 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(4191), 1, + STATE(3020), 1, sym__direct_name, - STATE(7807), 1, + STATE(7838), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4026), 3, + STATE(4170), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235766] = 11, + [243963] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6485), 1, - sym_name, - STATE(4246), 2, + STATE(4775), 1, sym__identifier, + STATE(4869), 1, sym__external_name, - ACTIONS(71), 3, + STATE(6164), 1, + sym_name, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4027), 3, + STATE(4171), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5373), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235810] = 11, + [244009] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(6483), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4028), 3, + STATE(4172), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3284), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [235854] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [244041] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1425), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(780), 1, + STATE(3020), 1, sym__direct_name, - STATE(2526), 1, + STATE(6949), 1, sym_name, - STATE(1577), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1437), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1585), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4029), 3, + STATE(4173), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1427), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235898] = 11, + [244085] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240655,31 +248166,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3937), 1, + STATE(3020), 1, sym__direct_name, - STATE(5552), 1, + STATE(8130), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4030), 3, + STATE(4174), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235942] = 11, + [244129] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240688,163 +248199,190 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3904), 1, + STATE(3020), 1, sym__direct_name, - STATE(5112), 1, + STATE(8166), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4031), 3, + STATE(4175), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [235986] = 11, + [244173] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5375), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3512), 1, + STATE(3020), 1, sym__direct_name, - STATE(5002), 1, + STATE(8168), 1, sym_name, - STATE(4297), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5379), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4032), 3, + STATE(4176), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4284), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5377), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236030] = 11, + [244217] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(1000), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(788), 1, sym__direct_name, - STATE(8108), 1, + STATE(2550), 1, sym_name, - STATE(4246), 2, + STATE(1513), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(1012), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4033), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1516), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4177), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1002), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236074] = 11, + [244261] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1287), 1, + ACTIONS(1096), 1, anon_sym_LT_LT, - STATE(767), 1, + STATE(734), 1, sym__direct_name, - STATE(2457), 1, + STATE(2045), 1, sym_name, - STATE(1224), 2, + STATE(945), 2, sym__identifier, sym__external_name, - ACTIONS(1299), 3, + ACTIONS(1108), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1222), 3, + STATE(940), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4034), 3, + STATE(4178), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1289), 4, + ACTIONS(1098), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236118] = 11, + [244305] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1403), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(809), 1, + STATE(4338), 1, sym__direct_name, - STATE(2535), 1, + STATE(8028), 1, sym_name, - STATE(1857), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1415), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1770), 3, + STATE(4179), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4035), 3, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [244349] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4180), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1405), 4, + ACTIONS(3436), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [236162] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [244381] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -240853,75 +248391,69 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4338), 1, sym__direct_name, - STATE(6810), 1, + STATE(8061), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4036), 3, + STATE(4181), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236206] = 11, + [244425] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1066), 1, - anon_sym_LT_LT, - STATE(865), 1, - sym__direct_name, - STATE(2632), 1, - sym_name, - STATE(1914), 2, - sym__identifier, - sym__external_name, - ACTIONS(1078), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1910), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4037), 3, + STATE(4182), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1068), 4, + ACTIONS(3438), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [236250] = 5, + anon_sym_LPAREN, + anon_sym_LT_LT, + [244457] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4038), 3, + STATE(4183), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3456), 15, + ACTIONS(3294), 15, sym_identifier, sym_ASSERT, sym_END, @@ -240937,18 +248469,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [236282] = 5, + [244489] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4039), 3, + STATE(4184), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3440), 15, + ACTIONS(3292), 15, sym_identifier, sym_ASSERT, sym_END, @@ -240964,40 +248496,40 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [236314] = 11, + [244521] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5367), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3656), 1, sym__direct_name, - STATE(7976), 1, + STATE(5276), 1, sym_name, - STATE(4246), 2, + STATE(4423), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5371), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4040), 3, + STATE(4185), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4402), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5369), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236358] = 11, + [244565] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241006,124 +248538,130 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7956), 1, + STATE(8196), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4041), 3, + STATE(4186), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236402] = 5, + [244609] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4042), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(8220), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4187), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3430), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [236434] = 11, + [244653] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5375), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3195), 1, + STATE(3020), 1, sym__direct_name, - STATE(4855), 1, + STATE(8221), 1, sym_name, - STATE(4297), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5379), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4043), 3, + STATE(4188), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4284), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5377), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236478] = 11, + [244697] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5413), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3586), 1, sym__direct_name, - STATE(7929), 1, + STATE(5385), 1, sym_name, - STATE(4246), 2, + STATE(4824), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5417), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4044), 3, + STATE(4189), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4815), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5415), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236522] = 11, + [244741] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241132,31 +248670,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4338), 1, sym__direct_name, - STATE(7849), 1, + STATE(8087), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4045), 3, + STATE(4190), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236566] = 11, + [244785] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241165,97 +248703,161 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(7792), 1, + STATE(5322), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4046), 3, + STATE(4191), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236610] = 11, + [244829] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5381), 1, + STATE(4192), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3440), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [244861] = 15, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1503), 1, + sym_AFTER, + ACTIONS(5401), 1, + anon_sym_DOT, + ACTIONS(5403), 1, + anon_sym_LPAREN, + ACTIONS(5405), 1, + anon_sym_SQUOTE, + ACTIONS(5407), 1, + anon_sym_LBRACK, + ACTIONS(5409), 1, + sym_GENERIC, + ACTIONS(5411), 1, + sym_PARAMETER, + STATE(4132), 1, + aux_sym_name_repeat1, + STATE(4951), 1, + sym_generic_map_aspect, + STATE(5022), 1, + sym__name_selector, + STATE(4193), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(5023), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [244913] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3290), 1, + STATE(4049), 1, sym__direct_name, - STATE(4984), 1, + STATE(5279), 1, sym_name, - STATE(4316), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5385), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4047), 3, + STATE(4194), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4315), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5383), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236654] = 11, + [244957] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(1022), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(753), 1, sym__direct_name, - STATE(7846), 1, + STATE(2440), 1, sym_name, - STATE(4246), 2, + STATE(1180), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(1034), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4048), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1181), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4195), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236698] = 11, + [245001] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241264,31 +248866,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(8047), 1, + STATE(8237), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4049), 3, + STATE(4196), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236742] = 11, + [245045] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241297,31 +248899,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4084), 1, sym__direct_name, - STATE(7815), 1, + STATE(5822), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4050), 3, + STATE(4197), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236786] = 11, + [245089] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241330,58 +248932,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7625), 1, + STATE(7038), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4051), 3, + STATE(4198), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236830] = 5, + [245133] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4052), 3, + ACTIONS(1157), 1, + anon_sym_LT_LT, + STATE(769), 1, + sym__direct_name, + STATE(2508), 1, + sym_name, + STATE(1330), 2, + sym__identifier, + sym__external_name, + ACTIONS(1169), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1328), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(4199), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3428), 15, + ACTIONS(1159), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [236862] = 11, + [245177] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241390,31 +248998,32 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7620), 1, - sym_name, - STATE(4246), 2, - sym__identifier, + STATE(4332), 1, sym__external_name, + STATE(4946), 1, + sym__identifier, + STATE(8319), 1, + sym_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4053), 3, + STATE(4200), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5291), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236906] = 11, + [245223] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241423,31 +249032,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7597), 1, + STATE(8109), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4054), 3, + STATE(4201), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236950] = 11, + [245267] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241456,31 +249065,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7547), 1, + STATE(7037), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4055), 3, + STATE(4202), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [236994] = 11, + [245311] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241489,145 +249098,130 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7545), 1, + STATE(8266), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4056), 3, + STATE(4203), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237038] = 5, + [245355] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4057), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3426), 15, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(4338), 1, + sym__direct_name, + STATE(8105), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, - sym_library_constant, sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [237070] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4058), 3, + STATE(4204), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [237102] = 11, + [245399] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1096), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(803), 1, + STATE(3020), 1, sym__direct_name, - STATE(2468), 1, + STATE(8275), 1, sym_name, - STATE(929), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(930), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4059), 3, + STATE(4205), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1098), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237146] = 5, + [245443] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4060), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(4338), 1, + sym__direct_name, + STATE(8119), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4206), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3404), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [237178] = 11, + [245487] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241636,64 +249230,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7554), 1, + STATE(7452), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4061), 3, + STATE(4207), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237222] = 11, + [245531] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1341), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(880), 1, + STATE(4338), 1, sym__direct_name, - STATE(2662), 1, + STATE(8128), 1, sym_name, - STATE(1879), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1353), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1878), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4062), 3, + STATE(4208), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1343), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237266] = 11, + [245575] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241702,31 +249296,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(7504), 1, + STATE(5175), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4063), 3, + STATE(4209), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237310] = 11, + [245619] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241735,31 +249329,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4084), 1, sym__direct_name, - STATE(6763), 1, + STATE(6012), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4064), 3, + STATE(4210), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237354] = 11, + [245663] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241768,75 +249362,75 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7522), 1, + STATE(8292), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4065), 3, + STATE(4211), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237398] = 11, + [245707] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1006), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(741), 1, + STATE(3020), 1, sym__direct_name, - STATE(2229), 1, + STATE(8321), 1, sym_name, - STATE(1024), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1018), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1029), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4066), 3, + STATE(4212), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1008), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237442] = 5, + [245751] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4067), 3, + STATE(4213), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3398), 15, + ACTIONS(3240), 15, sym_identifier, sym_ASSERT, sym_END, @@ -241852,7 +249446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [237474] = 11, + [245783] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -241861,163 +249455,244 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7487), 1, + STATE(8328), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4068), 3, + STATE(4214), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237518] = 11, + [245827] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1383), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(870), 1, + STATE(4049), 1, sym__direct_name, - STATE(2628), 1, + STATE(5200), 1, sym_name, - STATE(1913), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1395), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1915), 3, + STATE(4215), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4069), 3, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [245871] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4216), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1385), 4, + ACTIONS(3238), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [237562] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [245903] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1313), 1, + ACTIONS(427), 1, anon_sym_LT_LT, - STATE(832), 1, + STATE(735), 1, sym__direct_name, - STATE(2566), 1, + STATE(1968), 1, sym_name, - STATE(1751), 2, + STATE(966), 2, sym__identifier, sym__external_name, - ACTIONS(1325), 3, + ACTIONS(435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1755), 3, + STATE(961), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4070), 3, + STATE(4217), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1315), 4, + ACTIONS(429), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237606] = 11, + [245947] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + STATE(4218), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3268), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [245979] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(399), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(775), 1, sym__direct_name, - STATE(7998), 1, + STATE(2474), 1, sym_name, - STATE(4246), 2, + STATE(1343), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(419), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4071), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1344), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4219), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(401), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237650] = 11, + [246023] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + STATE(4220), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3266), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [246055] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5419), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3866), 1, sym__direct_name, - STATE(7479), 1, + STATE(5910), 1, sym_name, - STATE(4246), 2, + STATE(4922), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5423), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4072), 3, + STATE(4221), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4884), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5421), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237694] = 11, + [246099] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242026,31 +249701,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7450), 1, + STATE(7003), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4073), 3, + STATE(4222), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237738] = 11, + [246143] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242059,31 +249734,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6762), 1, + STATE(7004), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4074), 3, + STATE(4223), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237782] = 11, + [246187] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242092,97 +249767,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7395), 1, + STATE(8334), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4075), 3, + STATE(4224), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237826] = 11, + [246231] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(409), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(764), 1, + STATE(3020), 1, sym__direct_name, - STATE(2455), 1, + STATE(8347), 1, sym_name, - STATE(1274), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(429), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1281), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4076), 3, + STATE(4225), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(411), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237870] = 11, + [246275] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(734), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(725), 1, + STATE(3020), 1, sym__direct_name, - STATE(1591), 1, + STATE(8348), 1, sym_name, - STATE(840), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(746), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(869), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4077), 3, + STATE(4226), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(800), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237914] = 11, + [246319] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242191,69 +249866,76 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7373), 1, + STATE(7054), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4078), 3, + STATE(4227), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [237958] = 5, + [246363] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4079), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(4332), 1, + sym__external_name, + STATE(4943), 1, + sym__identifier, + STATE(8317), 1, + sym_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4228), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3390), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5291), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [237990] = 5, + [246409] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4080), 3, + STATE(4229), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3206), 15, + ACTIONS(3218), 15, sym_identifier, sym_ASSERT, sym_END, @@ -242269,264 +249951,282 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [238022] = 5, + [246441] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4081), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(4049), 1, + sym__direct_name, + STATE(5323), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4230), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3388), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [238054] = 11, + [246485] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(754), 1, + ACTIONS(874), 1, anon_sym_LT_LT, - STATE(749), 1, + STATE(743), 1, sym__direct_name, - STATE(2326), 1, + STATE(2366), 1, sym_name, - STATE(1016), 2, + STATE(1035), 2, sym__identifier, sym__external_name, - ACTIONS(770), 3, + ACTIONS(886), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(995), 3, + STATE(1029), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4082), 3, + STATE(4231), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(756), 4, + ACTIONS(876), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238098] = 11, + [246529] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(3020), 1, sym__direct_name, - STATE(5915), 1, + STATE(8317), 1, sym_name, - STATE(4690), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5339), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4083), 3, + STATE(4232), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5359), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238142] = 11, + [246573] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1028), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(748), 1, + STATE(3020), 1, sym__direct_name, - STATE(2264), 1, + STATE(7189), 1, sym_name, - STATE(1023), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1040), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1026), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4084), 3, + STATE(4233), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1030), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238186] = 11, + [246617] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1243), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(770), 1, + STATE(3020), 1, sym__direct_name, - STATE(2426), 1, + STATE(8126), 1, sym_name, - STATE(1383), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1255), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1384), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4085), 3, + STATE(4234), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1245), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238230] = 5, + [246661] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4086), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6905), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4235), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [238262] = 11, + [246705] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1157), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(879), 1, + STATE(3020), 1, sym__direct_name, - STATE(2609), 1, + STATE(8290), 1, sym_name, - STATE(1891), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1169), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1895), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4087), 3, + STATE(4236), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1159), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238306] = 5, + [246749] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4088), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(8276), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4237), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3370), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [238338] = 5, + [246793] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4089), 3, + STATE(4238), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, + ACTIONS(3464), 15, sym_identifier, sym_ASSERT, sym_END, @@ -242542,94 +250242,106 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [238370] = 5, + [246825] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4090), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7249), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4239), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3362), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [238402] = 5, + [246869] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4091), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(8257), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4240), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3354), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [238434] = 11, + [246913] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1096), 1, + ACTIONS(5425), 1, anon_sym_LT_LT, - STATE(732), 1, + STATE(3352), 1, sym__direct_name, - STATE(2087), 1, + STATE(5103), 1, sym_name, - STATE(929), 2, + STATE(4512), 2, sym__identifier, sym__external_name, - ACTIONS(1108), 3, + ACTIONS(5429), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(930), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4092), 3, + STATE(4241), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1098), 4, + STATE(4514), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(5427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238478] = 11, + [246957] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242638,31 +250350,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7301), 1, + STATE(8216), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4093), 3, + STATE(4242), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238522] = 11, + [247001] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242671,31 +250383,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7917), 1, + STATE(8211), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4094), 3, + STATE(4243), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238566] = 11, + [247045] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242704,75 +250416,75 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7102), 1, + STATE(7394), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4095), 3, + STATE(4244), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238610] = 11, + [247089] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5431), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3577), 1, sym__direct_name, - STATE(7091), 1, + STATE(5162), 1, sym_name, - STATE(4246), 2, + STATE(4588), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5435), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4096), 3, + STATE(4245), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4591), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5433), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238654] = 5, + [247133] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4097), 3, + STATE(4246), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3308), 15, + ACTIONS(3246), 15, sym_identifier, sym_ASSERT, sym_END, @@ -242788,51 +250500,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [238686] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(6567), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4098), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [238730] = 5, + [247165] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4099), 3, + STATE(4247), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3306), 15, + ACTIONS(3244), 15, sym_identifier, sym_ASSERT, sym_END, @@ -242848,7 +250527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [238762] = 11, + [247197] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242857,31 +250536,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6745), 1, + STATE(8195), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4100), 3, + STATE(4248), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238806] = 11, + [247241] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242890,31 +250569,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6963), 1, + STATE(8097), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4101), 3, + STATE(4249), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238850] = 11, + [247285] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242923,31 +250602,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6920), 1, + STATE(8003), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4102), 3, + STATE(4250), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238894] = 11, + [247329] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -242956,64 +250635,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6838), 1, + STATE(7390), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4103), 3, + STATE(4251), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238938] = 11, + [247373] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(874), 1, + ACTIONS(5331), 1, anon_sym_LT_LT, - STATE(788), 1, + STATE(3520), 1, sym__direct_name, - STATE(2492), 1, + STATE(5351), 1, sym_name, - STATE(1501), 2, + STATE(4554), 2, sym__identifier, sym__external_name, - ACTIONS(886), 3, + ACTIONS(5335), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1496), 3, + STATE(4252), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4552), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4104), 3, + ACTIONS(5333), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [247417] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(978), 1, + anon_sym_LT_LT, + STATE(783), 1, + sym__direct_name, + STATE(2609), 1, + sym_name, + STATE(1603), 2, + sym__identifier, + sym__external_name, + ACTIONS(990), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1610), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(4253), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(876), 4, + ACTIONS(980), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [238982] = 11, + [247461] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243022,31 +250734,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6785), 1, + STATE(7251), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4105), 3, + STATE(4254), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239026] = 11, + [247505] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243055,31 +250767,32 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3904), 1, + STATE(3020), 1, sym__direct_name, - STATE(5085), 1, - sym_name, - STATE(4246), 2, - sym__identifier, + STATE(4332), 1, sym__external_name, + STATE(4923), 1, + sym__identifier, + STATE(8309), 1, + sym_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4106), 3, + STATE(4255), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5291), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239070] = 11, + [247551] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243088,31 +250801,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3937), 1, + STATE(3020), 1, sym__direct_name, - STATE(5696), 1, + STATE(7021), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4107), 3, + STATE(4256), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239114] = 11, + [247595] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243121,31 +250834,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6746), 1, + STATE(7263), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4108), 3, + STATE(4257), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239158] = 11, + [247639] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243154,31 +250867,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6743), 1, + STATE(8064), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4109), 3, + STATE(4258), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239202] = 11, + [247683] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243187,31 +250900,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6697), 1, + STATE(7858), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4110), 3, + STATE(4259), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239246] = 11, + [247727] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243220,31 +250933,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7900), 1, + STATE(7841), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4111), 3, + STATE(4260), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239290] = 11, + [247771] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243253,31 +250966,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6673), 1, + STATE(7281), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4112), 3, + STATE(4261), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239334] = 11, + [247815] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243286,31 +250999,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6671), 1, + STATE(7823), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4113), 3, + STATE(4262), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239378] = 11, + [247859] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243319,124 +251032,130 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4338), 1, sym__direct_name, - STATE(6646), 1, + STATE(7555), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4114), 3, + STATE(4263), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239422] = 11, + [247903] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1223), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(878), 1, + STATE(4049), 1, sym__direct_name, - STATE(2639), 1, + STATE(5338), 1, sym_name, - STATE(2147), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(1235), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(2151), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4115), 3, + STATE(4264), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1225), 4, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239466] = 5, + [247947] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4116), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7780), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4265), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3274), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [239498] = 11, + [247991] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(4274), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3628), 1, sym__direct_name, - STATE(6609), 1, + STATE(4630), 1, sym_name, - STATE(4246), 2, + STATE(4658), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(4280), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4117), 3, + STATE(4266), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4704), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5437), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239542] = 11, + [248035] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243445,58 +251164,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6730), 1, + STATE(7774), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4118), 3, + STATE(4267), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239586] = 5, + [248079] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4119), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(7504), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4268), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3386), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [239618] = 11, + [248123] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243505,42 +251230,75 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6573), 1, + STATE(6823), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4120), 3, + STATE(4269), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239662] = 5, + [248167] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4121), 3, + ACTIONS(1096), 1, + anon_sym_LT_LT, + STATE(802), 1, + sym__direct_name, + STATE(2562), 1, + sym_name, + STATE(945), 2, + sym__identifier, + sym__external_name, + ACTIONS(1108), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(940), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(4270), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3272), 15, + ACTIONS(1098), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [248211] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4271), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3326), 15, sym_identifier, sym_ASSERT, sym_END, @@ -243556,40 +251314,40 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [239694] = 11, + [248243] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(3659), 1, sym__direct_name, - STATE(5897), 1, + STATE(5709), 1, sym_name, - STATE(4690), 2, + STATE(4869), 2, sym__identifier, sym__external_name, - ACTIONS(5339), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4122), 3, + STATE(4272), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5359), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239738] = 11, + [248287] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243598,58 +251356,94 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7283), 1, + STATE(6915), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4123), 3, + STATE(4273), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239782] = 5, + [248331] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4124), 3, + ACTIONS(11), 1, + anon_sym_LT_LT, + STATE(3020), 1, + sym__direct_name, + STATE(6918), 1, + sym_name, + STATE(4332), 2, + sym__identifier, + sym__external_name, + ACTIONS(71), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(4274), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3262), 15, + STATE(4335), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + ACTIONS(3024), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [248375] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5443), 1, + sym_RANGE, + STATE(5191), 1, + sym_range_constraint, + STATE(4275), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5439), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + ACTIONS(5441), 8, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [239814] = 11, + [248413] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243658,31 +251452,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(7175), 1, + STATE(7761), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4125), 3, + STATE(4276), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239858] = 11, + [248457] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243691,31 +251485,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4084), 1, sym__direct_name, - STATE(6598), 1, + STATE(6000), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4126), 3, + STATE(4277), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239902] = 11, + [248501] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243724,31 +251518,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6530), 1, + STATE(5355), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4127), 3, + STATE(4278), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239946] = 11, + [248545] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243757,64 +251551,65 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6527), 1, + STATE(7728), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4128), 3, + STATE(4279), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [239990] = 11, + [248589] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6505), 1, - sym_name, - STATE(4246), 2, + STATE(4674), 1, sym__identifier, + STATE(4869), 1, sym__external_name, - ACTIONS(71), 3, + STATE(6196), 1, + sym_name, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4129), 3, + STATE(4280), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5373), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240034] = 11, + [248635] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243823,58 +251618,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4049), 1, sym__direct_name, - STATE(6472), 1, + STATE(5326), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4130), 3, + STATE(4281), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240078] = 5, + [248679] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4131), 3, + ACTIONS(1203), 1, + anon_sym_LT_LT, + STATE(825), 1, + sym__direct_name, + STATE(2656), 1, + sym_name, + STATE(1840), 2, + sym__identifier, + sym__external_name, + ACTIONS(1215), 3, + sym_character_literal, + sym_operator_symbol, + sym_library_constant_std_logic, + STATE(1876), 3, + sym_external_constant_name, + sym_external_signal_name, + sym_external_variable_name, + STATE(4282), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3208), 15, + ACTIONS(1205), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [240110] = 11, + sym_library_type, + [248723] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243883,31 +251684,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6719), 1, + STATE(7722), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4132), 3, + STATE(4283), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240154] = 11, + [248767] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243916,31 +251717,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6430), 1, + STATE(7346), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4133), 3, + STATE(4284), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240198] = 11, + [248811] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243949,31 +251750,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6460), 1, + STATE(7544), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4134), 3, + STATE(4285), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240242] = 11, + [248855] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -243982,31 +251783,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6476), 1, + STATE(7706), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4135), 3, + STATE(4286), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240286] = 11, + [248899] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244015,130 +251816,131 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6477), 1, + STATE(7548), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4136), 3, + STATE(4287), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240330] = 11, + [248943] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5387), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3261), 1, + STATE(3020), 1, sym__direct_name, - STATE(4899), 1, - sym_name, - STATE(4353), 2, - sym__identifier, + STATE(4332), 1, sym__external_name, - ACTIONS(5391), 3, + STATE(4927), 1, + sym__identifier, + STATE(8311), 1, + sym_name, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4137), 3, + STATE(4288), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4378), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5389), 4, + ACTIONS(5291), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240374] = 11, + [248989] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(762), 1, sym__direct_name, - STATE(6486), 1, + STATE(2502), 1, sym_name, - STATE(4246), 2, + STATE(1310), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(1437), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4138), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1307), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4289), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1427), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240418] = 11, + [249033] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + ACTIONS(3728), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(3747), 1, sym__direct_name, - STATE(5668), 1, + STATE(5529), 1, sym_name, - STATE(4690), 2, + STATE(4800), 2, sym__identifier, sym__external_name, - ACTIONS(5339), 3, + ACTIONS(3750), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4139), 3, + STATE(4290), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + STATE(4737), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5359), 4, + ACTIONS(3730), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240462] = 11, + [249077] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244147,98 +251949,98 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6516), 1, - sym_name, - STATE(4246), 2, - sym__identifier, + STATE(4332), 1, sym__external_name, + STATE(4928), 1, + sym__identifier, + STATE(8313), 1, + sym_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4140), 3, + STATE(4291), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5291), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240506] = 12, + [249123] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, + ACTIONS(3728), 1, anon_sym_LT_LT, - STATE(3535), 1, + STATE(3596), 1, sym__direct_name, - STATE(4548), 1, + STATE(5858), 1, + sym_name, + STATE(4800), 2, sym__identifier, - STATE(4690), 1, sym__external_name, - STATE(5933), 1, - sym_name, - ACTIONS(5339), 3, + ACTIONS(3750), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4141), 3, + STATE(4292), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, + STATE(4737), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5337), 4, + ACTIONS(3730), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240552] = 11, + [249167] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(918), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(745), 1, sym__direct_name, - STATE(6704), 1, + STATE(2309), 1, sym_name, - STATE(4246), 2, + STATE(1043), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(930), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4142), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1044), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4293), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(920), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240596] = 11, + [249211] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244247,31 +252049,31 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6521), 1, + STATE(7667), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4143), 3, + STATE(4294), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240640] = 11, + [249255] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244280,64 +252082,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6672), 1, + STATE(7663), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4144), 3, + STATE(4295), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240684] = 11, + [249299] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5393), 1, + ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3730), 1, + STATE(3020), 1, sym__direct_name, - STATE(5832), 1, + STATE(7492), 1, sym_name, - STATE(4772), 2, + STATE(4332), 2, sym__identifier, sym__external_name, - ACTIONS(5397), 3, + ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4145), 3, + STATE(4296), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4784), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5395), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240728] = 11, + [249343] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244346,101 +252148,91 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6533), 1, + STATE(6992), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4146), 3, + STATE(4297), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240772] = 11, + [249387] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(1445), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(791), 1, sym__direct_name, - STATE(6561), 1, + STATE(2585), 1, sym_name, - STATE(4246), 2, + STATE(1419), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(1457), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4147), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(1533), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4298), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(1447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240816] = 15, + [249431] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1503), 1, - sym_AFTER, - ACTIONS(5399), 1, - anon_sym_DOT, - ACTIONS(5401), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_SQUOTE, - ACTIONS(5405), 1, - anon_sym_LBRACK, - ACTIONS(5407), 1, - sym_GENERIC, - ACTIONS(5409), 1, - sym_PARAMETER, - STATE(4176), 1, - aux_sym_name_repeat1, - STATE(4727), 1, - sym_generic_map_aspect, - STATE(4871), 1, - sym_name_selector, - STATE(4148), 3, + STATE(4299), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4881), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [240868] = 11, + ACTIONS(3478), 15, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [249463] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244449,163 +252241,191 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6571), 1, + STATE(6961), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4149), 3, + STATE(4300), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240912] = 11, + [249507] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1363), 1, + ACTIONS(1269), 1, anon_sym_LT_LT, - STATE(823), 1, + STATE(814), 1, sym__direct_name, - STATE(2557), 1, + STATE(2650), 1, sym_name, - STATE(1863), 2, + STATE(1701), 2, sym__identifier, sym__external_name, - ACTIONS(1375), 3, + ACTIONS(1281), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1861), 3, + STATE(1703), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4150), 3, + STATE(4301), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1365), 4, + ACTIONS(1271), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [240956] = 11, + [249551] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6670), 1, - sym_name, - STATE(4246), 2, + STATE(4727), 1, sym__identifier, + STATE(4869), 1, sym__external_name, - ACTIONS(71), 3, + STATE(6135), 1, + sym_name, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4151), 3, + STATE(4302), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5373), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241000] = 11, + [249597] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(850), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(772), 1, + STATE(3659), 1, sym__direct_name, - STATE(2424), 1, + STATE(6135), 1, sym_name, - STATE(1283), 2, + STATE(4869), 2, sym__identifier, sym__external_name, - ACTIONS(862), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1280), 3, + STATE(4303), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4152), 3, + ACTIONS(5363), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [249641] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4304), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(852), 4, + ACTIONS(3476), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [241044] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [249673] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(734), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(765), 1, sym__direct_name, - STATE(6574), 1, + STATE(2459), 1, sym_name, - STATE(4246), 2, + STATE(850), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(746), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4153), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(4237), 3, + STATE(876), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + STATE(4305), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(802), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241088] = 11, + [249717] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244614,97 +252434,97 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3904), 1, + STATE(3020), 1, sym__direct_name, - STATE(5027), 1, + STATE(7632), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4154), 3, + STATE(4306), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241132] = 11, + [249761] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3659), 1, sym__direct_name, - STATE(6585), 1, + STATE(6266), 1, sym_name, - STATE(4246), 2, + STATE(4869), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4155), 3, + STATE(4307), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241176] = 11, + [249805] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4214), 1, + ACTIONS(5361), 1, anon_sym_LT_LT, - STATE(3556), 1, + STATE(3659), 1, sym__direct_name, - STATE(4443), 1, + STATE(6137), 1, sym_name, - STATE(4561), 2, + STATE(4869), 2, sym__identifier, sym__external_name, - ACTIONS(4220), 3, + ACTIONS(5365), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4156), 3, + STATE(4308), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4562), 3, + STATE(4870), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(5411), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241220] = 11, + [249849] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244713,64 +252533,64 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(3904), 1, + STATE(3020), 1, sym__direct_name, - STATE(5137), 1, + STATE(7692), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4157), 3, + STATE(4309), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241264] = 11, + [249893] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, + ACTIONS(5445), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(4159), 1, sym__direct_name, - STATE(6468), 1, + STATE(8346), 1, sym_name, - STATE(4246), 2, + STATE(5017), 2, sym__identifier, sym__external_name, - ACTIONS(71), 3, + ACTIONS(5449), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4158), 3, + STATE(4310), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(5018), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(5447), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241308] = 11, + [249937] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244779,97 +252599,91 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6616), 1, + STATE(7545), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4159), 3, + STATE(4311), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241352] = 11, + [249981] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1265), 1, + ACTIONS(1383), 1, anon_sym_LT_LT, - STATE(827), 1, + STATE(821), 1, sym__direct_name, - STATE(2591), 1, + STATE(2639), 1, sym_name, - STATE(1740), 2, + STATE(1679), 2, sym__identifier, sym__external_name, - ACTIONS(1277), 3, + ACTIONS(1395), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(1736), 3, + STATE(1795), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - STATE(4160), 3, + STATE(4312), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(1267), 4, + ACTIONS(1385), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241396] = 11, + [250025] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(7174), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4161), 3, + STATE(4313), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3474), 15, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WHEN, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [241440] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [250057] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -244878,81 +252692,74 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(11), 1, anon_sym_LT_LT, - STATE(2920), 1, + STATE(3020), 1, sym__direct_name, - STATE(6626), 1, + STATE(6987), 1, sym_name, - STATE(4246), 2, + STATE(4332), 2, sym__identifier, sym__external_name, ACTIONS(71), 3, sym_character_literal, sym_operator_symbol, sym_library_constant_std_logic, - STATE(4162), 3, + STATE(4314), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, + STATE(4335), 3, sym_external_constant_name, sym_external_signal_name, sym_external_variable_name, - ACTIONS(3034), 4, + ACTIONS(3024), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [241484] = 11, + [250101] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(6629), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4163), 3, + ACTIONS(2376), 1, + anon_sym_COLON, + STATE(4315), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [241528] = 5, + ACTIONS(2374), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250134] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4164), 3, + STATE(4316), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3348), 15, + ACTIONS(3238), 14, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WHEN, sym_WITH, sym_character_literal, sym_operator_symbol, @@ -244962,481 +252769,796 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [241560] = 11, + [250165] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(984), 1, - anon_sym_LT_LT, - STATE(765), 1, - sym__direct_name, - STATE(2429), 1, - sym_name, - STATE(1240), 2, - sym__identifier, - sym__external_name, - ACTIONS(996), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1241), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4165), 3, + ACTIONS(2676), 1, + anon_sym_COLON, + STATE(4317), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(986), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [241604] = 11, + ACTIONS(2674), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250198] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, - anon_sym_LT_LT, - STATE(3535), 1, - sym__direct_name, - STATE(5933), 1, - sym_name, - STATE(4690), 2, - sym__identifier, - sym__external_name, - ACTIONS(5339), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4166), 3, + ACTIONS(2430), 1, + anon_sym_COLON, + STATE(4318), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(5359), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [241648] = 11, + ACTIONS(2428), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250231] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, - anon_sym_LT_LT, - STATE(3535), 1, - sym__direct_name, - STATE(5974), 1, - sym_name, - STATE(4690), 2, - sym__identifier, - sym__external_name, - ACTIONS(5339), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4167), 3, + ACTIONS(2574), 1, + anon_sym_COLON, + STATE(4319), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(5359), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [241692] = 11, + ACTIONS(2572), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250264] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(3937), 1, - sym__direct_name, - STATE(5586), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4168), 3, + ACTIONS(2616), 1, + anon_sym_COLON, + STATE(4320), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [241736] = 11, + ACTIONS(2614), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250297] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(3904), 1, - sym__direct_name, - STATE(5009), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4169), 3, + ACTIONS(2578), 1, + anon_sym_COLON, + STATE(4321), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [241780] = 11, + ACTIONS(2576), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250330] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11), 1, - anon_sym_LT_LT, - STATE(2920), 1, - sym__direct_name, - STATE(6651), 1, - sym_name, - STATE(4246), 2, - sym__identifier, - sym__external_name, - ACTIONS(71), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4170), 3, + ACTIONS(2612), 1, + anon_sym_COLON, + STATE(4322), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4237), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3034), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [241824] = 15, + ACTIONS(2610), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250363] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1487), 1, - sym_AFTER, - ACTIONS(5399), 1, + ACTIONS(2472), 1, + anon_sym_COLON, + STATE(4323), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2470), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, - ACTIONS(5401), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, anon_sym_SQUOTE, - ACTIONS(5405), 1, anon_sym_LBRACK, - ACTIONS(5407), 1, + anon_sym_RBRACK, + [250396] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2638), 1, + anon_sym_COLON, + STATE(4324), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2636), 13, sym_GENERIC, - ACTIONS(5409), 1, sym_PARAMETER, - STATE(4148), 1, - aux_sym_name_repeat1, - STATE(4727), 1, - sym_generic_map_aspect, - STATE(4871), 1, - sym_name_selector, - STATE(4171), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250429] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2582), 1, + anon_sym_COLON, + STATE(4325), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4881), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [241876] = 5, + ACTIONS(2580), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250462] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4172), 3, + ACTIONS(5451), 1, + sym_RANGE, + STATE(5474), 1, + sym_range_constraint, + STATE(4326), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(5439), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + ACTIONS(5441), 8, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [241908] = 5, + [250499] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4173), 3, + ACTIONS(2672), 1, + anon_sym_COLON, + STATE(4327), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2670), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250532] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2668), 1, + anon_sym_COLON, + STATE(4328), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2666), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250565] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2558), 1, + anon_sym_COLON, + STATE(4329), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2556), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250598] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2500), 1, + anon_sym_COLON, + STATE(4330), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2498), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250631] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2476), 1, + anon_sym_COLON, + STATE(4331), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2474), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250664] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2452), 1, + anon_sym_COLON, + STATE(4332), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2450), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250697] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2468), 1, + anon_sym_COLON, + STATE(4333), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2466), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250730] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2422), 1, + anon_sym_COLON, + STATE(4334), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2420), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250763] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2608), 1, + anon_sym_COLON, + STATE(4335), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2606), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250796] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2642), 1, + anon_sym_COLON, + STATE(4336), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2640), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [250829] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5453), 1, + sym_RANGE, + STATE(5439), 1, + sym_range_constraint, + STATE(4337), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3424), 15, + ACTIONS(5439), 4, + sym_BUS, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + ACTIONS(5441), 8, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WHEN, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [241940] = 11, + [250866] = 14, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3718), 1, - anon_sym_LT_LT, - STATE(3769), 1, - sym__direct_name, - STATE(5031), 1, - sym_name, - STATE(4553), 2, - sym__identifier, - sym__external_name, - ACTIONS(3738), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4174), 3, + ACTIONS(1487), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_DOT, + ACTIONS(4188), 1, + anon_sym_SQUOTE, + ACTIONS(4190), 1, + anon_sym_LBRACK, + ACTIONS(4192), 1, + sym_GENERIC, + ACTIONS(4194), 1, + sym_PARAMETER, + STATE(4130), 1, + sym_generic_map_aspect, + STATE(4325), 1, + sym__name_selector, + STATE(4339), 1, + aux_sym_name_repeat1, + STATE(4338), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4549), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(3720), 4, + STATE(4327), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [250915] = 14, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1503), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_DOT, + ACTIONS(4188), 1, + anon_sym_SQUOTE, + ACTIONS(4190), 1, + anon_sym_LBRACK, + ACTIONS(4192), 1, + sym_GENERIC, + ACTIONS(4194), 1, + sym_PARAMETER, + STATE(3013), 1, + aux_sym_name_repeat1, + STATE(4130), 1, + sym_generic_map_aspect, + STATE(4325), 1, + sym__name_selector, + STATE(4339), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + STATE(4327), 5, + sym_function_call, + sym_parenthesis_group, + sym_attribute, + sym_signature, + sym_selection, + [250964] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4340), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3476), 14, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [241984] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [250995] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5335), 1, - anon_sym_LT_LT, - STATE(3535), 1, - sym__direct_name, - STATE(5817), 1, - sym_name, - STATE(4690), 2, - sym__identifier, - sym__external_name, - ACTIONS(5339), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(4175), 3, + ACTIONS(2504), 1, + anon_sym_COLON, + STATE(4341), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4692), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - ACTIONS(5359), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [242028] = 14, + ACTIONS(2502), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [251028] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1465), 1, - sym_AFTER, - ACTIONS(5413), 1, + ACTIONS(2530), 1, + anon_sym_COLON, + STATE(4342), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2528), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, - ACTIONS(5416), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, anon_sym_SQUOTE, - ACTIONS(5422), 1, anon_sym_LBRACK, - ACTIONS(5425), 1, - sym_GENERIC, - ACTIONS(5428), 1, - sym_PARAMETER, - STATE(4727), 1, - sym_generic_map_aspect, - STATE(4871), 1, - sym_name_selector, - STATE(4176), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_name_repeat1, - STATE(4881), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [242078] = 11, + anon_sym_RBRACK, + [251061] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(960), 1, - anon_sym_LT_LT, - STATE(755), 1, - sym__direct_name, - STATE(2387), 1, - sym_name, - STATE(1190), 2, - sym__identifier, - sym__external_name, - ACTIONS(972), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1188), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4177), 3, + STATE(4343), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(962), 4, + ACTIONS(3478), 14, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [242122] = 11, + anon_sym_LPAREN, + anon_sym_LT_LT, + [251092] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(918), 1, - anon_sym_LT_LT, - STATE(792), 1, - sym__direct_name, - STATE(2481), 1, - sym_name, - STATE(1552), 2, - sym__identifier, - sym__external_name, - ACTIONS(930), 3, - sym_character_literal, - sym_operator_symbol, - sym_library_constant_std_logic, - STATE(1555), 3, - sym_external_constant_name, - sym_external_signal_name, - sym_external_variable_name, - STATE(4178), 3, + STATE(4344), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(920), 4, + ACTIONS(3396), 14, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [242166] = 5, + anon_sym_LPAREN, + anon_sym_LT_LT, + [251123] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4179), 3, + STATE(4345), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3452), 15, + ACTIONS(3474), 14, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WHEN, sym_WITH, sym_character_literal, sym_operator_symbol, @@ -245446,45 +253568,44 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242198] = 6, + [251154] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2542), 1, - anon_sym_COLON, - STATE(4180), 3, + STATE(4346), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 13, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(3472), 14, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [242231] = 5, + anon_sym_LT_LT, + [251185] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4181), 3, + STATE(4347), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3428), 14, + ACTIONS(3464), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245499,18 +253620,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242262] = 5, + [251216] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4182), 3, + STATE(4348), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3206), 14, + ACTIONS(3218), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245525,18 +253646,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242293] = 5, + [251247] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4183), 3, + STATE(4349), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3388), 14, + ACTIONS(3440), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245551,18 +253672,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242324] = 5, + [251278] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4184), 3, + STATE(4350), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3386), 14, + ACTIONS(3416), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245577,18 +253698,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242355] = 5, + [251309] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4185), 3, + STATE(4351), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3404), 14, + ACTIONS(3240), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245603,20 +253724,20 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242386] = 6, + [251340] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2668), 1, + ACTIONS(2604), 1, anon_sym_COLON, - STATE(4186), 3, + STATE(4352), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 13, + ACTIONS(2602), 13, sym_GENERIC, sym_PARAMETER, anon_sym_SEMI, @@ -245630,18 +253751,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_RBRACK, - [242419] = 5, + [251373] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4187), 3, + ACTIONS(2380), 1, + anon_sym_COLON, + STATE(4353), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3406), 14, + ACTIONS(2378), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [251406] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4354), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245656,18 +253804,45 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242450] = 5, + [251437] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4188), 3, + ACTIONS(2426), 1, + anon_sym_COLON, + STATE(4355), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2424), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [251470] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4356), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3372), 14, + ACTIONS(3244), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245682,18 +253857,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242481] = 5, + [251501] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4189), 3, + STATE(4357), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3370), 14, + ACTIONS(3246), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245708,20 +253883,20 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242512] = 6, + [251532] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2554), 1, + ACTIONS(2406), 1, anon_sym_COLON, - STATE(4190), 3, + STATE(4358), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 13, + ACTIONS(2404), 13, sym_GENERIC, sym_PARAMETER, anon_sym_SEMI, @@ -245735,90 +253910,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_RBRACK, - [242545] = 14, + [251565] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1487), 1, - anon_sym_LPAREN, - ACTIONS(4144), 1, + ACTIONS(2508), 1, + anon_sym_COLON, + STATE(4359), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2506), 13, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, - ACTIONS(4148), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, anon_sym_SQUOTE, - ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4152), 1, + anon_sym_RBRACK, + [251598] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2372), 1, + anon_sym_COLON, + STATE(4360), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2370), 13, sym_GENERIC, - ACTIONS(4154), 1, sym_PARAMETER, - STATE(3969), 1, - sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, - STATE(4192), 1, - aux_sym_name_repeat1, - STATE(4191), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [251631] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4361), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4235), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [242594] = 14, + ACTIONS(3266), 14, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [251662] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1503), 1, - anon_sym_LPAREN, - ACTIONS(4144), 1, - anon_sym_DOT, - ACTIONS(4148), 1, - anon_sym_SQUOTE, - ACTIONS(4150), 1, - anon_sym_LBRACK, - ACTIONS(4152), 1, - sym_GENERIC, - ACTIONS(4154), 1, - sym_PARAMETER, - STATE(2926), 1, - aux_sym_name_repeat1, - STATE(3969), 1, - sym_generic_map_aspect, - STATE(4180), 1, - sym_name_selector, - STATE(4192), 3, + STATE(4362), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(4235), 5, - sym_function_call, - sym_parenthesis_group, - sym_attribute, - sym_signature, - sym_selection, - [242643] = 6, + ACTIONS(3268), 14, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LPAREN, + anon_sym_LT_LT, + [251693] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2402), 1, + ACTIONS(2664), 1, anon_sym_COLON, - STATE(4193), 3, + STATE(4363), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 13, + ACTIONS(2662), 13, sym_GENERIC, sym_PARAMETER, anon_sym_SEMI, @@ -245832,18 +254043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_RBRACK, - [242676] = 5, + [251726] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4194), 3, + STATE(4364), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3368), 14, + ACTIONS(3274), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245858,18 +254069,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242707] = 5, + [251757] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4195), 3, + STATE(4365), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3362), 14, + ACTIONS(3284), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245884,18 +254095,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242738] = 5, + [251788] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4196), 3, + STATE(4366), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3354), 14, + ACTIONS(3292), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245910,18 +254121,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242769] = 5, + [251819] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4197), 3, + STATE(4367), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3308), 14, + ACTIONS(3294), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245936,18 +254147,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242800] = 5, + [251850] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4198), 3, + STATE(4368), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3306), 14, + ACTIONS(3296), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245962,18 +254173,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242831] = 5, + [251881] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4199), 3, + STATE(4369), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3304), 14, + ACTIONS(3298), 14, sym_identifier, sym_ASSERT, sym_END, @@ -245988,18 +254199,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242862] = 5, + [251912] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4200), 3, + STATE(4370), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3274), 14, + ACTIONS(3300), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246014,72 +254225,70 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242893] = 6, + [251943] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2550), 1, - anon_sym_COLON, - STATE(4201), 3, + STATE(4371), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 13, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(3302), 14, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [242926] = 6, + anon_sym_LT_LT, + [251974] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2664), 1, - anon_sym_COLON, - STATE(4202), 3, + STATE(4372), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 13, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(3324), 14, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [242959] = 5, + anon_sym_LT_LT, + [252005] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4203), 3, + STATE(4373), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3272), 14, + ACTIONS(3436), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246094,18 +254303,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [242990] = 5, + [252036] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4204), 3, + STATE(4374), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3270), 14, + ACTIONS(3430), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246120,18 +254329,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243021] = 5, + [252067] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4205), 3, + STATE(4375), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3268), 14, + ACTIONS(3326), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246146,18 +254355,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243052] = 5, + [252098] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4206), 3, + STATE(4376), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3262), 14, + ACTIONS(3328), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246172,47 +254381,44 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243083] = 8, + [252129] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5431), 1, - sym_RANGE, - STATE(5190), 1, - sym_range_constraint, - STATE(4207), 3, + STATE(4377), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5369), 4, - sym_BUS, - sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - ACTIONS(5371), 8, + ACTIONS(3418), 14, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_LPAREN, anon_sym_LT_LT, - [243120] = 5, + [252160] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4208), 3, + STATE(4378), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3260), 14, + ACTIONS(3370), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246227,47 +254433,44 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243151] = 8, + [252191] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5433), 1, - sym_RANGE, - STATE(5379), 1, - sym_range_constraint, - STATE(4209), 3, + STATE(4379), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5369), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - ACTIONS(5371), 8, + ACTIONS(3374), 14, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, + anon_sym_LPAREN, anon_sym_LT_LT, - [243188] = 5, + [252222] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4210), 3, + STATE(4380), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3250), 14, + ACTIONS(3376), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246282,18 +254485,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243219] = 5, + [252253] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4211), 3, + STATE(4381), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3424), 14, + ACTIONS(3406), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246308,18 +254511,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243250] = 5, + [252284] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4212), 3, + STATE(4382), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3426), 14, + ACTIONS(3378), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246334,45 +254537,44 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243281] = 6, + [252315] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2436), 1, - anon_sym_COLON, - STATE(4213), 3, + STATE(4383), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 13, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(3398), 14, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [243314] = 5, + anon_sym_LT_LT, + [252346] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4214), 3, + STATE(4384), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3208), 14, + ACTIONS(3400), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246387,18 +254589,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243345] = 5, + [252377] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4215), 3, + STATE(4385), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3264), 14, + ACTIONS(3402), 14, sym_identifier, sym_ASSERT, sym_END, @@ -246413,1064 +254615,1322 @@ static const uint16_t ts_small_parse_table[] = { sym_library_type, anon_sym_LPAREN, anon_sym_LT_LT, - [243376] = 6, + [252408] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2452), 1, - anon_sym_COLON, - STATE(4216), 3, + STATE(4386), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 13, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(3414), 14, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_WITH, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [243409] = 6, + anon_sym_LT_LT, + [252439] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2470), 1, - anon_sym_COLON, - STATE(4217), 3, + STATE(5371), 1, + sym__entity_tag, + STATE(5951), 1, + sym_entity_designator, + STATE(6023), 1, + sym__identifier, + STATE(7834), 1, + sym_entity_specification, + STATE(8160), 1, + sym_entity_name_list, + ACTIONS(5455), 2, + sym_ALL, + sym_OTHERS, + ACTIONS(5457), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4387), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 13, - sym_GENERIC, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [252483] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5371), 1, + sym__entity_tag, + STATE(5951), 1, + sym_entity_designator, + STATE(6023), 1, + sym__identifier, + STATE(7682), 1, + sym_entity_specification, + STATE(8160), 1, + sym_entity_name_list, + ACTIONS(5455), 2, + sym_ALL, + sym_OTHERS, + ACTIONS(5457), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4388), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [252527] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5371), 1, + sym__entity_tag, + STATE(5951), 1, + sym_entity_designator, + STATE(6023), 1, + sym__identifier, + STATE(8157), 1, + sym_entity_specification, + STATE(8160), 1, + sym_entity_name_list, + ACTIONS(5455), 2, + sym_ALL, + sym_OTHERS, + ACTIONS(5457), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4389), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [252571] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4234), 1, + anon_sym_LPAREN, + ACTIONS(5459), 1, sym_PARAMETER, + STATE(4419), 1, + sym_parenthesis_group, + STATE(4390), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2097), 10, + sym_GENERIC, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [243442] = 5, + [252607] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4218), 3, + ACTIONS(5461), 1, + sym_RANGE, + STATE(5988), 1, + sym_range_constraint, + ACTIONS(5439), 3, + sym_IS, + sym_OPEN, + anon_sym_SEMI, + STATE(4391), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3430), 14, + ACTIONS(5441), 8, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243473] = 5, + [252643] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4219), 3, + STATE(5371), 1, + sym__entity_tag, + STATE(5951), 1, + sym_entity_designator, + STATE(6023), 1, + sym__identifier, + STATE(7746), 1, + sym_entity_specification, + STATE(8160), 1, + sym_entity_name_list, + ACTIONS(5455), 2, + sym_ALL, + sym_OTHERS, + ACTIONS(5457), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4392), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3240), 14, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [243504] = 5, + [252687] = 17, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4220), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(2992), 1, + sym_END, + ACTIONS(5463), 1, + anon_sym_SEMI, + ACTIONS(5465), 1, + sym_FOR, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(5469), 1, + sym_USE, + STATE(5036), 1, + sym_binding_indication, + STATE(5037), 1, + aux_sym_configuration_head_repeat2, + STATE(5718), 1, + sym_generic_map_aspect, + STATE(6080), 1, + sym_block_configuration, + STATE(7141), 1, + sym_verification_unit_binding_indication, + STATE(7272), 1, + sym_port_map_aspect, + STATE(8259), 1, + sym_end_for, + STATE(4393), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [252741] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5471), 1, + sym_RANGE, + STATE(5623), 1, + sym_range_constraint, + ACTIONS(5439), 3, + sym_GENERIC, + anon_sym_SEMI, + sym_variable_assignment, + STATE(4394), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3228), 14, + ACTIONS(5441), 8, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243535] = 5, + [252777] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4221), 3, + ACTIONS(2530), 2, + anon_sym_LT, + anon_sym_GT, + STATE(4395), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3440), 14, + ACTIONS(2528), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + [252809] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5371), 1, + sym__entity_tag, + STATE(5951), 1, + sym_entity_designator, + STATE(6023), 1, + sym__identifier, + STATE(7855), 1, + sym_entity_specification, + STATE(8160), 1, + sym_entity_name_list, + ACTIONS(5455), 2, + sym_ALL, + sym_OTHERS, + ACTIONS(5457), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4396), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, + sym_library_constant, + sym_library_function, + sym_library_type, + [252853] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5371), 1, + sym__entity_tag, + STATE(5951), 1, + sym_entity_designator, + STATE(6023), 1, + sym__identifier, + STATE(7800), 1, + sym_entity_specification, + STATE(8160), 1, + sym_entity_name_list, + ACTIONS(5455), 2, + sym_ALL, + sym_OTHERS, + ACTIONS(5457), 2, sym_character_literal, sym_operator_symbol, + STATE(4397), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, + sym_identifier, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [243566] = 5, + [252897] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4222), 3, + STATE(5371), 1, + sym__entity_tag, + STATE(5951), 1, + sym_entity_designator, + STATE(6023), 1, + sym__identifier, + STATE(7867), 1, + sym_entity_specification, + STATE(8160), 1, + sym_entity_name_list, + ACTIONS(5455), 2, + sym_ALL, + sym_OTHERS, + ACTIONS(5457), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4398), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3390), 14, + ACTIONS(3808), 4, sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, + sym_library_constant, + sym_library_function, + sym_library_type, + [252941] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5371), 1, + sym__entity_tag, + STATE(5951), 1, + sym_entity_designator, + STATE(6023), 1, + sym__identifier, + STATE(7872), 1, + sym_entity_specification, + STATE(8160), 1, + sym_entity_name_list, + ACTIONS(5455), 2, + sym_ALL, + sym_OTHERS, + ACTIONS(5457), 2, sym_character_literal, sym_operator_symbol, + STATE(4399), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, + sym_identifier, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [243597] = 5, + [252985] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4223), 3, + STATE(4400), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3266), 14, + ACTIONS(3396), 12, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243628] = 6, + [253014] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2500), 1, - anon_sym_COLON, - STATE(4224), 3, + STATE(4401), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 13, + ACTIONS(2506), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [243661] = 6, + [253043] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2546), 1, - anon_sym_COLON, - STATE(4225), 3, + STATE(4402), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 13, + ACTIONS(2606), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [243694] = 6, + [253072] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2432), 1, - anon_sym_COLON, - STATE(4226), 3, + STATE(4403), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 13, + ACTIONS(2580), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [243727] = 6, + [253101] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2406), 1, - anon_sym_COLON, - STATE(4227), 3, + STATE(4404), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 13, + ACTIONS(2670), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [253130] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4405), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2556), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [243760] = 5, + [253159] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4228), 3, + STATE(4406), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3348), 14, + ACTIONS(3244), 12, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243791] = 5, + [253188] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4229), 3, + STATE(4407), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3350), 14, + ACTIONS(3430), 12, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243822] = 6, + [253217] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2570), 1, - anon_sym_COLON, - STATE(4230), 3, + STATE(4408), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3266), 12, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LT_LT, + [253246] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4409), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3268), 12, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LT_LT, + [253275] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4410), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3284), 12, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LT_LT, + [253304] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4411), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 13, + ACTIONS(2666), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [243855] = 5, + [253333] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4231), 3, + STATE(4412), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3456), 14, + ACTIONS(3296), 12, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243886] = 5, + [253362] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4232), 3, + STATE(4413), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2636), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [253391] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4414), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3452), 14, + ACTIONS(3298), 12, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243917] = 5, + [253420] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4415), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2610), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [253449] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4233), 3, + STATE(4416), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3398), 14, + ACTIONS(3324), 12, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243948] = 5, + [253478] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4234), 3, + STATE(4417), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3448), 14, + ACTIONS(3472), 12, sym_identifier, sym_ASSERT, sym_END, sym_POSTPONED, sym_PROCESS, - sym_WITH, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [243979] = 6, + [253507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2492), 1, - anon_sym_COLON, - STATE(4235), 3, + STATE(4418), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 13, + ACTIONS(2576), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244012] = 6, + [253536] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2574), 1, - anon_sym_COLON, - STATE(4236), 3, + STATE(4419), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 13, + ACTIONS(2572), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244045] = 6, + [253565] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2596), 1, - anon_sym_COLON, - STATE(4237), 3, + STATE(4420), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 13, - sym_GENERIC, + ACTIONS(5473), 12, + sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LT_LT, + [253594] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(4357), 1, + anon_sym_LPAREN, + ACTIONS(5475), 1, sym_PARAMETER, + STATE(4531), 1, + sym_parenthesis_group, + STATE(4421), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2097), 9, + sym_BUS, + sym_GENERIC, + sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244078] = 6, + [253629] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2496), 1, - anon_sym_COLON, - STATE(4238), 3, + STATE(4422), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 13, + ACTIONS(2528), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244111] = 6, + [253658] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2642), 1, - anon_sym_COLON, - STATE(4239), 3, + STATE(4423), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 13, + ACTIONS(2450), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244144] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4240), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3434), 14, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LPAREN, - anon_sym_LT_LT, - [244175] = 6, + [253687] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2410), 1, - anon_sym_COLON, - STATE(4241), 3, + STATE(4424), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 13, + ACTIONS(2370), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244208] = 6, + [253716] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2516), 1, - anon_sym_COLON, - STATE(4242), 3, + STATE(4425), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 13, + ACTIONS(2502), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244241] = 6, + [253745] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2620), 1, - anon_sym_COLON, - STATE(4243), 3, + STATE(4426), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 13, + ACTIONS(2498), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244274] = 6, + [253774] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2520), 1, - anon_sym_COLON, - STATE(4244), 3, + STATE(4427), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 13, + ACTIONS(2428), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244307] = 6, + [253803] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2624), 1, - anon_sym_COLON, - STATE(4245), 3, + STATE(4428), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 13, + ACTIONS(2474), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244340] = 6, + [253832] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2398), 1, - anon_sym_COLON, - STATE(4246), 3, + STATE(4429), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 13, + ACTIONS(2466), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244373] = 6, + [253861] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2616), 1, - anon_sym_COLON, - STATE(4247), 3, + STATE(4430), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 13, + ACTIONS(2424), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244406] = 5, + [253890] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4248), 3, + STATE(4431), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3420), 14, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_WITH, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, + ACTIONS(2378), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [244437] = 6, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [253919] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2612), 1, - anon_sym_COLON, - STATE(4249), 3, + STATE(4432), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 13, + ACTIONS(2420), 12, sym_GENERIC, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT_EQ, sym_variable_assignment, anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [244470] = 12, + [253948] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5818), 1, - sym_entity_designator, - STATE(6744), 1, - sym_entity_name_list, - STATE(7581), 1, - sym_entity_specification, - ACTIONS(5435), 2, - sym_ALL, - sym_OTHERS, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4250), 3, + ACTIONS(4393), 1, + anon_sym_LPAREN, + ACTIONS(5477), 1, + sym_PARAMETER, + STATE(4476), 1, + sym_parenthesis_group, + STATE(4433), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [244514] = 12, + ACTIONS(2097), 9, + sym_END, + sym_FOR, + sym_GENERIC, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [253983] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5818), 1, - sym_entity_designator, - STATE(6744), 1, - sym_entity_name_list, - STATE(7614), 1, - sym_entity_specification, - ACTIONS(5435), 2, - sym_ALL, - sym_OTHERS, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4251), 3, + STATE(4434), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [244558] = 12, + ACTIONS(2404), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254012] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5818), 1, - sym_entity_designator, - STATE(6744), 1, - sym_entity_name_list, - STATE(7646), 1, - sym_entity_specification, - ACTIONS(5435), 2, - sym_ALL, - sym_OTHERS, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4252), 3, + STATE(4435), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [244602] = 17, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5439), 1, - anon_sym_SEMI, - ACTIONS(5441), 1, - sym_FOR, - ACTIONS(5443), 1, + ACTIONS(2470), 12, sym_GENERIC, - ACTIONS(5445), 1, - sym_USE, - STATE(4874), 1, - sym_binding_indication, - STATE(4895), 1, - aux_sym_configuration_head_repeat2, - STATE(5408), 1, - sym_generic_map_aspect, - STATE(5894), 1, - sym_block_configuration, - STATE(7044), 1, - sym_verification_unit_binding_indication, - STATE(7195), 1, - sym_port_map_aspect, - STATE(8038), 1, - sym_end_for, - STATE(4253), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [244656] = 8, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254041] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5447), 1, - sym_RANGE, - STATE(5772), 1, - sym_range_constraint, - ACTIONS(5369), 3, - sym_IS, - sym_OPEN, - anon_sym_SEMI, - STATE(4254), 3, + STATE(4436), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5371), 8, + ACTIONS(3246), 12, sym_identifier, + sym_ASSERT, + sym_END, + sym_POSTPONED, + sym_PROCESS, sym_character_literal, sym_operator_symbol, sym_library_constant, @@ -247478,260 +255938,165 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_LT_LT, - [244692] = 12, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5818), 1, - sym_entity_designator, - STATE(6744), 1, - sym_entity_name_list, - STATE(7527), 1, - sym_entity_specification, - ACTIONS(5435), 2, - sym_ALL, - sym_OTHERS, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4255), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [244736] = 12, + [254070] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5818), 1, - sym_entity_designator, - STATE(6744), 1, - sym_entity_name_list, - STATE(6844), 1, - sym_entity_specification, - ACTIONS(5435), 2, - sym_ALL, - sym_OTHERS, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4256), 3, + STATE(4437), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [244780] = 12, + ACTIONS(2614), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254099] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5818), 1, - sym_entity_designator, - STATE(6744), 1, - sym_entity_name_list, - STATE(7635), 1, - sym_entity_specification, - ACTIONS(5435), 2, - sym_ALL, - sym_OTHERS, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4257), 3, + STATE(4438), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [244824] = 6, + ACTIONS(2662), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254128] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2570), 2, - anon_sym_LT, - anon_sym_GT, - STATE(4258), 3, + STATE(4439), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 11, + ACTIONS(2674), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, anon_sym_LBRACK, - [244856] = 12, + [254157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5818), 1, - sym_entity_designator, - STATE(6744), 1, - sym_entity_name_list, - STATE(7463), 1, - sym_entity_specification, - ACTIONS(5435), 2, - sym_ALL, - sym_OTHERS, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4259), 3, + STATE(4440), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [244900] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5449), 1, - sym_RANGE, - STATE(5554), 1, - sym_range_constraint, - ACTIONS(5369), 3, + ACTIONS(2374), 12, sym_GENERIC, + sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, - STATE(4260), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5371), 8, - sym_identifier, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [244936] = 8, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254186] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4230), 1, + ACTIONS(4311), 1, anon_sym_LPAREN, - ACTIONS(5451), 1, + ACTIONS(5479), 1, sym_PARAMETER, - STATE(4292), 1, + STATE(4528), 1, sym_parenthesis_group, - STATE(4261), 3, + STATE(4441), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 10, + ACTIONS(2097), 9, + sym_BUS, sym_GENERIC, sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [244972] = 12, + [254221] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5818), 1, - sym_entity_designator, - STATE(6744), 1, - sym_entity_name_list, - STATE(7651), 1, - sym_entity_specification, - ACTIONS(5435), 2, - sym_ALL, - sym_OTHERS, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4262), 3, + STATE(4442), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [245016] = 5, + ACTIONS(2602), 12, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254250] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4263), 3, + STATE(4443), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3240), 12, + ACTIONS(5481), 12, sym_identifier, sym_ASSERT, sym_END, @@ -247744,18 +256109,18 @@ static const uint16_t ts_small_parse_table[] = { sym_library_function, sym_library_type, anon_sym_LT_LT, - [245045] = 5, + [254279] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4264), 3, + STATE(4444), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 12, + ACTIONS(2640), 12, sym_GENERIC, sym_PARAMETER, sym_RANGE, @@ -247768,1034 +256133,1008 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245074] = 5, + [254308] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4265), 3, + STATE(4445), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 12, + ACTIONS(2474), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245103] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4266), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3228), 12, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245132] = 8, + [254336] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4345), 1, - anon_sym_LPAREN, - ACTIONS(5453), 1, - sym_PARAMETER, - STATE(4388), 1, - sym_parenthesis_group, - STATE(4267), 3, + STATE(4446), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 9, + ACTIONS(2378), 11, sym_BUS, sym_GENERIC, + sym_PARAMETER, sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [245167] = 5, + [254364] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4268), 3, + STATE(4447), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5455), 12, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245196] = 5, + ACTIONS(2424), 11, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254392] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4269), 3, + STATE(4448), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3250), 12, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245225] = 5, + ACTIONS(2424), 11, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_REGISTER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254420] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4270), 3, + STATE(4449), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 12, + ACTIONS(2420), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245254] = 5, + [254448] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4271), 3, + STATE(4450), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 12, + ACTIONS(2420), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245283] = 5, + [254476] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4272), 3, + STATE(4451), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3268), 12, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245312] = 5, + ACTIONS(2602), 11, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_REGISTER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254504] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4273), 3, + ACTIONS(5483), 1, + sym_ATTRIBUTE, + ACTIONS(5485), 1, + sym_FOR, + ACTIONS(5487), 1, + sym_GROUP, + ACTIONS(5489), 1, + sym_USE, + STATE(4671), 1, + aux_sym_configuration_head_repeat1, + STATE(5434), 1, + sym__configuration_declarative_item, + STATE(5538), 1, + aux_sym_configuration_head_repeat2, + STATE(8031), 1, + sym_verification_unit_binding_indication, + STATE(4452), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3270), 12, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245341] = 5, + STATE(5435), 3, + sym_use_clause, + sym_attribute_specification, + sym_group_declaration, + [254548] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4274), 3, + ACTIONS(4601), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + sym_PARAMETER, + STATE(4616), 1, + sym_parenthesis_group, + STATE(4453), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3304), 12, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245370] = 5, + ACTIONS(2097), 8, + sym_FOR, + sym_GENERIC, + sym_UNTIL, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254582] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4275), 3, + STATE(4454), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 12, + ACTIONS(2404), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245399] = 5, + [254610] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4276), 3, + ACTIONS(5483), 1, + sym_ATTRIBUTE, + ACTIONS(5487), 1, + sym_GROUP, + ACTIONS(5489), 1, + sym_USE, + ACTIONS(5493), 1, + sym_FOR, + STATE(4452), 1, + aux_sym_configuration_head_repeat1, + STATE(5432), 1, + aux_sym_configuration_head_repeat2, + STATE(5434), 1, + sym__configuration_declarative_item, + STATE(8031), 1, + sym_verification_unit_binding_indication, + STATE(4455), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 12, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [245428] = 5, + STATE(5435), 3, + sym_use_clause, + sym_attribute_specification, + sym_group_declaration, + [254654] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4277), 3, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(5495), 1, + sym_PARAMETER, + STATE(4644), 1, + sym_parenthesis_group, + STATE(4456), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3264), 12, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245457] = 5, + ACTIONS(2097), 8, + sym_BUS, + sym_GENERIC, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254688] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4278), 3, + STATE(4457), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 12, + ACTIONS(2528), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245486] = 5, + [254716] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4279), 3, + STATE(4458), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5457), 12, - sym_identifier, - sym_ASSERT, + ACTIONS(2450), 11, sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245515] = 5, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [254744] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4280), 3, + STATE(4459), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 12, + ACTIONS(2606), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245544] = 5, + [254772] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4281), 3, + STATE(4460), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 12, + ACTIONS(2374), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245573] = 5, + [254800] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4282), 3, + STATE(4461), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 12, + ACTIONS(2580), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245602] = 5, + [254828] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4283), 3, + STATE(4462), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 12, + ACTIONS(2670), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245631] = 5, + [254856] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4284), 3, + ACTIONS(2948), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4463), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 12, + ACTIONS(2528), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, - anon_sym_COMMA, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245660] = 8, + [254886] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4369), 1, + ACTIONS(5497), 1, anon_sym_LPAREN, - ACTIONS(5459), 1, - sym_PARAMETER, - STATE(4354), 1, - sym_parenthesis_group, - STATE(4285), 3, + ACTIONS(5499), 1, + sym__NOT, + ACTIONS(5501), 1, + sym_directive_constant_builtin, + STATE(4835), 1, + sym_conditional_analysis_relation, + STATE(5050), 1, + sym__conditional_analysis_identifier, + STATE(5082), 1, + sym__identifier, + STATE(7496), 1, + sym_conditional_analysis_expression, + STATE(4464), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 9, - sym_BUS, - sym_GENERIC, - sym_RANGE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [245695] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [254928] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4286), 3, + STATE(4465), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 12, + ACTIONS(2674), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245724] = 5, + [254956] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4287), 3, + ACTIONS(5501), 1, + sym_directive_constant_builtin, + ACTIONS(5503), 1, + anon_sym_LPAREN, + ACTIONS(5505), 1, + sym__NOT, + STATE(4842), 1, + sym_conditional_analysis_relation, + STATE(5002), 1, + sym__conditional_analysis_identifier, + STATE(5082), 1, + sym__identifier, + STATE(7242), 1, + sym_conditional_analysis_expression, + STATE(4466), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 12, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [245753] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [254998] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4288), 3, + STATE(4467), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 12, + ACTIONS(2556), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245782] = 5, + [255026] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4289), 3, + ACTIONS(5501), 1, + sym_directive_constant_builtin, + ACTIONS(5503), 1, + anon_sym_LPAREN, + ACTIONS(5505), 1, + sym__NOT, + STATE(4842), 1, + sym_conditional_analysis_relation, + STATE(5002), 1, + sym__conditional_analysis_identifier, + STATE(5082), 1, + sym__identifier, + STATE(7266), 1, + sym_conditional_analysis_expression, + STATE(4468), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 12, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [255068] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4469), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2666), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245811] = 5, + [255096] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4290), 3, + STATE(4470), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3386), 12, - sym_identifier, - sym_ASSERT, + ACTIONS(2636), 11, sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245840] = 8, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [255124] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4359), 1, - anon_sym_LPAREN, - ACTIONS(5461), 1, - sym_PARAMETER, - STATE(4342), 1, - sym_parenthesis_group, - STATE(4291), 3, + STATE(4471), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 9, - sym_END, - sym_FOR, + ACTIONS(2602), 11, + sym_BUS, sym_GENERIC, - sym_PORT, - sym_USE, + sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [245875] = 5, + [255152] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4292), 3, + STATE(4472), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 12, + ACTIONS(2640), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245904] = 5, + [255180] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4293), 3, + STATE(4473), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 12, + ACTIONS(2610), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245933] = 5, + [255208] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4294), 3, + STATE(4474), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3424), 12, - sym_identifier, - sym_ASSERT, + ACTIONS(2576), 11, sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [245962] = 5, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [255236] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4295), 3, + STATE(4475), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 12, + ACTIONS(2662), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [245991] = 5, + [255264] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4296), 3, + STATE(4476), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3452), 12, - sym_identifier, - sym_ASSERT, + ACTIONS(2572), 11, sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [246020] = 5, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [255292] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4297), 3, + STATE(4477), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 12, + ACTIONS(2374), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [246049] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4298), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3266), 12, - sym_identifier, - sym_ASSERT, - sym_END, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [246078] = 5, + [255320] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4299), 3, + STATE(4478), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 12, + ACTIONS(2674), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [246107] = 5, + [255348] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4300), 3, + STATE(4479), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 12, + ACTIONS(2662), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [246136] = 5, + [255376] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4301), 3, + ACTIONS(4837), 1, + anon_sym_LPAREN, + ACTIONS(5507), 1, + sym_PARAMETER, + STATE(4614), 1, + sym_parenthesis_group, + STATE(4480), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 12, + ACTIONS(2097), 8, sym_GENERIC, - sym_PARAMETER, + sym_IS, + sym_OPEN, sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [246165] = 5, + [255410] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4302), 3, + STATE(4481), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 12, + ACTIONS(2404), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [246194] = 5, + [255438] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4303), 3, + STATE(4482), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 12, + ACTIONS(2506), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [246223] = 5, + [255466] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4304), 3, + STATE(4483), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 12, + ACTIONS(2370), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [246252] = 5, + [255494] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4305), 3, + STATE(4484), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 12, + ACTIONS(2614), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, anon_sym_SQUOTE, anon_sym_LBRACK, - [246281] = 5, + [255522] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4306), 3, + STATE(4485), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 11, - sym_BUS, + ACTIONS(2502), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246309] = 5, + [255550] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4307), 3, + STATE(4486), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 11, + ACTIONS(2498), 11, sym_END, sym_FOR, sym_GENERIC, @@ -248807,78 +257146,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [246337] = 12, + [255578] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5463), 1, + ACTIONS(5497), 1, anon_sym_LPAREN, - ACTIONS(5465), 1, + ACTIONS(5499), 1, sym__NOT, - ACTIONS(5467), 1, + ACTIONS(5501), 1, sym_directive_constant_builtin, - STATE(4642), 1, + STATE(4835), 1, sym_conditional_analysis_relation, - STATE(4848), 1, + STATE(5050), 1, sym__conditional_analysis_identifier, - STATE(4973), 1, + STATE(5082), 1, sym__identifier, - STATE(7263), 1, + STATE(7437), 1, sym_conditional_analysis_expression, - STATE(4308), 3, + STATE(4487), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [246379] = 12, + [255620] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5463), 1, - anon_sym_LPAREN, - ACTIONS(5465), 1, - sym__NOT, - ACTIONS(5467), 1, - sym_directive_constant_builtin, - STATE(4642), 1, - sym_conditional_analysis_relation, - STATE(4848), 1, - sym__conditional_analysis_identifier, - STATE(4973), 1, - sym__identifier, - STATE(7271), 1, - sym_conditional_analysis_expression, - STATE(4309), 3, + STATE(4488), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [246421] = 5, + ACTIONS(2614), 11, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [255648] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4310), 3, + STATE(4489), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 11, + ACTIONS(2474), 11, sym_END, sym_FOR, sym_GENERIC, @@ -248890,18 +257222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [246449] = 5, + [255676] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4311), 3, + STATE(4490), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 11, + ACTIONS(2466), 11, sym_END, sym_FOR, sym_GENERIC, @@ -248913,18 +257245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [246477] = 5, + [255704] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4312), 3, + STATE(4491), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 11, + ACTIONS(2378), 11, sym_END, sym_FOR, sym_GENERIC, @@ -248936,18 +257268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [246505] = 5, + [255732] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4313), 3, + STATE(4492), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 11, + ACTIONS(2470), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -248959,18 +257291,18 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246533] = 5, + [255760] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4314), 3, + STATE(4493), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 11, + ACTIONS(2470), 11, sym_END, sym_FOR, sym_GENERIC, @@ -248982,41 +257314,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [246561] = 5, + [255788] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4315), 3, + STATE(4494), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 11, - sym_END, - sym_FOR, + ACTIONS(2576), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_RANGE, + sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246589] = 5, + [255816] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4316), 3, + STATE(4495), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 11, + ACTIONS(2614), 11, sym_END, sym_FOR, sym_GENERIC, @@ -249028,18 +257360,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [246617] = 5, + [255844] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4317), 3, + ACTIONS(5439), 1, + sym_IS, + ACTIONS(5509), 1, + sym_RANGE, + STATE(7580), 1, + sym_range_constraint, + STATE(4496), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5441), 8, + sym_identifier, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, + anon_sym_LT_LT, + [255878] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4497), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 11, + ACTIONS(2640), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249051,18 +257409,43 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246645] = 5, + [255906] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4318), 3, + ACTIONS(1635), 1, + sym_GENERIC, + STATE(8112), 1, + sym_generic_map_aspect, + STATE(4498), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 11, + ACTIONS(5511), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [255938] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4499), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2378), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249074,64 +257457,87 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246673] = 5, + [255966] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4319), 3, + STATE(4500), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 11, - sym_BUS, + ACTIONS(2662), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246701] = 5, + [255994] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4320), 3, + STATE(4501), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 11, - sym_BUS, + ACTIONS(2674), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246729] = 5, + [256022] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4321), 3, + STATE(4502), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 11, + ACTIONS(2374), 11, + sym_END, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [256050] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4503), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2450), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249143,18 +257549,18 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246757] = 5, + [256078] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4322), 3, + STATE(4504), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 11, + ACTIONS(2606), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249166,74 +257572,71 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246785] = 12, + [256106] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5467), 1, - sym_directive_constant_builtin, - ACTIONS(5469), 1, + ACTIONS(5497), 1, anon_sym_LPAREN, - ACTIONS(5471), 1, + ACTIONS(5499), 1, sym__NOT, - STATE(4665), 1, + ACTIONS(5501), 1, + sym_directive_constant_builtin, + STATE(4835), 1, sym_conditional_analysis_relation, - STATE(4858), 1, + STATE(5050), 1, sym__conditional_analysis_identifier, - STATE(4973), 1, + STATE(5082), 1, sym__identifier, - STATE(6896), 1, + STATE(6848), 1, sym_conditional_analysis_expression, - STATE(4323), 3, + STATE(4505), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [246827] = 8, + [256148] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4405), 1, - anon_sym_LPAREN, - ACTIONS(5473), 1, - sym_PARAMETER, - STATE(4484), 1, - sym_parenthesis_group, - STATE(4324), 3, + STATE(4506), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 8, + ACTIONS(2580), 11, sym_BUS, sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246861] = 5, + [256176] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4325), 3, + STATE(4507), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 11, + ACTIONS(2670), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249245,41 +257648,68 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246889] = 5, + [256204] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4326), 3, + STATE(4508), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 11, - sym_BUS, + ACTIONS(2640), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246917] = 5, + [256232] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4327), 3, + ACTIONS(5515), 1, + sym_VIEW, + STATE(8231), 1, + sym__element_mode_indication, + STATE(8224), 2, + sym__element_mode_view_indication, + sym_mode, + STATE(8233), 2, + sym_element_record_mode_view_indication, + sym_element_array_mode_view_indication, + STATE(4509), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5513), 5, + sym_BUFFER, + sym_IN, + sym_INOUT, + sym_LINKAGE, + sym_OUT, + [256268] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4510), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 11, + ACTIONS(2428), 11, sym_END, sym_FOR, sym_GENERIC, @@ -249291,18 +257721,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [246945] = 5, + [256296] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4328), 3, + STATE(4511), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 11, + ACTIONS(2602), 11, + sym_END, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [256324] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4512), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2450), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249314,48 +257767,41 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [246973] = 12, + [256352] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5467), 1, - sym_directive_constant_builtin, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5471), 1, - sym__NOT, - STATE(4665), 1, - sym_conditional_analysis_relation, - STATE(4858), 1, - sym__conditional_analysis_identifier, - STATE(4973), 1, - sym__identifier, - STATE(7564), 1, - sym_conditional_analysis_expression, - STATE(4329), 3, + STATE(4513), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3720), 11, sym_identifier, + sym_ASSERT, + sym_POSTPONED, + sym_PROCESS, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [247015] = 5, + anon_sym_LT_LT, + [256380] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4330), 3, + STATE(4514), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 11, + ACTIONS(2606), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249367,18 +257813,18 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247043] = 5, + [256408] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4331), 3, + STATE(4515), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 11, + ACTIONS(2428), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249390,18 +257836,18 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247071] = 5, + [256436] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4332), 3, + STATE(4516), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 11, + ACTIONS(2556), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249413,41 +257859,41 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247099] = 5, + [256464] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4333), 3, + STATE(4517), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 11, - sym_END, - sym_FOR, + ACTIONS(2580), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247127] = 5, + [256492] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4334), 3, + STATE(4518), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 11, + ACTIONS(2670), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249459,122 +257905,110 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247155] = 9, + [256520] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5477), 1, - sym_VIEW, - STATE(8010), 1, - sym__element_mode_indication, - STATE(8011), 2, - sym__element_mode_view_indication, - sym_mode, - STATE(8012), 2, - sym_element_record_mode_view_indication, - sym_element_array_mode_view_indication, - STATE(4335), 3, + STATE(4519), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5475), 5, - sym_BUFFER, - sym_IN, - sym_INOUT, - sym_LINKAGE, - sym_OUT, - [247191] = 5, + ACTIONS(2404), 11, + sym_END, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [256548] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4336), 3, + STATE(4520), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 11, + ACTIONS(2666), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247219] = 13, + [256576] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5479), 1, - sym_ATTRIBUTE, - ACTIONS(5481), 1, - sym_FOR, - ACTIONS(5483), 1, - sym_GROUP, - ACTIONS(5485), 1, - sym_USE, - STATE(4372), 1, - aux_sym_configuration_head_repeat1, - STATE(5210), 1, - aux_sym_configuration_head_repeat2, - STATE(5214), 1, - sym__configuration_declarative_item, - STATE(7825), 1, - sym_verification_unit_binding_indication, - STATE(4337), 3, + STATE(4521), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(5216), 3, - sym_use_clause, - sym_attribute_specification, - sym_group_declaration, - [247263] = 5, + ACTIONS(2556), 11, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [256604] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4338), 3, + STATE(4522), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 11, + ACTIONS(2666), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247291] = 5, + [256632] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4339), 3, + STATE(4523), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 11, + ACTIONS(2636), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249586,41 +258020,41 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247319] = 5, + [256660] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4340), 3, + STATE(4524), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 11, - sym_END, - sym_FOR, + ACTIONS(2636), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_RANGE, + sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247347] = 5, + [256688] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4341), 3, + STATE(4525), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 11, + ACTIONS(2610), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249632,41 +258066,41 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247375] = 5, + [256716] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4342), 3, + STATE(4526), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 11, - sym_END, - sym_FOR, + ACTIONS(2576), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247403] = 5, + [256744] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4343), 3, + STATE(4527), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 11, + ACTIONS(2610), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249678,18 +258112,18 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247431] = 5, + [256772] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4344), 3, + STATE(4528), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 11, + ACTIONS(2572), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249701,18 +258135,18 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247459] = 5, + [256800] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4345), 3, + STATE(4529), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 11, + ACTIONS(2428), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249724,64 +258158,64 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247487] = 5, + [256828] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4346), 3, + STATE(4530), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 11, - sym_BUS, + ACTIONS(2420), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247515] = 5, + [256856] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4347), 3, + STATE(4531), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3704), 11, - sym_identifier, - sym_ASSERT, - sym_POSTPONED, - sym_PROCESS, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [247543] = 5, + ACTIONS(2572), 11, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, + sym_RANGE, + sym_REGISTER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [256884] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4348), 3, + STATE(4532), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 11, + ACTIONS(2506), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249793,18 +258227,18 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247571] = 5, + [256912] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4349), 3, + STATE(4533), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 11, + ACTIONS(2370), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249816,64 +258250,64 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247599] = 5, + [256940] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4350), 3, + STATE(4534), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 11, - sym_BUS, + ACTIONS(2528), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247627] = 5, + [256968] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4351), 3, + STATE(4535), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 11, - sym_BUS, + ACTIONS(2424), 11, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247655] = 5, + [256996] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4352), 3, + STATE(4536), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 11, + ACTIONS(2528), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249885,41 +258319,41 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247683] = 5, + [257024] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4353), 3, + STATE(4537), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 11, + ACTIONS(2502), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247711] = 5, + [257052] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4354), 3, + STATE(4538), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 11, + ACTIONS(2498), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249931,44 +258365,41 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247739] = 8, + [257080] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4715), 1, - anon_sym_LPAREN, - ACTIONS(5487), 1, - sym_PARAMETER, - STATE(4416), 1, - sym_parenthesis_group, - STATE(4355), 3, + STATE(4539), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 8, + ACTIONS(2474), 11, + sym_BUS, sym_GENERIC, - sym_IS, - sym_OPEN, + sym_PARAMETER, sym_RANGE, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247773] = 5, + [257108] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4356), 3, + STATE(4540), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 11, + ACTIONS(2466), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -249980,427 +258411,529 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247801] = 6, + [257136] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2888), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(4357), 3, + STATE(4541), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, - sym_END, - sym_FOR, + ACTIONS(2470), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_USE, + sym_RANGE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247831] = 5, + [257164] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4358), 3, + ACTIONS(5497), 1, + anon_sym_LPAREN, + ACTIONS(5499), 1, + sym__NOT, + ACTIONS(5501), 1, + sym_directive_constant_builtin, + STATE(4835), 1, + sym_conditional_analysis_relation, + STATE(5050), 1, + sym__conditional_analysis_identifier, + STATE(5082), 1, + sym__identifier, + STATE(7579), 1, + sym_conditional_analysis_expression, + STATE(4542), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [257206] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4543), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 11, + ACTIONS(2506), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247859] = 5, + [257234] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4359), 3, + STATE(4544), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 11, + ACTIONS(2370), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247887] = 8, + [257262] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4803), 1, - anon_sym_LPAREN, - ACTIONS(5489), 1, - sym_PARAMETER, - STATE(4455), 1, - sym_parenthesis_group, - STATE(4360), 3, + STATE(4545), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 8, - sym_FOR, + ACTIONS(2466), 11, + sym_BUS, sym_GENERIC, - sym_UNTIL, + sym_PARAMETER, + sym_RANGE, + sym_REGISTER, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, + anon_sym_LPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247921] = 5, + [257290] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4361), 3, + STATE(4546), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 11, - sym_END, - sym_FOR, + ACTIONS(2498), 11, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_RANGE, + sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247949] = 5, + [257318] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4362), 3, + STATE(4547), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 11, + ACTIONS(2502), 11, sym_BUS, sym_GENERIC, sym_PARAMETER, sym_RANGE, + sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [247977] = 5, + [257346] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4363), 3, + ACTIONS(2992), 1, + sym_END, + ACTIONS(5517), 1, + sym_FOR, + ACTIONS(5519), 1, + sym_USE, + STATE(4987), 1, + aux_sym_block_configuration_repeat2, + STATE(5169), 1, + aux_sym_block_configuration_repeat1, + STATE(5585), 1, + sym_use_clause, + STATE(6110), 1, + sym__configuration_item, + STATE(8242), 1, + sym_end_for, + STATE(6109), 2, + sym_block_configuration, + sym_component_configuration, + STATE(4548), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 11, - sym_BUS, + [257389] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4549), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2674), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248005] = 5, + [257416] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4364), 3, + ACTIONS(2992), 1, + sym_END, + ACTIONS(5517), 1, + sym_FOR, + ACTIONS(5519), 1, + sym_USE, + STATE(5034), 1, + aux_sym_block_configuration_repeat2, + STATE(5169), 1, + aux_sym_block_configuration_repeat1, + STATE(5585), 1, + sym_use_clause, + STATE(6110), 1, + sym__configuration_item, + STATE(7300), 1, + sym_end_for, + STATE(6109), 2, + sym_block_configuration, + sym_component_configuration, + STATE(4550), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 11, - sym_BUS, + [257459] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4551), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2374), 10, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248033] = 5, + [257486] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4365), 3, + STATE(4552), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 11, - sym_BUS, + ACTIONS(2606), 10, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248061] = 5, + [257513] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4366), 3, + STATE(4553), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 11, - sym_END, + ACTIONS(2674), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248089] = 5, + [257540] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4367), 3, + STATE(4554), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 11, - sym_END, + ACTIONS(2450), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248117] = 5, + [257567] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4368), 3, + STATE(4555), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 11, - sym_BUS, + ACTIONS(2662), 10, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248145] = 5, + [257594] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4369), 3, + STATE(4556), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 11, - sym_END, + ACTIONS(2420), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248173] = 7, + [257621] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - STATE(7904), 1, - sym_generic_map_aspect, - STATE(4370), 3, + ACTIONS(2992), 1, + sym_END, + ACTIONS(5517), 1, + sym_FOR, + ACTIONS(5519), 1, + sym_USE, + STATE(4550), 1, + aux_sym_block_configuration_repeat1, + STATE(5039), 1, + aux_sym_block_configuration_repeat2, + STATE(5585), 1, + sym_use_clause, + STATE(6110), 1, + sym__configuration_item, + STATE(7310), 1, + sym_end_for, + STATE(6109), 2, + sym_block_configuration, + sym_component_configuration, + STATE(4557), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5491), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, + [257664] = 10, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5521), 1, + anon_sym_SEMI, + ACTIONS(5525), 1, + sym_operator_symbol, + STATE(7206), 1, + sym__identifier, + STATE(7856), 1, + sym__designator, + ACTIONS(5523), 2, sym_FUNCTION, - sym_IMPURE, sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [248205] = 5, + STATE(4558), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [257701] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4371), 3, + ACTIONS(4893), 1, + anon_sym_LPAREN, + ACTIONS(5527), 1, + sym_PARAMETER, + STATE(4761), 1, + sym_parenthesis_group, + STATE(4559), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 11, - sym_END, - sym_FOR, + ACTIONS(2097), 7, sym_GENERIC, - sym_PARAMETER, sym_PORT, sym_USE, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248233] = 13, + [257734] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5479), 1, - sym_ATTRIBUTE, - ACTIONS(5483), 1, - sym_GROUP, - ACTIONS(5485), 1, - sym_USE, - ACTIONS(5493), 1, - sym_FOR, - STATE(4611), 1, - aux_sym_configuration_head_repeat1, - STATE(5172), 1, - aux_sym_configuration_head_repeat2, - STATE(5214), 1, - sym__configuration_declarative_item, - STATE(7825), 1, - sym_verification_unit_binding_indication, - STATE(4372), 3, + STATE(4560), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(5216), 3, - sym_use_clause, - sym_attribute_specification, - sym_group_declaration, - [248277] = 5, + ACTIONS(2640), 10, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_UNTIL, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [257761] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4373), 3, + STATE(4561), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 11, - sym_BUS, + ACTIONS(2404), 10, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248305] = 5, + [257788] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4374), 3, + STATE(4562), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 11, + ACTIONS(2528), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -250408,75 +258941,115 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248333] = 5, + [257815] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4375), 3, + STATE(4563), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 11, - sym_BUS, + ACTIONS(2614), 10, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248361] = 12, + [257842] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5467), 1, - sym_directive_constant_builtin, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5471), 1, - sym__NOT, - STATE(4665), 1, - sym_conditional_analysis_relation, - STATE(4858), 1, - sym__conditional_analysis_identifier, - STATE(4973), 1, + STATE(4564), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(4160), 10, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_GENERIC, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [257869] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5285), 1, + anon_sym_CARET, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5076), 1, + aux_sym_relative_pathname_repeat1, + STATE(5750), 1, sym__identifier, - STATE(7393), 1, - sym_conditional_analysis_expression, - STATE(4376), 3, + STATE(6824), 1, + sym_pathname_element, + STATE(7573), 1, + sym_partial_pathname, + STATE(4565), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [248403] = 5, + [257908] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4377), 3, + STATE(4566), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2424), 10, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_UNTIL, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [257935] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4567), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 11, + ACTIONS(2424), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -250484,439 +259057,404 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248431] = 5, + [257962] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4378), 3, + STATE(4568), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 11, + ACTIONS(2420), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248459] = 5, + [257989] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4379), 3, + STATE(4569), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 11, - sym_END, - sym_FOR, + ACTIONS(2404), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248487] = 5, + [258016] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4380), 3, + STATE(4570), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 11, - sym_END, + ACTIONS(2602), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248515] = 5, + [258043] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4381), 3, + STATE(4571), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 11, - sym_END, + ACTIONS(2428), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248543] = 5, + [258070] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4382), 3, + ACTIONS(4943), 1, + anon_sym_LPAREN, + ACTIONS(5529), 1, + sym_PARAMETER, + STATE(4780), 1, + sym_parenthesis_group, + STATE(4572), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 11, - sym_BUS, + ACTIONS(2097), 7, sym_GENERIC, - sym_PARAMETER, - sym_RANGE, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [248571] = 5, + [258103] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4383), 3, + STATE(4573), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 11, - sym_END, - sym_FOR, + ACTIONS(2428), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248599] = 5, + [258130] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4384), 3, + STATE(4574), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 11, - sym_END, + ACTIONS(2528), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248627] = 5, + [258157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4385), 3, + STATE(4575), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 11, - sym_BUS, + ACTIONS(2424), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248655] = 5, + [258184] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4386), 3, + STATE(4576), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 11, - sym_END, - sym_FOR, + ACTIONS(2420), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248683] = 8, + [258211] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5369), 1, - sym_IS, - ACTIONS(5495), 1, - sym_RANGE, - STATE(8117), 1, - sym_range_constraint, - STATE(4387), 3, + STATE(4577), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5371), 8, + ACTIONS(5531), 10, sym_identifier, + sym_TYPE, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LT_LT, - [248717] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4388), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2544), 11, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - sym_RANGE, - sym_REGISTER, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [248745] = 5, + anon_sym_LT_LT, + [258238] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4389), 3, + STATE(4578), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 11, - sym_BUS, + ACTIONS(2404), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248773] = 5, + [258265] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4390), 3, + STATE(4579), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 11, - sym_END, + ACTIONS(2470), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248801] = 5, + [258292] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4391), 3, + STATE(4580), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 11, - sym_END, - sym_FOR, + ACTIONS(2602), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248829] = 5, + [258319] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4392), 3, + STATE(4581), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 11, + ACTIONS(2640), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248857] = 5, + [258346] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4393), 3, + ACTIONS(5497), 1, + anon_sym_LPAREN, + ACTIONS(5499), 1, + sym__NOT, + ACTIONS(5501), 1, + sym_directive_constant_builtin, + STATE(4961), 1, + sym_conditional_analysis_relation, + STATE(5050), 1, + sym__conditional_analysis_identifier, + STATE(5082), 1, + sym__identifier, + STATE(4582), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 11, - sym_END, - sym_FOR, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, - sym_USE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [248885] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [258385] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4394), 3, + STATE(4583), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 11, + ACTIONS(2374), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248913] = 5, + [258412] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4395), 3, + STATE(4584), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 11, + ACTIONS(2674), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248941] = 5, + [258439] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4396), 3, + STATE(4585), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 11, + ACTIONS(2662), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -250924,163 +259462,128 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [248969] = 5, + [258466] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4397), 3, + STATE(4586), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 11, - sym_END, - sym_FOR, + ACTIONS(2428), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [248997] = 5, + [258493] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4398), 3, + STATE(4587), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 11, + ACTIONS(2614), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [249025] = 5, + [258520] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4399), 3, + STATE(4588), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 11, - sym_BUS, + ACTIONS(2450), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [249053] = 5, + [258547] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4400), 3, + STATE(4589), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 11, - sym_END, + ACTIONS(2378), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249081] = 5, + [258574] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4401), 3, + STATE(4590), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 11, - sym_BUS, + ACTIONS(2602), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, sym_RANGE, - sym_REGISTER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [249109] = 12, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5467), 1, - sym_directive_constant_builtin, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5471), 1, - sym__NOT, - STATE(4665), 1, - sym_conditional_analysis_relation, - STATE(4858), 1, - sym__conditional_analysis_identifier, - STATE(4973), 1, - sym__identifier, - STATE(8041), 1, - sym_conditional_analysis_expression, - STATE(4402), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [249151] = 5, + [258601] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4403), 3, + STATE(4591), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 10, + ACTIONS(2606), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251091,112 +259594,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249178] = 5, + [258628] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4404), 3, + STATE(4592), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 10, - sym_FOR, + ACTIONS(2640), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, - sym_UNTIL, + sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249205] = 5, + [258655] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4405), 3, + STATE(4593), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 10, - sym_BUS, + ACTIONS(2466), 10, + sym_FOR, sym_GENERIC, sym_PARAMETER, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [249232] = 5, + [258682] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4406), 3, + STATE(4594), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 10, + ACTIONS(2474), 10, + sym_FOR, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249259] = 11, + [258709] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5467), 1, - sym_directive_constant_builtin, - ACTIONS(5469), 1, + ACTIONS(5047), 1, anon_sym_LPAREN, - ACTIONS(5471), 1, - sym__NOT, - STATE(4851), 1, - sym_conditional_analysis_relation, - STATE(4858), 1, - sym__conditional_analysis_identifier, - STATE(4973), 1, - sym__identifier, - STATE(4407), 3, + ACTIONS(5533), 1, + sym_PARAMETER, + STATE(4854), 1, + sym_parenthesis_group, + STATE(4595), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [249298] = 5, + ACTIONS(2097), 7, + sym_GENERIC, + sym_OF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [258742] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4408), 3, + STATE(4596), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 10, + ACTIONS(2580), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251207,62 +259707,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249325] = 5, + [258769] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4409), 3, + STATE(4597), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 10, - sym_BUS, + ACTIONS(2498), 10, + sym_FOR, sym_GENERIC, sym_PARAMETER, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [249352] = 5, + [258796] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4410), 3, + STATE(4598), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 10, - sym_BUS, + ACTIONS(2502), 10, + sym_FOR, sym_GENERIC, sym_PARAMETER, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [249379] = 5, + [258823] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4411), 3, + STATE(4599), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 10, + ACTIONS(2670), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251273,18 +259773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249406] = 5, + [258850] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4412), 3, + STATE(4600), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 10, + ACTIONS(2374), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251295,106 +259795,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249433] = 5, + [258877] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4413), 3, + ACTIONS(5501), 1, + sym_directive_constant_builtin, + ACTIONS(5503), 1, + anon_sym_LPAREN, + ACTIONS(5505), 1, + sym__NOT, + STATE(4958), 1, + sym_conditional_analysis_relation, + STATE(5002), 1, + sym__conditional_analysis_identifier, + STATE(5082), 1, + sym__identifier, + STATE(4601), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 10, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [249460] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [258916] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4414), 3, + ACTIONS(5537), 1, + sym_GENERATE, + STATE(5362), 1, + sym_label_declaration, + STATE(6589), 1, + sym_generate_head, + STATE(6747), 1, + sym_generate_direct_block, + STATE(7060), 1, + sym__label, + STATE(7565), 1, + sym_generate_body, + STATE(4602), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 10, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [249487] = 5, + ACTIONS(5535), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [258955] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4415), 3, + STATE(4603), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 10, - sym_BUS, + ACTIONS(2556), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [249514] = 5, + [258982] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4416), 3, + ACTIONS(5539), 1, + sym_END, + STATE(4809), 1, + aux_sym_record_type_definition_repeat1, + STATE(5282), 1, + sym_element_declaration, + STATE(6017), 1, + sym__identifier, + STATE(7797), 1, + sym_identifier_list, + STATE(8114), 1, + sym_end_record, + STATE(4604), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 10, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [249541] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [259021] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4417), 3, + STATE(4605), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 10, + ACTIONS(2662), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251405,18 +259923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249568] = 5, + [259048] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4418), 3, + STATE(4606), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 10, + ACTIONS(2370), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, @@ -251427,74 +259945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249595] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4419), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2552), 10, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [249622] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5497), 1, - sym_END, - STATE(4431), 1, - aux_sym_record_type_definition_repeat1, - STATE(5010), 1, - sym_element_declaration, - STATE(5583), 1, - sym__identifier, - STATE(7139), 1, - sym_identifier_list, - STATE(7142), 1, - sym_end_record, - STATE(4420), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [249661] = 8, + [259075] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5251), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5499), 1, + ACTIONS(5541), 1, sym_PARAMETER, - STATE(4592), 1, + STATE(4782), 1, sym_parenthesis_group, - STATE(4421), 3, + STATE(4607), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 7, + ACTIONS(2097), 7, sym_END, sym_FOR, sym_GENERIC, @@ -251502,18 +259970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SQUOTE, anon_sym_LBRACK, - [249694] = 5, + [259108] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4422), 3, + STATE(4608), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 10, + ACTIONS(2666), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251524,40 +259992,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249721] = 5, + [259135] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4423), 3, + STATE(4609), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 10, - sym_FOR, + ACTIONS(2470), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [249748] = 5, + [259162] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4424), 3, + STATE(4610), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 10, + ACTIONS(2506), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, @@ -251568,18 +260036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249775] = 5, + [259189] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4425), 3, + STATE(4611), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 10, + ACTIONS(2636), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251590,70 +260058,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249802] = 5, + [259216] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4426), 3, + STATE(4612), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 10, - sym_FOR, + ACTIONS(2610), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, - sym_UNTIL, + sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249829] = 13, + [259243] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5501), 1, - sym_FOR, - ACTIONS(5503), 1, - sym_USE, - STATE(4448), 1, - aux_sym_block_configuration_repeat1, - STATE(4833), 1, - aux_sym_block_configuration_repeat2, - STATE(5738), 1, - sym_use_clause, - STATE(5920), 1, - sym__configuration_item, - STATE(7239), 1, - sym_end_for, - STATE(5919), 2, - sym_block_configuration, - sym_component_configuration, - STATE(4427), 3, + STATE(4613), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [249872] = 5, + ACTIONS(2576), 10, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [259270] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4428), 3, + STATE(4614), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 10, + ACTIONS(2572), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251664,118 +260124,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249899] = 5, + [259297] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4429), 3, + STATE(4615), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 10, - sym_FOR, + ACTIONS(2528), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, - sym_UNTIL, + sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [249926] = 11, + [259324] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5507), 1, - sym_GENERATE, - STATE(5188), 1, - sym_label_declaration, - STATE(6218), 1, - sym_generate_head, - STATE(6899), 1, - sym_generate_direct_block, - STATE(6930), 1, - sym__label, - STATE(7983), 1, - sym_generate_body, - STATE(4430), 3, + STATE(4616), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [249965] = 11, + ACTIONS(2572), 10, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_UNTIL, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [259351] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5497), 1, - sym_END, - STATE(4586), 1, - aux_sym_record_type_definition_repeat1, - STATE(5010), 1, - sym_element_declaration, - STATE(5583), 1, - sym__identifier, - STATE(7139), 1, - sym_identifier_list, - STATE(7906), 1, - sym_end_record, - STATE(4431), 3, + STATE(4617), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [250004] = 5, + ACTIONS(2506), 10, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [259378] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4432), 3, + STATE(4618), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 10, - sym_BUS, + ACTIONS(2370), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250031] = 5, + [259405] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4433), 3, + STATE(4619), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 10, + ACTIONS(2614), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -251786,18 +260234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250058] = 5, + [259432] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4434), 3, + STATE(4620), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 10, + ACTIONS(2378), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -251808,40 +260256,40 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250085] = 5, + [259459] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4435), 3, + STATE(4621), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 10, + ACTIONS(2576), 10, + sym_FOR, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250112] = 5, + [259486] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4436), 3, + STATE(4622), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 10, + ACTIONS(2610), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, @@ -251852,40 +260300,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250139] = 5, + [259513] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4437), 3, + STATE(4623), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 10, - sym_FOR, + ACTIONS(2470), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, - sym_UNTIL, + sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250166] = 5, + [259540] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4438), 3, + STATE(4624), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 10, + ACTIONS(2466), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -251896,186 +260344,205 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250193] = 5, + [259567] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4439), 3, + STATE(4625), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 10, - sym_FOR, + ACTIONS(2474), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250220] = 5, + [259594] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4440), 3, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5543), 1, + sym_PARAMETER, + STATE(4873), 1, + sym_parenthesis_group, + STATE(4626), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 10, - sym_FOR, + ACTIONS(2097), 7, + sym_GENERIC, + sym_IS, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [259627] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4627), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2498), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250247] = 8, + [259654] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5191), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, - sym_PARAMETER, - STATE(4529), 1, - sym_parenthesis_group, - STATE(4441), 3, + STATE(4628), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 7, + ACTIONS(2502), 10, + sym_BUS, sym_GENERIC, - sym_PORT, + sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LT_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250280] = 5, + [259681] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4442), 3, + STATE(4629), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 10, + ACTIONS(2636), 10, + sym_FOR, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250307] = 13, + [259708] = 13, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, + ACTIONS(2992), 1, sym_END, - ACTIONS(5501), 1, + ACTIONS(5517), 1, sym_FOR, - ACTIONS(5503), 1, + ACTIONS(5519), 1, sym_USE, - STATE(4500), 1, + STATE(4548), 1, aux_sym_block_configuration_repeat1, - STATE(4884), 1, + STATE(4985), 1, aux_sym_block_configuration_repeat2, - STATE(5738), 1, + STATE(5585), 1, sym_use_clause, - STATE(5920), 1, + STATE(6110), 1, sym__configuration_item, - STATE(7993), 1, + STATE(8213), 1, sym_end_for, - STATE(5919), 2, + STATE(6109), 2, sym_block_configuration, sym_component_configuration, - STATE(4443), 3, + STATE(4630), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [250350] = 5, + [259751] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4444), 3, + STATE(4631), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 10, - sym_FOR, + ACTIONS(2580), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250377] = 8, + [259778] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4901), 1, - anon_sym_LPAREN, - ACTIONS(5511), 1, - sym_PARAMETER, - STATE(4628), 1, - sym_parenthesis_group, - STATE(4445), 3, + STATE(4632), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 7, + ACTIONS(2670), 10, + sym_BUS, sym_GENERIC, - sym_RETURN, - anon_sym_COMMA, + sym_PARAMETER, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [250410] = 5, + [259805] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4446), 3, + STATE(4633), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 10, + ACTIONS(2666), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, @@ -252086,18 +260553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250437] = 5, + [259832] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4447), 3, + STATE(4634), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 10, + ACTIONS(2556), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, @@ -252108,70 +260575,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250464] = 13, + [259859] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5501), 1, - sym_FOR, - ACTIONS(5503), 1, - sym_USE, - STATE(4828), 1, - aux_sym_block_configuration_repeat2, - STATE(5016), 1, - aux_sym_block_configuration_repeat1, - STATE(5738), 1, - sym_use_clause, - STATE(5920), 1, - sym__configuration_item, - STATE(7226), 1, - sym_end_for, - STATE(5919), 2, - sym_block_configuration, - sym_component_configuration, - STATE(4448), 3, + STATE(4635), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [250507] = 5, + ACTIONS(2556), 10, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [259886] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4449), 3, + STATE(4636), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 10, - sym_FOR, + ACTIONS(2502), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, - sym_UNTIL, + sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250534] = 5, + [259913] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4450), 3, + STATE(4637), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 10, + ACTIONS(2666), 10, sym_BUS, sym_GENERIC, sym_PARAMETER, @@ -252182,181 +260641,176 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250561] = 5, + [259940] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4451), 3, + ACTIONS(4915), 1, + anon_sym_LPAREN, + ACTIONS(5545), 1, + sym_PARAMETER, + STATE(4685), 1, + sym_parenthesis_group, + STATE(4638), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 10, + ACTIONS(2097), 7, sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250588] = 5, + anon_sym_RBRACK, + [259973] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4452), 3, + STATE(4639), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 10, + ACTIONS(2636), 10, + sym_BUS, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250615] = 5, + [260000] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4453), 3, + ACTIONS(5547), 1, + anon_sym_COLON, + STATE(4640), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 10, - sym_FOR, + ACTIONS(2528), 9, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250642] = 11, + [260029] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5463), 1, - anon_sym_LPAREN, - ACTIONS(5465), 1, - sym__NOT, - ACTIONS(5467), 1, - sym_directive_constant_builtin, - STATE(4848), 1, - sym__conditional_analysis_identifier, - STATE(4864), 1, - sym_conditional_analysis_relation, - STATE(4973), 1, - sym__identifier, - STATE(4454), 3, + STATE(4641), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [250681] = 5, + ACTIONS(2610), 10, + sym_BUS, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [260056] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4455), 3, + STATE(4642), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 10, - sym_FOR, + ACTIONS(2576), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250708] = 8, + [260083] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(5513), 1, - sym_PARAMETER, - STATE(4542), 1, - sym_parenthesis_group, - STATE(4456), 3, + STATE(4643), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 7, + ACTIONS(2498), 10, sym_GENERIC, - sym_PORT, - sym_USE, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250741] = 5, + [260110] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4457), 3, + STATE(4644), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 10, - sym_FOR, + ACTIONS(2572), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250768] = 5, + [260137] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4458), 3, + STATE(4645), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 10, + ACTIONS(2670), 10, sym_FOR, sym_GENERIC, sym_PARAMETER, @@ -252367,18 +260821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250795] = 5, + [260164] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4459), 3, + STATE(4646), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 10, + ACTIONS(2474), 10, sym_GENERIC, sym_IS, sym_OPEN, @@ -252389,1082 +260843,1084 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250822] = 5, + [260191] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4460), 3, + STATE(4647), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 10, + ACTIONS(2580), 10, + sym_FOR, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, + sym_UNTIL, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250849] = 5, + [260218] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4461), 3, + STATE(4648), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 10, - sym_FOR, + ACTIONS(2378), 10, sym_GENERIC, + sym_IS, + sym_OPEN, sym_PARAMETER, - sym_UNTIL, + sym_RANGE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [250876] = 5, + [260245] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4462), 3, + STATE(4649), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5515), 10, - sym_identifier, - sym_TYPE, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_function, - sym_library_type, + ACTIONS(2466), 10, + sym_GENERIC, + sym_IS, + sym_OPEN, + sym_PARAMETER, + sym_RANGE, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_LT, - [250903] = 5, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [260272] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4463), 3, + STATE(4650), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 10, - sym_FOR, + ACTIONS(2506), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250930] = 5, + [260299] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4464), 3, + STATE(4651), 3, sym__tool_directive, sym_line_comment, sym_block_comment, ACTIONS(2450), 10, - sym_FOR, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250957] = 5, + [260326] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4465), 3, + STATE(4652), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 10, - sym_FOR, + ACTIONS(2370), 10, + sym_BUS, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [250984] = 5, + [260353] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4466), 3, + STATE(4653), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 10, + ACTIONS(2606), 10, + sym_BUS, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251011] = 5, + [260380] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4467), 3, + ACTIONS(5539), 1, + sym_END, + STATE(4604), 1, + aux_sym_record_type_definition_repeat1, + STATE(5282), 1, + sym_element_declaration, + STATE(6017), 1, + sym__identifier, + STATE(7797), 1, + sym_identifier_list, + STATE(7801), 1, + sym_end_record, + STATE(4654), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 10, - sym_GENERIC, - sym_IS, - sym_OPEN, - sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [251038] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [260419] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4468), 3, + STATE(4655), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 10, + ACTIONS(2420), 9, + sym_END, sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, - anon_sym_SEMI, - anon_sym_COMMA, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251065] = 5, + [260445] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4469), 3, + STATE(4656), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 10, - sym_FOR, + ACTIONS(2378), 9, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, + sym_PORT, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [251092] = 5, + [260471] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4470), 3, + STATE(4657), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 10, + ACTIONS(2404), 9, sym_GENERIC, - sym_IS, - sym_OPEN, + sym_OF, sym_PARAMETER, - sym_RANGE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251119] = 11, + [260497] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5265), 1, - anon_sym_CARET, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(4917), 1, - aux_sym_relative_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(6493), 1, - sym_partial_pathname, - STATE(7029), 1, - sym_pathname_element, - STATE(4471), 3, + STATE(4658), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [251158] = 5, + ACTIONS(2450), 9, + sym_END, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, + sym_USE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [260523] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4472), 3, + STATE(4659), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 10, - sym_BUS, + ACTIONS(2450), 9, sym_GENERIC, sym_PARAMETER, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, + anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251185] = 5, + anon_sym_RBRACK, + [260549] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4473), 3, + STATE(4660), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 10, - sym_FOR, + ACTIONS(2606), 9, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, - anon_sym_SEMI, + sym_RETURN, anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251212] = 5, + anon_sym_RBRACK, + [260575] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4474), 3, + ACTIONS(5549), 1, + sym_OF, + STATE(4661), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 10, - sym_BUS, + ACTIONS(2450), 8, sym_GENERIC, + sym_IS, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251239] = 5, + [260603] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4475), 3, + STATE(4662), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 10, - sym_BUS, + ACTIONS(2498), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [251266] = 5, + [260629] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4476), 3, + STATE(4663), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 10, - sym_BUS, + ACTIONS(2580), 9, sym_GENERIC, sym_PARAMETER, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251293] = 5, + anon_sym_RBRACK, + [260655] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4477), 3, + STATE(4664), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 10, - sym_BUS, + ACTIONS(2670), 9, sym_GENERIC, sym_PARAMETER, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251320] = 5, + anon_sym_RBRACK, + [260681] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4478), 3, + STATE(4665), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 10, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [251347] = 5, + ACTIONS(3252), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [260707] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4479), 3, + STATE(4666), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 10, - sym_BUS, + ACTIONS(2420), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251374] = 5, + [260733] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4480), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(5764), 1, + sym_selected_name, + STATE(6019), 1, + sym__identifier, + STATE(7618), 1, + sym_selected_name_list, + STATE(4667), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 10, - sym_BUS, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [251401] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [260769] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4481), 3, + STATE(4668), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 10, - sym_BUS, + ACTIONS(2424), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251428] = 5, + [260795] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4482), 3, + ACTIONS(5553), 1, + sym_CONTEXT, + ACTIONS(5555), 1, + sym_END, + ACTIONS(5557), 1, + sym_LIBRARY, + ACTIONS(5559), 1, + sym_USE, + STATE(4719), 1, + aux_sym_design_unit_repeat1, + STATE(5539), 1, + sym__context_item, + STATE(4669), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 10, - sym_FOR, - sym_GENERIC, - sym_PARAMETER, - sym_UNTIL, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [251455] = 5, + STATE(5531), 3, + sym_library_clause, + sym_use_clause, + sym_context_reference, + [260833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4483), 3, + STATE(4670), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 10, - sym_BUS, + ACTIONS(2556), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251482] = 5, + [260859] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4484), 3, + ACTIONS(5561), 1, + sym_ATTRIBUTE, + ACTIONS(5564), 1, + sym_FOR, + ACTIONS(5566), 1, + sym_GROUP, + ACTIONS(5569), 1, + sym_USE, + STATE(5434), 1, + sym__configuration_declarative_item, + STATE(5435), 3, + sym_use_clause, + sym_attribute_specification, + sym_group_declaration, + STATE(4671), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 10, - sym_BUS, + aux_sym_configuration_head_repeat1, + [260895] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4672), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3470), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [260921] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4673), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2556), 9, sym_GENERIC, sym_PARAMETER, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251509] = 6, + anon_sym_RBRACK, + [260947] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5517), 1, - anon_sym_COLON, - STATE(4485), 3, + ACTIONS(5572), 1, + sym_OF, + STATE(4674), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, + ACTIONS(2450), 8, sym_GENERIC, + sym_IS, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251538] = 5, + [260975] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4486), 3, + STATE(4675), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 10, - sym_BUS, + ACTIONS(2666), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251565] = 5, + [261001] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4487), 3, + STATE(4676), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 10, - sym_BUS, + ACTIONS(2666), 9, sym_GENERIC, sym_PARAMETER, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251592] = 5, + anon_sym_RBRACK, + [261027] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4488), 3, + STATE(4677), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 10, - sym_BUS, + ACTIONS(2636), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251619] = 5, + [261053] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4489), 3, + STATE(4678), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 10, - sym_BUS, + ACTIONS(2636), 9, sym_GENERIC, sym_PARAMETER, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251646] = 5, + anon_sym_RBRACK, + [261079] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4490), 3, + STATE(4679), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 10, - sym_BUS, + ACTIONS(2378), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251673] = 5, + [261105] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4491), 3, + STATE(4680), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 10, - sym_BUS, + ACTIONS(2470), 9, sym_GENERIC, sym_PARAMETER, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, anon_sym_SQUOTE, anon_sym_LBRACK, - [251700] = 5, + anon_sym_RBRACK, + [261131] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4492), 3, + STATE(4681), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 10, + ACTIONS(2610), 9, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251727] = 5, + anon_sym_RBRACK, + [261157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4493), 3, + STATE(4682), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4132), 10, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, + ACTIONS(2576), 9, sym_GENERIC, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [251754] = 5, + sym_PARAMETER, + sym_RETURN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [261183] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4494), 3, + STATE(4683), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 10, + ACTIONS(2614), 9, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251781] = 5, + anon_sym_RBRACK, + [261209] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4495), 3, + STATE(4684), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 10, - sym_FOR, + ACTIONS(2502), 9, sym_GENERIC, sym_PARAMETER, - sym_UNTIL, + sym_PORT, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [251808] = 8, + [261235] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5137), 1, - anon_sym_LPAREN, - ACTIONS(5519), 1, - sym_PARAMETER, - STATE(4707), 1, - sym_parenthesis_group, - STATE(4496), 3, + STATE(4685), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 7, + ACTIONS(2572), 9, sym_GENERIC, - sym_IS, - anon_sym_SEMI, + sym_PARAMETER, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251841] = 5, + anon_sym_RBRACK, + [261261] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4497), 3, + STATE(4686), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 10, - sym_BUS, + ACTIONS(2374), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_variable_assignment, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [251868] = 8, + [261287] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5085), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, - sym_PARAMETER, - STATE(4645), 1, - sym_parenthesis_group, - STATE(4498), 3, + STATE(4687), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 7, + ACTIONS(2506), 9, sym_GENERIC, - sym_OF, - anon_sym_SEMI, + sym_PARAMETER, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251901] = 5, + anon_sym_RBRACK, + [261313] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4499), 3, + STATE(4688), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 10, + ACTIONS(2370), 9, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251928] = 13, + anon_sym_RBRACK, + [261339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5501), 1, - sym_FOR, - ACTIONS(5503), 1, - sym_USE, - STATE(4838), 1, - aux_sym_block_configuration_repeat2, - STATE(5016), 1, - aux_sym_block_configuration_repeat1, - STATE(5738), 1, - sym_use_clause, - STATE(5920), 1, - sym__configuration_item, - STATE(8021), 1, - sym_end_for, - STATE(5919), 2, - sym_block_configuration, - sym_component_configuration, - STATE(4500), 3, + STATE(4689), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [251971] = 5, + ACTIONS(2662), 9, + sym_GENERIC, + sym_PARAMETER, + sym_RETURN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [261365] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4501), 3, + STATE(4690), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 10, + ACTIONS(2576), 9, + sym_END, + sym_FOR, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [251998] = 5, + [261391] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4502), 3, + STATE(4691), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 10, + ACTIONS(2428), 9, sym_GENERIC, - sym_IS, - sym_OPEN, sym_PARAMETER, - sym_RANGE, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252025] = 10, + [261417] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5523), 1, - anon_sym_SEMI, - ACTIONS(5527), 1, - sym_operator_symbol, - STATE(7794), 1, - sym__designator, - STATE(8123), 1, - sym__identifier, - ACTIONS(5525), 2, - sym_FUNCTION, - sym_PROCEDURE, - STATE(4503), 3, + STATE(4692), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [252062] = 10, + ACTIONS(3304), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [261443] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, + ACTIONS(5551), 1, sym_library_namespace, - STATE(5303), 1, + ACTIONS(5574), 1, + sym_VUNIT, + STATE(5346), 1, sym__logical_name, - STATE(5577), 1, + STATE(5620), 1, sym_selected_name, - STATE(5582), 1, + STATE(6019), 1, sym__identifier, - STATE(7407), 1, - sym_selected_name_list, - STATE(4504), 3, + STATE(4693), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [252098] = 7, + [261479] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5534), 1, - sym_THEN, - STATE(4454), 1, - sym_logical_operator, - STATE(4505), 4, + STATE(4694), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_conditional_analysis_expression_repeat1, - ACTIONS(5531), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - [252128] = 5, + ACTIONS(3368), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [261505] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4506), 3, + STATE(4695), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 9, + ACTIONS(2674), 9, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252154] = 5, + anon_sym_RBRACK, + [261531] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4507), 3, + STATE(4696), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 9, + ACTIONS(2674), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -253474,128 +261930,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252180] = 5, + [261557] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4508), 3, + STATE(4697), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 9, + ACTIONS(2420), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252206] = 10, + [261583] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5536), 1, - sym_END, - STATE(4738), 1, - aux_sym_physical_type_definition_repeat1, - STATE(5040), 1, - sym_secondary_unit_declaration, - STATE(7920), 1, - sym__identifier, - STATE(8009), 1, - sym_end_units, - STATE(4509), 3, + STATE(4698), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [252242] = 5, + ACTIONS(5576), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [261609] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4510), 3, + STATE(4699), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 9, + ACTIONS(2528), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252268] = 5, + [261635] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4511), 3, + STATE(4700), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 9, + ACTIONS(2670), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252294] = 5, + [261661] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4512), 3, + STATE(4701), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 9, + ACTIONS(2580), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252320] = 5, + [261687] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4513), 3, + STATE(4702), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 9, + ACTIONS(2640), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -253605,60 +262056,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252346] = 5, + [261713] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4514), 3, + STATE(4993), 1, + sym_component_specification, + STATE(5600), 1, + sym__label, + STATE(7598), 1, + sym_instantiation_list, + ACTIONS(4278), 2, + sym_ALL, + sym_OTHERS, + STATE(4703), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, - sym_GENERIC, - sym_IS, - sym_OF, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [252372] = 5, + ACTIONS(5535), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [261747] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4515), 3, + STATE(4704), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 9, + ACTIONS(2606), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [252398] = 5, + [261773] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4516), 3, + STATE(4705), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 9, + ACTIONS(2602), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -253668,169 +262123,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252424] = 9, + [261799] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5541), 1, - sym_END, - STATE(5139), 1, - sym_mode_view_element_definition, - STATE(5816), 1, + STATE(5371), 1, + sym__entity_tag, + STATE(6023), 1, sym__identifier, - STATE(7910), 1, - sym_record_element_list, - ACTIONS(5538), 4, + STATE(6189), 1, + sym_entity_designator, + ACTIONS(5457), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4706), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(4517), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_mode_view_body_repeat1, - [252458] = 5, + [261833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4518), 3, + STATE(4707), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 9, + ACTIONS(2502), 9, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252484] = 5, + anon_sym_RBRACK, + [261859] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4519), 3, + STATE(4708), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, + ACTIONS(3386), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, sym_USE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [252510] = 5, + [261885] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4520), 3, + STATE(4709), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, + ACTIONS(3404), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, sym_USE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [252536] = 5, + [261911] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4521), 3, + STATE(4710), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 9, + ACTIONS(2424), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252562] = 5, + [261937] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4522), 3, + STATE(4711), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 9, - sym_GENERIC, - sym_OF, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [252588] = 5, + ACTIONS(3410), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [261963] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4523), 3, + STATE(4712), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 9, + ACTIONS(2420), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252614] = 5, + [261989] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4524), 3, + STATE(4713), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 9, + ACTIONS(2404), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -253840,40 +262295,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252640] = 6, + [262015] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5543), 1, - sym_OF, - STATE(4525), 3, + STATE(4714), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 8, + ACTIONS(2470), 9, + sym_END, + sym_FOR, sym_GENERIC, - sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252668] = 5, + [262041] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4526), 3, + STATE(4715), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 9, + ACTIONS(2428), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -253883,145 +262337,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252694] = 5, + [262067] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4527), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5299), 1, + sym__identifier, + STATE(5346), 1, + sym__logical_name, + STATE(5764), 1, + sym_selected_name, + STATE(7618), 1, + sym_selected_name_list, + STATE(4716), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, - sym_USE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [252720] = 5, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [262103] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4528), 3, + STATE(4717), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 9, + ACTIONS(2498), 9, sym_GENERIC, sym_PARAMETER, - sym_PORT, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252746] = 5, + anon_sym_RBRACK, + [262129] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4529), 3, + STATE(4718), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 9, + ACTIONS(2580), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252772] = 5, + [262155] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4530), 3, + ACTIONS(5553), 1, + sym_CONTEXT, + ACTIONS(5557), 1, + sym_LIBRARY, + ACTIONS(5559), 1, + sym_USE, + ACTIONS(5580), 1, + sym_END, + STATE(4839), 1, + aux_sym_design_unit_repeat1, + STATE(5539), 1, + sym__context_item, + STATE(4719), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [252798] = 6, + STATE(5531), 3, + sym_library_clause, + sym_use_clause, + sym_context_reference, + [262193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5545), 1, - sym_OF, - STATE(4531), 3, + STATE(4720), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 8, + ACTIONS(2670), 9, + sym_END, + sym_FOR, sym_GENERIC, - sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252826] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4532), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5547), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [252852] = 5, + [262219] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4533), 3, + STATE(4721), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 9, + ACTIONS(2602), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254031,60 +262474,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252878] = 5, + [262245] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4534), 3, + STATE(4722), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 9, + ACTIONS(2640), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252904] = 5, + [262271] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4535), 3, + STATE(4723), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 9, + ACTIONS(2470), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [252930] = 5, + [262297] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4536), 3, + STATE(4724), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 9, + ACTIONS(2662), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254094,18 +262537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252956] = 5, + [262323] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4537), 3, + STATE(4725), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 9, + ACTIONS(2370), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254115,102 +262558,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [252982] = 5, + [262349] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4538), 3, + STATE(4726), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 9, + ACTIONS(2506), 9, sym_GENERIC, - sym_OF, sym_PARAMETER, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [253008] = 5, + [262375] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4539), 3, + ACTIONS(5582), 1, + sym_OF, + STATE(4727), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 9, + ACTIONS(2450), 8, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, - sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253034] = 5, + [262403] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4540), 3, + STATE(4728), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 9, + ACTIONS(2474), 9, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253060] = 5, + anon_sym_RBRACK, + [262429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4541), 3, + STATE(4729), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 9, + ACTIONS(2374), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [253086] = 5, + [262455] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4542), 3, + STATE(4730), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 9, + ACTIONS(2674), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254220,42 +262664,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253112] = 8, + [262481] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5307), 1, - anon_sym_LPAREN, - ACTIONS(5549), 1, - sym_PARAMETER, - STATE(4753), 1, - sym_parenthesis_group, - STATE(4543), 3, + STATE(4731), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 6, + ACTIONS(2662), 9, sym_GENERIC, - sym_IS, - sym_RANGE, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253144] = 5, + [262507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4544), 3, + STATE(4732), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 9, + ACTIONS(2420), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254265,18 +262706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [253170] = 5, + [262533] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4545), 3, + STATE(4733), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 9, + ACTIONS(2556), 9, sym_END, sym_FOR, sym_GENERIC, @@ -254286,39 +262727,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253196] = 5, + [262559] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4546), 3, + STATE(4973), 1, + sym_component_specification, + STATE(5600), 1, + sym__label, + STATE(7598), 1, + sym_instantiation_list, + ACTIONS(4278), 2, + sym_ALL, + sym_OTHERS, + STATE(4734), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5551), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [253222] = 5, + ACTIONS(5535), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [262593] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4547), 3, + STATE(4735), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 9, + ACTIONS(2614), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254328,40 +262773,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253248] = 6, + [262619] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5553), 1, - sym_OF, - STATE(4548), 3, + STATE(4736), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 8, + ACTIONS(2378), 9, sym_GENERIC, - sym_IS, sym_PARAMETER, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253276] = 5, + [262645] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4549), 3, + STATE(4737), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 9, + ACTIONS(2606), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254371,191 +262815,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [253302] = 5, + [262671] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4550), 3, + STATE(4738), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 9, + ACTIONS(2666), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, sym_USE, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253328] = 5, + [262697] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4551), 3, + STATE(4739), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 9, + ACTIONS(2506), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, - sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253354] = 10, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - ACTIONS(5555), 1, - sym_VUNIT, - STATE(5303), 1, - sym__logical_name, - STATE(5407), 1, - sym_selected_name, - STATE(5582), 1, - sym__identifier, - STATE(4552), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [253390] = 5, + [262723] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4553), 3, + STATE(4740), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 9, + ACTIONS(2428), 9, sym_GENERIC, sym_PARAMETER, - sym_PORT, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [253416] = 5, + anon_sym_RBRACK, + [262749] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4554), 3, + ACTIONS(5584), 1, + anon_sym_RPAREN, + STATE(4582), 1, + sym_logical_operator, + STATE(4741), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5557), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [253442] = 5, + aux_sym_conditional_analysis_expression_repeat1, + ACTIONS(5586), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + [262779] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4555), 3, + ACTIONS(5584), 1, + sym_THEN, + STATE(4601), 1, + sym_logical_operator, + STATE(4742), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [253468] = 5, + aux_sym_conditional_analysis_expression_repeat1, + ACTIONS(5586), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + [262809] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4556), 3, + STATE(4743), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 9, + ACTIONS(2640), 9, sym_GENERIC, sym_PARAMETER, - sym_PORT, - sym_USE, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253494] = 5, + anon_sym_RBRACK, + [262835] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4557), 3, + ACTIONS(5589), 1, + sym_END, + STATE(4822), 1, + aux_sym_mode_view_body_repeat1, + STATE(5288), 1, + sym_mode_view_element_definition, + STATE(5570), 1, + sym__identifier, + STATE(8117), 1, + sym_record_element_list, + STATE(4744), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT_EQ, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [253520] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [262871] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4558), 3, + STATE(4745), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 9, + ACTIONS(2466), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254565,18 +262992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253546] = 5, + [262897] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4559), 3, + STATE(4746), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 9, + ACTIONS(2474), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254586,39 +263013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253572] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4560), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2518), 9, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [253598] = 5, + [262923] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4561), 3, + STATE(4747), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 9, + ACTIONS(2636), 9, sym_END, sym_FOR, sym_GENERIC, @@ -254628,134 +263034,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253624] = 5, + [262949] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4562), 3, + STATE(4748), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 9, - sym_END, - sym_FOR, + ACTIONS(2498), 9, sym_GENERIC, - sym_PARAMETER, - sym_USE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [253650] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5561), 1, - sym_THEN, - STATE(4454), 1, - sym_logical_operator, - STATE(4505), 1, - aux_sym_conditional_analysis_expression_repeat1, - STATE(4563), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5559), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - [253682] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5563), 1, - sym_CONTEXT, - ACTIONS(5565), 1, - sym_END, - ACTIONS(5567), 1, - sym_LIBRARY, - ACTIONS(5569), 1, - sym_USE, - STATE(4666), 1, - aux_sym_design_unit_repeat1, - STATE(5334), 1, - sym__context_item, - STATE(4564), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - STATE(5335), 3, - sym_library_clause, - sym_use_clause, - sym_context_reference, - [253720] = 5, + sym_PARAMETER, + sym_PORT, + sym_USE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [262975] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4565), 3, + ACTIONS(5591), 1, + sym_OF, + STATE(4749), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 9, + ACTIONS(2450), 8, sym_GENERIC, - sym_OF, + sym_IS, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253746] = 5, + [263003] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4566), 3, + STATE(4750), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 9, + ACTIONS(3420), 9, + sym_ALIAS, + sym_ATTRIBUTE, sym_END, - sym_FOR, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [263029] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4751), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2466), 9, sym_GENERIC, sym_PARAMETER, - sym_USE, + sym_PORT, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [253772] = 5, + [263055] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4567), 3, + STATE(4752), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 9, + ACTIONS(2424), 9, sym_GENERIC, - sym_OF, + sym_IS, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, @@ -254763,102 +263140,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253798] = 5, + [263081] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4568), 3, + STATE(4753), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 9, + ACTIONS(2502), 9, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_PORT, + sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [253824] = 5, + [263107] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4569), 3, + STATE(4754), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 9, - sym_END, - sym_FOR, + ACTIONS(2370), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253850] = 5, + [263133] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4570), 3, + STATE(4755), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 9, - sym_END, - sym_FOR, + ACTIONS(2506), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253876] = 5, + [263159] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4571), 3, + STATE(4756), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, + ACTIONS(2722), 9, sym_identifier, sym_character_literal, sym_operator_symbol, sym_library_constant, sym_library_constant_std_logic, + sym_library_constant_unit, sym_library_function, sym_library_type, - anon_sym_LPAREN, anon_sym_LT_LT, - [253902] = 5, + [263185] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4572), 3, + STATE(4757), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 9, + ACTIONS(2610), 9, sym_END, sym_FOR, sym_GENERIC, @@ -254868,123 +263245,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [253928] = 5, + [263211] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4573), 3, + STATE(4758), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 9, - sym_GENERIC, - sym_OF, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [253954] = 5, + ACTIONS(3422), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [263237] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4574), 3, + STATE(4759), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 9, - sym_GENERIC, - sym_OF, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2528), 9, + sym_identifier, + sym_character_literal, + sym_operator_symbol, + sym_library_constant, + sym_library_constant_std_logic, + sym_library_function, + sym_library_type, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [253980] = 5, + anon_sym_LT_LT, + [263263] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4575), 3, + ACTIONS(5593), 1, + sym_END, + STATE(4833), 1, + aux_sym_physical_type_definition_repeat1, + STATE(5330), 1, + sym_secondary_unit_declaration, + STATE(8149), 1, + sym__identifier, + STATE(8193), 1, + sym_end_units, + STATE(4760), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5571), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [254006] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [263299] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4576), 3, + STATE(4761), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 9, - sym_END, - sym_FOR, + ACTIONS(2572), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254032] = 5, + [263325] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4577), 3, + STATE(4762), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 9, - sym_END, - sym_FOR, + ACTIONS(2374), 9, sym_GENERIC, sym_PARAMETER, - sym_USE, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254058] = 5, + anon_sym_RBRACK, + [263351] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4578), 3, + STATE(4763), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, + ACTIONS(2576), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -254994,18 +263376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254084] = 5, + [263377] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4579), 3, + STATE(4764), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 9, + ACTIONS(2602), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -255015,169 +263397,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254110] = 5, + [263403] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4580), 3, + STATE(4765), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 9, + ACTIONS(2424), 9, + sym_END, + sym_FOR, sym_GENERIC, - sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254136] = 5, + [263429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4581), 3, + STATE(4766), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 9, + ACTIONS(5595), 9, + sym_ALIAS, + sym_ATTRIBUTE, sym_END, - sym_FOR, - sym_GENERIC, - sym_PARAMETER, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, sym_USE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [254162] = 5, + [263455] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4582), 3, + STATE(4767), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 9, - sym_GENERIC, - sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [254188] = 5, + ACTIONS(3424), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [263481] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4583), 3, + STATE(4768), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, - sym_END, - sym_FOR, + ACTIONS(2370), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254214] = 5, + [263507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4584), 3, + STATE(4769), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 9, + ACTIONS(2640), 9, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_PORT, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [254240] = 5, + [263533] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4585), 3, + STATE(4770), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 9, + ACTIONS(2610), 9, sym_GENERIC, - sym_OF, sym_PARAMETER, + sym_PORT, + sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254266] = 9, + [263559] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5576), 1, - sym_END, - STATE(5010), 1, - sym_element_declaration, - STATE(5583), 1, - sym__identifier, - STATE(7139), 1, - sym_identifier_list, - ACTIONS(5573), 4, + STATE(4771), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2692), 9, sym_identifier, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, + sym_library_constant_unit, sym_library_function, sym_library_type, - STATE(4586), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_record_type_definition_repeat1, - [254300] = 5, + anon_sym_LT_LT, + [263585] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4587), 3, + STATE(4772), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 9, + ACTIONS(2528), 9, sym_END, sym_FOR, sym_GENERIC, @@ -255187,159 +263565,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254326] = 5, + [263611] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4588), 3, + STATE(4773), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5597), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [263637] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5601), 1, + sym_THEN, + STATE(4601), 1, + sym_logical_operator, + STATE(4742), 1, + aux_sym_conditional_analysis_expression_repeat1, + STATE(4774), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5599), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + [263669] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5603), 1, + sym_OF, + STATE(4775), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 9, + ACTIONS(2450), 8, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [254352] = 11, + [263697] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5563), 1, - sym_CONTEXT, - ACTIONS(5567), 1, - sym_LIBRARY, - ACTIONS(5569), 1, - sym_USE, - ACTIONS(5578), 1, - sym_END, - STATE(4564), 1, - aux_sym_design_unit_repeat1, - STATE(5334), 1, - sym__context_item, - STATE(4589), 3, + STATE(4776), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(5335), 3, - sym_library_clause, - sym_use_clause, - sym_context_reference, - [254390] = 5, + ACTIONS(2662), 9, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [263723] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4590), 3, + STATE(4777), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 9, + ACTIONS(2528), 9, sym_GENERIC, + sym_IS, + sym_OF, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [254416] = 9, + [263749] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5175), 1, - sym__entity_tag, - STATE(5766), 1, - sym__identifier, - STATE(5984), 1, - sym_entity_designator, - ACTIONS(5437), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4591), 3, + ACTIONS(5601), 1, + anon_sym_RPAREN, + STATE(4582), 1, + sym_logical_operator, + STATE(4741), 1, + aux_sym_conditional_analysis_expression_repeat1, + STATE(4778), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [254450] = 5, + ACTIONS(5599), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + [263781] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4592), 3, + STATE(4779), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 9, + ACTIONS(3442), 9, + sym_ALIAS, + sym_ATTRIBUTE, sym_END, - sym_FOR, - sym_GENERIC, - sym_PARAMETER, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, sym_USE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [254476] = 10, + [263807] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5536), 1, - sym_END, - STATE(4509), 1, - aux_sym_physical_type_definition_repeat1, - STATE(5040), 1, - sym_secondary_unit_declaration, - STATE(7920), 1, - sym__identifier, - STATE(7980), 1, - sym_end_units, - STATE(4593), 3, + STATE(4780), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [254512] = 5, + ACTIONS(2572), 9, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [263833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4594), 3, + STATE(4781), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 9, + ACTIONS(2470), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -255349,18 +263761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254538] = 5, + [263859] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4595), 3, + STATE(4782), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 9, + ACTIONS(2572), 9, sym_END, sym_FOR, sym_GENERIC, @@ -255370,39 +263782,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254564] = 5, + [263885] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4596), 3, + STATE(4783), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 9, + ACTIONS(2374), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254590] = 5, + [263911] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4597), 3, + STATE(4784), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, + ACTIONS(2674), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -255412,65 +263824,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254616] = 10, + [263937] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5580), 1, - sym_END, - STATE(4517), 1, - aux_sym_mode_view_body_repeat1, - STATE(5139), 1, - sym_mode_view_element_definition, - STATE(5816), 1, - sym__identifier, - STATE(7910), 1, - sym_record_element_list, - STATE(4598), 3, + STATE(4785), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [254652] = 5, + ACTIONS(2662), 9, + sym_GENERIC, + sym_OF, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [263963] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4599), 3, + STATE(4786), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 9, - sym_END, - sym_FOR, + ACTIONS(2528), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254678] = 5, + [263989] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4600), 3, + STATE(4787), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 9, + ACTIONS(2614), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -255480,39 +263887,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [254704] = 5, + [264015] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4601), 3, + STATE(4788), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 9, - sym_END, - sym_FOR, + ACTIONS(2636), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254730] = 5, + [264041] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4602), 3, + STATE(4789), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 9, + ACTIONS(2404), 9, sym_END, sym_FOR, sym_GENERIC, @@ -255522,81 +263929,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254756] = 5, + [264067] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4603), 3, + STATE(4790), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 9, - sym_END, - sym_FOR, + ACTIONS(2666), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254782] = 5, + [264093] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4604), 3, + STATE(4791), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 9, - sym_END, - sym_FOR, + ACTIONS(2556), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254808] = 5, + [264119] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4605), 3, + STATE(4792), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 9, - sym_END, - sym_FOR, + ACTIONS(2404), 9, sym_GENERIC, sym_PARAMETER, - sym_USE, + sym_PORT, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [254834] = 5, + [264145] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4606), 3, + STATE(4793), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 9, + ACTIONS(2614), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -255606,18 +264013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254860] = 5, + [264171] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4607), 3, + STATE(4794), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 9, + ACTIONS(2670), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, @@ -255627,149 +264034,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [254886] = 5, + [264197] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4608), 3, + STATE(4795), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3254), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, + ACTIONS(2580), 9, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, sym_USE, - [254912] = 5, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [264223] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4609), 3, + STATE(4796), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 9, + ACTIONS(2576), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, - sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [254938] = 5, + [264249] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4610), 3, + STATE(4797), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 9, + ACTIONS(2610), 9, sym_GENERIC, - sym_OF, sym_PARAMETER, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [254964] = 10, + [264275] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5582), 1, - sym_ATTRIBUTE, - ACTIONS(5585), 1, - sym_FOR, - ACTIONS(5587), 1, - sym_GROUP, - ACTIONS(5590), 1, - sym_USE, - STATE(5214), 1, - sym__configuration_declarative_item, - STATE(5216), 3, - sym_use_clause, - sym_attribute_specification, - sym_group_declaration, - STATE(4611), 4, + STATE(4798), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_configuration_head_repeat1, - [255000] = 5, + ACTIONS(2450), 9, + sym_GENERIC, + sym_OF, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [264301] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4612), 3, + STATE(4799), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 9, + ACTIONS(2674), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [255026] = 5, + [264327] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4613), 3, + STATE(4800), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 9, - sym_END, - sym_FOR, + ACTIONS(2450), 9, sym_GENERIC, sym_PARAMETER, - sym_USE, + sym_PORT, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [255052] = 5, + [264353] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4614), 3, + STATE(4801), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 9, + ACTIONS(2506), 9, sym_END, sym_FOR, sym_GENERIC, @@ -255779,107 +264181,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255078] = 5, + [264379] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4615), 3, + STATE(4802), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 9, + ACTIONS(2606), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [255104] = 5, + [264405] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4616), 3, + ACTIONS(5339), 1, + anon_sym_LPAREN, + ACTIONS(5605), 1, + sym_PARAMETER, + STATE(4902), 1, + sym_parenthesis_group, + STATE(4803), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 9, + ACTIONS(2097), 6, sym_GENERIC, - sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_IS, + sym_RANGE, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [255130] = 10, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5593), 1, - sym_END, - STATE(4598), 1, - aux_sym_mode_view_body_repeat1, - STATE(5139), 1, - sym_mode_view_element_definition, - STATE(5816), 1, - sym__identifier, - STATE(7910), 1, - sym_record_element_list, - STATE(4617), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [255166] = 5, + [264437] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4618), 3, + STATE(4804), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 9, + ACTIONS(2470), 9, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_PORT, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [255192] = 5, + [264463] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4619), 3, + STATE(4805), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 9, + ACTIONS(2370), 9, sym_END, sym_FOR, sym_GENERIC, @@ -255889,165 +264268,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255218] = 5, + [264489] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4620), 3, + STATE(4806), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2704), 9, - sym_identifier, - sym_character_literal, - sym_operator_symbol, - sym_library_constant, - sym_library_constant_std_logic, - sym_library_constant_unit, - sym_library_function, - sym_library_type, - anon_sym_LT_LT, - [255244] = 5, + ACTIONS(2404), 9, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [264515] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4621), 3, + STATE(4807), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 9, + ACTIONS(2502), 9, + sym_END, + sym_FOR, sym_GENERIC, - sym_OF, sym_PARAMETER, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255270] = 5, + [264541] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4622), 3, + STATE(4808), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 9, + ACTIONS(2498), 9, + sym_END, + sym_FOR, sym_GENERIC, - sym_OF, sym_PARAMETER, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255296] = 5, + [264567] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4623), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2710), 9, + ACTIONS(5610), 1, + sym_END, + STATE(5282), 1, + sym_element_declaration, + STATE(6017), 1, + sym__identifier, + STATE(7797), 1, + sym_identifier_list, + ACTIONS(5607), 4, sym_identifier, - sym_character_literal, - sym_operator_symbol, sym_library_constant, - sym_library_constant_std_logic, - sym_library_constant_unit, sym_library_function, sym_library_type, - anon_sym_LT_LT, - [255322] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4624), 3, + STATE(4809), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, - sym_USE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [255348] = 5, + aux_sym_record_type_definition_repeat1, + [264601] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4625), 3, + STATE(4810), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 9, + ACTIONS(2474), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [255374] = 5, + [264627] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4626), 3, + STATE(4811), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 9, - sym_GENERIC, - sym_OF, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [255400] = 5, + ACTIONS(3446), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [264653] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4627), 3, + STATE(4812), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 9, + ACTIONS(2528), 9, sym_GENERIC, sym_PARAMETER, sym_RETURN, @@ -256057,124 +264419,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_RBRACK, - [255426] = 5, + [264679] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4628), 3, + STATE(4813), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 9, + ACTIONS(2428), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [255452] = 6, + [264705] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5595), 1, - sym_OF, - STATE(4629), 3, + STATE(4814), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 8, + ACTIONS(2466), 9, + sym_END, + sym_FOR, sym_GENERIC, - sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255480] = 5, + [264731] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4630), 3, + STATE(4815), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 9, - sym_END, - sym_FOR, + ACTIONS(2606), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255506] = 5, + [264757] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4631), 3, + STATE(4816), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 9, + ACTIONS(2424), 9, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_PORT, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [255532] = 5, + [264783] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4632), 3, + STATE(4817), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 9, + ACTIONS(2602), 9, sym_GENERIC, - sym_OF, sym_PARAMETER, - anon_sym_SEMI, + sym_RETURN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255558] = 5, + anon_sym_RBRACK, + [264809] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4633), 3, + STATE(4818), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 9, + ACTIONS(2580), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -256184,104 +264545,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255584] = 5, + [264835] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4634), 3, + STATE(4819), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 9, + ACTIONS(2428), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [255610] = 5, + [264861] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4635), 3, + STATE(4820), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 9, - sym_GENERIC, - sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [255636] = 5, + ACTIONS(3460), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, + sym_USE, + [264887] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4636), 3, + STATE(4821), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 9, - sym_END, - sym_FOR, + ACTIONS(2428), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255662] = 7, + [264913] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5534), 1, - anon_sym_RPAREN, - STATE(4407), 1, - sym_logical_operator, - STATE(4637), 4, + ACTIONS(5612), 1, + sym_END, + STATE(4837), 1, + aux_sym_mode_view_body_repeat1, + STATE(5288), 1, + sym_mode_view_element_definition, + STATE(5570), 1, + sym__identifier, + STATE(8117), 1, + sym_record_element_list, + STATE(4822), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_conditional_analysis_expression_repeat1, - ACTIONS(5531), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - [255692] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [264949] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4638), 3, + STATE(4823), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3280), 9, + ACTIONS(3466), 9, sym_ALIAS, sym_ATTRIBUTE, sym_END, @@ -256291,60 +264655,60 @@ static const uint16_t ts_small_parse_table[] = { sym_PRIVATE, sym_PURE, sym_USE, - [255718] = 5, + [264975] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4639), 3, + STATE(4824), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 9, - sym_END, - sym_FOR, + ACTIONS(2450), 9, sym_GENERIC, sym_PARAMETER, + sym_PORT, sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255744] = 5, + [265001] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4640), 3, + STATE(4825), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 9, + ACTIONS(2580), 9, sym_GENERIC, - sym_OF, sym_PARAMETER, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [255770] = 5, + [265027] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4641), 3, + STATE(4826), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 9, + ACTIONS(2470), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -256354,84 +264718,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255796] = 8, + [265053] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5597), 1, - sym_THEN, - STATE(4454), 1, - sym_logical_operator, - STATE(4563), 1, - aux_sym_conditional_analysis_expression_repeat1, - STATE(4642), 3, + STATE(4827), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5559), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - [255828] = 5, + ACTIONS(2670), 9, + sym_GENERIC, + sym_PARAMETER, + sym_PORT, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [265079] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4643), 3, + STATE(4828), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 9, + ACTIONS(2378), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_PORT, - sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255854] = 5, + [265105] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4644), 3, + STATE(4829), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 9, + ACTIONS(2602), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_PORT, sym_USE, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255880] = 5, + [265131] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4645), 3, + STATE(4830), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 9, + ACTIONS(2670), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -256441,81 +264802,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255906] = 5, + [265157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4646), 3, + STATE(4831), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3346), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [255932] = 5, + ACTIONS(2556), 9, + sym_GENERIC, + sym_OF, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [265183] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4647), 3, + STATE(4832), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 9, - sym_END, - sym_FOR, + ACTIONS(2666), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_USE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [255958] = 5, + [265209] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4648), 3, + ACTIONS(5593), 1, + sym_END, + STATE(4944), 1, + aux_sym_physical_type_definition_repeat1, + STATE(5330), 1, + sym_secondary_unit_declaration, + STATE(8149), 1, + sym__identifier, + STATE(8230), 1, + sym_end_units, + STATE(4833), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 9, - sym_GENERIC, - sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [255984] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [265245] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4649), 3, + STATE(4834), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 9, + ACTIONS(2636), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -256525,151 +264891,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [256010] = 5, + [265271] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4650), 3, + ACTIONS(5614), 1, + anon_sym_RPAREN, + STATE(4582), 1, + sym_logical_operator, + STATE(4778), 1, + aux_sym_conditional_analysis_expression_repeat1, + STATE(4835), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5599), 6, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + [265303] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4836), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 9, + ACTIONS(2474), 9, sym_GENERIC, sym_PARAMETER, sym_PORT, - sym_USE, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [256036] = 5, + [265329] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4651), 3, + ACTIONS(5619), 1, + sym_END, + STATE(5288), 1, + sym_mode_view_element_definition, + STATE(5570), 1, + sym__identifier, + STATE(8117), 1, + sym_record_element_list, + ACTIONS(5616), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(4837), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 9, + aux_sym_mode_view_body_repeat1, + [265363] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4838), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2636), 9, sym_GENERIC, - sym_OF, sym_PARAMETER, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [256062] = 5, + [265389] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4652), 3, + ACTIONS(2869), 1, + sym_END, + ACTIONS(5621), 1, + sym_CONTEXT, + ACTIONS(5624), 1, + sym_LIBRARY, + ACTIONS(5627), 1, + sym_USE, + STATE(5539), 1, + sym__context_item, + STATE(5531), 3, + sym_library_clause, + sym_use_clause, + sym_context_reference, + STATE(4839), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 9, + aux_sym_design_unit_repeat1, + [265425] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4840), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2640), 9, + sym_END, + sym_FOR, sym_GENERIC, - sym_OF, sym_PARAMETER, - anon_sym_SEMI, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [256088] = 9, + [265451] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4830), 1, - sym_component_specification, - STATE(5571), 1, - sym__label, - STATE(7394), 1, - sym_instantiation_list, - ACTIONS(4218), 2, - sym_ALL, - sym_OTHERS, - STATE(4653), 3, + STATE(4841), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [256122] = 8, + ACTIONS(2378), 9, + sym_GENERIC, + sym_PARAMETER, + sym_RETURN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [265477] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5561), 1, - anon_sym_RPAREN, - STATE(4407), 1, + ACTIONS(5614), 1, + sym_THEN, + STATE(4601), 1, sym_logical_operator, - STATE(4637), 1, + STATE(4774), 1, aux_sym_conditional_analysis_expression_repeat1, - STATE(4654), 3, + STATE(4842), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5559), 6, + ACTIONS(5599), 6, sym__AND, sym__NAND, sym__NOR, sym__OR, sym__XNOR, sym__XOR, - [256154] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4655), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2610), 9, - sym_GENERIC, - sym_OF, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [256180] = 5, + [265509] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4656), 3, + STATE(4843), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3380), 9, + ACTIONS(3272), 9, sym_ALIAS, sym_ATTRIBUTE, sym_END, @@ -256679,18 +265095,18 @@ static const uint16_t ts_small_parse_table[] = { sym_PRIVATE, sym_PURE, sym_USE, - [256206] = 5, + [265535] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4657), 3, + STATE(4844), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3396), 9, + ACTIONS(3286), 9, sym_ALIAS, sym_ATTRIBUTE, sym_END, @@ -256700,18 +265116,18 @@ static const uint16_t ts_small_parse_table[] = { sym_PRIVATE, sym_PURE, sym_USE, - [256232] = 5, + [265561] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4658), 3, + STATE(4845), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 9, + ACTIONS(2374), 9, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -256721,20 +265137,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [256258] = 5, + [265587] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4659), 3, + STATE(4846), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 9, + ACTIONS(2610), 9, sym_GENERIC, - sym_IS, + sym_OF, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, @@ -256742,39 +265158,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [256284] = 5, + [265613] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4660), 3, + STATE(4847), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, + ACTIONS(5630), 9, + sym_ALIAS, + sym_ATTRIBUTE, + sym_END, + sym_FUNCTION, + sym_IMPURE, + sym_PROCEDURE, + sym_PRIVATE, + sym_PURE, sym_USE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [256310] = 5, + [265639] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4661), 3, + STATE(4848), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 9, + ACTIONS(2466), 9, sym_GENERIC, sym_OF, sym_PARAMETER, @@ -256784,60 +265200,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [256336] = 5, + [265665] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4662), 3, + STATE(4849), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 9, + ACTIONS(2576), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [256362] = 5, + [265691] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4663), 3, + STATE(4850), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 9, + ACTIONS(2614), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [256388] = 5, + [265717] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4664), 3, + STATE(4851), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 9, + ACTIONS(2404), 9, sym_GENERIC, sym_PARAMETER, sym_RETURN, @@ -256847,110 +265263,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_RBRACK, - [256414] = 8, + [265743] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5597), 1, - anon_sym_RPAREN, - STATE(4407), 1, - sym_logical_operator, - STATE(4654), 1, - aux_sym_conditional_analysis_expression_repeat1, - STATE(4665), 3, + STATE(4852), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5559), 6, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - [256446] = 10, + ACTIONS(2474), 9, + sym_GENERIC, + sym_OF, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [265769] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2803), 1, - sym_END, - ACTIONS(5599), 1, - sym_CONTEXT, - ACTIONS(5602), 1, - sym_LIBRARY, - ACTIONS(5605), 1, - sym_USE, - STATE(5334), 1, - sym__context_item, - STATE(5335), 3, - sym_library_clause, - sym_use_clause, - sym_context_reference, - STATE(4666), 4, + STATE(4853), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_design_unit_repeat1, - [256482] = 5, + ACTIONS(2466), 9, + sym_GENERIC, + sym_PARAMETER, + sym_RETURN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [265795] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4667), 3, + STATE(4854), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 9, + ACTIONS(2572), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [256508] = 5, + [265821] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4668), 3, + STATE(4855), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 9, + ACTIONS(2502), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [256534] = 5, + [265847] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4669), 3, + STATE(4856), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 9, + ACTIONS(2498), 9, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -256960,212 +265368,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [256560] = 5, + [265873] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4670), 3, + STATE(4857), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3408), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [256586] = 10, + ACTIONS(2498), 9, + sym_GENERIC, + sym_OF, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [265899] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5126), 1, - sym__identifier, - STATE(5303), 1, - sym__logical_name, - STATE(5577), 1, - sym_selected_name, - STATE(7407), 1, - sym_selected_name_list, - STATE(4671), 3, + STATE(4858), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [256622] = 5, + ACTIONS(2502), 9, + sym_GENERIC, + sym_OF, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [265925] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4672), 3, + STATE(4859), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3410), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [256648] = 5, + ACTIONS(2474), 9, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [265951] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4673), 3, + STATE(4860), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3416), 9, - sym_ALIAS, - sym_ATTRIBUTE, + ACTIONS(2374), 9, sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, sym_USE, - [256674] = 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [265977] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4674), 3, + STATE(4861), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3436), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [256700] = 5, + ACTIONS(2528), 9, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [266003] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4675), 3, + ACTIONS(5632), 1, + sym_OF, + STATE(4862), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 9, + ACTIONS(2450), 8, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [256726] = 5, + [266031] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4676), 3, + STATE(4863), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 9, + ACTIONS(2666), 9, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_PORT, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [256752] = 5, + [266057] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4677), 3, + STATE(4864), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3450), 9, - sym_ALIAS, - sym_ATTRIBUTE, + ACTIONS(2674), 9, sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, + sym_FOR, + sym_GENERIC, + sym_PARAMETER, sym_USE, - [256778] = 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [266083] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4678), 3, + STATE(4865), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3458), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [256804] = 5, + ACTIONS(2420), 9, + sym_GENERIC, + sym_PARAMETER, + sym_RETURN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_RBRACK, + [266109] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4679), 3, + STATE(4866), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, + ACTIONS(2424), 9, sym_GENERIC, sym_PARAMETER, sym_RETURN, @@ -257175,64 +265579,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LBRACK, anon_sym_RBRACK, - [256830] = 5, + [266135] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4680), 3, + STATE(4867), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 9, + ACTIONS(2378), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [256856] = 9, + [266161] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4846), 1, - sym_component_specification, - STATE(5571), 1, - sym__label, - STATE(7394), 1, - sym_instantiation_list, - ACTIONS(4218), 2, - sym_ALL, - sym_OTHERS, - STATE(4681), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(5764), 1, + sym_selected_name, + STATE(6019), 1, + sym__identifier, + STATE(7529), 1, + sym_selected_name_list, + STATE(4868), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [256890] = 5, + [266197] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4682), 3, + STATE(4869), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 9, + ACTIONS(2450), 9, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -257242,188 +265647,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [256916] = 5, + [266223] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4683), 3, + STATE(4870), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3242), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [256942] = 5, + ACTIONS(2606), 9, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [266249] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4684), 3, + STATE(4871), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 9, + ACTIONS(2662), 9, + sym_END, + sym_FOR, sym_GENERIC, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + sym_USE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [256968] = 5, + [266275] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4685), 3, + STATE(4872), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, + ACTIONS(2528), 9, sym_GENERIC, - sym_IS, sym_PARAMETER, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [256994] = 5, + [266301] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4686), 3, + STATE(4873), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 9, + ACTIONS(2572), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [257020] = 5, + [266327] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4687), 3, + STATE(4874), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 9, + ACTIONS(2370), 9, sym_GENERIC, + sym_OF, sym_PARAMETER, - sym_RETURN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - anon_sym_RBRACK, - [257046] = 5, + [266353] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4688), 3, + STATE(4875), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3220), 9, - sym_ALIAS, - sym_ATTRIBUTE, - sym_END, - sym_FUNCTION, - sym_IMPURE, - sym_PROCEDURE, - sym_PRIVATE, - sym_PURE, - sym_USE, - [257072] = 5, + ACTIONS(2506), 9, + sym_GENERIC, + sym_OF, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [266379] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4689), 3, + STATE(4876), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 9, + ACTIONS(2614), 9, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT_EQ, + anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257098] = 5, + [266405] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4690), 3, + STATE(4877), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 9, + ACTIONS(2556), 9, sym_GENERIC, - sym_IS, sym_PARAMETER, + sym_PORT, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LT_EQ, anon_sym_SQUOTE, anon_sym_LBRACK, - [257124] = 5, + [266431] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4691), 3, + STATE(4878), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 9, + ACTIONS(2602), 9, sym_GENERIC, - sym_OF, + sym_IS, sym_PARAMETER, anon_sym_SEMI, anon_sym_DOT, @@ -257431,18 +265836,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257150] = 5, + [266457] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4692), 3, + STATE(4879), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 9, + ACTIONS(2576), 9, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -257452,18 +265857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257176] = 5, + [266483] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4693), 3, + STATE(4880), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 9, + ACTIONS(2466), 9, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -257473,18 +265878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257202] = 5, + [266509] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4694), 3, + STATE(4881), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 9, + ACTIONS(2640), 9, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -257494,18 +265899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257228] = 5, + [266535] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4695), 3, + STATE(4882), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 9, + ACTIONS(2610), 9, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -257515,446 +265920,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257254] = 10, + [266561] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5303), 1, - sym__logical_name, - STATE(5577), 1, - sym_selected_name, - STATE(5582), 1, - sym__identifier, - STATE(7784), 1, - sym_selected_name_list, - STATE(4696), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5634), 1, + anon_sym_SEMI, + STATE(5950), 1, + sym__label, + STATE(7421), 1, + sym_when_expression, + STATE(4883), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5636), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [257290] = 5, + [266594] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4697), 3, + STATE(4884), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 9, + ACTIONS(2606), 8, sym_GENERIC, + sym_IS, sym_PARAMETER, - sym_PORT, - sym_USE, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257316] = 5, + [266619] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4698), 3, + STATE(4885), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 9, + ACTIONS(2378), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257342] = 5, + [266644] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4699), 3, + STATE(4886), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 9, + ACTIONS(2662), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257368] = 5, + [266669] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4700), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5638), 1, + anon_sym_SEMI, + STATE(5766), 1, + sym__label, + STATE(7469), 1, + sym_when_expression, + STATE(4887), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 9, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [257394] = 5, + ACTIONS(5636), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [266702] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4701), 3, + STATE(4888), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 9, + ACTIONS(2674), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257420] = 5, + [266727] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4702), 3, + STATE(4889), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 9, + ACTIONS(2374), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257446] = 5, + [266752] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4703), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5640), 1, + anon_sym_SEMI, + STATE(5760), 1, + sym__label, + STATE(7470), 1, + sym_when_expression, + STATE(4890), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 9, + ACTIONS(5636), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [266785] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4891), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2466), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257472] = 5, + [266810] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4704), 3, + STATE(4892), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 9, + ACTIONS(2474), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257498] = 5, + [266835] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4705), 3, + STATE(4893), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 9, + ACTIONS(2498), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257524] = 5, + [266860] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4706), 3, + STATE(4894), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 9, + ACTIONS(2640), 8, sym_GENERIC, - sym_OF, + sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257550] = 5, + [266885] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4707), 3, + STATE(4895), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 9, + ACTIONS(2602), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257576] = 5, + [266910] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4708), 3, + STATE(4896), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 9, + ACTIONS(2502), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257602] = 5, + [266935] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4709), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5642), 1, + anon_sym_SEMI, + STATE(5907), 1, + sym__label, + STATE(7235), 1, + sym_when_expression, + STATE(4897), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 9, - sym_GENERIC, - sym_PARAMETER, - sym_PORT, - sym_USE, + ACTIONS(5636), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [266968] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5644), 1, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [257628] = 5, + STATE(5996), 1, + sym__label, + STATE(7233), 1, + sym_when_expression, + STATE(4898), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5636), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [267001] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4710), 3, + STATE(6247), 1, + sym__alias_designator, + STATE(6335), 1, + sym__identifier, + ACTIONS(5646), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4899), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 9, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [257654] = 5, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [267032] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4711), 3, + STATE(4900), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 9, + ACTIONS(2370), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257680] = 5, + [267057] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4712), 3, + STATE(4901), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 9, + ACTIONS(2506), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257706] = 5, + [267082] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4713), 3, + STATE(4902), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 9, + ACTIONS(2572), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257732] = 5, + [267107] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4714), 3, + STATE(6222), 1, + sym__alias_designator, + STATE(6335), 1, + sym__identifier, + ACTIONS(5646), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4903), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 9, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [267138] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4904), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2576), 8, sym_GENERIC, sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257758] = 9, + [267163] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5610), 1, - anon_sym_SEMI, - STATE(5534), 1, - sym__label, - STATE(7092), 1, - sym_when_expression, - STATE(4715), 3, + STATE(4905), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [257791] = 5, + ACTIONS(2610), 8, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [267188] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4716), 3, + STATE(4906), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 8, + ACTIONS(2636), 8, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -257963,18 +266426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257816] = 5, + [267213] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4717), 3, + STATE(4907), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 8, + ACTIONS(2666), 8, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -257983,18 +266446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257841] = 5, + [267238] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4718), 3, + STATE(4908), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 8, + ACTIONS(2556), 8, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -258003,153 +266466,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [257866] = 9, + [267263] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, + ACTIONS(788), 1, sym_WHEN, - ACTIONS(5614), 1, + ACTIONS(5648), 1, anon_sym_SEMI, - STATE(5392), 1, + STATE(5920), 1, sym__label, - STATE(7162), 1, + STATE(7179), 1, sym_when_expression, - STATE(4719), 3, + STATE(4909), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, + ACTIONS(5636), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [257899] = 8, + [267296] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6113), 1, - sym__identifier, - STATE(6116), 1, - sym__alias_designator, - ACTIONS(5616), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4720), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5650), 1, + anon_sym_SEMI, + STATE(5935), 1, + sym__label, + STATE(7419), 1, + sym_when_expression, + STATE(4910), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5636), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [257930] = 5, + [267329] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4721), 3, + STATE(6202), 1, + sym__alias_designator, + STATE(6335), 1, + sym__identifier, + ACTIONS(5646), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4911), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [257955] = 9, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [267360] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, + ACTIONS(5551), 1, sym_library_namespace, - STATE(5303), 1, + STATE(6007), 1, sym__logical_name, - STATE(5582), 1, + STATE(6019), 1, sym__identifier, - STATE(6242), 1, - sym_selected_name, - STATE(4722), 3, + STATE(7578), 1, + sym_logical_name_list, + STATE(4912), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [257988] = 5, + [267393] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4723), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(5695), 1, + sym_selected_name, + STATE(6019), 1, + sym__identifier, + STATE(4913), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [258013] = 9, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [267426] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, + ACTIONS(5551), 1, sym_library_namespace, - STATE(5303), 1, + STATE(5346), 1, sym__logical_name, - STATE(5582), 1, - sym__identifier, - STATE(5633), 1, + STATE(5693), 1, sym_selected_name, - STATE(4724), 3, + STATE(6019), 1, + sym__identifier, + STATE(4914), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258046] = 5, + [267459] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4725), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5652), 1, + anon_sym_SEMI, + STATE(5704), 1, + sym__label, + STATE(7701), 1, + sym_when_expression, + STATE(4915), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5636), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [267492] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5654), 1, + sym_END, + ACTIONS(5656), 1, + sym_GENERIC, + ACTIONS(5658), 1, + sym_IS, + ACTIONS(5660), 1, + sym_PORT, + STATE(5710), 1, + sym_generic_clause, + STATE(6534), 1, + sym_component_body, + STATE(7110), 1, + sym_port_clause, + STATE(7273), 1, + sym_end_component, + STATE(4916), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [267531] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4917), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 8, + ACTIONS(2670), 8, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -258158,197 +266680,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258071] = 6, + [267556] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5618), 1, - sym_OF, - STATE(4726), 3, + STATE(4918), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(2580), 8, sym_GENERIC, + sym_IS, sym_PARAMETER, - anon_sym_SEMI, + sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258098] = 8, + [267581] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5401), 1, - anon_sym_LPAREN, - ACTIONS(5620), 1, - sym_PARAMETER, - STATE(4882), 1, - sym_parenthesis_group, - STATE(4727), 3, + STATE(4919), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2189), 5, - sym_AFTER, + ACTIONS(2470), 8, sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258129] = 9, + [267606] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5303), 1, - sym__logical_name, - STATE(5522), 1, - sym_selected_name, - STATE(5582), 1, - sym__identifier, - STATE(4728), 3, + STATE(4920), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [258162] = 9, + ACTIONS(2614), 8, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [267631] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, + ACTIONS(788), 1, sym_WHEN, - ACTIONS(5622), 1, + ACTIONS(5662), 1, anon_sym_SEMI, - STATE(5518), 1, + STATE(5912), 1, sym__label, - STATE(7368), 1, + STATE(7177), 1, sym_when_expression, - STATE(4729), 3, + STATE(4921), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, + ACTIONS(5636), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258195] = 9, + [267664] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5624), 1, + STATE(4922), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2450), 8, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [267689] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5664), 1, + sym_OF, + STATE(4923), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2450), 7, + sym_GENERIC, + sym_PARAMETER, anon_sym_SEMI, - STATE(5516), 1, - sym__label, - STATE(7367), 1, - sym_when_expression, - STATE(4730), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [267716] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5525), 1, + sym_operator_symbol, + ACTIONS(5666), 1, + anon_sym_SEMI, + STATE(7206), 1, + sym__identifier, + STATE(8127), 1, + sym__designator, + STATE(4924), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258228] = 5, + [267749] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4731), 3, + STATE(5021), 1, + aux_sym_partial_pathname_repeat1, + STATE(5750), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + STATE(7488), 1, + sym_partial_pathname, + STATE(4925), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5626), 8, + ACTIONS(3808), 4, sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [267782] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(6291), 1, + sym__alias_designator, + STATE(6335), 1, + sym__identifier, + ACTIONS(5646), 2, sym_character_literal, sym_operator_symbol, + STATE(4926), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5578), 4, + sym_identifier, sym_library_constant, - sym_library_constant_std_logic, sym_library_function, sym_library_type, - anon_sym_LT_LT, - [258253] = 5, + [267813] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4732), 3, + ACTIONS(5668), 1, + sym_OF, + STATE(4927), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 8, + ACTIONS(2450), 7, sym_GENERIC, - sym_IS, sym_PARAMETER, - sym_RANGE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258278] = 8, + [267840] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6091), 1, - sym__alias_designator, - STATE(6113), 1, - sym__identifier, - ACTIONS(5616), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4733), 3, + ACTIONS(5670), 1, + sym_OF, + STATE(4928), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [258309] = 5, + ACTIONS(2450), 7, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [267867] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4734), 3, + STATE(4929), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 8, + ACTIONS(2404), 8, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -258357,221 +266938,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258334] = 9, + [267892] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5527), 1, - sym_operator_symbol, - ACTIONS(5628), 1, - anon_sym_SEMI, - STATE(7918), 1, - sym__designator, - STATE(8123), 1, + STATE(6332), 1, + sym__alias_designator, + STATE(6335), 1, sym__identifier, - STATE(4735), 3, + ACTIONS(5646), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4930), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258367] = 9, + [267923] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5303), 1, - sym__logical_name, - STATE(5510), 1, - sym_selected_name, - STATE(5582), 1, - sym__identifier, - STATE(4736), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5672), 1, + anon_sym_SEMI, + STATE(5652), 1, + sym__label, + STATE(6712), 1, + sym_when_expression, + STATE(4931), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5636), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258400] = 5, + [267956] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4737), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5674), 1, + anon_sym_SEMI, + STATE(5675), 1, + sym__label, + STATE(6753), 1, + sym_when_expression, + STATE(4932), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 8, + ACTIONS(5636), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [267989] = 12, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5654), 1, + sym_END, + ACTIONS(5656), 1, sym_GENERIC, + ACTIONS(5658), 1, sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [258425] = 8, + ACTIONS(5660), 1, + sym_PORT, + STATE(5710), 1, + sym_generic_clause, + STATE(6608), 1, + sym_component_body, + STATE(7110), 1, + sym_port_clause, + STATE(7520), 1, + sym_end_component, + STATE(4933), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [268028] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5633), 1, - sym_END, - STATE(5040), 1, - sym_secondary_unit_declaration, - STATE(7920), 1, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(5571), 1, + sym_selected_name, + STATE(6019), 1, sym__identifier, - ACTIONS(5630), 4, + STATE(4934), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - STATE(4738), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_physical_type_definition_repeat1, - [258456] = 6, + [268061] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5635), 1, - sym_OF, - STATE(4739), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5676), 1, + anon_sym_SEMI, + STATE(5716), 1, + sym__label, + STATE(7699), 1, + sym_when_expression, + STATE(4935), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [258483] = 5, + ACTIONS(5636), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [268094] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4740), 3, + STATE(6204), 1, + sym__alias_designator, + STATE(6335), 1, + sym__identifier, + ACTIONS(5646), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4936), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [258508] = 5, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [268125] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4741), 3, + STATE(6335), 1, + sym__identifier, + STATE(6336), 1, + sym__alias_designator, + ACTIONS(5646), 2, + sym_character_literal, + sym_operator_symbol, + STATE(4937), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [258533] = 12, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [268156] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5637), 1, - sym_END, - ACTIONS(5639), 1, - sym_GENERIC, - ACTIONS(5641), 1, - sym_IS, - ACTIONS(5643), 1, - sym_PORT, - STATE(5416), 1, - sym_generic_clause, - STATE(6157), 1, - sym_component_body, - STATE(7213), 1, - sym_end_component, - STATE(7215), 1, - sym_port_clause, - STATE(4742), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(5777), 1, + sym_selected_name, + STATE(6019), 1, + sym__identifier, + STATE(4938), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [258572] = 9, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [268189] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, + ACTIONS(5551), 1, sym_library_namespace, - STATE(5303), 1, + STATE(6007), 1, sym__logical_name, - STATE(5582), 1, + STATE(6019), 1, sym__identifier, - STATE(5764), 1, - sym_selected_name, - STATE(4743), 3, + STATE(7526), 1, + sym_logical_name_list, + STATE(4939), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258605] = 5, + [268222] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4744), 3, + STATE(4940), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 8, + ACTIONS(2528), 8, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -258580,42 +267198,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258630] = 9, + [268247] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, + ACTIONS(5551), 1, sym_library_namespace, - STATE(5303), 1, + STATE(5346), 1, sym__logical_name, - STATE(5393), 1, + STATE(5870), 1, sym_selected_name, - STATE(5582), 1, + STATE(6019), 1, sym__identifier, - STATE(4745), 3, + STATE(4941), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258663] = 5, + [268280] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4746), 3, + STATE(4942), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 8, + ACTIONS(2428), 8, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -258624,266 +267242,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258688] = 5, + [268305] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4747), 3, + ACTIONS(5678), 1, + sym_OF, + STATE(4943), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 8, + ACTIONS(2450), 7, sym_GENERIC, - sym_IS, sym_PARAMETER, - sym_RANGE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258713] = 8, + [268332] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6009), 1, - sym__alias_designator, - STATE(6113), 1, + ACTIONS(5683), 1, + sym_END, + STATE(5330), 1, + sym_secondary_unit_declaration, + STATE(8149), 1, sym__identifier, - ACTIONS(5616), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4748), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5680), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258744] = 9, + STATE(4944), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_physical_type_definition_repeat1, + [268363] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, + ACTIONS(5551), 1, sym_library_namespace, - STATE(5303), 1, + STATE(5346), 1, sym__logical_name, - STATE(5407), 1, + STATE(5651), 1, sym_selected_name, - STATE(5582), 1, + STATE(6019), 1, sym__identifier, - STATE(4749), 3, + STATE(4945), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258777] = 9, + [268396] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5645), 1, - anon_sym_SEMI, - STATE(5537), 1, - sym__label, - STATE(7090), 1, - sym_when_expression, - STATE(4750), 3, + ACTIONS(5685), 1, + sym_OF, + STATE(4946), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [258810] = 9, + ACTIONS(2450), 7, + sym_GENERIC, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [268423] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5647), 1, - anon_sym_SEMI, - STATE(5532), 1, - sym__label, - STATE(6474), 1, - sym_when_expression, - STATE(4751), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(5620), 1, + sym_selected_name, + STATE(6019), 1, + sym__identifier, + STATE(4947), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258843] = 9, + [268456] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5649), 1, - anon_sym_SEMI, - STATE(5529), 1, - sym__label, - STATE(6470), 1, - sym_when_expression, - STATE(4752), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(5592), 1, + sym_selected_name, + STATE(6019), 1, + sym__identifier, + STATE(4948), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258876] = 5, + [268489] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4753), 3, + ACTIONS(5687), 1, + sym_OF, + STATE(4949), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 8, + ACTIONS(2450), 7, sym_GENERIC, - sym_IS, sym_PARAMETER, - sym_RANGE, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [258901] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5651), 1, - anon_sym_SEMI, - STATE(5590), 1, - sym__label, - STATE(6644), 1, - sym_when_expression, - STATE(4754), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5612), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [258934] = 9, + [268516] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5653), 1, - anon_sym_SEMI, - STATE(5584), 1, - sym__label, - STATE(6637), 1, - sym_when_expression, - STATE(4755), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(5638), 1, + sym_selected_name, + STATE(6019), 1, + sym__identifier, + STATE(4950), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [258967] = 6, + [268549] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5655), 1, - sym_OF, - STATE(4756), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2396), 7, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5403), 1, anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [258994] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4757), 3, + ACTIONS(5689), 1, + sym_PARAMETER, + STATE(5030), 1, + sym_parenthesis_group, + STATE(4951), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 8, + ACTIONS(2097), 5, + sym_AFTER, sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [259019] = 5, + [268580] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4758), 3, + STATE(4952), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 8, + ACTIONS(2420), 8, sym_GENERIC, sym_IS, sym_PARAMETER, @@ -258892,647 +267467,635 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [259044] = 12, + [268605] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5637), 1, - sym_END, - ACTIONS(5639), 1, - sym_GENERIC, - ACTIONS(5641), 1, - sym_IS, - ACTIONS(5643), 1, - sym_PORT, - STATE(5416), 1, - sym_generic_clause, - STATE(6418), 1, - sym_component_body, - STATE(7215), 1, - sym_port_clause, - STATE(7556), 1, - sym_end_component, - STATE(4759), 3, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(5346), 1, + sym__logical_name, + STATE(6019), 1, + sym__identifier, + STATE(6061), 1, + sym_selected_name, + STATE(4953), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [259083] = 9, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [268638] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5303), 1, - sym__logical_name, - STATE(5438), 1, - sym_selected_name, - STATE(5582), 1, - sym__identifier, - STATE(4760), 3, + STATE(4954), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5691), 8, sym_identifier, + sym_character_literal, + sym_operator_symbol, sym_library_constant, + sym_library_constant_std_logic, sym_library_function, sym_library_type, - [259116] = 9, + anon_sym_LT_LT, + [268663] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5303), 1, - sym__logical_name, - STATE(5582), 1, - sym__identifier, - STATE(5665), 1, - sym_selected_name, - STATE(4761), 3, + STATE(4955), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [259149] = 9, + ACTIONS(2424), 8, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RANGE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [268688] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, + ACTIONS(5551), 1, sym_library_namespace, - STATE(5303), 1, + STATE(5346), 1, sym__logical_name, - STATE(5411), 1, + STATE(5740), 1, sym_selected_name, - STATE(5582), 1, + STATE(6019), 1, sym__identifier, - STATE(4762), 3, + STATE(4956), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [259182] = 12, + [268721] = 12, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5637), 1, + ACTIONS(5654), 1, sym_END, - ACTIONS(5639), 1, + ACTIONS(5656), 1, sym_GENERIC, - ACTIONS(5641), 1, + ACTIONS(5658), 1, sym_IS, - ACTIONS(5643), 1, + ACTIONS(5660), 1, sym_PORT, - STATE(5416), 1, + STATE(5710), 1, sym_generic_clause, - STATE(6344), 1, + STATE(6413), 1, sym_component_body, - STATE(7196), 1, + STATE(7097), 1, sym_end_component, - STATE(7215), 1, + STATE(7110), 1, sym_port_clause, - STATE(4763), 3, + STATE(4957), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [259221] = 9, + [268760] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5569), 1, - sym__logical_name, - STATE(5582), 1, - sym__identifier, - STATE(7783), 1, - sym_logical_name_list, - STATE(4764), 3, + STATE(4958), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [259254] = 5, + ACTIONS(5584), 7, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_THEN, + sym__XNOR, + sym__XOR, + [268784] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4765), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2618), 8, + ACTIONS(5693), 1, + anon_sym_SEMI, + ACTIONS(5695), 1, + anon_sym_LPAREN, + ACTIONS(5697), 1, sym_GENERIC, + ACTIONS(5699), 1, sym_IS, + ACTIONS(5701), 1, sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259279] = 8, + STATE(5494), 1, + sym_subprogram_header, + STATE(8307), 1, + sym_parameter_list_specification, + STATE(4959), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [268820] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6113), 1, - sym__identifier, - STATE(6128), 1, - sym__alias_designator, - ACTIONS(5616), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4766), 3, + ACTIONS(5443), 1, + sym_RANGE, + STATE(5227), 1, + sym_range_constraint, + STATE(4960), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [259310] = 6, + ACTIONS(5703), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + [268848] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5657), 1, - sym_OF, - STATE(4767), 3, + STATE(4961), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, - sym_GENERIC, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259337] = 5, + ACTIONS(5584), 7, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_RPAREN, + [268872] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4768), 3, + ACTIONS(5705), 1, + anon_sym_SEMI, + ACTIONS(5707), 1, + sym_CONTEXT, + STATE(7595), 1, + sym__identifier, + STATE(4962), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259362] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [268902] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4769), 3, + ACTIONS(5709), 1, + sym_operator_symbol, + STATE(5132), 1, + sym__designator, + STATE(5433), 1, + sym__identifier, + STATE(4963), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259387] = 5, + ACTIONS(4881), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [268932] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4770), 3, + ACTIONS(5711), 1, + anon_sym_SEMI, + ACTIONS(5713), 1, + sym_ENTITY, + STATE(7597), 1, + sym__identifier, + STATE(4964), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259412] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [268962] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4771), 3, + STATE(4965), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259437] = 5, + ACTIONS(5715), 7, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_RPAREN, + [268986] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4772), 3, + STATE(4966), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259462] = 9, + ACTIONS(5715), 7, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_THEN, + sym__XNOR, + sym__XOR, + [269010] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5569), 1, - sym__logical_name, - STATE(5582), 1, - sym__identifier, - STATE(7387), 1, - sym_logical_name_list, - STATE(4773), 3, + ACTIONS(5717), 1, + anon_sym_SEMI, + ACTIONS(5719), 1, + anon_sym_QMARK, + STATE(8167), 1, + sym__label, + STATE(4967), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [259495] = 5, + [269040] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4774), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(2662), 8, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5723), 1, sym_GENERIC, + ACTIONS(5725), 1, sym_IS, + ACTIONS(5727), 1, sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259520] = 8, + ACTIONS(5729), 1, + sym_RETURN, + STATE(5387), 1, + sym_subprogram_header, + STATE(6957), 1, + sym_parameter_list_specification, + STATE(4968), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [269076] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6026), 1, - sym__alias_designator, - STATE(6113), 1, + ACTIONS(5731), 1, + anon_sym_SEMI, + ACTIONS(5733), 1, + sym_COMPONENT, + STATE(8208), 1, sym__identifier, - ACTIONS(5616), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4775), 3, + STATE(4969), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [259551] = 5, + [269106] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4776), 3, + STATE(4970), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259576] = 9, + ACTIONS(5735), 7, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym__XNOR, + sym__XOR, + anon_sym_RPAREN, + [269130] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5303), 1, - sym__logical_name, - STATE(5582), 1, - sym__identifier, - STATE(5702), 1, - sym_selected_name, - STATE(4777), 3, + ACTIONS(5737), 1, + anon_sym_SEMI, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5741), 1, + sym_ON, + ACTIONS(5743), 1, + sym_UNTIL, + STATE(5199), 1, + sym_sensitivity_clause, + STATE(5952), 1, + sym_condition_clause, + STATE(7176), 1, + sym_timeout_clause, + STATE(4971), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [259609] = 8, + [269166] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6012), 1, - sym__alias_designator, - STATE(6113), 1, - sym__identifier, - ACTIONS(5616), 2, - sym_character_literal, - sym_operator_symbol, - STATE(4778), 3, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5723), 1, + sym_GENERIC, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(5729), 1, + sym_RETURN, + ACTIONS(5745), 1, + sym_IS, + STATE(5387), 1, + sym_subprogram_header, + STATE(6957), 1, + sym_parameter_list_specification, + STATE(4972), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [259640] = 9, + [269202] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5659), 1, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(5747), 1, anon_sym_SEMI, - STATE(5609), 1, - sym__label, - STATE(7485), 1, - sym_when_expression, - STATE(4779), 3, + ACTIONS(5749), 1, + sym_USE, + STATE(1385), 1, + sym_binding_indication, + STATE(5944), 1, + sym_generic_map_aspect, + STATE(6974), 1, + sym_port_map_aspect, + STATE(4973), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [259673] = 9, + [269238] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5661), 1, - anon_sym_SEMI, - STATE(5617), 1, - sym__label, - STATE(7486), 1, - sym_when_expression, - STATE(4780), 3, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5723), 1, + sym_GENERIC, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(5729), 1, + sym_RETURN, + ACTIONS(5751), 1, + sym_IS, + STATE(5387), 1, + sym_subprogram_header, + STATE(6957), 1, + sym_parameter_list_specification, + STATE(4974), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [259706] = 9, + [269274] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4804), 1, - aux_sym_partial_pathname_repeat1, - STATE(5614), 1, - sym__identifier, - STATE(6506), 1, - sym_partial_pathname, - STATE(7029), 1, - sym_pathname_element, - STATE(4781), 3, + STATE(4975), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [259739] = 9, + ACTIONS(2882), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + sym_variable_assignment, + anon_sym_GT_GT, + anon_sym_PIPE, + [269298] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5663), 1, + ACTIONS(5753), 1, anon_sym_SEMI, - STATE(5400), 1, - sym__label, - STATE(7160), 1, - sym_when_expression, - STATE(4782), 3, + ACTIONS(5755), 1, + sym_CONFIGURATION, + STATE(8214), 1, + sym__identifier, + STATE(4976), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5612), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [259772] = 8, + [269328] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6051), 1, - sym__alias_designator, - STATE(6113), 1, - sym__identifier, - ACTIONS(5616), 2, + ACTIONS(5757), 1, sym_character_literal, - sym_operator_symbol, - STATE(4783), 3, + STATE(5588), 1, + sym_enumeration_literal, + STATE(6231), 1, + sym__identifier, + STATE(4977), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [259803] = 5, + [269358] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4784), 3, + ACTIONS(5761), 1, + sym_operator_symbol, + STATE(5384), 1, + sym__designator, + STATE(5745), 1, + sym__identifier, + STATE(4978), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 8, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RANGE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259828] = 5, + ACTIONS(5759), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [269388] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4785), 3, + STATE(4979), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 8, + ACTIONS(2528), 7, + sym_AFTER, sym_GENERIC, - sym_IS, sym_PARAMETER, - sym_RANGE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [259853] = 8, + [269412] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5665), 1, + ACTIONS(5763), 1, anon_sym_SEMI, - ACTIONS(5667), 1, - sym_PACKAGE, - STATE(6532), 1, + ACTIONS(5765), 1, + sym_ARCHITECTURE, + STATE(8207), 1, sym__identifier, - STATE(4786), 3, + STATE(4980), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [259883] = 5, + [269442] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4787), 3, + STATE(4981), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 7, + ACTIONS(2428), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -259540,415 +268103,567 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [259907] = 8, + [269466] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5671), 1, + ACTIONS(5761), 1, sym_operator_symbol, - STATE(4793), 1, + STATE(5521), 1, sym__designator, - STATE(5118), 1, + STATE(5745), 1, sym__identifier, - STATE(4788), 3, + STATE(4982), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5669), 4, + ACTIONS(5759), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [259937] = 5, + [269496] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4789), 3, + ACTIONS(5767), 1, + sym_ELSE, + ACTIONS(5769), 1, + sym_ELSIF, + ACTIONS(5771), 1, + sym_END, + STATE(5184), 1, + aux_sym_if_generate_statement_repeat1, + STATE(5591), 1, + sym_elsif_generate, + STATE(6445), 1, + sym_else_generate, + STATE(7015), 1, + sym_end_generate, + STATE(4983), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [259961] = 8, + [269532] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5671), 1, - sym_operator_symbol, - STATE(4845), 1, - sym__designator, - STATE(5118), 1, + ACTIONS(5773), 1, + anon_sym_SEMI, + ACTIONS(5775), 1, + sym_PACKAGE, + STATE(8068), 1, sym__identifier, - STATE(4790), 3, + STATE(4984), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5669), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [259991] = 11, + [269562] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5673), 1, - sym_ELSE, - ACTIONS(5675), 1, - sym_ELSIF, - ACTIONS(5677), 1, + ACTIONS(2992), 1, sym_END, - STATE(5109), 1, - aux_sym_if_generate_statement_repeat1, - STATE(5700), 1, - sym_elsif_generate, - STATE(6254), 1, - sym_else_generate, - STATE(6859), 1, - sym_end_generate, - STATE(4791), 3, + ACTIONS(5517), 1, + sym_FOR, + STATE(5129), 1, + aux_sym_block_configuration_repeat2, + STATE(6110), 1, + sym__configuration_item, + STATE(8242), 1, + sym_end_for, + STATE(6109), 2, + sym_block_configuration, + sym_component_configuration, + STATE(4985), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260027] = 8, + [269596] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5671), 1, + ACTIONS(5779), 1, sym_operator_symbol, - STATE(4892), 1, + STATE(5137), 1, sym__designator, - STATE(5118), 1, + STATE(5295), 1, sym__identifier, - STATE(4792), 3, + STATE(4986), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5669), 4, + ACTIONS(5777), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [260057] = 11, + [269626] = 10, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2992), 1, + sym_END, + ACTIONS(5517), 1, + sym_FOR, + STATE(5129), 1, + aux_sym_block_configuration_repeat2, + STATE(6110), 1, + sym__configuration_item, + STATE(8261), 1, + sym_end_for, + STATE(6109), 2, + sym_block_configuration, + sym_component_configuration, + STATE(4987), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [269660] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, + ACTIONS(5781), 1, anon_sym_LPAREN, - ACTIONS(5681), 1, + ACTIONS(5783), 1, sym_GENERIC, - ACTIONS(5683), 1, - sym_IS, - ACTIONS(5685), 1, + ACTIONS(5785), 1, sym_PARAMETER, - ACTIONS(5687), 1, - sym_RETURN, - STATE(5370), 1, + STATE(5331), 1, sym_subprogram_header, - STATE(7148), 1, + STATE(6475), 1, sym_parameter_list_specification, - STATE(4793), 3, + ACTIONS(5693), 2, + sym_IS, + anon_sym_SEMI, + STATE(4988), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260093] = 8, + [269694] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5689), 1, - anon_sym_SEMI, - ACTIONS(5691), 1, - sym_PACKAGE, - STATE(7861), 1, + ACTIONS(5551), 1, + sym_library_namespace, + STATE(6019), 1, sym__identifier, - STATE(4794), 3, + STATE(6400), 1, + sym__logical_name, + STATE(4989), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [260123] = 8, + [269724] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5693), 1, - anon_sym_SEMI, - ACTIONS(5695), 1, - anon_sym_QMARK, - STATE(7955), 1, - sym__label, - STATE(4795), 3, + STATE(4990), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + ACTIONS(3766), 7, sym_identifier, + sym__NOT, + sym_directive_constant_builtin, sym_library_constant, sym_library_function, sym_library_type, - [260153] = 5, + anon_sym_LPAREN, + [269748] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4796), 3, + ACTIONS(5767), 1, + sym_ELSE, + ACTIONS(5769), 1, + sym_ELSIF, + ACTIONS(5771), 1, + sym_END, + STATE(4983), 1, + aux_sym_if_generate_statement_repeat1, + STATE(5591), 1, + sym_elsif_generate, + STATE(6454), 1, + sym_else_generate, + STATE(7039), 1, + sym_end_generate, + STATE(4991), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [260177] = 11, + [269784] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5697), 1, - anon_sym_SEMI, - ACTIONS(5699), 1, + ACTIONS(5739), 1, sym_FOR, - ACTIONS(5701), 1, + ACTIONS(5741), 1, sym_ON, - ACTIONS(5703), 1, + ACTIONS(5743), 1, sym_UNTIL, - STATE(5157), 1, + ACTIONS(5787), 1, + anon_sym_SEMI, + STATE(5269), 1, sym_sensitivity_clause, - STATE(5607), 1, + STATE(5615), 1, sym_condition_clause, - STATE(7480), 1, + STATE(6667), 1, sym_timeout_clause, - STATE(4797), 3, + STATE(4992), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260213] = 11, + [269820] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5673), 1, - sym_ELSE, - ACTIONS(5675), 1, - sym_ELSIF, - ACTIONS(5677), 1, - sym_END, - STATE(4791), 1, - aux_sym_if_generate_statement_repeat1, - STATE(5700), 1, - sym_elsif_generate, - STATE(6270), 1, - sym_else_generate, - STATE(6889), 1, - sym_end_generate, - STATE(4798), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(5789), 1, + anon_sym_SEMI, + ACTIONS(5791), 1, + sym_USE, + STATE(2985), 1, + sym_binding_indication, + STATE(5690), 1, + sym_generic_map_aspect, + STATE(7518), 1, + sym_port_map_aspect, + STATE(4993), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260249] = 11, + [269856] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5681), 1, + ACTIONS(5723), 1, sym_GENERIC, - ACTIONS(5685), 1, + ACTIONS(5727), 1, sym_PARAMETER, - ACTIONS(5687), 1, - sym_RETURN, - ACTIONS(5705), 1, + ACTIONS(5793), 1, sym_IS, - STATE(5370), 1, + ACTIONS(5795), 1, + sym_RETURN, + STATE(5510), 1, sym_subprogram_header, - STATE(7148), 1, + STATE(7515), 1, sym_parameter_list_specification, - STATE(4799), 3, + STATE(4994), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260285] = 8, + [269892] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5709), 1, + ACTIONS(5799), 1, sym_operator_symbol, - STATE(5275), 1, + STATE(4996), 1, sym__designator, - STATE(5806), 1, + STATE(5241), 1, sym__identifier, - STATE(4800), 3, + STATE(4995), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5707), 4, + ACTIONS(5797), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [260315] = 8, + [269922] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5713), 1, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5723), 1, + sym_GENERIC, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(5795), 1, + sym_RETURN, + ACTIONS(5801), 1, + sym_IS, + STATE(5510), 1, + sym_subprogram_header, + STATE(7515), 1, + sym_parameter_list_specification, + STATE(4996), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [269958] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5803), 1, sym_operator_symbol, - STATE(4903), 1, + STATE(4999), 1, sym__designator, - STATE(5082), 1, + STATE(5319), 1, sym__identifier, - STATE(4801), 3, + STATE(4997), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5711), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [260345] = 11, + [269988] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5741), 1, + sym_ON, + ACTIONS(5743), 1, + sym_UNTIL, + ACTIONS(5805), 1, + anon_sym_SEMI, + STATE(5195), 1, + sym_sensitivity_clause, + STATE(6011), 1, + sym_condition_clause, + STATE(7416), 1, + sym_timeout_clause, + STATE(4998), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [270024] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5693), 1, + anon_sym_SEMI, + ACTIONS(5695), 1, + anon_sym_LPAREN, + ACTIONS(5697), 1, + sym_GENERIC, + ACTIONS(5701), 1, + sym_PARAMETER, + ACTIONS(5807), 1, + sym_IS, + STATE(5494), 1, + sym_subprogram_header, + STATE(8307), 1, + sym_parameter_list_specification, + STATE(4999), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [270060] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5723), 1, + sym_GENERIC, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(5729), 1, + sym_RETURN, + ACTIONS(5809), 1, + sym_IS, + STATE(5387), 1, + sym_subprogram_header, + STATE(6957), 1, + sym_parameter_list_specification, + STATE(5000), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [270096] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, + ACTIONS(5811), 1, sym_ELSE, - ACTIONS(5717), 1, + ACTIONS(5813), 1, sym_ELSIF, - ACTIONS(5719), 1, + ACTIONS(5815), 1, sym_END, - STATE(5059), 1, + STATE(5070), 1, aux_sym_if_statement_block_repeat1, - STATE(5505), 1, + STATE(5587), 1, sym_elsif_statement, - STATE(5955), 1, + STATE(6600), 1, sym_else_statement, - STATE(7872), 1, + STATE(6689), 1, sym_end_if, - STATE(4802), 3, + STATE(5001), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260381] = 5, + [270132] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4803), 3, + STATE(7695), 1, + sym__conditional_analysis_operator, + ACTIONS(5819), 2, + anon_sym_LT, + anon_sym_GT, + STATE(5002), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5817), 4, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + [270160] = 11, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5811), 1, + sym_ELSE, + ACTIONS(5813), 1, + sym_ELSIF, + ACTIONS(5815), 1, + sym_END, + STATE(5314), 1, + aux_sym_if_statement_block_repeat1, + STATE(5587), 1, + sym_elsif_statement, + STATE(6481), 1, + sym_else_statement, + STATE(7122), 1, + sym_end_if, + STATE(5003), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2793), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - sym_variable_assignment, - anon_sym_GT_GT, - anon_sym_PIPE, - [260405] = 8, + [270196] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4866), 1, - aux_sym_partial_pathname_repeat1, - STATE(5423), 1, + ACTIONS(5803), 1, + sym_operator_symbol, + STATE(4959), 1, + sym__designator, + STATE(5319), 1, sym__identifier, - STATE(7029), 1, - sym_pathname_element, - STATE(4804), 3, + STATE(5004), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5363), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [260435] = 11, + [270226] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, - sym_ELSE, - ACTIONS(5717), 1, - sym_ELSIF, - ACTIONS(5719), 1, - sym_END, - STATE(5059), 1, - aux_sym_if_statement_block_repeat1, - STATE(5505), 1, - sym_elsif_statement, - STATE(6289), 1, - sym_else_statement, - STATE(7021), 1, - sym_end_if, - STATE(4805), 3, + STATE(5005), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260471] = 11, + ACTIONS(5735), 7, + sym__AND, + sym__NAND, + sym__NOR, + sym__OR, + sym_THEN, + sym__XNOR, + sym__XOR, + [270250] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -259956,54 +268671,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, sym__block_comment_start, ACTIONS(5721), 1, - anon_sym_SEMI, - ACTIONS(5723), 1, anon_sym_LPAREN, - ACTIONS(5725), 1, + ACTIONS(5723), 1, sym_GENERIC, ACTIONS(5727), 1, - sym_IS, - ACTIONS(5729), 1, sym_PARAMETER, - STATE(5314), 1, + ACTIONS(5729), 1, + sym_RETURN, + ACTIONS(5821), 1, + sym_IS, + STATE(5387), 1, sym_subprogram_header, - STATE(8085), 1, + STATE(6957), 1, sym_parameter_list_specification, - STATE(4806), 3, + STATE(5006), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260507] = 5, + [270286] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4807), 3, + STATE(5007), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3710), 7, - sym_identifier, - sym__NOT, - sym_directive_constant_builtin, - sym_library_constant, - sym_library_function, - sym_library_type, + ACTIONS(2424), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, anon_sym_LPAREN, - [260531] = 5, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [270310] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4808), 3, + STATE(5008), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2552), 7, + ACTIONS(2420), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -260011,87 +268726,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [260555] = 11, + [270334] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, + ACTIONS(5811), 1, sym_ELSE, - ACTIONS(5717), 1, + ACTIONS(5813), 1, sym_ELSIF, - ACTIONS(5719), 1, + ACTIONS(5815), 1, sym_END, - STATE(4805), 1, + STATE(5003), 1, aux_sym_if_statement_block_repeat1, - STATE(5505), 1, + STATE(5587), 1, sym_elsif_statement, - STATE(6302), 1, + STATE(6494), 1, sym_else_statement, - STATE(7081), 1, + STATE(7173), 1, sym_end_if, - STATE(4809), 3, + STATE(5009), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260591] = 11, + [270370] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, + ACTIONS(5811), 1, sym_ELSE, - ACTIONS(5717), 1, + ACTIONS(5813), 1, sym_ELSIF, - ACTIONS(5719), 1, + ACTIONS(5815), 1, sym_END, - STATE(5059), 1, + STATE(5314), 1, aux_sym_if_statement_block_repeat1, - STATE(5505), 1, + STATE(5587), 1, sym_elsif_statement, - STATE(6302), 1, + STATE(6494), 1, sym_else_statement, - STATE(7081), 1, + STATE(7173), 1, sym_end_if, - STATE(4810), 3, + STATE(5010), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260627] = 5, + [270406] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4811), 3, + ACTIONS(5767), 1, + sym_ELSE, + ACTIONS(5769), 1, + sym_ELSIF, + ACTIONS(5771), 1, + sym_END, + STATE(5184), 1, + aux_sym_if_generate_statement_repeat1, + STATE(5591), 1, + sym_elsif_generate, + STATE(6500), 1, + sym_else_generate, + STATE(7199), 1, + sym_end_generate, + STATE(5011), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2548), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [260651] = 5, + [270442] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4812), 3, + ACTIONS(5811), 1, + sym_ELSE, + ACTIONS(5813), 1, + sym_ELSIF, + ACTIONS(5815), 1, + sym_END, + STATE(5040), 1, + aux_sym_if_statement_block_repeat1, + STATE(5587), 1, + sym_elsif_statement, + STATE(6272), 1, + sym_else_statement, + STATE(7740), 1, + sym_end_if, + STATE(5012), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2572), 7, + [270478] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5013), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2404), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -260099,90 +268845,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [260675] = 11, + [270502] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5673), 1, - sym_ELSE, - ACTIONS(5675), 1, - sym_ELSIF, - ACTIONS(5677), 1, - sym_END, - STATE(5109), 1, - aux_sym_if_generate_statement_repeat1, - STATE(5700), 1, - sym_elsif_generate, - STATE(6307), 1, - sym_else_generate, - STATE(7116), 1, - sym_end_generate, - STATE(4813), 3, + ACTIONS(5823), 1, + anon_sym_SEMI, + ACTIONS(5825), 1, + sym_PACKAGE, + STATE(7671), 1, + sym__identifier, + STATE(5014), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260711] = 8, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [270532] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5731), 1, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5741), 1, + sym_ON, + ACTIONS(5743), 1, + sym_UNTIL, + ACTIONS(5827), 1, anon_sym_SEMI, - ACTIONS(5733), 1, - sym_ARCHITECTURE, - STATE(7990), 1, - sym__identifier, - STATE(4814), 3, + STATE(5333), 1, + sym_sensitivity_clause, + STATE(5821), 1, + sym_condition_clause, + STATE(7227), 1, + sym_timeout_clause, + STATE(5015), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [260741] = 11, + [270568] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, + ACTIONS(5811), 1, sym_ELSE, - ACTIONS(5717), 1, + ACTIONS(5813), 1, sym_ELSIF, - ACTIONS(5719), 1, + ACTIONS(5815), 1, sym_END, - STATE(4810), 1, + STATE(5010), 1, aux_sym_if_statement_block_repeat1, - STATE(5505), 1, + STATE(5587), 1, sym_elsif_statement, - STATE(6319), 1, + STATE(6507), 1, sym_else_statement, - STATE(7150), 1, + STATE(7225), 1, sym_end_if, - STATE(4815), 3, + STATE(5016), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260777] = 5, + [270604] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4816), 3, + STATE(5017), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(2450), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -260190,108 +268936,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [260801] = 10, + [270628] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5735), 1, - anon_sym_LPAREN, - ACTIONS(5737), 1, - sym_GENERIC, - ACTIONS(5739), 1, - sym_PARAMETER, - STATE(5033), 1, - sym_subprogram_header, - STATE(6181), 1, - sym_parameter_list_specification, - ACTIONS(5721), 2, - sym_IS, - anon_sym_SEMI, - STATE(4817), 3, + STATE(5018), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260835] = 11, + ACTIONS(2606), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [270652] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5673), 1, + ACTIONS(5767), 1, sym_ELSE, - ACTIONS(5675), 1, + ACTIONS(5769), 1, sym_ELSIF, - ACTIONS(5677), 1, + ACTIONS(5771), 1, sym_END, - STATE(4813), 1, + STATE(5184), 1, aux_sym_if_generate_statement_repeat1, - STATE(5700), 1, + STATE(5591), 1, sym_elsif_generate, - STATE(6332), 1, + STATE(6354), 1, sym_else_generate, - STATE(7178), 1, + STATE(7566), 1, sym_end_generate, - STATE(4818), 3, + STATE(5019), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [260871] = 5, + [270688] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4819), 3, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5741), 1, + sym_ON, + ACTIONS(5743), 1, + sym_UNTIL, + ACTIONS(5829), 1, + anon_sym_SEMI, + STATE(5308), 1, + sym_sensitivity_clause, + STATE(5791), 1, + sym_condition_clause, + STATE(7704), 1, + sym_timeout_clause, + STATE(5020), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2404), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [260895] = 8, + [270724] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5671), 1, - sym_operator_symbol, - STATE(4825), 1, - sym__designator, - STATE(5118), 1, + STATE(5042), 1, + aux_sym_partial_pathname_repeat1, + STATE(5589), 1, sym__identifier, - STATE(4820), 3, + STATE(6824), 1, + sym_pathname_element, + STATE(5021), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5669), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [260925] = 5, + [270754] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4821), 3, + STATE(5022), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2430), 7, + ACTIONS(2580), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -260299,65 +269046,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [260949] = 8, + [270778] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5671), 1, - sym_operator_symbol, - STATE(4799), 1, - sym__designator, - STATE(5118), 1, - sym__identifier, - STATE(4822), 3, + STATE(5023), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5669), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [260979] = 11, + ACTIONS(2670), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [270802] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, + ACTIONS(5767), 1, + sym_ELSE, + ACTIONS(5769), 1, + sym_ELSIF, + ACTIONS(5771), 1, sym_END, - ACTIONS(5441), 1, - sym_FOR, - ACTIONS(5741), 1, - sym_USE, - STATE(5142), 1, - aux_sym_configuration_head_repeat2, - STATE(5882), 1, - sym_block_configuration, - STATE(7044), 1, - sym_verification_unit_binding_indication, - STATE(8067), 1, - sym_end_for, - STATE(4823), 3, + STATE(5011), 1, + aux_sym_if_generate_statement_repeat1, + STATE(5591), 1, + sym_elsif_generate, + STATE(6522), 1, + sym_else_generate, + STATE(7252), 1, + sym_end_generate, + STATE(5024), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261015] = 5, + [270838] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4824), 3, + STATE(5025), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 7, + ACTIONS(2556), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -260365,279 +269109,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [261039] = 11, + [270862] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5681), 1, - sym_GENERIC, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(5727), 1, - sym_IS, - ACTIONS(5743), 1, - sym_RETURN, - STATE(5260), 1, - sym_subprogram_header, - STATE(7616), 1, - sym_parameter_list_specification, - STATE(4825), 3, + STATE(5026), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261075] = 8, + ACTIONS(2666), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [270886] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5671), 1, - sym_operator_symbol, - STATE(4843), 1, - sym__designator, - STATE(5118), 1, - sym__identifier, - STATE(4826), 3, + STATE(5027), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5669), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [261105] = 11, + ACTIONS(2636), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [270910] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, - sym_ELSE, - ACTIONS(5717), 1, - sym_ELSIF, - ACTIONS(5719), 1, - sym_END, - STATE(5059), 1, - aux_sym_if_statement_block_repeat1, - STATE(5505), 1, - sym_elsif_statement, - STATE(6365), 1, - sym_else_statement, - STATE(6547), 1, - sym_end_if, - STATE(4827), 3, + STATE(5028), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261141] = 10, + ACTIONS(2470), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [270934] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5501), 1, - sym_FOR, - STATE(4985), 1, - aux_sym_block_configuration_repeat2, - STATE(5920), 1, - sym__configuration_item, - STATE(7219), 1, - sym_end_for, - STATE(5919), 2, - sym_block_configuration, - sym_component_configuration, - STATE(4828), 3, + STATE(5029), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261175] = 11, + ACTIONS(2576), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [270958] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5673), 1, - sym_ELSE, - ACTIONS(5675), 1, - sym_ELSIF, - ACTIONS(5677), 1, - sym_END, - STATE(4841), 1, - aux_sym_if_generate_statement_repeat1, - STATE(5700), 1, - sym_elsif_generate, - STATE(6212), 1, - sym_else_generate, - STATE(6911), 1, - sym_end_generate, - STATE(4829), 3, + STATE(5030), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261211] = 11, + ACTIONS(2572), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [270982] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, - sym_GENERIC, - ACTIONS(5745), 1, - anon_sym_SEMI, - ACTIONS(5747), 1, - sym_USE, - STATE(2846), 1, - sym_binding_indication, - STATE(5658), 1, - sym_generic_map_aspect, - STATE(7618), 1, - sym_port_map_aspect, - STATE(4830), 3, + STATE(5031), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261247] = 8, + ACTIONS(2506), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [271006] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5749), 1, - sym_operator_symbol, - STATE(4817), 1, - sym__designator, - STATE(5026), 1, - sym__identifier, - STATE(4831), 3, + STATE(5032), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5359), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [261277] = 11, + ACTIONS(2370), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [271030] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, - sym_ELSE, - ACTIONS(5717), 1, - sym_ELSIF, - ACTIONS(5719), 1, - sym_END, - STATE(4827), 1, - aux_sym_if_statement_block_repeat1, - STATE(5505), 1, - sym_elsif_statement, - STATE(6347), 1, - sym_else_statement, - STATE(6591), 1, - sym_end_if, - STATE(4832), 3, + ACTIONS(5799), 1, + sym_operator_symbol, + STATE(4994), 1, + sym__designator, + STATE(5241), 1, + sym__identifier, + STATE(5033), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261313] = 10, + ACTIONS(5797), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [271060] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, + ACTIONS(2992), 1, sym_END, - ACTIONS(5501), 1, + ACTIONS(5517), 1, sym_FOR, - STATE(4985), 1, + STATE(5129), 1, aux_sym_block_configuration_repeat2, - STATE(5920), 1, + STATE(6110), 1, sym__configuration_item, - STATE(7226), 1, + STATE(7297), 1, sym_end_for, - STATE(5919), 2, + STATE(6109), 2, sym_block_configuration, sym_component_configuration, - STATE(4833), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [261347] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5751), 1, - anon_sym_SEMI, - ACTIONS(5753), 1, - sym_ENTITY, - STATE(7570), 1, - sym__identifier, - STATE(4834), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [261377] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5671), 1, - sym_operator_symbol, - STATE(4861), 1, - sym__designator, - STATE(5118), 1, - sym__identifier, - STATE(4835), 3, + STATE(5034), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5669), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [261407] = 5, + [271094] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4836), 3, + STATE(5035), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2434), 7, + ACTIONS(2502), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -260645,186 +269307,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [261431] = 8, + [271118] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5755), 1, - sym_operator_symbol, - STATE(4946), 1, - sym__designator, - STATE(5258), 1, - sym__identifier, - STATE(4837), 3, + ACTIONS(2992), 1, + sym_END, + ACTIONS(5465), 1, + sym_FOR, + ACTIONS(5831), 1, + sym_USE, + STATE(5054), 1, + aux_sym_configuration_head_repeat2, + STATE(6075), 1, + sym_block_configuration, + STATE(7141), 1, + sym_verification_unit_binding_indication, + STATE(8271), 1, + sym_end_for, + STATE(5036), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4861), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [261461] = 10, + [271154] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, + ACTIONS(2992), 1, sym_END, - ACTIONS(5501), 1, + ACTIONS(5465), 1, sym_FOR, - STATE(4985), 1, - aux_sym_block_configuration_repeat2, - STATE(5920), 1, - sym__configuration_item, - STATE(8040), 1, - sym_end_for, - STATE(5919), 2, + ACTIONS(5831), 1, + sym_USE, + STATE(5334), 1, + aux_sym_configuration_head_repeat2, + STATE(6075), 1, sym_block_configuration, - sym_component_configuration, - STATE(4838), 3, + STATE(7141), 1, + sym_verification_unit_binding_indication, + STATE(8271), 1, + sym_end_for, + STATE(5037), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261495] = 11, + [271190] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5701), 1, - sym_ON, - ACTIONS(5703), 1, - sym_UNTIL, - ACTIONS(5757), 1, - anon_sym_SEMI, - STATE(5000), 1, - sym_sensitivity_clause, - STATE(5547), 1, - sym_condition_clause, - STATE(6613), 1, - sym_timeout_clause, - STATE(4839), 3, + STATE(5038), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261531] = 11, + ACTIONS(2610), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [271214] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5673), 1, - sym_ELSE, - ACTIONS(5675), 1, - sym_ELSIF, - ACTIONS(5677), 1, + ACTIONS(2992), 1, sym_END, - STATE(4893), 1, - aux_sym_if_generate_statement_repeat1, - STATE(5700), 1, - sym_elsif_generate, - STATE(6403), 1, - sym_else_generate, - STATE(7567), 1, - sym_end_generate, - STATE(4840), 3, + ACTIONS(5517), 1, + sym_FOR, + STATE(5129), 1, + aux_sym_block_configuration_repeat2, + STATE(6110), 1, + sym__configuration_item, + STATE(7300), 1, + sym_end_for, + STATE(6109), 2, + sym_block_configuration, + sym_component_configuration, + STATE(5039), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261567] = 11, + [271248] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5673), 1, + ACTIONS(5811), 1, sym_ELSE, - ACTIONS(5675), 1, + ACTIONS(5813), 1, sym_ELSIF, - ACTIONS(5677), 1, + ACTIONS(5815), 1, sym_END, - STATE(5109), 1, - aux_sym_if_generate_statement_repeat1, - STATE(5700), 1, - sym_elsif_generate, - STATE(5902), 1, - sym_else_generate, - STATE(7991), 1, - sym_end_generate, - STATE(4841), 3, + STATE(5314), 1, + aux_sym_if_statement_block_repeat1, + STATE(5587), 1, + sym_elsif_statement, + STATE(6156), 1, + sym_else_statement, + STATE(8082), 1, + sym_end_if, + STATE(5040), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261603] = 8, + [271284] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5755), 1, + ACTIONS(5709), 1, sym_operator_symbol, - STATE(4959), 1, + STATE(5083), 1, sym__designator, - STATE(5258), 1, + STATE(5433), 1, sym__identifier, - STATE(4842), 3, + STATE(5041), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(4861), 4, + ACTIONS(4881), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [261633] = 11, + [271314] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5681), 1, - sym_GENERIC, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(5687), 1, - sym_RETURN, - ACTIONS(5759), 1, - sym_IS, - STATE(5370), 1, - sym_subprogram_header, - STATE(7148), 1, - sym_parameter_list_specification, - STATE(4843), 3, + STATE(6215), 1, + sym__identifier, + STATE(6824), 1, + sym_pathname_element, + ACTIONS(5833), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(5042), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [261669] = 5, + aux_sym_partial_pathname_repeat1, + [271342] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4844), 3, + STATE(5043), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2450), 7, + ACTIONS(2474), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -260832,329 +269487,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [261693] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5681), 1, - sym_GENERIC, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(5687), 1, - sym_RETURN, - ACTIONS(5761), 1, - sym_IS, - STATE(5370), 1, - sym_subprogram_header, - STATE(7148), 1, - sym_parameter_list_specification, - STATE(4845), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [261729] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, - sym_GENERIC, - ACTIONS(5763), 1, - anon_sym_SEMI, - ACTIONS(5765), 1, - sym_USE, - STATE(1287), 1, - sym_binding_indication, - STATE(5385), 1, - sym_generic_map_aspect, - STATE(7161), 1, - sym_port_map_aspect, - STATE(4846), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [261765] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5529), 1, - sym_library_namespace, - STATE(5582), 1, - sym__identifier, - STATE(6297), 1, - sym__logical_name, - STATE(4847), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [261795] = 7, + [271366] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6883), 1, - sym__conditional_analysis_operator, - ACTIONS(5769), 2, - anon_sym_LT, - anon_sym_GT, - STATE(4848), 3, + ACTIONS(5767), 1, + sym_ELSE, + ACTIONS(5769), 1, + sym_ELSIF, + ACTIONS(5771), 1, + sym_END, + STATE(5065), 1, + aux_sym_if_generate_statement_repeat1, + STATE(5591), 1, + sym_elsif_generate, + STATE(6596), 1, + sym_else_generate, + STATE(7498), 1, + sym_end_generate, + STATE(5044), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5767), 4, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - [261823] = 11, + [271402] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, + ACTIONS(5739), 1, sym_FOR, - ACTIONS(5701), 1, + ACTIONS(5741), 1, sym_ON, - ACTIONS(5703), 1, + ACTIONS(5743), 1, sym_UNTIL, - ACTIONS(5771), 1, + ACTIONS(5836), 1, anon_sym_SEMI, - STATE(5013), 1, + STATE(5235), 1, sym_sensitivity_clause, - STATE(5420), 1, + STATE(6026), 1, sym_condition_clause, - STATE(6490), 1, + STATE(7466), 1, sym_timeout_clause, - STATE(4849), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [261859] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4850), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5773), 7, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_RPAREN, - [261883] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(4851), 3, + STATE(5045), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5534), 7, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_RPAREN, - [261907] = 8, + [271438] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5749), 1, - sym_operator_symbol, - STATE(4806), 1, - sym__designator, - STATE(5026), 1, - sym__identifier, - STATE(4852), 3, + STATE(5046), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5359), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [261937] = 11, + ACTIONS(2498), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [271462] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, + ACTIONS(5811), 1, sym_ELSE, - ACTIONS(5717), 1, + ACTIONS(5813), 1, sym_ELSIF, - ACTIONS(5719), 1, + ACTIONS(5815), 1, sym_END, - STATE(4802), 1, + STATE(5314), 1, aux_sym_if_statement_block_repeat1, - STATE(5505), 1, + STATE(5587), 1, sym_elsif_statement, - STATE(6365), 1, - sym_else_statement, STATE(6547), 1, + sym_else_statement, + STATE(7368), 1, sym_end_if, - STATE(4853), 3, + STATE(5047), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [261973] = 11, + [271498] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5701), 1, - sym_ON, - ACTIONS(5703), 1, - sym_UNTIL, - ACTIONS(5775), 1, - anon_sym_SEMI, - STATE(5001), 1, - sym_sensitivity_clause, - STATE(5508), 1, - sym_condition_clause, - STATE(7088), 1, - sym_timeout_clause, - STATE(4854), 3, + STATE(5048), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262009] = 7, + ACTIONS(2466), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [271522] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5373), 1, - sym_RANGE, - STATE(5117), 1, - sym_range_constraint, - STATE(4855), 3, + ACTIONS(5799), 1, + sym_operator_symbol, + STATE(5006), 1, + sym__designator, + STATE(5241), 1, + sym__identifier, + STATE(5049), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5777), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, - [262037] = 5, + ACTIONS(5797), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [271552] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4856), 3, + STATE(7493), 1, + sym__conditional_analysis_operator, + ACTIONS(5819), 2, + anon_sym_LT, + anon_sym_GT, + STATE(5050), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5773), 7, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_THEN, - sym__XNOR, - sym__XOR, - [262061] = 8, + ACTIONS(5817), 4, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + [271580] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5779), 1, - anon_sym_SEMI, - ACTIONS(5781), 1, - sym_CONTEXT, - STATE(7851), 1, + ACTIONS(5799), 1, + sym_operator_symbol, + STATE(4974), 1, + sym__designator, + STATE(5241), 1, sym__identifier, - STATE(4857), 3, + STATE(5051), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5797), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [262091] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(7563), 1, - sym__conditional_analysis_operator, - ACTIONS(5769), 2, - anon_sym_LT, - anon_sym_GT, - STATE(4858), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5767), 4, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - [262119] = 5, + [271610] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4859), 3, + STATE(5052), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(2602), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -261162,131 +269684,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [262143] = 8, + [271634] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5783), 1, - sym_character_literal, - STATE(5927), 1, - sym_enumeration_literal, - STATE(6165), 1, - sym__identifier, - STATE(4860), 3, + STATE(5053), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [262173] = 11, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5681), 1, + ACTIONS(2640), 7, + sym_AFTER, sym_GENERIC, - ACTIONS(5685), 1, sym_PARAMETER, - ACTIONS(5687), 1, - sym_RETURN, - ACTIONS(5785), 1, - sym_IS, - STATE(5370), 1, - sym_subprogram_header, - STATE(7148), 1, - sym_parameter_list_specification, - STATE(4861), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [262209] = 11, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [271658] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, - sym_ELSE, - ACTIONS(5717), 1, - sym_ELSIF, - ACTIONS(5719), 1, + ACTIONS(2992), 1, sym_END, - STATE(5059), 1, - aux_sym_if_statement_block_repeat1, - STATE(5505), 1, - sym_elsif_statement, - STATE(6355), 1, - sym_else_statement, - STATE(7304), 1, - sym_end_if, - STATE(4862), 3, + ACTIONS(5465), 1, + sym_FOR, + ACTIONS(5831), 1, + sym_USE, + STATE(5334), 1, + aux_sym_configuration_head_repeat2, + STATE(6070), 1, + sym_block_configuration, + STATE(7141), 1, + sym_verification_unit_binding_indication, + STATE(8288), 1, + sym_end_for, + STATE(5054), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262245] = 8, + [271694] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5709), 1, + ACTIONS(5799), 1, sym_operator_symbol, - STATE(5201), 1, + STATE(4968), 1, sym__designator, - STATE(5806), 1, + STATE(5241), 1, sym__identifier, - STATE(4863), 3, + STATE(5055), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5707), 4, + ACTIONS(5797), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [262275] = 5, + [271724] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4864), 3, + STATE(5056), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5534), 7, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_THEN, - sym__XNOR, - sym__XOR, - [262299] = 5, + ACTIONS(2374), 7, + sym_AFTER, + sym_GENERIC, + sym_PARAMETER, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SQUOTE, + anon_sym_LBRACK, + [271748] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4865), 3, + STATE(5057), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2468), 7, + ACTIONS(2378), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -261294,102 +269788,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [262323] = 7, + [271772] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6121), 1, - sym__identifier, - STATE(7029), 1, - sym_pathname_element, - ACTIONS(5787), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4866), 4, + ACTIONS(5767), 1, + sym_ELSE, + ACTIONS(5769), 1, + sym_ELSIF, + ACTIONS(5771), 1, + sym_END, + STATE(5019), 1, + aux_sym_if_generate_statement_repeat1, + STATE(5591), 1, + sym_elsif_generate, + STATE(6607), 1, + sym_else_generate, + STATE(6688), 1, + sym_end_generate, + STATE(5058), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_partial_pathname_repeat1, - [262351] = 11, + [271808] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, + ACTIONS(5811), 1, sym_ELSE, - ACTIONS(5717), 1, + ACTIONS(5813), 1, sym_ELSIF, - ACTIONS(5719), 1, + ACTIONS(5815), 1, sym_END, - STATE(4880), 1, + STATE(5067), 1, aux_sym_if_statement_block_repeat1, - STATE(5505), 1, + STATE(5587), 1, sym_elsif_statement, - STATE(6388), 1, + STATE(6578), 1, sym_else_statement, - STATE(7475), 1, + STATE(7463), 1, sym_end_if, - STATE(4867), 3, + STATE(5059), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262387] = 5, + [271844] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4868), 3, + ACTIONS(5799), 1, + sym_operator_symbol, + STATE(5000), 1, + sym__designator, + STATE(5241), 1, + sym__identifier, + STATE(5060), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2498), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [262411] = 5, + ACTIONS(5797), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [271874] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4869), 3, + ACTIONS(5799), 1, + sym_operator_symbol, + STATE(4972), 1, + sym__designator, + STATE(5241), 1, + sym__identifier, + STATE(5061), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2594), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [262435] = 5, + ACTIONS(5797), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [271904] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4870), 3, + STATE(5062), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2514), 7, + ACTIONS(2674), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -261397,18 +269901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [262459] = 5, + [271928] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4871), 3, + STATE(5063), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2540), 7, + ACTIONS(2662), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -261416,87 +269920,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [262483] = 8, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5790), 1, - anon_sym_SEMI, - ACTIONS(5792), 1, - sym_COMPONENT, - STATE(6832), 1, - sym__identifier, - STATE(4872), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [262513] = 8, + [271952] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5783), 1, + ACTIONS(5757), 1, sym_character_literal, - STATE(5410), 1, + STATE(6128), 1, sym_enumeration_literal, - STATE(6165), 1, + STATE(6231), 1, sym__identifier, - STATE(4873), 3, + STATE(5064), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [262543] = 11, + [271982] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, + ACTIONS(5767), 1, + sym_ELSE, + ACTIONS(5769), 1, + sym_ELSIF, + ACTIONS(5771), 1, sym_END, - ACTIONS(5441), 1, - sym_FOR, - ACTIONS(5741), 1, - sym_USE, - STATE(4823), 1, - aux_sym_configuration_head_repeat2, - STATE(5888), 1, - sym_block_configuration, - STATE(7044), 1, - sym_verification_unit_binding_indication, - STATE(8050), 1, - sym_end_for, - STATE(4874), 3, + STATE(5184), 1, + aux_sym_if_generate_statement_repeat1, + STATE(5591), 1, + sym_elsif_generate, + STATE(6570), 1, + sym_else_generate, + STATE(7443), 1, + sym_end_generate, + STATE(5065), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262579] = 5, + [272018] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4875), 3, + STATE(5066), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2614), 7, sym_AFTER, sym_GENERIC, sym_PARAMETER, @@ -261504,9626 +269986,9923 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SQUOTE, anon_sym_LBRACK, - [262603] = 5, + [272042] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4876), 3, + ACTIONS(5811), 1, + sym_ELSE, + ACTIONS(5813), 1, + sym_ELSIF, + ACTIONS(5815), 1, + sym_END, + STATE(5314), 1, + aux_sym_if_statement_block_repeat1, + STATE(5587), 1, + sym_elsif_statement, + STATE(6562), 1, + sym_else_statement, + STATE(7414), 1, + sym_end_if, + STATE(5067), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5794), 7, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym__XNOR, - sym__XOR, - anon_sym_RPAREN, - [262627] = 11, + [272078] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5701), 1, - sym_ON, - ACTIONS(5703), 1, - sym_UNTIL, - ACTIONS(5796), 1, - anon_sym_SEMI, - STATE(5071), 1, - sym_sensitivity_clause, - STATE(5531), 1, - sym_condition_clause, - STATE(7292), 1, - sym_timeout_clause, - STATE(4877), 3, + ACTIONS(5811), 1, + sym_ELSE, + ACTIONS(5813), 1, + sym_ELSIF, + ACTIONS(5815), 1, + sym_END, + STATE(5047), 1, + aux_sym_if_statement_block_repeat1, + STATE(5587), 1, + sym_elsif_statement, + STATE(6562), 1, + sym_else_statement, + STATE(7414), 1, + sym_end_if, + STATE(5068), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262663] = 5, + [272114] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4878), 3, + ACTIONS(5803), 1, + sym_operator_symbol, + STATE(4988), 1, + sym__designator, + STATE(5319), 1, + sym__identifier, + STATE(5069), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5794), 7, - sym__AND, - sym__NAND, - sym__NOR, - sym__OR, - sym_THEN, - sym__XNOR, - sym__XOR, - [262687] = 11, + ACTIONS(5363), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272144] = 11, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, + ACTIONS(5811), 1, sym_ELSE, - ACTIONS(5717), 1, + ACTIONS(5813), 1, sym_ELSIF, - ACTIONS(5719), 1, + ACTIONS(5815), 1, sym_END, - STATE(4862), 1, + STATE(5314), 1, aux_sym_if_statement_block_repeat1, - STATE(5505), 1, + STATE(5587), 1, sym_elsif_statement, - STATE(6370), 1, + STATE(6272), 1, sym_else_statement, - STATE(7361), 1, + STATE(7740), 1, sym_end_if, - STATE(4879), 3, + STATE(5070), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262723] = 11, + [272180] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5715), 1, - sym_ELSE, - ACTIONS(5717), 1, - sym_ELSIF, - ACTIONS(5719), 1, - sym_END, - STATE(5059), 1, - aux_sym_if_statement_block_repeat1, - STATE(5505), 1, - sym_elsif_statement, - STATE(6370), 1, - sym_else_statement, - STATE(7361), 1, - sym_end_if, - STATE(4880), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(5838), 1, + anon_sym_SEMI, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + STATE(6617), 1, + sym_generic_map_aspect, + STATE(6706), 1, + sym_port_map_aspect, + STATE(5071), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262759] = 5, + [272213] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4881), 3, + ACTIONS(5842), 1, + sym_BODY, + STATE(6388), 1, + sym__identifier, + STATE(5072), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [262783] = 5, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272240] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4882), 3, + STATE(4760), 1, + sym_primary_unit_declaration, + STATE(8116), 1, + sym__identifier, + STATE(5073), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2544), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [262807] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272267] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4883), 3, + ACTIONS(5844), 1, + anon_sym_SEMI, + STATE(8186), 1, + sym__identifier, + STATE(5074), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [262831] = 10, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272294] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5501), 1, - sym_FOR, - STATE(4985), 1, - aux_sym_block_configuration_repeat2, - STATE(5920), 1, - sym__configuration_item, - STATE(8021), 1, - sym_end_for, - STATE(5919), 2, - sym_block_configuration, - sym_component_configuration, - STATE(4884), 3, + STATE(6017), 1, + sym__identifier, + STATE(7609), 1, + sym_identifier_list, + STATE(5075), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262865] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272321] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4885), 3, + ACTIONS(5846), 1, + anon_sym_CARET, + ACTIONS(5849), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + STATE(5076), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2610), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [262889] = 5, + aux_sym_relative_pathname_repeat1, + [272346] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4886), 3, + STATE(6017), 1, + sym__identifier, + STATE(7501), 1, + sym_identifier_list, + STATE(5077), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2640), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [262913] = 8, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272373] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5798), 1, - anon_sym_SEMI, - ACTIONS(5800), 1, - sym_CONFIGURATION, - STATE(7995), 1, + STATE(6725), 1, + sym_parameter_specification, + STATE(6732), 1, sym__identifier, - STATE(4887), 3, + STATE(5078), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5851), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [262943] = 11, + [272400] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5721), 1, + ACTIONS(5853), 1, anon_sym_SEMI, - ACTIONS(5723), 1, - anon_sym_LPAREN, - ACTIONS(5725), 1, - sym_GENERIC, - ACTIONS(5729), 1, - sym_PARAMETER, - ACTIONS(5802), 1, - sym_IS, - STATE(5314), 1, - sym_subprogram_header, - STATE(8085), 1, - sym_parameter_list_specification, - STATE(4888), 3, + STATE(8240), 1, + sym__identifier, + STATE(5079), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [262979] = 8, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272427] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5749), 1, - sym_operator_symbol, - STATE(4888), 1, - sym__designator, - STATE(5026), 1, + ACTIONS(5855), 1, + anon_sym_SEMI, + STATE(8253), 1, sym__identifier, - STATE(4889), 3, + STATE(5080), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5359), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263009] = 5, + [272454] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4890), 3, + ACTIONS(5857), 1, + anon_sym_SEMI, + STATE(8304), 1, + sym__identifier, + STATE(5081), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2614), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [263033] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272481] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4891), 3, + ACTIONS(5861), 2, + anon_sym_LT, + anon_sym_GT, + STATE(5082), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2618), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [263057] = 11, + ACTIONS(5859), 4, + anon_sym_LT_EQ, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_GT_EQ, + [272506] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5681), 1, + ACTIONS(5723), 1, sym_GENERIC, - ACTIONS(5685), 1, + ACTIONS(5727), 1, sym_PARAMETER, - ACTIONS(5743), 1, + ACTIONS(5863), 1, sym_RETURN, - ACTIONS(5802), 1, - sym_IS, - STATE(5260), 1, + STATE(5479), 1, sym_subprogram_header, - STATE(7616), 1, + STATE(7479), 1, sym_parameter_list_specification, - STATE(4892), 3, + STATE(5083), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [263093] = 11, + [272539] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5673), 1, - sym_ELSE, - ACTIONS(5675), 1, - sym_ELSIF, - ACTIONS(5677), 1, - sym_END, - STATE(5109), 1, - aux_sym_if_generate_statement_repeat1, - STATE(5700), 1, - sym_elsif_generate, - STATE(6376), 1, - sym_else_generate, - STATE(7398), 1, - sym_end_generate, - STATE(4893), 3, + ACTIONS(5865), 1, + anon_sym_SEMI, + STATE(8100), 1, + sym__label, + STATE(5084), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [263129] = 11, + ACTIONS(5535), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272566] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5701), 1, - sym_ON, - ACTIONS(5703), 1, - sym_UNTIL, - ACTIONS(5804), 1, - anon_sym_SEMI, - STATE(5064), 1, - sym_sensitivity_clause, - STATE(5406), 1, - sym_condition_clause, - STATE(7152), 1, - sym_timeout_clause, - STATE(4894), 3, + STATE(6017), 1, + sym__identifier, + STATE(7850), 1, + sym_identifier_list, + STATE(5085), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [263165] = 11, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272593] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5441), 1, - sym_FOR, - ACTIONS(5741), 1, - sym_USE, - STATE(5142), 1, - aux_sym_configuration_head_repeat2, - STATE(5888), 1, - sym_block_configuration, - STATE(7044), 1, - sym_verification_unit_binding_indication, - STATE(8050), 1, - sym_end_for, - STATE(4895), 3, + STATE(6017), 1, + sym__identifier, + STATE(7847), 1, + sym_identifier_list, + STATE(5086), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [263201] = 5, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272620] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4896), 3, + STATE(6017), 1, + sym__identifier, + STATE(6879), 1, + sym_identifier_list, + STATE(5087), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2408), 7, - sym_AFTER, - sym_GENERIC, - sym_PARAMETER, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_LBRACK, - [263225] = 7, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272647] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7498), 1, + STATE(7859), 1, sym_identifier_list, - STATE(4897), 3, + STATE(5088), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263252] = 7, + [272674] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5806), 1, - anon_sym_SEMI, - STATE(6429), 1, - sym__label, - STATE(4898), 3, + STATE(6017), 1, + sym__identifier, + STATE(7862), 1, + sym_identifier_list, + STATE(5089), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263279] = 7, + [272701] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5431), 1, - sym_RANGE, - STATE(5193), 1, - sym_range_constraint, - STATE(4899), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(5867), 1, + anon_sym_SEMI, + STATE(6519), 1, + sym_generic_map_aspect, + STATE(7254), 1, + sym_port_map_aspect, + STATE(5090), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5777), 4, - sym_BUS, - sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - [263306] = 7, + [272734] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5808), 1, + ACTIONS(5869), 1, anon_sym_SEMI, - STATE(7994), 1, + STATE(8184), 1, sym__identifier, - STATE(4900), 3, + STATE(5091), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263333] = 7, + [272761] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7399), 1, + STATE(7471), 1, sym_identifier_list, - STATE(4901), 3, + STATE(5092), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263360] = 6, + [272788] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(8048), 1, - sym__identifier, - ACTIONS(5810), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4902), 4, + STATE(5093), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_package_pathname_repeat1, - [263385] = 8, + ACTIONS(2528), 6, + sym_IS, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + [272811] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5735), 1, - anon_sym_LPAREN, - ACTIONS(5739), 1, - sym_PARAMETER, - STATE(5756), 1, - sym_parameter_list_specification, - ACTIONS(5813), 3, - sym_IS, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(4903), 3, + STATE(6017), 1, + sym__identifier, + STATE(7844), 1, + sym_identifier_list, + STATE(5094), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [263414] = 10, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272838] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, + ACTIONS(1755), 1, sym_PORT, - ACTIONS(5443), 1, + ACTIONS(5467), 1, sym_GENERIC, - ACTIONS(5815), 1, - anon_sym_SEMI, - ACTIONS(5817), 1, + ACTIONS(5840), 1, anon_sym_LT_EQ, - STATE(6331), 1, + ACTIONS(5871), 1, + anon_sym_SEMI, + STATE(6595), 1, sym_generic_map_aspect, - STATE(7180), 1, + STATE(7499), 1, sym_port_map_aspect, - STATE(4904), 3, + STATE(5095), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [263447] = 7, + [272871] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5819), 1, - anon_sym_SEMI, - STATE(8001), 1, + STATE(6017), 1, sym__identifier, - STATE(4905), 3, + STATE(7654), 1, + sym_identifier_list, + STATE(5096), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263474] = 9, + [272898] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5821), 1, - anon_sym_SEMI, - ACTIONS(5823), 1, - sym_variable_assignment, - STATE(5511), 1, - sym_signal_kind, - STATE(7349), 1, - sym_initialiser, - ACTIONS(5825), 2, - sym_BUS, - sym_REGISTER, - STATE(4906), 3, + STATE(6709), 1, + sym__identifier, + STATE(8308), 1, + sym_parameter_specification, + STATE(5097), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [263505] = 7, + ACTIONS(5851), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [272925] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7492), 1, + STATE(7843), 1, sym_identifier_list, - STATE(4907), 3, + STATE(5098), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263532] = 7, + [272952] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5827), 1, + ACTIONS(5875), 1, + sym_WHEN, + STATE(6505), 1, + sym_when_expression, + ACTIONS(5873), 3, anon_sym_SEMI, - STATE(7926), 1, - sym__label, - STATE(4908), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5099), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + aux_sym_conditional_expression_repeat1, + [272979] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(8269), 1, + sym__identifier, + ACTIONS(5878), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263559] = 7, + STATE(5100), 4, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + aux_sym_package_pathname_repeat1, + [273004] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, - sym__identifier, - STATE(7345), 1, - sym_identifier_list, - STATE(4909), 3, + ACTIONS(5881), 1, + anon_sym_SEMI, + STATE(8085), 1, + sym__label, + STATE(5101), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263586] = 7, + [273031] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5829), 1, + ACTIONS(5883), 1, anon_sym_SEMI, - STATE(7974), 1, - sym__identifier, - STATE(4910), 3, + STATE(8081), 1, + sym__label, + STATE(5102), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263613] = 7, + [273058] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5831), 1, + ACTIONS(5451), 1, + sym_RANGE, + STATE(5472), 1, + sym_range_constraint, + STATE(5103), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5703), 4, + sym_BUS, anon_sym_SEMI, - STATE(7972), 1, - sym__identifier, - STATE(4911), 3, + anon_sym_RPAREN, + sym_variable_assignment, + [273085] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5885), 1, + anon_sym_SEMI, + STATE(8132), 1, + sym__label, + STATE(5104), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263640] = 7, + [273112] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7641), 1, + STATE(7644), 1, sym_identifier_list, - STATE(4912), 3, + STATE(5105), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263667] = 7, + [273139] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7639), 1, + STATE(7646), 1, sym_identifier_list, - STATE(4913), 3, + STATE(5106), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263694] = 9, + [273166] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(5833), 1, + ACTIONS(2884), 1, + sym_WHEN, + STATE(5099), 1, + aux_sym_conditional_expression_repeat1, + STATE(6505), 1, + sym_when_expression, + ACTIONS(5887), 3, anon_sym_SEMI, - STATE(5825), 1, - sym_signal_kind, - STATE(6847), 1, - sym_initialiser, - ACTIONS(5825), 2, - sym_BUS, - sym_REGISTER, - STATE(4914), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5107), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [263725] = 7, + [273195] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5889), 1, + sym_BODY, + STATE(6331), 1, sym__identifier, - STATE(7356), 1, - sym_identifier_list, - STATE(4915), 3, + STATE(5108), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263752] = 7, + [273222] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5837), 1, - sym_GENERIC, - STATE(5352), 1, - sym_generic_map_aspect, - STATE(4916), 3, + STATE(5109), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5835), 4, - sym_IS, - sym_PARAMETER, + ACTIONS(5891), 6, + sym_END, + sym_FOR, + sym_GENERIC, + sym_PORT, + sym_USE, anon_sym_SEMI, - anon_sym_LPAREN, - [263779] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5839), 1, - anon_sym_CARET, - ACTIONS(5842), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - STATE(4917), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_relative_pathname_repeat1, - [263804] = 7, + [273245] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4593), 1, - sym_primary_unit_declaration, - STATE(7909), 1, + STATE(6017), 1, sym__identifier, - STATE(4918), 3, + STATE(7652), 1, + sym_identifier_list, + STATE(5110), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263831] = 7, + [273272] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5844), 1, + ACTIONS(5893), 1, anon_sym_SEMI, - STATE(7832), 1, - sym__identifier, - STATE(4919), 3, + STATE(8136), 1, + sym__label, + STATE(5111), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263858] = 7, + [273299] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5848), 1, - sym_WHEN, - STATE(6186), 1, - sym_when_expression, - ACTIONS(5846), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4920), 4, + ACTIONS(5453), 1, + sym_RANGE, + STATE(5443), 1, + sym_range_constraint, + STATE(5112), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_conditional_expression_repeat1, - [263885] = 7, + ACTIONS(5703), 4, + sym_BUS, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + [273326] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5851), 1, - sym_BODY, - STATE(6140), 1, + STATE(3630), 1, sym__identifier, - STATE(4921), 3, + STATE(6136), 1, + sym_record_element_resolution, + STATE(5113), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5895), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263912] = 7, + [273353] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5853), 1, - anon_sym_SEMI, - STATE(8032), 1, + STATE(6017), 1, sym__identifier, - STATE(4922), 3, + STATE(7672), 1, + sym_identifier_list, + STATE(5114), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263939] = 7, + [273380] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7630), 1, + STATE(7828), 1, sym_identifier_list, - STATE(4923), 3, + STATE(5115), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263966] = 7, + [273407] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3502), 1, + STATE(5150), 1, + aux_sym_package_pathname_repeat1, + STATE(6097), 1, sym__identifier, - STATE(5946), 1, - sym_record_element_resolution, - STATE(4924), 3, + STATE(5116), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5855), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [263993] = 7, + [273434] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5857), 1, + ACTIONS(5897), 1, anon_sym_SEMI, - STATE(7922), 1, - sym__label, - STATE(4925), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + STATE(5902), 1, + sym_signal_kind, + STATE(7403), 1, + sym_initialiser, + ACTIONS(5901), 2, + sym_BUS, + sym_REGISTER, + STATE(5117), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [264020] = 7, + [273465] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5859), 1, + ACTIONS(5903), 1, anon_sym_SEMI, - STATE(8033), 1, + STATE(8252), 1, sym__identifier, - STATE(4926), 3, + STATE(5118), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264047] = 7, + [273492] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5905), 1, + anon_sym_SEMI, + STATE(8234), 1, sym__identifier, - STATE(7627), 1, - sym_identifier_list, - STATE(4927), 3, + STATE(5119), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264074] = 7, + [273519] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7624), 1, + STATE(7621), 1, sym_identifier_list, - STATE(4928), 3, + STATE(5120), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264101] = 10, + [273546] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, - sym_GENERIC, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(5861), 1, - anon_sym_SEMI, - STATE(6269), 1, - sym_generic_map_aspect, - STATE(6894), 1, - sym_port_map_aspect, - STATE(4929), 3, + STATE(6017), 1, + sym__identifier, + STATE(7820), 1, + sym_identifier_list, + STATE(5121), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [264134] = 7, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [273573] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, - sym__identifier, - STATE(7623), 1, - sym_identifier_list, - STATE(4930), 3, + ACTIONS(5907), 1, + anon_sym_SEMI, + STATE(7344), 1, + sym__label, + STATE(5122), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264161] = 7, + [273600] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7490), 1, + STATE(7709), 1, sym_identifier_list, - STATE(4931), 3, + STATE(5123), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264188] = 7, + [273627] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5863), 1, + ACTIONS(5909), 1, anon_sym_SEMI, - STATE(8022), 1, + STATE(8070), 1, sym__identifier, - STATE(4932), 3, + STATE(5124), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264215] = 7, + [273654] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5865), 1, - anon_sym_SEMI, - STATE(7874), 1, - sym__label, - STATE(4933), 3, + ACTIONS(5911), 1, + sym_ALL, + STATE(5991), 1, + sym__identifier, + STATE(5125), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264242] = 7, + [273681] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7453), 1, + STATE(7622), 1, sym_identifier_list, - STATE(4934), 3, + STATE(5126), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264269] = 7, + [273708] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5433), 1, - sym_RANGE, - STATE(5381), 1, - sym_range_constraint, - STATE(4935), 3, + STATE(6017), 1, + sym__identifier, + STATE(7620), 1, + sym_identifier_list, + STATE(5127), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5777), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [264296] = 7, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [273735] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5867), 1, - sym_BODY, - STATE(6050), 1, + STATE(6017), 1, sym__identifier, - STATE(4936), 3, + STATE(7711), 1, + sym_identifier_list, + STATE(5128), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264323] = 7, + [273762] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5869), 1, - anon_sym_SEMI, - STATE(8002), 1, - sym__label, - STATE(4937), 3, + ACTIONS(5913), 1, + sym_END, + ACTIONS(5915), 1, + sym_FOR, + STATE(6110), 1, + sym__configuration_item, + STATE(6109), 2, + sym_block_configuration, + sym_component_configuration, + STATE(5129), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [264350] = 7, + aux_sym_block_configuration_repeat2, + [273791] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5871), 1, - sym_BODY, - STATE(6090), 1, - sym__identifier, - STATE(4938), 3, + ACTIONS(5918), 1, + anon_sym_SEMI, + STATE(7763), 1, + sym__label, + STATE(5130), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264377] = 7, + [273818] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, - sym__identifier, - STATE(7067), 1, - sym_identifier_list, - STATE(4939), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(5920), 1, + anon_sym_SEMI, + STATE(5670), 1, + sym_signal_kind, + STATE(7775), 1, + sym_initialiser, + ACTIONS(5901), 2, + sym_BUS, + sym_REGISTER, + STATE(5131), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [264404] = 7, + [273849] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, - sym__identifier, - STATE(7608), 1, - sym_identifier_list, - STATE(4940), 3, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5723), 1, + sym_GENERIC, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(5922), 1, + sym_RETURN, + STATE(5451), 1, + sym_subprogram_header, + STATE(7288), 1, + sym_parameter_list_specification, + STATE(5132), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [264431] = 7, + [273882] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5924), 1, + sym_BODY, + STATE(6288), 1, sym__identifier, - STATE(7601), 1, - sym_identifier_list, - STATE(4941), 3, + STATE(5133), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264458] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(5873), 1, - anon_sym_SEMI, - STATE(5721), 1, - sym_signal_kind, - STATE(6774), 1, - sym_initialiser, - ACTIONS(5825), 2, - sym_BUS, - sym_REGISTER, - STATE(4942), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [264489] = 7, + [273909] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5875), 1, - sym_BODY, - STATE(6011), 1, + STATE(6017), 1, sym__identifier, - STATE(4943), 3, + STATE(7617), 1, + sym_identifier_list, + STATE(5134), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264516] = 7, + [273936] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7595), 1, + STATE(7717), 1, sym_identifier_list, - STATE(4944), 3, + STATE(5135), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264543] = 7, + [273963] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7594), 1, + STATE(7616), 1, sym_identifier_list, - STATE(4945), 3, + STATE(5136), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264570] = 10, + [273990] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, + ACTIONS(5781), 1, anon_sym_LPAREN, - ACTIONS(5681), 1, - sym_GENERIC, - ACTIONS(5685), 1, + ACTIONS(5785), 1, sym_PARAMETER, - ACTIONS(5877), 1, - sym_RETURN, - STATE(5270), 1, - sym_subprogram_header, - STATE(7533), 1, + STATE(5933), 1, sym_parameter_list_specification, - STATE(4946), 3, + ACTIONS(5926), 3, + sym_IS, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(5137), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [264603] = 7, + [274019] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(5928), 1, + anon_sym_SEMI, + STATE(5990), 1, + sym_signal_kind, + STATE(7001), 1, + sym_initialiser, + ACTIONS(5901), 2, + sym_BUS, + sym_REGISTER, + STATE(5138), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [274050] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(6017), 1, sym__identifier, - STATE(7571), 1, + STATE(7779), 1, sym_identifier_list, - STATE(4947), 3, + STATE(5139), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264630] = 7, + [274077] = 10, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5879), 1, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(5930), 1, anon_sym_SEMI, - STATE(7876), 1, - sym__label, - STATE(4948), 3, + STATE(6452), 1, + sym_generic_map_aspect, + STATE(7041), 1, + sym_port_map_aspect, + STATE(5140), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [274110] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(6017), 1, + sym__identifier, + STATE(7719), 1, + sym_identifier_list, + STATE(5141), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264657] = 7, + [274137] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7500), 1, + STATE(7814), 1, sym_identifier_list, - STATE(4949), 3, + STATE(5142), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264684] = 7, + [274164] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4902), 1, - aux_sym_package_pathname_repeat1, - STATE(5896), 1, + STATE(6017), 1, sym__identifier, - STATE(4950), 3, + STATE(7813), 1, + sym_identifier_list, + STATE(5143), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264711] = 7, + [274191] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5881), 1, + ACTIONS(5932), 1, anon_sym_SEMI, - STATE(7830), 1, + STATE(8036), 1, sym__identifier, - STATE(4951), 3, + STATE(5144), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264738] = 7, + [274218] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5883), 1, + ACTIONS(5934), 1, anon_sym_SEMI, - STATE(6698), 1, - sym__label, - STATE(4952), 3, + STATE(8034), 1, + sym__identifier, + STATE(5145), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264765] = 7, + [274245] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7131), 1, + STATE(7736), 1, sym_identifier_list, - STATE(4953), 3, + STATE(5146), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264792] = 7, + [274272] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5936), 1, + sym_BODY, + STATE(6203), 1, sym__identifier, - STATE(7125), 1, - sym_identifier_list, - STATE(4954), 3, + STATE(5147), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264819] = 7, + [274299] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5885), 1, - anon_sym_SEMI, - STATE(7891), 1, - sym__label, - STATE(4955), 3, + ACTIONS(5940), 1, + sym_GENERIC, + STATE(5498), 1, + sym_generic_map_aspect, + STATE(5148), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [264846] = 7, + ACTIONS(5938), 4, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + [274326] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5942), 1, + anon_sym_SEMI, + STATE(7587), 1, sym__identifier, - STATE(7560), 1, - sym_identifier_list, - STATE(4956), 3, + STATE(5149), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264873] = 7, + [274353] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(5100), 1, + aux_sym_package_pathname_repeat1, + STATE(6083), 1, sym__identifier, - STATE(7435), 1, - sym_identifier_list, - STATE(4957), 3, + STATE(5150), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264900] = 9, + [274380] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(5887), 1, + ACTIONS(5944), 1, anon_sym_SEMI, - STATE(5561), 1, + STATE(5899), 1, sym_signal_kind, - STATE(7068), 1, + STATE(7163), 1, sym_initialiser, - ACTIONS(5825), 2, + ACTIONS(5901), 2, sym_BUS, sym_REGISTER, - STATE(4958), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [264931] = 10, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5681), 1, - sym_GENERIC, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(5889), 1, - sym_RETURN, - STATE(5278), 1, - sym_subprogram_header, - STATE(6682), 1, - sym_parameter_list_specification, - STATE(4959), 3, + STATE(5151), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [264964] = 7, + [274411] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(6897), 1, + STATE(7790), 1, sym_identifier_list, - STATE(4960), 3, + STATE(5152), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [264991] = 7, + [274438] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, - sym__identifier, - STATE(7558), 1, - sym_identifier_list, - STATE(4961), 3, + ACTIONS(5946), 1, + anon_sym_SEMI, + STATE(7093), 1, + sym__label, + STATE(5153), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265018] = 7, + [274465] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5891), 1, + ACTIONS(5948), 1, anon_sym_SEMI, - STATE(7813), 1, + STATE(8010), 1, sym__label, - STATE(4962), 3, + STATE(5154), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265045] = 7, + [274492] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7433), 1, + STATE(7769), 1, sym_identifier_list, - STATE(4963), 3, + STATE(5155), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265072] = 7, + [274519] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5893), 1, - sym_BODY, - STATE(6127), 1, + STATE(6017), 1, sym__identifier, - STATE(4964), 3, + STATE(7771), 1, + sym_identifier_list, + STATE(5156), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265099] = 7, + [274546] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5950), 1, + sym_BODY, + STATE(6246), 1, sym__identifier, - STATE(6851), 1, - sym_identifier_list, - STATE(4965), 3, + STATE(5157), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265126] = 5, + [274573] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4966), 3, + ACTIONS(5952), 1, + anon_sym_SEMI, + STATE(8223), 1, + sym__label, + STATE(5158), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 6, - sym_IS, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COLON, - [265149] = 7, + ACTIONS(5535), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [274600] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(6017), 1, sym__identifier, - STATE(7552), 1, + STATE(7777), 1, sym_identifier_list, - STATE(4967), 3, + STATE(5159), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265176] = 7, + [274627] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5954), 1, + anon_sym_SEMI, + STATE(8222), 1, sym__identifier, - STATE(7550), 1, - sym_identifier_list, - STATE(4968), 3, + STATE(5160), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265203] = 7, + [274654] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5895), 1, - anon_sym_SEMI, - STATE(7867), 1, + STATE(6221), 1, sym__identifier, - STATE(4969), 3, + STATE(5161), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265230] = 7, + [274678] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + ACTIONS(5461), 1, + sym_RANGE, + STATE(5956), 1, + sym_range_constraint, + ACTIONS(5703), 3, + sym_IS, + sym_OPEN, + anon_sym_SEMI, + STATE(5162), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [274704] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(7778), 1, sym__identifier, - STATE(7410), 1, - sym_identifier_list, - STATE(4970), 3, + STATE(5163), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265257] = 7, + [274728] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5897), 1, - anon_sym_SEMI, - STATE(8013), 1, + STATE(8006), 1, sym__identifier, - STATE(4971), 3, + STATE(5164), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265284] = 7, + [274752] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, + ACTIONS(1635), 1, + sym_GENERIC, ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(5956), 1, anon_sym_SEMI, - STATE(6984), 1, - sym__label, - STATE(4972), 3, + STATE(5893), 1, + sym_generic_map_aspect, + STATE(7161), 1, + sym_initialiser, + STATE(5165), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265311] = 6, + [274782] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5903), 2, - anon_sym_LT, - anon_sym_GT, - STATE(4973), 3, + STATE(2120), 1, + sym__suffix, + STATE(5166), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5901), 4, - anon_sym_LT_EQ, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_GT_EQ, - [265336] = 8, + ACTIONS(5958), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [274806] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - STATE(4920), 1, - aux_sym_conditional_expression_repeat1, - STATE(6186), 1, - sym_when_expression, - ACTIONS(5905), 3, - anon_sym_SEMI, + ACTIONS(5962), 1, anon_sym_COMMA, + ACTIONS(5960), 3, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(4974), 3, + anon_sym_COLON, + STATE(5167), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [265365] = 7, + aux_sym_group_constituent_list_repeat1, + [274830] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, - sym__identifier, - STATE(7427), 1, - sym_identifier_list, - STATE(4975), 3, + ACTIONS(5965), 1, + sym_END, + ACTIONS(5967), 1, + sym_WHEN, + STATE(6294), 1, + sym_case_statement_alternative, + STATE(7786), 1, + sym_when_element, + STATE(5168), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265392] = 7, + aux_sym_case_body_repeat1, + [274858] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4950), 1, - aux_sym_package_pathname_repeat1, - STATE(5911), 1, - sym__identifier, - STATE(4976), 3, + ACTIONS(5972), 1, + sym_USE, + STATE(5585), 1, + sym_use_clause, + ACTIONS(5970), 2, + sym_END, + sym_FOR, + STATE(5169), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265419] = 10, + aux_sym_block_configuration_repeat1, + [274884] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, - sym_GENERIC, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(5907), 1, + ACTIONS(5975), 1, + anon_sym_COMMA, + ACTIONS(5960), 3, + sym_FOR, + sym_UNTIL, anon_sym_SEMI, - STATE(6401), 1, - sym_generic_map_aspect, - STATE(7568), 1, - sym_port_map_aspect, - STATE(4977), 3, + STATE(5170), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [265452] = 7, + aux_sym_group_constituent_list_repeat1, + [274908] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6496), 1, - sym__identifier, - STATE(8086), 1, - sym_parameter_specification, - STATE(4978), 3, + STATE(885), 1, + sym__suffix, + STATE(5171), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5909), 4, + ACTIONS(5978), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265479] = 7, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [274932] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5911), 1, - anon_sym_SEMI, - STATE(8019), 1, - sym__identifier, - STATE(4979), 3, + STATE(4907), 1, + sym__suffix, + STATE(5172), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5980), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265506] = 7, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [274956] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, - sym__identifier, - STATE(7425), 1, - sym_identifier_list, - STATE(4980), 3, + STATE(5173), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2528), 5, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + [274978] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4411), 1, + sym__suffix, + STATE(5174), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5982), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265533] = 10, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275002] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(5913), 1, + ACTIONS(5984), 1, anon_sym_SEMI, - STATE(6214), 1, + ACTIONS(5986), 1, + anon_sym_LBRACK, + STATE(5846), 1, + sym_signature, + STATE(7380), 1, sym_generic_map_aspect, - STATE(6923), 1, - sym_port_map_aspect, - STATE(4981), 3, + STATE(5175), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [265566] = 7, + [275032] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5583), 1, + STATE(8145), 1, sym__identifier, - STATE(7517), 1, - sym_identifier_list, - STATE(4982), 3, + STATE(5176), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265593] = 7, + [275056] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5915), 1, - sym_ALL, - STATE(5749), 1, + STATE(6241), 1, sym__identifier, - STATE(4983), 3, + STATE(5177), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265620] = 5, + [275080] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4984), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(5988), 1, + anon_sym_SEMI, + STATE(5583), 1, + sym_generic_map_aspect, + STATE(6706), 1, + sym_port_map_aspect, + STATE(5178), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5917), 6, - sym_END, + [275110] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5992), 1, + anon_sym_COMMA, + STATE(5170), 1, + aux_sym_group_constituent_list_repeat1, + ACTIONS(5990), 3, sym_FOR, - sym_GENERIC, - sym_PORT, - sym_USE, + sym_UNTIL, anon_sym_SEMI, - [265643] = 8, + STATE(5179), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [275136] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5919), 1, - sym_END, - ACTIONS(5921), 1, - sym_FOR, - STATE(5920), 1, - sym__configuration_item, - STATE(5919), 2, - sym_block_configuration, - sym_component_configuration, - STATE(4985), 4, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(5994), 1, + anon_sym_SEMI, + STATE(5849), 1, + sym_signature, + STATE(7139), 1, + sym_generic_map_aspect, + STATE(5180), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_block_configuration_repeat2, - [265672] = 7, + [275166] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6939), 1, - sym_parameter_specification, - STATE(6944), 1, - sym__identifier, - STATE(4986), 3, + STATE(1882), 1, + sym__suffix, + STATE(5181), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5909), 4, + ACTIONS(5996), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265699] = 7, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275190] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5926), 1, - anon_sym_LPAREN, - STATE(5744), 1, - sym_architecture_identifier, - ACTIONS(5924), 3, - sym_GENERIC, - sym_PORT, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6000), 1, + sym_BUS, + STATE(6138), 1, + sym_initialiser, + ACTIONS(5998), 2, anon_sym_SEMI, - STATE(4987), 3, + anon_sym_RPAREN, + STATE(5182), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [265725] = 6, + [275218] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4533), 1, + STATE(4608), 1, sym__suffix, - STATE(4988), 3, + STATE(5183), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5928), 4, + ACTIONS(6002), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [265749] = 6, + [275242] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6008), 1, - sym__identifier, - STATE(4989), 3, + ACTIONS(6006), 1, + sym_ELSIF, + STATE(5591), 1, + sym_elsif_generate, + ACTIONS(6004), 2, + sym_ELSE, + sym_END, + STATE(5184), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265773] = 6, + aux_sym_if_generate_statement_repeat1, + [275268] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4615), 1, - sym__suffix, - STATE(4990), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(6009), 1, + anon_sym_SEMI, + STATE(5798), 1, + sym_generic_map_aspect, + STATE(7603), 1, + sym_port_map_aspect, + STATE(5185), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5930), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [265797] = 6, + [275298] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5883), 1, + STATE(6468), 1, sym__identifier, - STATE(4991), 3, + STATE(5186), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [265821] = 9, + [275322] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5932), 1, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6011), 1, anon_sym_SEMI, - STATE(5693), 1, + STATE(5809), 1, + sym_signature, + STATE(7128), 1, sym_generic_map_aspect, - STATE(6923), 1, - sym_port_map_aspect, - STATE(4992), 3, + STATE(5187), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [265851] = 9, + [275352] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(5934), 1, - anon_sym_SEMI, - STATE(5478), 1, - sym_generic_map_aspect, - STATE(6580), 1, - sym_initialiser, - STATE(4993), 3, + STATE(3354), 1, + sym__suffix, + STATE(5188), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [265881] = 6, + ACTIONS(6013), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275376] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(8053), 1, - sym__identifier, - STATE(4994), 3, + STATE(4633), 1, + sym__suffix, + STATE(5189), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5936), 4, + ACTIONS(6015), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265905] = 6, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275400] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5891), 1, - sym__identifier, - STATE(4995), 3, + STATE(1845), 1, + sym__suffix, + STATE(5190), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6017), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [265929] = 9, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275424] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5938), 1, - anon_sym_EQ_GT, - ACTIONS(5940), 1, - anon_sym_PIPE, - STATE(5906), 1, - sym_case_generate_body, - STATE(5918), 1, - sym_case_generate_head, - STATE(5921), 1, - sym_case_generate_direct_block, - STATE(4996), 3, + STATE(5191), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [265959] = 6, + ACTIONS(6019), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + [275446] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4713), 1, + STATE(2091), 1, sym__suffix, - STATE(4997), 3, + STATE(5192), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5942), 4, + ACTIONS(6021), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [265983] = 6, + [275470] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3320), 1, + STATE(4520), 1, sym__suffix, - STATE(4998), 3, + STATE(5193), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5944), 4, + ACTIONS(6023), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [266007] = 7, + [275494] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5948), 1, - anon_sym_COMMA, - STATE(5025), 1, - aux_sym_signature_repeat1, - ACTIONS(5946), 3, - sym_FOR, - sym_UNTIL, - anon_sym_SEMI, - STATE(4999), 3, + STATE(6282), 1, + sym__identifier, + STATE(5194), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266033] = 9, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [275518] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, + ACTIONS(5739), 1, sym_FOR, - ACTIONS(5703), 1, + ACTIONS(5743), 1, sym_UNTIL, - ACTIONS(5771), 1, + ACTIONS(6025), 1, anon_sym_SEMI, - STATE(5420), 1, + STATE(5686), 1, sym_condition_clause, - STATE(6490), 1, + STATE(7369), 1, sym_timeout_clause, - STATE(5000), 3, + STATE(5195), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266063] = 9, + [275548] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, + STATE(1395), 1, + sym__suffix, + STATE(5196), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6027), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275572] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1355), 1, + sym__suffix, + STATE(5197), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6029), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275596] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5198), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(2528), 5, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + [275618] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5739), 1, sym_FOR, - ACTIONS(5703), 1, + ACTIONS(5743), 1, sym_UNTIL, - ACTIONS(5950), 1, + ACTIONS(6031), 1, anon_sym_SEMI, - STATE(5642), 1, + STATE(5763), 1, sym_condition_clause, - STATE(7023), 1, + STATE(7125), 1, sym_timeout_clause, - STATE(5001), 3, + STATE(5199), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266093] = 7, + [275648] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5449), 1, - sym_RANGE, - STATE(5536), 1, - sym_range_constraint, - ACTIONS(5777), 3, + ACTIONS(1635), 1, sym_GENERIC, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6033), 1, anon_sym_SEMI, - sym_variable_assignment, - STATE(5002), 3, + STATE(5783), 1, + sym_signature, + STATE(7371), 1, + sym_generic_map_aspect, + STATE(5200), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266119] = 6, + [275678] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1615), 1, + STATE(2154), 1, sym__suffix, - STATE(5003), 3, + STATE(5201), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5952), 4, + ACTIONS(6035), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [266143] = 9, + [275702] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(5954), 1, - anon_sym_SEMI, - ACTIONS(5956), 1, - anon_sym_LBRACK, - STATE(5608), 1, - sym_signature, - STATE(7042), 1, - sym_generic_map_aspect, - STATE(5004), 3, + STATE(5202), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266173] = 9, + ACTIONS(5849), 5, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + anon_sym_CARET, + [275724] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(5958), 1, + ACTIONS(6037), 1, anon_sym_SEMI, - STATE(5655), 1, + STATE(5731), 1, sym_generic_map_aspect, - STATE(6994), 1, + STATE(7102), 1, sym_initialiser, - STATE(5005), 3, + STATE(5203), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266203] = 9, + [275754] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5960), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6039), 1, anon_sym_SEMI, - STATE(5580), 1, + STATE(5894), 1, sym_generic_map_aspect, - STATE(7568), 1, - sym_port_map_aspect, - STATE(5006), 3, + STATE(7401), 1, + sym_initialiser, + STATE(5204), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266233] = 6, + [275784] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7935), 1, + STATE(7619), 1, sym__identifier, - STATE(5007), 3, + STATE(5205), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [266257] = 9, + [275808] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(5962), 1, - anon_sym_SEMI, - STATE(5542), 1, - sym_generic_map_aspect, - STATE(6617), 1, - sym_initialiser, - STATE(5008), 3, + STATE(1490), 1, + sym__suffix, + STATE(5206), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266287] = 9, + ACTIONS(6041), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275832] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(6043), 1, sym_GENERIC, - ACTIONS(5956), 1, - anon_sym_LBRACK, - ACTIONS(5964), 1, - anon_sym_SEMI, - STATE(5555), 1, - sym_signature, - STATE(6622), 1, + STATE(5708), 1, sym_generic_map_aspect, - STATE(5009), 3, + ACTIONS(5938), 3, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + STATE(5207), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266317] = 5, + [275858] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5010), 3, + STATE(1431), 1, + sym__suffix, + STATE(5208), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5966), 5, + ACTIONS(6045), 4, sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275882] = 9, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2992), 1, sym_END, + ACTIONS(5831), 1, + sym_USE, + STATE(5495), 1, + aux_sym_configuration_head_repeat2, + STATE(7383), 1, + sym_verification_unit_binding_indication, + STATE(8146), 1, + sym_end_for, + STATE(5209), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [275912] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4328), 1, + sym__suffix, + STATE(5210), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6047), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275936] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(2263), 1, + sym__suffix, + STATE(5211), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6049), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [275960] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5895), 1, + sym__identifier, + STATE(5212), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(5578), 4, + sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [266339] = 6, + [275984] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4247), 1, + STATE(1197), 1, sym__suffix, - STATE(5011), 3, + STATE(5213), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5968), 4, + ACTIONS(6051), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [266363] = 6, + [276008] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6081), 1, + STATE(5214), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6053), 5, + sym_identifier, + sym_END, + sym_library_constant, + sym_library_function, + sym_library_type, + [276030] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(7819), 1, sym__identifier, - STATE(5012), 3, + STATE(5215), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [266387] = 9, + [276054] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5703), 1, - sym_UNTIL, - ACTIONS(5970), 1, - anon_sym_SEMI, - STATE(5796), 1, - sym_condition_clause, - STATE(7873), 1, - sym_timeout_clause, - STATE(5013), 3, + STATE(3368), 1, + sym__suffix, + STATE(5216), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266417] = 6, + ACTIONS(6055), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276078] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5974), 1, - anon_sym_DOT, - STATE(5014), 3, + STATE(4790), 1, + sym__suffix, + STATE(5217), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5972), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [266441] = 6, + ACTIONS(6057), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276102] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1249), 1, + STATE(1624), 1, sym__suffix, - STATE(5015), 3, + STATE(5218), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5976), 4, + ACTIONS(6059), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [266465] = 7, + [276126] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5980), 1, - sym_USE, - STATE(5738), 1, - sym_use_clause, - ACTIONS(5978), 2, - sym_END, - sym_FOR, - STATE(5016), 4, + STATE(1055), 1, + sym__suffix, + STATE(5219), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_block_configuration_repeat1, - [266491] = 9, + ACTIONS(6061), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276150] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(5983), 1, - anon_sym_SEMI, - STATE(5581), 1, - sym_generic_map_aspect, - STATE(6641), 1, + ACTIONS(6065), 1, + sym_BUS, + STATE(6106), 1, sym_initialiser, - STATE(5017), 3, + ACTIONS(6063), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(5220), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266521] = 6, + [276178] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4742), 1, + STATE(8141), 1, sym__identifier, - STATE(5018), 3, + STATE(5221), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5985), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [266545] = 6, + [276202] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1900), 1, + STATE(3471), 1, sym__suffix, - STATE(5019), 3, + STATE(5222), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5987), 4, + ACTIONS(6067), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [266569] = 6, + [276226] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7412), 1, + STATE(6217), 1, sym__identifier, - STATE(5020), 3, + STATE(5223), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5936), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [266593] = 6, + [276250] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1050), 1, + STATE(926), 1, sym__suffix, - STATE(5021), 3, + STATE(5224), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5989), 4, + ACTIONS(6069), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [266617] = 6, + [276274] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6504), 1, - sym__identifier, - STATE(5022), 3, + STATE(1749), 1, + sym__suffix, + STATE(5225), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(6071), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [266641] = 6, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276298] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6024), 1, + STATE(6323), 1, sym__identifier, - STATE(5023), 3, + STATE(5226), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [266665] = 6, + [276322] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1486), 1, - sym__suffix, - STATE(5024), 3, + STATE(5227), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5991), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [266689] = 7, + ACTIONS(6073), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + [276344] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5948), 1, - anon_sym_COMMA, - STATE(5067), 1, - aux_sym_signature_repeat1, - ACTIONS(5993), 3, - sym_FOR, - sym_UNTIL, - anon_sym_SEMI, - STATE(5025), 3, + ACTIONS(5656), 1, + sym_GENERIC, + ACTIONS(5660), 1, + sym_PORT, + ACTIONS(6075), 1, + sym_END, + STATE(5969), 1, + sym_generic_clause, + STATE(8212), 1, + sym_port_clause, + STATE(5228), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266715] = 5, + [276374] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5026), 3, + STATE(5026), 1, + sym__suffix, + STATE(5229), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5995), 5, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_LPAREN, - [266737] = 9, + ACTIONS(6077), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276398] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(1826), 1, + sym__suffix, + STATE(5230), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6079), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276422] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5956), 1, - anon_sym_LBRACK, - ACTIONS(5997), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6081), 1, anon_sym_SEMI, - STATE(5454), 1, - sym_signature, - STATE(6564), 1, + STATE(5649), 1, sym_generic_map_aspect, - STATE(5027), 3, + STATE(7348), 1, + sym_initialiser, + STATE(5231), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266767] = 9, + [276452] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5741), 1, - sym_USE, - STATE(5353), 1, - aux_sym_configuration_head_repeat2, - STATE(7324), 1, - sym_verification_unit_binding_indication, - STATE(7936), 1, - sym_end_for, - STATE(5028), 3, + STATE(7718), 1, + sym__identifier, + STATE(5232), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266797] = 7, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [276476] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5999), 1, - sym_GENERIC, - STATE(5740), 1, - sym_generic_map_aspect, - ACTIONS(5835), 3, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - STATE(5029), 3, + STATE(4738), 1, + sym__suffix, + STATE(5233), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266823] = 6, + ACTIONS(6083), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276500] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7809), 1, + STATE(7653), 1, sym__identifier, - STATE(5030), 3, + STATE(5234), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [266847] = 7, + [276524] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5926), 1, - anon_sym_LPAREN, - STATE(5835), 1, - sym_architecture_identifier, - ACTIONS(6001), 3, - sym_GENERIC, - sym_PORT, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5743), 1, + sym_UNTIL, + ACTIONS(5805), 1, anon_sym_SEMI, - STATE(5031), 3, + STATE(6011), 1, + sym_condition_clause, + STATE(7416), 1, + sym_timeout_clause, + STATE(5235), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [276554] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(6068), 1, + sym__identifier, + STATE(5236), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266873] = 6, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [276578] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1225), 1, + STATE(3274), 1, sym__suffix, - STATE(5032), 3, + STATE(5237), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6003), 4, + ACTIONS(6085), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [266897] = 8, + [276602] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5735), 1, - anon_sym_LPAREN, - ACTIONS(5739), 1, - sym_PARAMETER, - STATE(6313), 1, - sym_parameter_list_specification, - ACTIONS(6005), 2, - sym_IS, - anon_sym_SEMI, - STATE(5033), 3, + STATE(1437), 1, + sym__suffix, + STATE(5238), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266925] = 9, + ACTIONS(6087), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276626] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6007), 1, - anon_sym_SEMI, - STATE(5450), 1, - sym_generic_map_aspect, - STATE(6563), 1, - sym_initialiser, - STATE(5034), 3, + STATE(5239), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [266955] = 6, + ACTIONS(6089), 5, + sym_identifier, + sym_END, + sym_library_constant, + sym_library_function, + sym_library_type, + [276648] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1054), 1, + STATE(4832), 1, sym__suffix, - STATE(5035), 3, + STATE(5240), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6009), 4, + ACTIONS(6091), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [266979] = 6, + [276672] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4310), 1, - sym__suffix, - STATE(5036), 3, + STATE(5241), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6011), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [267003] = 9, + ACTIONS(6093), 5, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + [276694] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6013), 1, - anon_sym_SEMI, - STATE(5578), 1, - sym_generic_map_aspect, - STATE(7066), 1, - sym_initialiser, - STATE(5037), 3, + STATE(933), 1, + sym__suffix, + STATE(5242), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [267033] = 6, + ACTIONS(6095), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276718] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5598), 1, - sym__identifier, - STATE(5038), 3, + STATE(5717), 1, + aux_sym_index_constraint_repeat1, + ACTIONS(6097), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6099), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(5243), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [267057] = 6, + [276744] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5879), 1, - sym__identifier, - STATE(5039), 3, + STATE(4522), 1, + sym__suffix, + STATE(5244), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6101), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [267081] = 5, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276768] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5040), 3, + STATE(1245), 1, + sym__suffix, + STATE(5245), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6015), 5, + ACTIONS(6103), 4, sym_identifier, - sym_END, - sym_library_constant, - sym_library_function, - sym_library_type, - [267103] = 6, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [276792] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7931), 1, + STATE(6071), 1, sym__identifier, - STATE(5041), 3, + STATE(5246), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267127] = 6, + [276816] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7434), 1, + STATE(8281), 1, sym__identifier, - STATE(5042), 3, + STATE(5247), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6105), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267151] = 6, + [276840] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4401), 1, + STATE(1033), 1, sym__suffix, - STATE(5043), 3, + STATE(5248), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6017), 4, + ACTIONS(6107), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [267175] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(7559), 1, - sym__identifier, - STATE(5044), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [267199] = 6, + [276864] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1617), 1, + STATE(1698), 1, sym__suffix, - STATE(5045), 3, + STATE(5249), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6019), 4, + ACTIONS(6109), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [267223] = 9, + [276888] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5741), 1, - sym_USE, - STATE(5353), 1, - aux_sym_configuration_head_repeat2, - STATE(7277), 1, - sym_end_for, - STATE(7324), 1, - sym_verification_unit_binding_indication, - STATE(5046), 3, + STATE(6074), 1, + sym__identifier, + STATE(5250), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [267253] = 6, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [276912] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7340), 1, + STATE(8274), 1, sym__identifier, - STATE(5047), 3, + STATE(5251), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5936), 4, + ACTIONS(6105), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267277] = 5, + [276936] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5048), 3, + STATE(6077), 1, + sym__identifier, + STATE(5252), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6021), 5, + ACTIONS(5578), 4, sym_identifier, - sym_END, sym_library_constant, sym_library_function, sym_library_type, - [267299] = 6, + [276960] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7501), 1, + STATE(8267), 1, sym__identifier, - STATE(5049), 3, + STATE(5253), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6105), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267323] = 8, + [276984] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6025), 1, - sym_BUS, - STATE(5936), 1, - sym_initialiser, - ACTIONS(6023), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5050), 3, + STATE(1202), 1, + sym__suffix, + STATE(5254), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [267351] = 9, + ACTIONS(6111), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [277008] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5741), 1, - sym_USE, - STATE(5028), 1, - aux_sym_configuration_head_repeat2, - STATE(7324), 1, - sym_verification_unit_binding_indication, - STATE(7843), 1, - sym_end_for, - STATE(5051), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(6113), 1, + anon_sym_SEMI, + STATE(5967), 1, + sym_generic_map_aspect, + STATE(7433), 1, + sym_port_map_aspect, + STATE(5255), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [267381] = 6, + [277038] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1721), 1, + STATE(1301), 1, sym__suffix, - STATE(5052), 3, + STATE(5256), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6027), 4, + ACTIONS(6115), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [267405] = 6, + [277062] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6045), 1, + STATE(7633), 1, sym__identifier, - STATE(5053), 3, + STATE(5257), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6105), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267429] = 5, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(5054), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5777), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, - [267451] = 6, + [277086] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5892), 1, - sym__identifier, - STATE(5055), 3, + ACTIONS(5574), 1, + sym_VUNIT, + ACTIONS(6117), 1, + sym_CONFIGURATION, + ACTIONS(6119), 1, + sym_ENTITY, + ACTIONS(6121), 1, + sym_OPEN, + STATE(5328), 1, + sym_entity_aspect, + STATE(5258), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [267475] = 6, + [277116] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3738), 1, + STATE(4675), 1, sym__suffix, - STATE(5056), 3, + STATE(5259), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6029), 4, + ACTIONS(6123), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [267499] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(6211), 1, - sym__identifier, - STATE(5057), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [267523] = 6, + [277140] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7499), 1, + STATE(8201), 1, sym__identifier, - STATE(5058), 3, + STATE(5260), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267547] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(6033), 1, - sym_ELSIF, - STATE(5505), 1, - sym_elsif_statement, - ACTIONS(6031), 2, - sym_ELSE, - sym_END, - STATE(5059), 4, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - aux_sym_if_statement_block_repeat1, - [267573] = 6, + [277164] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1795), 1, + STATE(4637), 1, sym__suffix, - STATE(5060), 3, + STATE(5261), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6036), 4, + ACTIONS(6125), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [267597] = 6, + [277188] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1843), 1, + STATE(4469), 1, sym__suffix, - STATE(5061), 3, + STATE(5262), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6038), 4, + ACTIONS(6127), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [267621] = 5, + [277212] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5062), 3, + STATE(7846), 1, + sym__identifier, + STATE(5263), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6040), 5, + ACTIONS(5578), 4, sym_identifier, - sym_END, sym_library_constant, sym_library_function, sym_library_type, - [267643] = 6, + [277236] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6118), 1, - sym__identifier, - STATE(5063), 3, + STATE(3739), 1, + sym__suffix, + STATE(5264), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6129), 4, sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [267667] = 9, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [277260] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5703), 1, - sym_UNTIL, - ACTIONS(5775), 1, - anon_sym_SEMI, - STATE(5508), 1, - sym_condition_clause, - STATE(7088), 1, - sym_timeout_clause, - STATE(5064), 3, + ACTIONS(6133), 1, + anon_sym_DOT, + STATE(5265), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [267697] = 6, + ACTIONS(6131), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT_GT, + [277284] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3269), 1, + STATE(2000), 1, sym__suffix, - STATE(5065), 3, + STATE(5266), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6042), 4, + ACTIONS(6135), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [267721] = 9, + [277308] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(4957), 1, + sym__identifier, + STATE(5267), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6137), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [277332] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(6139), 1, sym_GENERIC, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6044), 1, - anon_sym_SEMI, - STATE(5448), 1, - sym_generic_map_aspect, - STATE(7285), 1, - sym_initialiser, - STATE(5066), 3, + STATE(6092), 1, + sym__interface_package_generic_map_aspect, + STATE(5268), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [267751] = 6, + STATE(6091), 3, + sym_generic_map_any, + sym_generic_map_default, + sym_generic_map_aspect, + [277358] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6048), 1, - anon_sym_COMMA, - ACTIONS(6046), 3, + ACTIONS(5739), 1, sym_FOR, + ACTIONS(5743), 1, sym_UNTIL, + ACTIONS(5829), 1, anon_sym_SEMI, - STATE(5067), 4, + STATE(5791), 1, + sym_condition_clause, + STATE(7704), 1, + sym_timeout_clause, + STATE(5269), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_signature_repeat1, - [267775] = 6, + [277388] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4480), 1, - sym__suffix, - STATE(5068), 3, + ACTIONS(2992), 1, + sym_END, + ACTIONS(5831), 1, + sym_USE, + STATE(5209), 1, + aux_sym_configuration_head_repeat2, + STATE(7383), 1, + sym_verification_unit_binding_indication, + STATE(8041), 1, + sym_end_for, + STATE(5270), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6051), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [267799] = 6, + [277418] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6136), 1, + STATE(7623), 1, sym__identifier, - STATE(5069), 3, + STATE(5271), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6105), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267823] = 6, + [277442] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4446), 1, - sym__suffix, - STATE(5070), 3, + STATE(6373), 1, + sym__identifier, + STATE(5272), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6053), 4, + ACTIONS(5578), 4, sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [267847] = 9, + sym_library_constant, + sym_library_function, + sym_library_type, + [277466] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5703), 1, - sym_UNTIL, - ACTIONS(6055), 1, - anon_sym_SEMI, - STATE(5422), 1, - sym_condition_clause, - STATE(7305), 1, - sym_timeout_clause, - STATE(5071), 3, + STATE(5273), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [267877] = 6, + ACTIONS(6141), 5, + sym_identifier, + sym_END, + sym_library_constant, + sym_library_function, + sym_library_type, + [277488] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7600), 1, + STATE(6341), 1, sym__identifier, - STATE(5072), 3, + STATE(5274), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267901] = 6, + [277512] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4768), 1, - sym__suffix, - STATE(5073), 3, + ACTIONS(5992), 1, + anon_sym_COMMA, + STATE(5179), 1, + aux_sym_group_constituent_list_repeat1, + ACTIONS(6143), 3, + sym_FOR, + sym_UNTIL, + anon_sym_SEMI, + STATE(5275), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6057), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [267925] = 8, + [277538] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6059), 1, - sym_END, - ACTIONS(6061), 1, - sym_WHEN, - STATE(6397), 1, - sym_case_statement_alternative, - STATE(6508), 1, - sym_when_element, - STATE(5074), 4, + ACTIONS(5471), 1, + sym_RANGE, + STATE(5664), 1, + sym_range_constraint, + ACTIONS(5703), 3, + sym_GENERIC, + anon_sym_SEMI, + sym_variable_assignment, + STATE(5276), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_case_body_repeat1, - [267953] = 6, + [277564] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5887), 1, + STATE(8122), 1, sym__identifier, - STATE(5075), 3, + STATE(5277), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [267977] = 6, + [277588] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6163), 1, + STATE(6088), 1, sym__identifier, - STATE(5076), 3, + STATE(5278), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(3808), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [268001] = 6, + [277612] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(8060), 1, - sym__identifier, - STATE(5077), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6145), 1, + anon_sym_SEMI, + STATE(5884), 1, + sym_signature, + STATE(8042), 1, + sym_generic_map_aspect, + STATE(5279), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5936), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [268025] = 6, + [277642] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1360), 1, + STATE(1381), 1, sym__suffix, - STATE(5078), 3, + STATE(5280), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6064), 4, + ACTIONS(6147), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [268049] = 6, + [277666] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6017), 1, - sym__identifier, - STATE(5079), 3, + STATE(5281), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6149), 5, sym_identifier, + sym_END, sym_library_constant, sym_library_function, sym_library_type, - [268073] = 6, + [277688] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1872), 1, - sym__suffix, - STATE(5080), 3, + STATE(5282), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6066), 4, + ACTIONS(6151), 5, sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [268097] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5447), 1, - sym_RANGE, - STATE(5723), 1, - sym_range_constraint, - ACTIONS(5777), 3, - sym_IS, - sym_OPEN, - anon_sym_SEMI, - STATE(5081), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [268123] = 5, + sym_END, + sym_library_constant, + sym_library_function, + sym_library_type, + [277710] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5082), 3, + STATE(6345), 1, + sym__identifier, + STATE(5283), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5995), 5, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - [268145] = 9, + ACTIONS(5578), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [277734] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(6068), 1, + ACTIONS(6153), 1, anon_sym_SEMI, - STATE(5664), 1, + STATE(5581), 1, sym_generic_map_aspect, - STATE(6705), 1, + STATE(6715), 1, sym_initialiser, - STATE(5083), 3, + STATE(5284), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268175] = 9, + [277764] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(6070), 1, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, anon_sym_SEMI, - STATE(5680), 1, + STATE(5578), 1, + sym_signature, + STATE(6716), 1, sym_generic_map_aspect, - STATE(7495), 1, - sym_port_map_aspect, - STATE(5084), 3, + STATE(5285), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268205] = 9, + [277794] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5956), 1, + ACTIONS(5986), 1, anon_sym_LBRACK, - ACTIONS(6072), 1, + ACTIONS(6157), 1, anon_sym_SEMI, - STATE(5673), 1, + STATE(5577), 1, sym_signature, - STATE(6715), 1, + STATE(6718), 1, sym_generic_map_aspect, - STATE(5085), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [268235] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5555), 1, - sym_VUNIT, - ACTIONS(6074), 1, - sym_CONFIGURATION, - ACTIONS(6076), 1, - sym_ENTITY, - ACTIONS(6078), 1, - sym_OPEN, - STATE(5089), 1, - sym_entity_aspect, - STATE(5086), 3, + STATE(5286), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268265] = 5, + [277824] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5087), 3, + ACTIONS(6159), 1, + anon_sym_DOT, + STATE(5287), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6080), 5, + ACTIONS(6131), 4, + sym_BUS, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, sym_variable_assignment, - anon_sym_GT_GT, - [268287] = 6, + [277848] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1319), 1, - sym__suffix, - STATE(5088), 3, + STATE(5288), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6082), 4, + ACTIONS(6161), 5, sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [268311] = 9, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, - sym_GENERIC, - ACTIONS(6084), 1, - anon_sym_SEMI, - STATE(5483), 1, - sym_generic_map_aspect, - STATE(6980), 1, - sym_port_map_aspect, - STATE(5089), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [268341] = 6, + sym_END, + sym_library_constant, + sym_library_function, + sym_library_type, + [277870] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(873), 1, + STATE(955), 1, sym__suffix, - STATE(5090), 3, + STATE(5289), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6086), 4, + ACTIONS(6163), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [268365] = 5, + [277894] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5091), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6165), 1, + anon_sym_SEMI, + STATE(5572), 1, + sym_generic_map_aspect, + STATE(6736), 1, + sym_initialiser, + STATE(5290), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 5, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - [268387] = 6, + [277924] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(975), 1, - sym__suffix, - STATE(5092), 3, + STATE(6078), 1, + sym__identifier, + STATE(5291), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6088), 4, + ACTIONS(5578), 4, sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [268411] = 8, + sym_library_constant, + sym_library_function, + sym_library_type, + [277948] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6092), 1, - sym_BUS, - STATE(5916), 1, - sym_initialiser, - ACTIONS(6090), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5093), 3, + ACTIONS(2992), 1, + sym_END, + ACTIONS(5831), 1, + sym_USE, + STATE(5296), 1, + aux_sym_configuration_head_repeat2, + STATE(7381), 1, + sym_end_for, + STATE(7383), 1, + sym_verification_unit_binding_indication, + STATE(5292), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268439] = 9, + [277978] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - ACTIONS(5741), 1, - sym_USE, - STATE(5046), 1, - aux_sym_configuration_head_repeat2, - STATE(7321), 1, - sym_end_for, - STATE(7324), 1, - sym_verification_unit_binding_indication, - STATE(5094), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(6167), 1, + anon_sym_SEMI, + STATE(5694), 1, + sym_generic_map_aspect, + STATE(7041), 1, + sym_port_map_aspect, + STATE(5293), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268469] = 6, + [278008] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(940), 1, + STATE(4676), 1, sym__suffix, - STATE(5095), 3, + STATE(5294), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6094), 4, + ACTIONS(6169), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [268493] = 9, + [278032] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, - sym_GENERIC, - ACTIONS(6096), 1, - anon_sym_SEMI, - STATE(5722), 1, - sym_generic_map_aspect, - STATE(6894), 1, - sym_port_map_aspect, - STATE(5096), 3, + STATE(5295), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268523] = 9, + ACTIONS(6093), 5, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + [278054] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5639), 1, - sym_GENERIC, - ACTIONS(5643), 1, - sym_PORT, - ACTIONS(6098), 1, + ACTIONS(2992), 1, sym_END, - STATE(5792), 1, - sym_generic_clause, - STATE(6816), 1, - sym_port_clause, - STATE(5097), 3, + ACTIONS(5831), 1, + sym_USE, + STATE(5495), 1, + aux_sym_configuration_head_repeat2, + STATE(7343), 1, + sym_end_for, + STATE(7383), 1, + sym_verification_unit_binding_indication, + STATE(5296), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268553] = 6, + [278084] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6138), 1, - sym__identifier, - STATE(5098), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6171), 1, + anon_sym_SEMI, + STATE(5805), 1, + sym_generic_map_aspect, + STATE(8102), 1, + sym_initialiser, + STATE(5297), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [268577] = 6, + [278114] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6258), 1, - sym__label, - STATE(5099), 3, + STATE(7490), 1, + sym__identifier, + STATE(5298), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5505), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [268601] = 5, + [278138] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5100), 3, + ACTIONS(6175), 1, + sym_IS, + STATE(6430), 1, + sym_context_declaration_body, + ACTIONS(6173), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + STATE(5299), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6100), 5, - sym_identifier, - sym_END, - sym_library_constant, - sym_library_function, - sym_library_type, - [268623] = 6, + [278164] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1133), 1, - sym__suffix, - STATE(5101), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6177), 1, + anon_sym_SEMI, + STATE(5596), 1, + sym_generic_map_aspect, + STATE(7806), 1, + sym_initialiser, + STATE(5300), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6102), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [268647] = 6, + [278194] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1039), 1, + STATE(1991), 1, sym__suffix, - STATE(5102), 3, + STATE(5301), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6104), 4, + ACTIONS(6179), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [268671] = 6, + [278218] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7626), 1, + STATE(6380), 1, sym__identifier, - STATE(5103), 3, + STATE(5302), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [268695] = 7, + [278242] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6106), 1, + ACTIONS(1635), 1, sym_GENERIC, - STATE(5905), 1, - sym__interface_package_generic_map_aspect, - STATE(5104), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6181), 1, + anon_sym_SEMI, + STATE(5667), 1, + sym_generic_map_aspect, + STATE(6779), 1, + sym_initialiser, + STATE(5303), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - STATE(5904), 3, - sym_generic_map_any, - sym_generic_map_default, - sym_generic_map_aspect, - [268721] = 5, + [278272] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5105), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6183), 1, + anon_sym_SEMI, + STATE(5668), 1, + sym_signature, + STATE(6780), 1, + sym_generic_map_aspect, + STATE(5304), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6108), 5, - sym_identifier, - sym_END, - sym_library_constant, - sym_library_function, - sym_library_type, - [268743] = 9, + [278302] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6110), 1, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6185), 1, anon_sym_SEMI, - STATE(5692), 1, + STATE(5679), 1, + sym_signature, + STATE(6786), 1, sym_generic_map_aspect, - STATE(6728), 1, - sym_initialiser, - STATE(5106), 3, + STATE(5305), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268773] = 6, + [278332] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3240), 1, - sym__suffix, - STATE(5107), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(6187), 1, + anon_sym_SEMI, + STATE(5824), 1, + sym_generic_map_aspect, + STATE(7254), 1, + sym_port_map_aspect, + STATE(5306), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6112), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [268797] = 6, + [278362] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4428), 1, - sym__suffix, - STATE(5108), 3, + STATE(6401), 1, + sym__identifier, + STATE(5307), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6114), 4, + ACTIONS(5578), 4, sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [268821] = 7, + sym_library_constant, + sym_library_function, + sym_library_type, + [278386] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6118), 1, - sym_ELSIF, - STATE(5700), 1, - sym_elsif_generate, - ACTIONS(6116), 2, - sym_ELSE, - sym_END, - STATE(5109), 4, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5743), 1, + sym_UNTIL, + ACTIONS(6189), 1, + anon_sym_SEMI, + STATE(5831), 1, + sym_condition_clause, + STATE(8079), 1, + sym_timeout_clause, + STATE(5308), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_if_generate_statement_repeat1, - [268847] = 9, + [278416] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(6121), 1, + ACTIONS(6191), 1, anon_sym_SEMI, - STATE(5418), 1, + STATE(5687), 1, sym_generic_map_aspect, - STATE(7218), 1, + STATE(6801), 1, sym_initialiser, - STATE(5110), 3, + STATE(5309), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268877] = 6, + [278446] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(901), 1, - sym__suffix, - STATE(5111), 3, + ACTIONS(6193), 1, + anon_sym_EQ_GT, + ACTIONS(6195), 1, + anon_sym_PIPE, + STATE(6095), 1, + sym_case_generate_body, + STATE(6117), 1, + sym_case_generate_direct_block, + STATE(6118), 1, + sym_case_generate_head, + STATE(5310), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6123), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [268901] = 9, + [278476] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, sym_GENERIC, - ACTIONS(5956), 1, - anon_sym_LBRACK, - ACTIONS(6125), 1, + ACTIONS(6197), 1, anon_sym_SEMI, - STATE(5488), 1, - sym_signature, - STATE(7317), 1, + STATE(5610), 1, sym_generic_map_aspect, - STATE(5112), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [268931] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(5412), 1, - aux_sym_index_constraint_repeat1, - ACTIONS(6127), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6129), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(5113), 3, + STATE(7499), 1, + sym_port_map_aspect, + STATE(5311), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [268957] = 6, + [278506] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6173), 1, + STATE(7468), 1, sym__identifier, - STATE(5114), 3, + STATE(5312), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6105), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [268981] = 6, + [278530] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1302), 1, + STATE(1652), 1, sym__suffix, - STATE(5115), 3, + STATE(5313), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6131), 4, + ACTIONS(6199), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [269005] = 5, + [278554] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5116), 3, + ACTIONS(6203), 1, + sym_ELSIF, + STATE(5587), 1, + sym_elsif_statement, + ACTIONS(6201), 2, + sym_ELSE, + sym_END, + STATE(5314), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6133), 5, - sym_identifier, - sym_END, - sym_library_constant, - sym_library_function, - sym_library_type, - [269027] = 5, + aux_sym_if_statement_block_repeat1, + [278580] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5117), 3, + STATE(1042), 1, + sym__suffix, + STATE(5315), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6135), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - sym_variable_assignment, - anon_sym_GT_GT, - [269049] = 5, + ACTIONS(6206), 4, + sym_identifier, + sym_ALL, + sym_character_literal, + sym_operator_symbol, + [278604] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5118), 3, + STATE(7445), 1, + sym__identifier, + STATE(5316), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5995), 5, - sym_GENERIC, - sym_IS, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - [269071] = 6, + ACTIONS(3808), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [278628] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6137), 1, - anon_sym_COMMA, - ACTIONS(6046), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(5119), 4, + ACTIONS(3412), 1, + sym_WHEN, + ACTIONS(6208), 1, + sym_END, + STATE(5168), 1, + aux_sym_case_body_repeat1, + STATE(6294), 1, + sym_case_statement_alternative, + STATE(7786), 1, + sym_when_element, + STATE(5317), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_signature_repeat1, - [269095] = 6, + [278658] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7224), 1, + STATE(4916), 1, sym__identifier, - STATE(5120), 3, + STATE(5318), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(6137), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [269119] = 6, + [278682] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4349), 1, - sym__suffix, - STATE(5121), 3, + STATE(5319), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6140), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269143] = 6, + ACTIONS(6093), 5, + sym_GENERIC, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + [278704] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6147), 1, + STATE(6528), 1, sym__identifier, - STATE(5122), 3, + STATE(5320), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [269167] = 7, + [278728] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6142), 1, + ACTIONS(1635), 1, sym_GENERIC, - STATE(5829), 1, - sym_generic_map_aspect, - ACTIONS(5835), 3, - sym_PARAMETER, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6210), 1, anon_sym_SEMI, - anon_sym_LPAREN, - STATE(5123), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [269193] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - STATE(1925), 1, - sym__suffix, - STATE(5124), 3, + STATE(5774), 1, + sym_generic_map_aspect, + STATE(6858), 1, + sym_initialiser, + STATE(5321), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6144), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269217] = 6, + [278758] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6241), 1, - sym__identifier, - STATE(5125), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6212), 1, + anon_sym_SEMI, + STATE(5789), 1, + sym_signature, + STATE(6860), 1, + sym_generic_map_aspect, + STATE(5322), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [269241] = 7, + [278788] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6148), 1, - sym_IS, - STATE(6167), 1, - sym_context_declaration_body, - ACTIONS(6146), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6214), 1, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - STATE(5126), 3, + STATE(5799), 1, + sym_signature, + STATE(6864), 1, + sym_generic_map_aspect, + STATE(5323), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [269267] = 5, + [278818] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5127), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6216), 1, + anon_sym_SEMI, + STATE(5816), 1, + sym_generic_map_aspect, + STATE(6880), 1, + sym_initialiser, + STATE(5324), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 5, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - [269289] = 9, + [278848] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(6150), 1, + ACTIONS(6218), 1, anon_sym_SEMI, - STATE(5824), 1, + STATE(5978), 1, sym_generic_map_aspect, - STATE(6842), 1, + STATE(7000), 1, sym_initialiser, - STATE(5128), 3, + STATE(5325), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [269319] = 6, + [278878] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1825), 1, - sym__suffix, - STATE(5129), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6220), 1, + anon_sym_SEMI, + STATE(5932), 1, + sym_signature, + STATE(6968), 1, + sym_generic_map_aspect, + STATE(5326), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6152), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269343] = 6, + [278908] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(8046), 1, + STATE(6418), 1, sym__identifier, - STATE(5130), 3, + STATE(5327), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5936), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [269367] = 6, + [278932] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1180), 1, - sym__suffix, - STATE(5131), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(5467), 1, + sym_GENERIC, + ACTIONS(6222), 1, + anon_sym_SEMI, + STATE(5983), 1, + sym_generic_map_aspect, + STATE(7072), 1, + sym_port_map_aspect, + STATE(5328), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6154), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269391] = 9, + [278962] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(6156), 1, + ACTIONS(6224), 1, anon_sym_SEMI, - STATE(5799), 1, + STATE(5927), 1, sym_generic_map_aspect, - STATE(7893), 1, + STATE(6963), 1, sym_initialiser, - STATE(5132), 3, + STATE(5329), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [269421] = 6, + [278992] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4286), 1, - sym__suffix, - STATE(5133), 3, + STATE(5330), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6158), 4, + ACTIONS(6226), 5, sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269445] = 6, + sym_END, + sym_library_constant, + sym_library_function, + sym_library_type, + [279014] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4890), 1, - sym__suffix, - STATE(5134), 3, + ACTIONS(5781), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + sym_PARAMETER, + STATE(6527), 1, + sym_parameter_list_specification, + ACTIONS(6228), 2, + sym_IS, + anon_sym_SEMI, + STATE(5331), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6160), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269469] = 9, + [279042] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3392), 1, - sym_WHEN, - ACTIONS(6162), 1, - sym_END, - STATE(5074), 1, - aux_sym_case_body_repeat1, - STATE(6397), 1, - sym_case_statement_alternative, - STATE(6508), 1, - sym_when_element, - STATE(5135), 3, + ACTIONS(6193), 1, + anon_sym_EQ_GT, + ACTIONS(6195), 1, + anon_sym_PIPE, + STATE(6117), 1, + sym_case_generate_direct_block, + STATE(6118), 1, + sym_case_generate_head, + STATE(6119), 1, + sym_case_generate_body, + STATE(5332), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [269499] = 6, + [279072] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4535), 1, - sym__suffix, - STATE(5136), 3, + ACTIONS(5737), 1, + anon_sym_SEMI, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5743), 1, + sym_UNTIL, + STATE(5952), 1, + sym_condition_clause, + STATE(7176), 1, + sym_timeout_clause, + STATE(5333), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6164), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269523] = 9, + [279102] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(5956), 1, - anon_sym_LBRACK, - ACTIONS(6166), 1, - anon_sym_SEMI, - STATE(5745), 1, - sym_signature, - STATE(7844), 1, - sym_generic_map_aspect, - STATE(5137), 3, + ACTIONS(6232), 1, + sym_USE, + STATE(7141), 1, + sym_verification_unit_binding_indication, + ACTIONS(6230), 2, + sym_END, + sym_FOR, + STATE(5334), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [269553] = 6, + aux_sym_configuration_head_repeat2, + [279128] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7913), 1, + STATE(6464), 1, sym__identifier, - STATE(5138), 3, + STATE(5335), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, + ACTIONS(5578), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [269577] = 5, + [279152] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5139), 3, + ACTIONS(6235), 1, + sym_GENERIC, + STATE(5918), 1, + sym_generic_map_aspect, + ACTIONS(5938), 3, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + STATE(5336), 3, sym__tool_directive, sym_line_comment, - sym_block_comment, - ACTIONS(6168), 5, - sym_identifier, - sym_END, - sym_library_constant, - sym_library_function, - sym_library_type, - [269599] = 6, + sym_block_comment, + [279178] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1698), 1, + STATE(4863), 1, sym__suffix, - STATE(5140), 3, + STATE(5337), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6170), 4, + ACTIONS(6237), 4, sym_identifier, sym_ALL, sym_character_literal, sym_operator_symbol, - [269623] = 9, + [279202] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5956), 1, + ACTIONS(5986), 1, anon_sym_LBRACK, - ACTIONS(6172), 1, + ACTIONS(6239), 1, anon_sym_SEMI, - STATE(5807), 1, + STATE(5949), 1, sym_signature, - STATE(6826), 1, + STATE(6982), 1, sym_generic_map_aspect, - STATE(5141), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [269653] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(6176), 1, - sym_USE, - STATE(7044), 1, - sym_verification_unit_binding_indication, - ACTIONS(6174), 2, - sym_END, - sym_FOR, - STATE(5142), 4, + STATE(5338), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_configuration_head_repeat2, - [269679] = 9, + [279232] = 9, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6179), 1, + ACTIONS(5986), 1, + anon_sym_LBRACK, + ACTIONS(6241), 1, anon_sym_SEMI, - STATE(5502), 1, + STATE(5965), 1, + sym_signature, + STATE(8076), 1, sym_generic_map_aspect, - STATE(7346), 1, - sym_initialiser, - STATE(5143), 3, + STATE(5339), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [269709] = 6, + [279262] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4759), 1, - sym__identifier, - STATE(5144), 3, + STATE(5340), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5985), 4, + ACTIONS(6243), 5, sym_identifier, + sym_END, sym_library_constant, sym_library_function, sym_library_type, - [269733] = 6, + [279284] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4652), 1, - sym__suffix, - STATE(5145), 3, + STATE(5341), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6181), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269757] = 5, + ACTIONS(6245), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_variable_assignment, + anon_sym_GT_GT, + [279306] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5146), 3, + STATE(6069), 1, + sym__label, + STATE(5342), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5842), 5, + ACTIONS(5535), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - anon_sym_CARET, - [269779] = 6, + [279330] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1573), 1, - sym__suffix, - STATE(5147), 3, + STATE(4933), 1, + sym__identifier, + STATE(5343), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6183), 4, + ACTIONS(6137), 4, sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269803] = 6, + sym_library_constant, + sym_library_function, + sym_library_type, + [279354] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1581), 1, - sym__suffix, - STATE(5148), 3, + STATE(5344), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6185), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269827] = 9, + ACTIONS(6247), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT_GT, + [279375] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, - sym_GENERIC, - ACTIONS(6187), 1, - anon_sym_SEMI, - STATE(5391), 1, - sym_generic_map_aspect, - STATE(7180), 1, - sym_port_map_aspect, - STATE(5149), 3, + STATE(5345), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [269857] = 9, + ACTIONS(3264), 4, + sym_CONTEXT, + sym_END, + sym_LIBRARY, + sym_USE, + [279396] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6189), 1, + ACTIONS(6251), 1, + anon_sym_DOT, + STATE(5562), 1, + aux_sym_selected_name_repeat1, + ACTIONS(6249), 2, anon_sym_SEMI, - STATE(5798), 1, - sym_generic_map_aspect, - STATE(6814), 1, - sym_initialiser, - STATE(5150), 3, + anon_sym_COMMA, + STATE(5346), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [269887] = 6, + [279421] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(3332), 1, - sym__suffix, - STATE(5151), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6255), 1, + anon_sym_RBRACK, + ACTIONS(6257), 1, + sym_RETURN, + STATE(5349), 1, + aux_sym_signature_repeat1, + STATE(5347), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6191), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269911] = 6, + [279448] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2061), 1, - sym__suffix, - STATE(5152), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6259), 1, + anon_sym_RBRACK, + ACTIONS(6261), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5348), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6193), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269935] = 6, + [279475] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(2171), 1, - sym__suffix, - STATE(5153), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6263), 1, + anon_sym_RBRACK, + ACTIONS(6265), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5349), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6195), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269959] = 6, + [279502] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(1942), 1, - sym__suffix, - STATE(5154), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6267), 1, + anon_sym_RBRACK, + ACTIONS(6269), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5350), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6197), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [269983] = 6, + [279529] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6287), 1, - sym__identifier, - STATE(5155), 3, + STATE(5351), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5608), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [270007] = 6, + ACTIONS(5960), 4, + sym_FOR, + sym_UNTIL, + anon_sym_SEMI, + anon_sym_COMMA, + [279550] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(7438), 1, - sym__identifier, - STATE(5156), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6271), 1, + anon_sym_RBRACK, + ACTIONS(6273), 1, + sym_RETURN, + STATE(5350), 1, + aux_sym_signature_repeat1, + STATE(5352), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5936), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [270031] = 9, + [279577] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5703), 1, - sym_UNTIL, - ACTIONS(5796), 1, - anon_sym_SEMI, - STATE(5531), 1, - sym_condition_clause, - STATE(7292), 1, - sym_timeout_clause, - STATE(5157), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6275), 1, + anon_sym_RBRACK, + ACTIONS(6277), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5353), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270061] = 6, + [279604] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6199), 1, - anon_sym_DOT, - STATE(5158), 3, + ACTIONS(6195), 1, + anon_sym_PIPE, + ACTIONS(6279), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + STATE(5354), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5972), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT_GT, - [270085] = 6, + [279627] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(6231), 1, - sym__identifier, - STATE(5159), 3, + STATE(5355), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3788), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [270109] = 9, + ACTIONS(5960), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [279648] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(5443), 1, - sym_GENERIC, - ACTIONS(6201), 1, + ACTIONS(6281), 1, anon_sym_SEMI, - STATE(5567), 1, - sym_generic_map_aspect, - STATE(7384), 1, - sym_port_map_aspect, - STATE(5160), 3, + ACTIONS(6283), 1, + sym_IS, + ACTIONS(6285), 1, + sym_OPEN, + STATE(7601), 1, + sym_file_open_information, + STATE(5356), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270139] = 9, + [279675] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5938), 1, - anon_sym_EQ_GT, - ACTIONS(5940), 1, - anon_sym_PIPE, - STATE(5918), 1, - sym_case_generate_head, - STATE(5921), 1, - sym_case_generate_direct_block, - STATE(5922), 1, - sym_case_generate_body, - STATE(5161), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6287), 1, + anon_sym_RBRACK, + ACTIONS(6289), 1, + sym_RETURN, + STATE(5358), 1, + aux_sym_signature_repeat1, + STATE(5357), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270169] = 6, + [279702] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4581), 1, - sym__suffix, - STATE(5162), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6291), 1, + anon_sym_RBRACK, + ACTIONS(6293), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5358), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6203), 4, - sym_identifier, - sym_ALL, - sym_character_literal, - sym_operator_symbol, - [270193] = 6, + [279729] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(4763), 1, - sym__identifier, - STATE(5163), 3, + ACTIONS(6297), 1, + anon_sym_DOT, + ACTIONS(6295), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5359), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5985), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [270217] = 8, + aux_sym_selected_name_repeat1, + [279752] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6207), 1, + ACTIONS(6300), 1, anon_sym_RBRACK, - ACTIONS(6209), 1, + ACTIONS(6302), 1, sym_RETURN, - STATE(5359), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5164), 3, + STATE(5360), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270244] = 8, + [279779] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6211), 1, + ACTIONS(6304), 1, anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(6306), 1, sym_RETURN, - STATE(5250), 1, + STATE(5360), 1, aux_sym_signature_repeat1, - STATE(5165), 3, + STATE(5361), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270271] = 7, + [279806] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6215), 1, - anon_sym_SEMI, - ACTIONS(6217), 1, - sym_ELSE, - STATE(5923), 1, - sym_else_waveform, - STATE(5166), 4, + ACTIONS(5537), 1, + sym_GENERATE, + STATE(6589), 1, + sym_generate_head, + STATE(6747), 1, + sym_generate_direct_block, + STATE(8009), 1, + sym_generate_body, + STATE(5362), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_conditional_waveforms_repeat1, - [270296] = 8, + [279833] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6220), 1, + ACTIONS(6308), 1, anon_sym_RBRACK, - ACTIONS(6222), 1, + ACTIONS(6310), 1, sym_RETURN, - STATE(5358), 1, + STATE(5364), 1, aux_sym_signature_repeat1, - STATE(5167), 3, + STATE(5363), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270323] = 8, + [279860] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6224), 1, + ACTIONS(6312), 1, anon_sym_RBRACK, - ACTIONS(6226), 1, + ACTIONS(6314), 1, sym_RETURN, - STATE(5167), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5168), 3, + STATE(5364), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270350] = 7, + [279887] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6228), 1, - sym_END, - ACTIONS(6230), 1, - sym_WHEN, - STATE(5997), 1, - sym_case_generate_alternative, - STATE(5169), 4, + ACTIONS(6316), 1, + anon_sym_SEMI, + STATE(7361), 1, + sym_force_mode, + ACTIONS(6318), 2, + sym_IN, + sym_OUT, + STATE(5365), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_case_generate_block_repeat1, - [270375] = 8, + [279912] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6233), 1, + ACTIONS(6320), 1, anon_sym_RBRACK, - ACTIONS(6235), 1, + ACTIONS(6322), 1, sym_RETURN, - STATE(5171), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5170), 3, + STATE(5366), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270402] = 8, + [279939] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6237), 1, + ACTIONS(6324), 1, anon_sym_RBRACK, - ACTIONS(6239), 1, + ACTIONS(6326), 1, sym_RETURN, - STATE(5358), 1, + STATE(5369), 1, aux_sym_signature_repeat1, - STATE(5171), 3, + STATE(5367), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270429] = 8, + [279966] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5741), 1, - sym_USE, - ACTIONS(6241), 1, - sym_FOR, - STATE(5173), 1, - aux_sym_configuration_head_repeat2, - STATE(7825), 1, - sym_verification_unit_binding_indication, - STATE(5172), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6328), 1, + anon_sym_RBRACK, + ACTIONS(6330), 1, + sym_RETURN, + STATE(5366), 1, + aux_sym_signature_repeat1, + STATE(5368), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270456] = 7, + [279993] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6174), 1, - sym_FOR, - ACTIONS(6176), 1, - sym_USE, - STATE(7825), 1, - sym_verification_unit_binding_indication, - STATE(5173), 4, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6332), 1, + anon_sym_RBRACK, + ACTIONS(6334), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5369), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_configuration_head_repeat2, - [270481] = 5, + [280020] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5174), 3, + ACTIONS(6336), 1, + sym_BEGIN, + ACTIONS(6338), 1, + sym_END, + STATE(6063), 1, + sym_entity_body, + STATE(8011), 1, + sym_end_entity, + STATE(5370), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6243), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT_GT, - [270502] = 7, + [280047] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6247), 1, + ACTIONS(6342), 1, anon_sym_LBRACK, - STATE(5910), 1, + STATE(6348), 1, sym_signature, - ACTIONS(6245), 2, + ACTIONS(6340), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(5175), 3, + STATE(5371), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270527] = 5, + [280072] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5176), 3, + STATE(5372), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6249), 4, - anon_sym_SEMI, + ACTIONS(3422), 4, + sym_ATTRIBUTE, + sym_FOR, + sym_GROUP, + sym_USE, + [280093] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6253), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT_GT, - [270548] = 5, + ACTIONS(6344), 1, + anon_sym_RBRACK, + ACTIONS(6346), 1, + sym_RETURN, + STATE(5374), 1, + aux_sym_signature_repeat1, + STATE(5373), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [280120] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5177), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6348), 1, + anon_sym_RBRACK, + ACTIONS(6350), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5374), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [280147] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6117), 1, + sym_CONFIGURATION, + ACTIONS(6119), 1, + sym_ENTITY, + ACTIONS(6121), 1, + sym_OPEN, + STATE(5185), 1, + sym_entity_aspect, + STATE(5375), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [280174] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5376), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6251), 4, + ACTIONS(2882), 4, + sym_BUS, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT_GT, - [270569] = 8, + sym_variable_assignment, + [280195] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6352), 1, anon_sym_RBRACK, - ACTIONS(6255), 1, + ACTIONS(6354), 1, sym_RETURN, - STATE(5179), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5178), 3, + STATE(5377), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270596] = 8, + [280222] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6257), 1, + ACTIONS(6356), 1, anon_sym_RBRACK, - ACTIONS(6259), 1, + ACTIONS(6358), 1, sym_RETURN, - STATE(5358), 1, + STATE(5377), 1, aux_sym_signature_repeat1, - STATE(5179), 3, + STATE(5378), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270623] = 8, + [280249] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6261), 1, + ACTIONS(6360), 1, anon_sym_RBRACK, - ACTIONS(6263), 1, + ACTIONS(6362), 1, sym_RETURN, - STATE(5358), 1, + STATE(5380), 1, aux_sym_signature_repeat1, - STATE(5180), 3, + STATE(5379), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270650] = 8, + [280276] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6265), 1, + ACTIONS(6364), 1, anon_sym_RBRACK, - ACTIONS(6267), 1, + ACTIONS(6366), 1, sym_RETURN, - STATE(5180), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5181), 3, + STATE(5380), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270677] = 7, + [280303] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - STATE(5916), 1, - sym_initialiser, - ACTIONS(6090), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5182), 3, + STATE(5381), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270702] = 7, + ACTIONS(3286), 4, + sym_ATTRIBUTE, + sym_FOR, + sym_GROUP, + sym_USE, + [280324] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6269), 1, + STATE(5382), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3272), 4, + sym_ATTRIBUTE, + sym_FOR, + sym_GROUP, + sym_USE, + [280345] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6368), 1, anon_sym_SEMI, - STATE(7964), 1, + STATE(7116), 1, sym_force_mode, - ACTIONS(6271), 2, + ACTIONS(6318), 2, sym_IN, sym_OUT, - STATE(5183), 3, + STATE(5383), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270727] = 8, + [280370] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6273), 1, - anon_sym_RBRACK, - ACTIONS(6275), 1, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(6370), 1, sym_RETURN, - STATE(5186), 1, - aux_sym_signature_repeat1, - STATE(5184), 3, + STATE(8150), 1, + sym_parameter_list_specification, + STATE(5384), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270754] = 5, + [280397] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5185), 3, + STATE(5385), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3220), 4, - sym_CONTEXT, - sym_END, - sym_LIBRARY, + ACTIONS(5891), 4, + sym_GENERIC, + sym_PORT, sym_USE, - [270775] = 8, + anon_sym_SEMI, + [280418] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6277), 1, + ACTIONS(6372), 1, anon_sym_RBRACK, - ACTIONS(6279), 1, + ACTIONS(6374), 1, sym_RETURN, - STATE(5358), 1, + STATE(5388), 1, aux_sym_signature_repeat1, - STATE(5186), 3, + STATE(5386), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270802] = 7, + [280445] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6281), 1, - anon_sym_SEMI, - ACTIONS(6283), 1, - sym_WHEN, - STATE(5930), 1, - sym_when_expression, - STATE(5187), 4, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(6376), 1, + sym_RETURN, + STATE(7559), 1, + sym_parameter_list_specification, + STATE(5387), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_conditional_or_unaffected_expression_repeat1, - [270827] = 8, + [280472] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5507), 1, - sym_GENERATE, - STATE(6218), 1, - sym_generate_head, - STATE(6899), 1, - sym_generate_direct_block, - STATE(7812), 1, - sym_generate_body, - STATE(5188), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6378), 1, + anon_sym_RBRACK, + ACTIONS(6380), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5388), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270854] = 8, + [280499] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_RBRACK, - ACTIONS(6288), 1, + ACTIONS(6384), 1, sym_RETURN, - STATE(5191), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5189), 3, + STATE(5389), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270881] = 5, + [280526] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5190), 3, + STATE(5390), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5777), 4, + ACTIONS(2882), 4, sym_BUS, sym_REGISTER, anon_sym_SEMI, sym_variable_assignment, - [270902] = 8, + [280547] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6290), 1, + ACTIONS(6386), 1, anon_sym_RBRACK, - ACTIONS(6292), 1, + ACTIONS(6388), 1, sym_RETURN, - STATE(5358), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5191), 3, + STATE(5391), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270929] = 8, + [280574] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6294), 1, + ACTIONS(6390), 1, anon_sym_RBRACK, - ACTIONS(6296), 1, + ACTIONS(6392), 1, sym_RETURN, - STATE(5358), 1, + STATE(5394), 1, aux_sym_signature_repeat1, - STATE(5192), 3, + STATE(5392), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [270956] = 5, + [280601] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5193), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6394), 1, + anon_sym_RBRACK, + ACTIONS(6396), 1, + sym_RETURN, + STATE(5391), 1, + aux_sym_signature_repeat1, + STATE(5393), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6135), 4, - sym_BUS, - sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - [270977] = 8, + [280628] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6298), 1, + ACTIONS(6398), 1, anon_sym_RBRACK, - ACTIONS(6300), 1, + ACTIONS(6400), 1, sym_RETURN, - STATE(5192), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5194), 3, + STATE(5394), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271004] = 5, + [280655] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5195), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6402), 1, + anon_sym_RBRACK, + ACTIONS(6404), 1, + sym_RETURN, + STATE(5397), 1, + aux_sym_signature_repeat1, + STATE(5395), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2666), 4, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_LPAREN, - [271025] = 5, + [280682] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5196), 3, + STATE(5396), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2662), 4, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_LPAREN, - [271046] = 5, + ACTIONS(3462), 4, + sym_ATTRIBUTE, + sym_FOR, + sym_GROUP, + sym_USE, + [280703] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5197), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6406), 1, + anon_sym_RBRACK, + ACTIONS(6408), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5397), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6302), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT_GT, - [271067] = 5, + [280730] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5198), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6410), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5398), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2622), 4, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_LPAREN, - [271088] = 8, + [280757] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6304), 1, + ACTIONS(6414), 1, anon_sym_RBRACK, - ACTIONS(6306), 1, + ACTIONS(6416), 1, sym_RETURN, - STATE(5200), 1, + STATE(5401), 1, aux_sym_signature_repeat1, - STATE(5199), 3, + STATE(5399), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271115] = 8, + [280784] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6308), 1, + ACTIONS(6418), 1, anon_sym_RBRACK, - ACTIONS(6310), 1, + ACTIONS(6420), 1, sym_RETURN, - STATE(5358), 1, + STATE(5398), 1, aux_sym_signature_repeat1, - STATE(5200), 3, + STATE(5400), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271142] = 8, + [280811] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(6312), 1, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6422), 1, + anon_sym_RBRACK, + ACTIONS(6424), 1, sym_RETURN, - STATE(7940), 1, - sym_parameter_list_specification, - STATE(5201), 3, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5401), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271169] = 8, + [280838] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6314), 1, - anon_sym_RBRACK, - ACTIONS(6316), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5202), 3, + ACTIONS(5537), 1, + sym_GENERATE, + STATE(6589), 1, + sym_generate_head, + STATE(6592), 1, + sym_generate_body, + STATE(6747), 1, + sym_generate_direct_block, + STATE(5402), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271196] = 8, + [280865] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6318), 1, - anon_sym_RBRACK, - ACTIONS(6320), 1, - sym_RETURN, - STATE(5205), 1, - aux_sym_signature_repeat1, - STATE(5203), 3, + STATE(5403), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271223] = 8, + ACTIONS(3262), 4, + sym_CONTEXT, + sym_END, + sym_LIBRARY, + sym_USE, + [280886] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6322), 1, - anon_sym_RBRACK, - ACTIONS(6324), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5204), 3, + STATE(5404), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6426), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [280907] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5405), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271250] = 8, + ACTIONS(2404), 4, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + [280928] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6326), 1, + ACTIONS(6428), 1, anon_sym_RBRACK, - ACTIONS(6328), 1, + ACTIONS(6430), 1, sym_RETURN, - STATE(5358), 1, + STATE(5412), 1, aux_sym_signature_repeat1, - STATE(5205), 3, + STATE(5406), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271277] = 6, + [280955] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6332), 1, - anon_sym_DOT, - ACTIONS(6330), 2, + STATE(5407), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6432), 4, anon_sym_SEMI, anon_sym_COMMA, - STATE(5206), 4, + anon_sym_RPAREN, + anon_sym_GT_GT, + [280976] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5408), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_selected_name_repeat1, - [271300] = 8, + ACTIONS(6434), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [280997] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6335), 1, - anon_sym_RBRACK, - ACTIONS(6337), 1, - sym_RETURN, - STATE(5204), 1, - aux_sym_signature_repeat1, - STATE(5207), 3, + STATE(5409), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271327] = 5, + ACTIONS(3272), 4, + sym_CONTEXT, + sym_END, + sym_LIBRARY, + sym_USE, + [281018] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5208), 3, + STATE(5410), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6339), 4, + ACTIONS(6436), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT_GT, - [271348] = 8, + [281039] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6283), 1, + sym_IS, + ACTIONS(6285), 1, + sym_OPEN, + ACTIONS(6438), 1, + anon_sym_SEMI, + STATE(7192), 1, + sym_file_open_information, + STATE(5411), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [281066] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6341), 1, + ACTIONS(6440), 1, anon_sym_RBRACK, - ACTIONS(6343), 1, + ACTIONS(6442), 1, sym_RETURN, - STATE(5211), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5209), 3, + STATE(5412), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271375] = 8, + [281093] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5493), 1, - sym_FOR, - ACTIONS(5741), 1, - sym_USE, - STATE(5173), 1, - aux_sym_configuration_head_repeat2, - STATE(7825), 1, - sym_verification_unit_binding_indication, - STATE(5210), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6444), 1, + anon_sym_RBRACK, + ACTIONS(6446), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5413), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271402] = 8, + [281120] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6345), 1, + ACTIONS(6448), 1, anon_sym_RBRACK, - ACTIONS(6347), 1, + ACTIONS(6450), 1, sym_RETURN, - STATE(5358), 1, + STATE(5418), 1, aux_sym_signature_repeat1, - STATE(5211), 3, + STATE(5414), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271429] = 8, + [281147] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6349), 1, + ACTIONS(6452), 1, anon_sym_RBRACK, - ACTIONS(6351), 1, + ACTIONS(6454), 1, sym_RETURN, - STATE(5227), 1, + STATE(5428), 1, aux_sym_signature_repeat1, - STATE(5212), 3, + STATE(5415), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271456] = 5, + [281174] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5213), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6456), 1, + anon_sym_RBRACK, + ACTIONS(6458), 1, + sym_RETURN, + STATE(5413), 1, + aux_sym_signature_repeat1, + STATE(5416), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6046), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [271477] = 5, + [281201] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5214), 3, + STATE(5417), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6353), 4, - sym_ATTRIBUTE, - sym_FOR, - sym_GROUP, + ACTIONS(3286), 4, + sym_CONTEXT, + sym_END, + sym_LIBRARY, sym_USE, - [271498] = 8, + [281222] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6355), 1, - anon_sym_SEMI, - ACTIONS(6357), 1, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6460), 1, + anon_sym_RBRACK, + ACTIONS(6462), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5418), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [281249] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6283), 1, sym_IS, - ACTIONS(6359), 1, + ACTIONS(6285), 1, sym_OPEN, - STATE(6853), 1, + ACTIONS(6464), 1, + anon_sym_SEMI, + STATE(6891), 1, sym_file_open_information, - STATE(5215), 3, + STATE(5419), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271525] = 5, + [281276] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5216), 3, + STATE(5420), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6361), 4, - sym_ATTRIBUTE, - sym_FOR, - sym_GROUP, - sym_USE, - [271546] = 5, + ACTIONS(2420), 4, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + [281297] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5217), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6466), 1, + anon_sym_RBRACK, + ACTIONS(6468), 1, + sym_RETURN, + STATE(5422), 1, + aux_sym_signature_repeat1, + STATE(5421), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [281324] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6470), 1, + anon_sym_RBRACK, + ACTIONS(6472), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5422), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [281351] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5423), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6363), 4, + ACTIONS(6474), 4, sym_identifier, sym_library_constant, sym_library_function, sym_library_type, - [271567] = 8, + [281372] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6357), 1, - sym_IS, - ACTIONS(6359), 1, - sym_OPEN, - ACTIONS(6365), 1, - anon_sym_SEMI, - STATE(6738), 1, - sym_file_open_information, - STATE(5218), 3, + STATE(5424), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271594] = 8, + ACTIONS(2424), 4, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + [281393] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6367), 1, + ACTIONS(6476), 1, anon_sym_RBRACK, - ACTIONS(6369), 1, + ACTIONS(6478), 1, sym_RETURN, - STATE(5358), 1, + STATE(5426), 1, aux_sym_signature_repeat1, - STATE(5219), 3, + STATE(5425), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271621] = 8, + [281420] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6371), 1, + ACTIONS(6480), 1, anon_sym_RBRACK, - ACTIONS(6373), 1, + ACTIONS(6482), 1, sym_RETURN, - STATE(5223), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5220), 3, + STATE(5426), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271648] = 8, + [281447] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6357), 1, - sym_IS, - ACTIONS(6359), 1, - sym_OPEN, - ACTIONS(6375), 1, - anon_sym_SEMI, - STATE(7555), 1, - sym_file_open_information, - STATE(5221), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6484), 1, + anon_sym_RBRACK, + ACTIONS(6486), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5427), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271675] = 8, + [281474] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6377), 1, + ACTIONS(6488), 1, anon_sym_RBRACK, - ACTIONS(6379), 1, + ACTIONS(6490), 1, sym_RETURN, - STATE(5219), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5222), 3, + STATE(5428), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271702] = 8, + [281501] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6381), 1, + ACTIONS(6492), 1, anon_sym_RBRACK, - ACTIONS(6383), 1, + ACTIONS(6494), 1, sym_RETURN, - STATE(5358), 1, + STATE(5427), 1, aux_sym_signature_repeat1, - STATE(5223), 3, + STATE(5429), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271729] = 6, + [281528] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5940), 1, - anon_sym_PIPE, - ACTIONS(6385), 3, + ACTIONS(6496), 1, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(5224), 3, + ACTIONS(6498), 1, + sym_ELSE, + STATE(6122), 1, + sym_else_waveform, + STATE(5430), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [271752] = 8, + aux_sym_conditional_waveforms_repeat1, + [281553] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6387), 1, - anon_sym_RBRACK, - ACTIONS(6389), 1, - sym_RETURN, - STATE(5202), 1, - aux_sym_signature_repeat1, - STATE(5225), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + STATE(6106), 1, + sym_initialiser, + ACTIONS(6063), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(5431), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271779] = 8, + [281578] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6391), 1, - anon_sym_RBRACK, - ACTIONS(6393), 1, - sym_RETURN, - STATE(5228), 1, - aux_sym_signature_repeat1, - STATE(5226), 3, + ACTIONS(5485), 1, + sym_FOR, + ACTIONS(5831), 1, + sym_USE, + STATE(5558), 1, + aux_sym_configuration_head_repeat2, + STATE(8031), 1, + sym_verification_unit_binding_indication, + STATE(5432), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271806] = 8, + [281605] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6395), 1, - anon_sym_RBRACK, - ACTIONS(6397), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5227), 3, + STATE(5433), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271833] = 8, + ACTIONS(6093), 4, + sym_GENERIC, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + [281626] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6399), 1, - anon_sym_RBRACK, - ACTIONS(6401), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5228), 3, + STATE(5434), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271860] = 5, + ACTIONS(6501), 4, + sym_ATTRIBUTE, + sym_FOR, + sym_GROUP, + sym_USE, + [281647] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5229), 3, + STATE(5435), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6403), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT_GT, - [271881] = 5, + ACTIONS(6503), 4, + sym_ATTRIBUTE, + sym_FOR, + sym_GROUP, + sym_USE, + [281668] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5230), 3, + STATE(5436), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6405), 4, + ACTIONS(6505), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT_GT, - [271902] = 5, + [281689] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5231), 3, + STATE(5437), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6407), 4, + ACTIONS(6245), 4, + sym_BUS, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT_GT, - [271923] = 8, + sym_variable_assignment, + [281710] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6409), 1, + ACTIONS(6507), 1, anon_sym_RBRACK, - ACTIONS(6411), 1, + ACTIONS(6509), 1, sym_RETURN, - STATE(5233), 1, + STATE(5440), 1, aux_sym_signature_repeat1, - STATE(5232), 3, + STATE(5438), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271950] = 8, + [281737] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6413), 1, - anon_sym_RBRACK, - ACTIONS(6415), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5233), 3, + STATE(5439), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [271977] = 8, + ACTIONS(6019), 4, + sym_BUS, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + [281758] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6417), 1, + ACTIONS(6511), 1, anon_sym_RBRACK, - ACTIONS(6419), 1, + ACTIONS(6513), 1, sym_RETURN, - STATE(5358), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5234), 3, + STATE(5440), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272004] = 5, + [281785] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5235), 3, + STATE(5441), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2568), 4, - sym_END, - sym_GENERIC, - sym_IS, - sym_PORT, - [272025] = 8, + ACTIONS(6099), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PIPE, + [281806] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6421), 1, - anon_sym_RBRACK, - ACTIONS(6423), 1, - sym_RETURN, - STATE(5234), 1, - aux_sym_signature_repeat1, - STATE(5236), 3, + ACTIONS(6515), 1, + anon_sym_SEMI, + STATE(8176), 1, + sym_force_mode, + ACTIONS(6318), 2, + sym_IN, + sym_OUT, + STATE(5442), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272052] = 7, + [281831] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - STATE(5900), 1, - sym_initialiser, - ACTIONS(6425), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5237), 3, + STATE(5443), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272077] = 7, + ACTIONS(6073), 4, + sym_BUS, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + [281852] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6429), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - STATE(5241), 1, - aux_sym_waveform_repeat1, - ACTIONS(6427), 2, - sym_WHEN, - anon_sym_SEMI, - STATE(5238), 3, + ACTIONS(6517), 1, + anon_sym_RBRACK, + ACTIONS(6519), 1, + sym_RETURN, + STATE(5445), 1, + aux_sym_signature_repeat1, + STATE(5444), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272102] = 8, + [281879] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6431), 1, - sym_END, - ACTIONS(6433), 1, - sym_WHEN, - STATE(5169), 1, - aux_sym_case_generate_block_repeat1, - STATE(5997), 1, - sym_case_generate_alternative, - STATE(5239), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6521), 1, + anon_sym_RBRACK, + ACTIONS(6523), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5445), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272129] = 8, + [281906] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6435), 1, + ACTIONS(6525), 1, anon_sym_RBRACK, - ACTIONS(6437), 1, + ACTIONS(6527), 1, sym_RETURN, - STATE(5243), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5240), 3, + STATE(5446), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272156] = 6, + [281933] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6441), 1, - anon_sym_COMMA, - ACTIONS(6439), 2, + ACTIONS(2884), 1, sym_WHEN, + ACTIONS(6529), 1, anon_sym_SEMI, - STATE(5241), 4, + STATE(5512), 1, + aux_sym_conditional_or_unaffected_expression_repeat1, + STATE(5976), 1, + sym_when_expression, + STATE(5447), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_waveform_repeat1, - [272179] = 8, + [281960] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6444), 1, - anon_sym_SEMI, - ACTIONS(6446), 1, - sym_ELSE, - STATE(5166), 1, - aux_sym_conditional_waveforms_repeat1, - STATE(5830), 1, - sym_else_waveform, - STATE(5242), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6531), 1, + anon_sym_RBRACK, + ACTIONS(6533), 1, + sym_RETURN, + STATE(5446), 1, + aux_sym_signature_repeat1, + STATE(5448), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272206] = 8, + [281987] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6448), 1, - anon_sym_RBRACK, - ACTIONS(6450), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5243), 3, + STATE(5449), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272233] = 5, + ACTIONS(6535), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT_GT, + [282008] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5244), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6537), 1, + anon_sym_RBRACK, + ACTIONS(6539), 1, + sym_RETURN, + STATE(5452), 1, + aux_sym_signature_repeat1, + STATE(5450), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3242), 4, - sym_CONTEXT, - sym_END, - sym_LIBRARY, - sym_USE, - [272254] = 6, + [282035] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6454), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(6452), 3, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - STATE(5245), 3, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(6541), 1, + sym_RETURN, + STATE(7658), 1, + sym_parameter_list_specification, + STATE(5451), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272277] = 7, + [282062] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6429), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - STATE(5238), 1, - aux_sym_waveform_repeat1, - ACTIONS(6456), 2, - sym_WHEN, - anon_sym_SEMI, - STATE(5246), 3, + ACTIONS(6543), 1, + anon_sym_RBRACK, + ACTIONS(6545), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5452), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272302] = 8, + [282089] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6458), 1, + ACTIONS(6547), 1, anon_sym_RBRACK, - ACTIONS(6460), 1, + ACTIONS(6549), 1, sym_RETURN, - STATE(5248), 1, + STATE(5353), 1, aux_sym_signature_repeat1, - STATE(5247), 3, + STATE(5453), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272329] = 8, + [282116] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6462), 1, + ACTIONS(6551), 1, anon_sym_RBRACK, - ACTIONS(6464), 1, + ACTIONS(6553), 1, sym_RETURN, - STATE(5358), 1, + STATE(5455), 1, aux_sym_signature_repeat1, - STATE(5248), 3, + STATE(5454), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272356] = 5, + [282143] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5249), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6555), 1, + anon_sym_RBRACK, + ACTIONS(6557), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5455), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5917), 4, - sym_GENERIC, - sym_PORT, - sym_USE, - anon_sym_SEMI, - [272377] = 8, + [282170] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6466), 1, + ACTIONS(6559), 1, anon_sym_RBRACK, - ACTIONS(6468), 1, + ACTIONS(6561), 1, sym_RETURN, - STATE(5358), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5250), 3, + STATE(5456), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272404] = 5, + [282197] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5251), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6563), 1, + anon_sym_RBRACK, + ACTIONS(6565), 1, + sym_RETURN, + STATE(5456), 1, + aux_sym_signature_repeat1, + STATE(5457), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6046), 4, - sym_FOR, - sym_UNTIL, - anon_sym_SEMI, - anon_sym_COMMA, - [272425] = 5, + [282224] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5252), 3, + ACTIONS(6569), 1, + anon_sym_COMMA, + STATE(5490), 1, + aux_sym_waveform_repeat1, + ACTIONS(6567), 2, + sym_WHEN, + anon_sym_SEMI, + STATE(5458), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6470), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT_GT, - [272446] = 8, + [282249] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6472), 1, + ACTIONS(6571), 1, anon_sym_RBRACK, - ACTIONS(6474), 1, + ACTIONS(6573), 1, sym_RETURN, - STATE(5254), 1, + STATE(5460), 1, aux_sym_signature_repeat1, - STATE(5253), 3, + STATE(5459), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272473] = 8, + [282276] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6476), 1, + ACTIONS(6575), 1, anon_sym_RBRACK, - ACTIONS(6478), 1, + ACTIONS(6577), 1, sym_RETURN, - STATE(5358), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5254), 3, + STATE(5460), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272500] = 5, + [282303] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5255), 3, + STATE(5461), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6480), 4, + ACTIONS(6579), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT_GT, - [272521] = 8, + [282324] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6482), 1, - anon_sym_RBRACK, - ACTIONS(6484), 1, - sym_RETURN, - STATE(5315), 1, - aux_sym_signature_repeat1, - STATE(5256), 3, + ACTIONS(6583), 1, + anon_sym_LPAREN, + ACTIONS(6581), 3, + sym_GENERIC, + sym_PORT, + anon_sym_SEMI, + STATE(5462), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272548] = 5, + [282347] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5257), 3, + ACTIONS(6585), 1, + sym_END, + ACTIONS(6587), 1, + sym_WHEN, + STATE(5556), 1, + aux_sym_case_generate_block_repeat1, + STATE(6200), 1, + sym_case_generate_alternative, + STATE(5463), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6486), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT_GT, - [272569] = 5, + [282374] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5258), 3, + STATE(5464), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5995), 4, - sym_GENERIC, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - [272590] = 5, + ACTIONS(6426), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT_GT, + [282395] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5259), 3, + STATE(5465), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6488), 4, + ACTIONS(5873), 4, + sym_WHEN, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT_GT, - [272611] = 8, + [282416] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(5877), 1, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6589), 1, + anon_sym_RBRACK, + ACTIONS(6591), 1, sym_RETURN, - STATE(7533), 1, - sym_parameter_list_specification, - STATE(5260), 3, + STATE(5467), 1, + aux_sym_signature_repeat1, + STATE(5466), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272638] = 8, + [282443] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6490), 1, + ACTIONS(6593), 1, anon_sym_RBRACK, - ACTIONS(6492), 1, + ACTIONS(6595), 1, sym_RETURN, - STATE(5262), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5261), 3, + STATE(5467), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272665] = 8, + [282470] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6494), 1, + ACTIONS(6597), 1, anon_sym_RBRACK, - ACTIONS(6496), 1, + ACTIONS(6599), 1, sym_RETURN, - STATE(5358), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5262), 3, + STATE(5468), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272692] = 7, + [282497] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6498), 1, - anon_sym_SEMI, - STATE(6966), 1, - sym_force_mode, - ACTIONS(6271), 2, - sym_IN, - sym_OUT, - STATE(5263), 3, + ACTIONS(5537), 1, + sym_GENERATE, + STATE(6516), 1, + sym_generate_body, + STATE(6589), 1, + sym_generate_head, + STATE(6747), 1, + sym_generate_direct_block, + STATE(5469), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272717] = 8, + [282524] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6500), 1, + ACTIONS(6601), 1, anon_sym_RBRACK, - ACTIONS(6502), 1, + ACTIONS(6603), 1, sym_RETURN, - STATE(5358), 1, + STATE(5468), 1, aux_sym_signature_repeat1, - STATE(5264), 3, + STATE(5470), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272744] = 8, + [282551] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5507), 1, - sym_GENERATE, - STATE(6218), 1, - sym_generate_head, - STATE(6268), 1, - sym_generate_body, - STATE(6899), 1, - sym_generate_direct_block, - STATE(5265), 3, + ACTIONS(6605), 1, + anon_sym_SEMI, + STATE(7076), 1, + sym_force_mode, + ACTIONS(6318), 2, + sym_IN, + sym_OUT, + STATE(5471), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272771] = 8, + [282576] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6504), 1, - anon_sym_RBRACK, - ACTIONS(6506), 1, - sym_RETURN, - STATE(5264), 1, - aux_sym_signature_repeat1, - STATE(5266), 3, + STATE(5472), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272798] = 8, + ACTIONS(6073), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [282597] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6508), 1, + ACTIONS(6607), 1, anon_sym_RBRACK, - ACTIONS(6510), 1, + ACTIONS(6609), 1, sym_RETURN, - STATE(5268), 1, + STATE(5477), 1, aux_sym_signature_repeat1, - STATE(5267), 3, + STATE(5473), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272825] = 8, + [282624] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6512), 1, - anon_sym_RBRACK, - ACTIONS(6514), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5268), 3, + STATE(5474), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272852] = 8, + ACTIONS(6019), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [282645] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6357), 1, + ACTIONS(6283), 1, sym_IS, - ACTIONS(6359), 1, + ACTIONS(6285), 1, sym_OPEN, - ACTIONS(6516), 1, + ACTIONS(6611), 1, anon_sym_SEMI, - STATE(7385), 1, + STATE(7008), 1, sym_file_open_information, - STATE(5269), 3, + STATE(5475), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272879] = 8, + [282672] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(6518), 1, + STATE(5476), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6613), 4, + sym_identifier, + sym_library_constant, + sym_library_function, + sym_library_type, + [282693] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, + anon_sym_RBRACK, + ACTIONS(6617), 1, sym_RETURN, - STATE(7381), 1, - sym_parameter_list_specification, - STATE(5270), 3, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5477), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272906] = 5, + [282720] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5271), 3, + STATE(5478), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6520), 4, - sym_BUS, + ACTIONS(6619), 4, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - sym_variable_assignment, - [272927] = 8, + anon_sym_GT_GT, + [282741] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6522), 1, - anon_sym_RBRACK, - ACTIONS(6524), 1, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(6621), 1, sym_RETURN, - STATE(5274), 1, - aux_sym_signature_repeat1, - STATE(5272), 3, + STATE(7427), 1, + sym_parameter_list_specification, + STATE(5479), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [272954] = 5, + [282768] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5273), 3, + STATE(5480), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6488), 4, + ACTIONS(6623), 4, sym_BUS, anon_sym_SEMI, anon_sym_RPAREN, sym_variable_assignment, - [272975] = 8, + [282789] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6526), 1, + ACTIONS(6625), 1, anon_sym_RBRACK, - ACTIONS(6528), 1, + ACTIONS(6627), 1, sym_RETURN, - STATE(5358), 1, + STATE(5482), 1, aux_sym_signature_repeat1, - STATE(5274), 3, + STATE(5481), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273002] = 8, + [282816] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(6530), 1, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6629), 1, + anon_sym_RBRACK, + ACTIONS(6631), 1, sym_RETURN, - STATE(7847), 1, - sym_parameter_list_specification, - STATE(5275), 3, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5482), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273029] = 8, + [282843] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5507), 1, - sym_GENERATE, - STATE(6218), 1, - sym_generate_head, - STATE(6330), 1, - sym_generate_body, - STATE(6899), 1, - sym_generate_direct_block, - STATE(5276), 3, + ACTIONS(6633), 1, + anon_sym_SEMI, + STATE(8091), 1, + sym_force_mode, + ACTIONS(6318), 2, + sym_IN, + sym_OUT, + STATE(5483), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273056] = 5, + [282868] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5277), 3, + ACTIONS(6635), 1, + anon_sym_SEMI, + ACTIONS(6637), 1, + sym_ELSE, + STATE(5497), 1, + aux_sym_conditional_waveforms_repeat1, + STATE(5685), 1, + sym_else_waveform, + STATE(5484), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6486), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [273077] = 8, + [282895] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(6532), 1, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6639), 1, + anon_sym_RBRACK, + ACTIONS(6641), 1, sym_RETURN, - STATE(6612), 1, - sym_parameter_list_specification, - STATE(5278), 3, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5485), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273104] = 8, + [282922] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6534), 1, + ACTIONS(6643), 1, anon_sym_RBRACK, - ACTIONS(6536), 1, + ACTIONS(6645), 1, sym_RETURN, - STATE(5284), 1, + STATE(5499), 1, aux_sym_signature_repeat1, - STATE(5279), 3, + STATE(5486), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273131] = 8, + [282949] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6538), 1, + ACTIONS(6647), 1, anon_sym_RBRACK, - ACTIONS(6540), 1, + ACTIONS(6649), 1, sym_RETURN, - STATE(5358), 1, + STATE(5485), 1, aux_sym_signature_repeat1, - STATE(5280), 3, + STATE(5487), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273158] = 8, + [282976] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6542), 1, + ACTIONS(6651), 1, anon_sym_RBRACK, - ACTIONS(6544), 1, + ACTIONS(6653), 1, sym_RETURN, - STATE(5294), 1, + STATE(5489), 1, aux_sym_signature_repeat1, - STATE(5281), 3, + STATE(5488), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273185] = 5, + [283003] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5282), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6655), 1, + anon_sym_RBRACK, + ACTIONS(6657), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5489), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6480), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [273206] = 5, + [283030] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5283), 3, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(6659), 2, + sym_WHEN, + anon_sym_SEMI, + STATE(5490), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6470), 4, - sym_BUS, + aux_sym_waveform_repeat1, + [283053] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6283), 1, + sym_IS, + ACTIONS(6285), 1, + sym_OPEN, + ACTIONS(6664), 1, anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [273227] = 8, + STATE(6802), 1, + sym_file_open_information, + STATE(5491), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [283080] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6546), 1, + ACTIONS(6666), 1, anon_sym_RBRACK, - ACTIONS(6548), 1, + ACTIONS(6668), 1, sym_RETURN, - STATE(5358), 1, + STATE(5493), 1, aux_sym_signature_repeat1, - STATE(5284), 3, + STATE(5492), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273254] = 8, + [283107] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6550), 1, + ACTIONS(6670), 1, anon_sym_RBRACK, - ACTIONS(6552), 1, + ACTIONS(6672), 1, sym_RETURN, - STATE(5280), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5285), 3, + STATE(5493), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273281] = 8, + [283134] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6357), 1, - sym_IS, - ACTIONS(6359), 1, - sym_OPEN, - ACTIONS(6554), 1, + ACTIONS(5695), 1, + anon_sym_LPAREN, + ACTIONS(5701), 1, + sym_PARAMETER, + ACTIONS(6228), 1, anon_sym_SEMI, - STATE(6643), 1, - sym_file_open_information, - STATE(5286), 3, + STATE(8310), 1, + sym_parameter_list_specification, + STATE(5494), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273308] = 5, + [283161] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5287), 3, + ACTIONS(6230), 1, + sym_END, + ACTIONS(6232), 1, + sym_USE, + STATE(7383), 1, + sym_verification_unit_binding_indication, + STATE(5495), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2793), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [273329] = 8, + aux_sym_configuration_head_repeat2, + [283186] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6556), 1, - anon_sym_RBRACK, - ACTIONS(6558), 1, - sym_RETURN, - STATE(5289), 1, - aux_sym_signature_repeat1, - STATE(5288), 3, + STATE(5496), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273356] = 8, + ACTIONS(6674), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [283207] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6560), 1, - anon_sym_RBRACK, - ACTIONS(6562), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5289), 3, + ACTIONS(6637), 1, + sym_ELSE, + ACTIONS(6676), 1, + anon_sym_SEMI, + STATE(5430), 1, + aux_sym_conditional_waveforms_repeat1, + STATE(5815), 1, + sym_else_waveform, + STATE(5497), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273383] = 8, + [283234] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6446), 1, - sym_ELSE, - ACTIONS(6564), 1, - anon_sym_SEMI, - STATE(5242), 1, - aux_sym_conditional_waveforms_repeat1, - STATE(5682), 1, - sym_else_waveform, - STATE(5290), 3, + STATE(5498), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273410] = 8, + ACTIONS(6678), 4, + sym_IS, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + [283255] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5507), 1, - sym_GENERATE, - STATE(6218), 1, - sym_generate_head, - STATE(6399), 1, - sym_generate_body, - STATE(6899), 1, - sym_generate_direct_block, - STATE(5291), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6680), 1, + anon_sym_RBRACK, + ACTIONS(6682), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5499), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273437] = 5, + [283282] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5292), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6684), 1, + anon_sym_RBRACK, + ACTIONS(6686), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5500), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6407), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [273458] = 5, + [283309] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5293), 3, + STATE(5501), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6405), 4, + ACTIONS(6535), 4, sym_BUS, anon_sym_SEMI, anon_sym_RPAREN, sym_variable_assignment, - [273479] = 8, + [283330] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6566), 1, + ACTIONS(6688), 1, anon_sym_RBRACK, - ACTIONS(6568), 1, + ACTIONS(6690), 1, sym_RETURN, - STATE(5358), 1, + STATE(5506), 1, aux_sym_signature_repeat1, - STATE(5294), 3, + STATE(5502), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273506] = 5, + [283357] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5295), 3, + STATE(5503), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6403), 4, + ACTIONS(6247), 4, sym_BUS, anon_sym_SEMI, anon_sym_RPAREN, sym_variable_assignment, - [273527] = 8, + [283378] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6570), 1, + ACTIONS(6692), 1, anon_sym_RBRACK, - ACTIONS(6572), 1, + ACTIONS(6694), 1, sym_RETURN, - STATE(5297), 1, + STATE(5500), 1, aux_sym_signature_repeat1, - STATE(5296), 3, + STATE(5504), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273554] = 8, + [283405] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6574), 1, - anon_sym_RBRACK, - ACTIONS(6576), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5297), 3, + STATE(5505), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273581] = 8, + ACTIONS(6436), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [283426] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6578), 1, + ACTIONS(6696), 1, anon_sym_RBRACK, - ACTIONS(6580), 1, + ACTIONS(6698), 1, sym_RETURN, - STATE(5358), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5298), 3, + STATE(5506), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273608] = 8, + [283453] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6582), 1, + ACTIONS(6700), 1, anon_sym_RBRACK, - ACTIONS(6584), 1, + ACTIONS(6702), 1, sym_RETURN, - STATE(5298), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5299), 3, + STATE(5507), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273635] = 5, + [283480] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5300), 3, + STATE(5508), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6339), 4, + ACTIONS(6619), 4, sym_BUS, anon_sym_SEMI, anon_sym_RPAREN, sym_variable_assignment, - [273656] = 5, + [283501] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5301), 3, + STATE(5509), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6520), 4, + ACTIONS(6579), 4, + sym_BUS, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT_GT, - [273677] = 8, + sym_variable_assignment, + [283522] = 8, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(6704), 1, + sym_RETURN, + STATE(7480), 1, + sym_parameter_list_specification, + STATE(5510), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [283549] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6586), 1, + ACTIONS(6706), 1, anon_sym_RBRACK, - ACTIONS(6588), 1, + ACTIONS(6708), 1, sym_RETURN, - STATE(5304), 1, + STATE(5348), 1, aux_sym_signature_repeat1, - STATE(5302), 3, + STATE(5511), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273704] = 7, + [283576] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6592), 1, - anon_sym_DOT, - STATE(5372), 1, - aux_sym_selected_name_repeat1, - ACTIONS(6590), 2, + ACTIONS(6710), 1, anon_sym_SEMI, - anon_sym_COMMA, - STATE(5303), 3, + ACTIONS(6712), 1, + sym_WHEN, + STATE(6131), 1, + sym_when_expression, + STATE(5512), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [273729] = 8, + aux_sym_conditional_or_unaffected_expression_repeat1, + [283601] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6594), 1, + ACTIONS(6715), 1, anon_sym_RBRACK, - ACTIONS(6596), 1, + ACTIONS(6717), 1, sym_RETURN, - STATE(5358), 1, + STATE(5516), 1, aux_sym_signature_repeat1, - STATE(5304), 3, + STATE(5513), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273756] = 8, + [283628] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(6598), 1, - anon_sym_SEMI, - STATE(5365), 1, - aux_sym_conditional_or_unaffected_expression_repeat1, - STATE(5433), 1, - sym_when_expression, - STATE(5305), 3, + STATE(5514), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273783] = 8, + ACTIONS(6432), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [283649] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6600), 1, - anon_sym_RBRACK, - ACTIONS(6602), 1, - sym_RETURN, - STATE(5307), 1, - aux_sym_signature_repeat1, - STATE(5306), 3, + ACTIONS(6283), 1, + sym_IS, + ACTIONS(6285), 1, + sym_OPEN, + ACTIONS(6719), 1, + anon_sym_SEMI, + STATE(7434), 1, + sym_file_open_information, + STATE(5515), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273810] = 8, + [283676] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6604), 1, + ACTIONS(6721), 1, anon_sym_RBRACK, - ACTIONS(6606), 1, + ACTIONS(6723), 1, sym_RETURN, - STATE(5358), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5307), 3, + STATE(5516), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273837] = 8, + [283703] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6608), 1, - anon_sym_RBRACK, - ACTIONS(6610), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5308), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + STATE(6086), 1, + sym_initialiser, + ACTIONS(6725), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(5517), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273864] = 8, + [283728] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6612), 1, - anon_sym_RBRACK, - ACTIONS(6614), 1, - sym_RETURN, - STATE(5308), 1, - aux_sym_signature_repeat1, - STATE(5309), 3, + ACTIONS(6727), 1, + anon_sym_SEMI, + STATE(7320), 1, + sym_force_mode, + ACTIONS(6318), 2, + sym_IN, + sym_OUT, + STATE(5518), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273891] = 8, + [283753] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6616), 1, + ACTIONS(6729), 1, anon_sym_RBRACK, - ACTIONS(6618), 1, + ACTIONS(6731), 1, sym_RETURN, - STATE(5311), 1, + STATE(5520), 1, aux_sym_signature_repeat1, - STATE(5310), 3, + STATE(5519), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273918] = 8, + [283780] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6620), 1, + ACTIONS(6733), 1, anon_sym_RBRACK, - ACTIONS(6622), 1, + ACTIONS(6735), 1, sym_RETURN, - STATE(5358), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5311), 3, + STATE(5520), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [273945] = 5, + [283807] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5312), 3, + ACTIONS(5721), 1, + anon_sym_LPAREN, + ACTIONS(5727), 1, + sym_PARAMETER, + ACTIONS(6737), 1, + sym_RETURN, + STATE(8046), 1, + sym_parameter_list_specification, + STATE(5521), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3242), 4, - sym_ATTRIBUTE, - sym_FOR, - sym_GROUP, - sym_USE, - [273966] = 5, + [283834] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5313), 3, + STATE(5522), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6080), 4, - sym_BUS, - sym_REGISTER, - anon_sym_SEMI, - sym_variable_assignment, - [273987] = 8, + ACTIONS(2528), 4, + sym_END, + sym_GENERIC, + sym_IS, + sym_PORT, + [283855] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5723), 1, - anon_sym_LPAREN, - ACTIONS(5729), 1, - sym_PARAMETER, - ACTIONS(6005), 1, - anon_sym_SEMI, - STATE(8089), 1, - sym_parameter_list_specification, - STATE(5314), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6739), 1, + anon_sym_RBRACK, + ACTIONS(6741), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5523), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274014] = 8, + [283882] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6624), 1, + ACTIONS(6743), 1, anon_sym_RBRACK, - ACTIONS(6626), 1, + ACTIONS(6745), 1, sym_RETURN, - STATE(5358), 1, + STATE(5523), 1, aux_sym_signature_repeat1, - STATE(5315), 3, + STATE(5524), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274041] = 5, + [283909] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5316), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6747), 1, + anon_sym_RBRACK, + ACTIONS(6749), 1, + sym_RETURN, + STATE(5526), 1, + aux_sym_signature_repeat1, + STATE(5525), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3220), 4, - sym_ATTRIBUTE, - sym_FOR, - sym_GROUP, - sym_USE, - [274062] = 8, + [283936] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6628), 1, + ACTIONS(6751), 1, anon_sym_RBRACK, - ACTIONS(6630), 1, + ACTIONS(6753), 1, sym_RETURN, - STATE(5318), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5317), 3, + STATE(5526), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274089] = 8, + [283963] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6632), 1, + ACTIONS(6755), 1, anon_sym_RBRACK, - ACTIONS(6634), 1, + ACTIONS(6757), 1, sym_RETURN, - STATE(5358), 1, + STATE(5507), 1, aux_sym_signature_repeat1, - STATE(5318), 3, + STATE(5527), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274116] = 8, + [283990] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6636), 1, - anon_sym_RBRACK, - ACTIONS(6638), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5319), 3, + STATE(5528), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274143] = 8, + ACTIONS(6759), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT_GT, + [284011] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3392), 1, - sym_WHEN, - STATE(5135), 1, - aux_sym_case_body_repeat1, - STATE(6397), 1, - sym_case_statement_alternative, - STATE(6508), 1, - sym_when_element, - STATE(5320), 3, + ACTIONS(6763), 1, + anon_sym_LPAREN, + ACTIONS(6761), 3, + sym_GENERIC, + sym_PORT, + anon_sym_SEMI, + STATE(5529), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274170] = 5, + [284034] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5321), 3, + STATE(5530), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6302), 4, - sym_BUS, + ACTIONS(6674), 4, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - sym_variable_assignment, - [274191] = 8, + anon_sym_GT_GT, + [284055] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5531), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(3230), 4, + sym_CONTEXT, + sym_END, + sym_LIBRARY, + sym_USE, + [284076] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6640), 1, + ACTIONS(6765), 1, anon_sym_RBRACK, - ACTIONS(6642), 1, + ACTIONS(6767), 1, sym_RETURN, - STATE(5319), 1, + STATE(5534), 1, aux_sym_signature_repeat1, - STATE(5322), 3, + STATE(5532), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274218] = 5, + [284103] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5323), 3, + ACTIONS(6769), 1, + anon_sym_COMMA, + ACTIONS(6772), 2, + sym_RETURN, + anon_sym_RBRACK, + STATE(5533), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3410), 4, - sym_ATTRIBUTE, - sym_FOR, - sym_GROUP, - sym_USE, - [274239] = 8, + aux_sym_signature_repeat1, + [284126] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6644), 1, + ACTIONS(6774), 1, anon_sym_RBRACK, - ACTIONS(6646), 1, + ACTIONS(6776), 1, sym_RETURN, - STATE(5328), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5324), 3, + STATE(5534), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274266] = 5, + [284153] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5325), 3, + STATE(5535), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(2793), 4, - sym_BUS, - sym_REGISTER, + ACTIONS(6778), 4, anon_sym_SEMI, - sym_variable_assignment, - [274287] = 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT_GT, + [284174] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6648), 1, - anon_sym_SEMI, - STATE(7009), 1, - sym_force_mode, - ACTIONS(6271), 2, - sym_IN, - sym_OUT, - STATE(5326), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6780), 1, + anon_sym_RBRACK, + ACTIONS(6782), 1, + sym_RETURN, + STATE(5537), 1, + aux_sym_signature_repeat1, + STATE(5536), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274312] = 7, + [284201] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6650), 1, - anon_sym_SEMI, - STATE(7296), 1, - sym_force_mode, - ACTIONS(6271), 2, - sym_IN, - sym_OUT, - STATE(5327), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6784), 1, + anon_sym_RBRACK, + ACTIONS(6786), 1, + sym_RETURN, + STATE(5533), 1, + aux_sym_signature_repeat1, + STATE(5537), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274337] = 8, + [284228] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_RBRACK, - ACTIONS(6654), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5328), 3, + ACTIONS(5831), 1, + sym_USE, + ACTIONS(6788), 1, + sym_FOR, + STATE(5558), 1, + aux_sym_configuration_head_repeat2, + STATE(8031), 1, + sym_verification_unit_binding_indication, + STATE(5538), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274364] = 5, + [284255] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5329), 3, + STATE(5539), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3460), 4, - sym_ATTRIBUTE, - sym_FOR, - sym_GROUP, + ACTIONS(3228), 4, + sym_CONTEXT, + sym_END, + sym_LIBRARY, sym_USE, - [274385] = 8, + [284276] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6656), 1, + ACTIONS(6790), 1, anon_sym_RBRACK, - ACTIONS(6658), 1, + ACTIONS(6792), 1, sym_RETURN, - STATE(5331), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5330), 3, + STATE(5540), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274412] = 8, + [284303] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6660), 1, - anon_sym_RBRACK, - ACTIONS(6662), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5331), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(5447), 1, + aux_sym_conditional_or_unaffected_expression_repeat1, + STATE(5803), 1, + sym_when_expression, + STATE(5541), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274439] = 8, + [284330] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6664), 1, + ACTIONS(6796), 1, anon_sym_RBRACK, - ACTIONS(6666), 1, + ACTIONS(6798), 1, sym_RETURN, - STATE(5358), 1, + STATE(5540), 1, aux_sym_signature_repeat1, - STATE(5332), 3, + STATE(5542), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274466] = 8, + [284357] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6569), 1, anon_sym_COMMA, - ACTIONS(6668), 1, - anon_sym_RBRACK, - ACTIONS(6670), 1, - sym_RETURN, - STATE(5332), 1, - aux_sym_signature_repeat1, - STATE(5333), 3, + STATE(5458), 1, + aux_sym_waveform_repeat1, + ACTIONS(6800), 2, + sym_WHEN, + anon_sym_SEMI, + STATE(5543), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274493] = 5, + [284382] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5334), 3, + STATE(5544), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3366), 4, - sym_CONTEXT, - sym_END, - sym_LIBRARY, - sym_USE, - [274514] = 5, + ACTIONS(6802), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT_GT, + [284403] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5335), 3, + STATE(5545), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3364), 4, - sym_CONTEXT, - sym_END, - sym_LIBRARY, - sym_USE, - [274535] = 8, + ACTIONS(6245), 4, + sym_BUS, + sym_REGISTER, + anon_sym_SEMI, + sym_variable_assignment, + [284424] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + STATE(5546), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + ACTIONS(6804), 4, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(6672), 1, - anon_sym_RBRACK, - ACTIONS(6674), 1, - sym_RETURN, - STATE(5339), 1, - aux_sym_signature_repeat1, - STATE(5336), 3, + anon_sym_RPAREN, + anon_sym_GT_GT, + [284445] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + STATE(5547), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274562] = 5, + ACTIONS(6804), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [284466] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5337), 3, + STATE(5548), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6129), 4, + ACTIONS(6623), 4, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PIPE, - [274583] = 5, + anon_sym_RPAREN, + anon_sym_GT_GT, + [284487] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5338), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6806), 1, + anon_sym_RBRACK, + ACTIONS(6808), 1, + sym_RETURN, + STATE(5555), 1, + aux_sym_signature_repeat1, + STATE(5549), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6251), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [274604] = 8, + [284514] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6676), 1, + ACTIONS(6810), 1, anon_sym_RBRACK, - ACTIONS(6678), 1, + ACTIONS(6812), 1, sym_RETURN, - STATE(5358), 1, + STATE(5389), 1, aux_sym_signature_repeat1, - STATE(5339), 3, + STATE(5550), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274631] = 8, + [284541] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6680), 1, + ACTIONS(6814), 1, anon_sym_RBRACK, - ACTIONS(6682), 1, + ACTIONS(6816), 1, sym_RETURN, - STATE(5346), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5340), 3, + STATE(5551), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274658] = 5, + [284568] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5341), 3, + ACTIONS(5537), 1, + sym_GENERATE, + STATE(6451), 1, + sym_generate_body, + STATE(6589), 1, + sym_generate_head, + STATE(6747), 1, + sym_generate_direct_block, + STATE(5552), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6249), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [274679] = 7, + [284595] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6684), 1, - anon_sym_SEMI, - STATE(7879), 1, - sym_force_mode, - ACTIONS(6271), 2, - sym_IN, - sym_OUT, - STATE(5342), 3, + STATE(5553), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274704] = 5, + ACTIONS(6759), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [284616] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5343), 3, + ACTIONS(6253), 1, + anon_sym_COMMA, + ACTIONS(6818), 1, + anon_sym_RBRACK, + ACTIONS(6820), 1, + sym_RETURN, + STATE(5551), 1, + aux_sym_signature_repeat1, + STATE(5554), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3238), 4, - sym_CONTEXT, - sym_END, - sym_LIBRARY, - sym_USE, - [274725] = 8, + [284643] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - ACTIONS(6686), 1, + ACTIONS(6822), 1, anon_sym_RBRACK, - ACTIONS(6688), 1, + ACTIONS(6824), 1, sym_RETURN, - STATE(5347), 1, + STATE(5533), 1, aux_sym_signature_repeat1, - STATE(5344), 3, + STATE(5555), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274752] = 5, + [284670] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5345), 3, + ACTIONS(6826), 1, + sym_END, + ACTIONS(6828), 1, + sym_WHEN, + STATE(6200), 1, + sym_case_generate_alternative, + STATE(5556), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6243), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [274773] = 8, + aux_sym_case_generate_block_repeat1, + [284695] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6690), 1, - anon_sym_RBRACK, - ACTIONS(6692), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5346), 3, + ACTIONS(3412), 1, + sym_WHEN, + STATE(5317), 1, + aux_sym_case_body_repeat1, + STATE(6294), 1, + sym_case_statement_alternative, + STATE(7786), 1, + sym_when_element, + STATE(5557), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274800] = 8, + [284722] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6694), 1, - anon_sym_RBRACK, - ACTIONS(6696), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5347), 3, + ACTIONS(6230), 1, + sym_FOR, + ACTIONS(6232), 1, + sym_USE, + STATE(8031), 1, + sym_verification_unit_binding_indication, + STATE(5558), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [274827] = 8, + aux_sym_configuration_head_repeat2, + [284747] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6698), 1, - anon_sym_RBRACK, - ACTIONS(6700), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5348), 3, + STATE(5559), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274854] = 5, + ACTIONS(6778), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [284768] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5349), 3, + STATE(5560), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(3230), 4, - sym_CONTEXT, - sym_END, - sym_LIBRARY, - sym_USE, - [274875] = 8, + ACTIONS(6831), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PIPE, + [284789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6702), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5350), 3, + STATE(5561), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274902] = 8, + ACTIONS(6802), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [284810] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6251), 1, + anon_sym_DOT, + STATE(5359), 1, + aux_sym_selected_name_repeat1, + ACTIONS(6833), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(6706), 1, - anon_sym_RBRACK, - ACTIONS(6708), 1, - sym_RETURN, - STATE(5348), 1, - aux_sym_signature_repeat1, - STATE(5351), 3, + STATE(5562), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [274929] = 5, + [284835] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5352), 3, + ACTIONS(6837), 1, + anon_sym_LPAREN, + ACTIONS(6835), 3, + sym_GENERIC, + sym_PORT, + anon_sym_SEMI, + STATE(5563), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6710), 4, - sym_IS, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_LPAREN, - [274950] = 7, + [284858] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6174), 1, - sym_END, - ACTIONS(6176), 1, - sym_USE, - STATE(7324), 1, - sym_verification_unit_binding_indication, - STATE(5353), 4, + STATE(5564), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_configuration_head_repeat2, - [274975] = 8, + ACTIONS(6505), 4, + sym_BUS, + anon_sym_SEMI, + anon_sym_RPAREN, + sym_variable_assignment, + [284879] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6712), 1, - anon_sym_RBRACK, - ACTIONS(6714), 1, - sym_RETURN, - STATE(5355), 1, - aux_sym_signature_repeat1, - STATE(5354), 3, + ACTIONS(6117), 1, + sym_CONFIGURATION, + ACTIONS(6119), 1, + sym_ENTITY, + ACTIONS(6121), 1, + sym_OPEN, + STATE(5255), 1, + sym_entity_aspect, + STATE(5565), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275002] = 8, + [284906] = 8, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6716), 1, - anon_sym_RBRACK, - ACTIONS(6718), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5355), 3, + ACTIONS(5537), 1, + sym_GENERATE, + STATE(6589), 1, + sym_generate_head, + STATE(6621), 1, + sym_generate_body, + STATE(6747), 1, + sym_generate_direct_block, + STATE(5566), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275029] = 8, + [284933] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6839), 1, anon_sym_COMMA, - ACTIONS(6720), 1, - anon_sym_RBRACK, - ACTIONS(6722), 1, - sym_RETURN, - STATE(5357), 1, - aux_sym_signature_repeat1, - STATE(5356), 3, + ACTIONS(6841), 1, + anon_sym_RPAREN, + STATE(6009), 1, + aux_sym_association_or_range_list_repeat1, + STATE(5567), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275056] = 8, + [284957] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6724), 1, - anon_sym_RBRACK, - ACTIONS(6726), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5357), 3, + ACTIONS(6843), 1, + sym_CONSTANT, + ACTIONS(6845), 1, + sym_SIGNAL, + ACTIONS(6847), 1, + sym_VARIABLE, + STATE(5568), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275083] = 6, + [284981] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6728), 1, - anon_sym_COMMA, - ACTIONS(6046), 2, - sym_RETURN, - anon_sym_RBRACK, - STATE(5358), 4, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(6849), 1, + anon_sym_SEMI, + STATE(8137), 1, + sym_generic_map_aspect, + STATE(5569), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_signature_repeat1, - [275106] = 8, + [285005] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6851), 1, anon_sym_COMMA, - ACTIONS(6731), 1, - anon_sym_RBRACK, - ACTIONS(6733), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5359), 3, + ACTIONS(6853), 1, + anon_sym_COLON, + STATE(5829), 1, + aux_sym_identifier_list_repeat1, + STATE(5570), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275133] = 8, + [285029] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6855), 1, + anon_sym_SEMI, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(6735), 1, - anon_sym_RBRACK, - ACTIONS(6737), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5360), 3, + STATE(5663), 1, + aux_sym_use_clause_repeat1, + STATE(5571), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275160] = 7, + [285053] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6739), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6153), 1, anon_sym_SEMI, - STATE(7247), 1, - sym_force_mode, - ACTIONS(6271), 2, - sym_IN, - sym_OUT, - STATE(5361), 3, + STATE(6715), 1, + sym_initialiser, + STATE(5572), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275185] = 8, + [285077] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6741), 1, - anon_sym_RBRACK, - ACTIONS(6743), 1, - sym_RETURN, - STATE(5360), 1, - aux_sym_signature_repeat1, - STATE(5362), 3, + ACTIONS(6859), 1, + sym_CONSTANT, + ACTIONS(6861), 1, + sym_SIGNAL, + ACTIONS(6863), 1, + sym_VARIABLE, + STATE(5573), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275212] = 8, + [285101] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5507), 1, - sym_GENERATE, - STATE(6216), 1, - sym_generate_body, - STATE(6218), 1, - sym_generate_head, - STATE(6899), 1, - sym_generate_direct_block, - STATE(5363), 3, + ACTIONS(6865), 1, + sym_CONSTANT, + ACTIONS(6867), 1, + sym_SIGNAL, + ACTIONS(6869), 1, + sym_VARIABLE, + STATE(5574), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275239] = 5, + [285125] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5364), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(6873), 1, + anon_sym_RPAREN, + STATE(5582), 1, + aux_sym_association_list_repeat1, + STATE(5575), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6080), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [275260] = 8, + [285149] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(6745), 1, - anon_sym_SEMI, - STATE(5187), 1, - aux_sym_conditional_or_unaffected_expression_repeat1, - STATE(5785), 1, - sym_when_expression, - STATE(5365), 3, + ACTIONS(6875), 1, + sym_SHARED, + ACTIONS(6877), 1, + sym_VARIABLE, + STATE(4698), 1, + sym_variable_declaration, + STATE(5576), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275287] = 8, + [285173] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6074), 1, - sym_CONFIGURATION, - ACTIONS(6076), 1, - sym_ENTITY, - ACTIONS(6078), 1, - sym_OPEN, - STATE(5160), 1, - sym_entity_aspect, - STATE(5366), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(6879), 1, + anon_sym_SEMI, + STATE(6707), 1, + sym_generic_map_aspect, + STATE(5577), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275314] = 5, + [285197] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5367), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(6881), 1, + anon_sym_SEMI, + STATE(6702), 1, + sym_generic_map_aspect, + STATE(5578), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6747), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [275335] = 8, + [285221] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, + ACTIONS(6883), 1, anon_sym_COMMA, - ACTIONS(6749), 1, - anon_sym_RBRACK, - ACTIONS(6751), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5368), 3, + ACTIONS(6885), 1, + anon_sym_RPAREN, + STATE(5834), 1, + aux_sym_enumeration_type_definition_repeat1, + STATE(5579), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275362] = 8, + [285245] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6753), 1, - anon_sym_RBRACK, - ACTIONS(6755), 1, - sym_RETURN, - STATE(5368), 1, - aux_sym_signature_repeat1, - STATE(5369), 3, + ACTIONS(6887), 1, + sym_CONSTANT, + ACTIONS(6889), 1, + sym_SIGNAL, + ACTIONS(6891), 1, + sym_VARIABLE, + STATE(5580), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275389] = 8, + [285269] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5679), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - sym_PARAMETER, - ACTIONS(5889), 1, - sym_RETURN, - STATE(6682), 1, - sym_parameter_list_specification, - STATE(5370), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6893), 1, + anon_sym_SEMI, + STATE(6701), 1, + sym_initialiser, + STATE(5581), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275416] = 5, + [285293] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5371), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(6895), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5582), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6757), 4, - sym_identifier, - sym_library_constant, - sym_library_function, - sym_library_type, - [275437] = 7, + [285317] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6592), 1, - anon_sym_DOT, - STATE(5206), 1, - aux_sym_selected_name_repeat1, - ACTIONS(6759), 2, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(6897), 1, anon_sym_SEMI, - anon_sym_COMMA, - STATE(5372), 3, + STATE(7564), 1, + sym_port_map_aspect, + STATE(5583), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275462] = 8, + [285341] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6761), 1, - anon_sym_RBRACK, - ACTIONS(6763), 1, - sym_RETURN, - STATE(5350), 1, - aux_sym_signature_repeat1, - STATE(5373), 3, + ACTIONS(6899), 1, + anon_sym_SEMI, + ACTIONS(5840), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(5584), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275489] = 5, + [285363] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5374), 3, + ACTIONS(6901), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(5585), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6765), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PIPE, - [275510] = 8, + [285383] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6767), 1, - sym_BEGIN, - ACTIONS(6769), 1, - sym_END, - STATE(6257), 1, - sym_entity_body, - STATE(6750), 1, - sym_end_entity, - STATE(5375), 3, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(6903), 1, + anon_sym_SEMI, + STATE(6010), 1, + aux_sym_use_clause_repeat1, + STATE(5586), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275537] = 5, + [285407] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5376), 3, + ACTIONS(6905), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(5587), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5846), 4, - sym_WHEN, - anon_sym_SEMI, + [285427] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6883), 1, anon_sym_COMMA, + ACTIONS(6907), 1, anon_sym_RPAREN, - [275558] = 8, + STATE(5579), 1, + aux_sym_enumeration_type_definition_repeat1, + STATE(5588), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [285451] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6771), 1, - anon_sym_RBRACK, - ACTIONS(6773), 1, - sym_RETURN, - STATE(5358), 1, - aux_sym_signature_repeat1, - STATE(5377), 3, + ACTIONS(6909), 1, + anon_sym_DOT, + ACTIONS(6911), 1, + anon_sym_LPAREN, + ACTIONS(6913), 1, + anon_sym_COLON, + STATE(5589), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275585] = 8, + [285475] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6205), 1, - anon_sym_COMMA, - ACTIONS(6775), 1, - anon_sym_RBRACK, - ACTIONS(6777), 1, - sym_RETURN, - STATE(5377), 1, - aux_sym_signature_repeat1, - STATE(5378), 3, + ACTIONS(6915), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(5590), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275612] = 5, + [285495] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5379), 3, + ACTIONS(6917), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(5591), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(5777), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [275633] = 8, + [285515] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6357), 1, - sym_IS, - ACTIONS(6359), 1, - sym_OPEN, - ACTIONS(6779), 1, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(6919), 1, anon_sym_SEMI, - STATE(7112), 1, - sym_file_open_information, - STATE(5380), 3, + STATE(5598), 1, + aux_sym_use_clause_repeat1, + STATE(5592), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275660] = 5, + [285539] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5381), 3, + ACTIONS(6921), 1, + anon_sym_SEMI, + ACTIONS(6923), 1, + sym_IS, + STATE(6242), 1, + sym_subprogram_head, + STATE(5593), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - ACTIONS(6135), 4, - sym_BUS, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - [275681] = 8, + [285563] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6074), 1, - sym_CONFIGURATION, - ACTIONS(6076), 1, - sym_ENTITY, - ACTIONS(6078), 1, - sym_OPEN, - STATE(5084), 1, - sym_entity_aspect, - STATE(5382), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(6925), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5594), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275708] = 7, + [285587] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6781), 1, + ACTIONS(6927), 1, sym_CONSTANT, - ACTIONS(6783), 1, + ACTIONS(6929), 1, sym_SIGNAL, - ACTIONS(6785), 1, + ACTIONS(6931), 1, sym_VARIABLE, - STATE(5383), 3, + STATE(5595), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275732] = 7, + [285611] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6787), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6171), 1, anon_sym_SEMI, - ACTIONS(6789), 1, - anon_sym_COMMA, - STATE(5742), 1, - aux_sym_use_clause_repeat1, - STATE(5384), 3, + STATE(8102), 1, + sym_initialiser, + STATE(5596), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275756] = 7, + [285635] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(6791), 1, + ACTIONS(2948), 3, anon_sym_SEMI, - STATE(6731), 1, - sym_port_map_aspect, - STATE(5385), 3, + anon_sym_COMMA, + anon_sym_COLON, + STATE(5597), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275780] = 7, + [285655] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6793), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(6795), 1, - anon_sym_COLON, - STATE(5720), 1, - aux_sym_instantiation_list_repeat1, - STATE(5386), 3, + ACTIONS(6933), 1, + anon_sym_SEMI, + STATE(6010), 1, + aux_sym_use_clause_repeat1, + STATE(5598), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275804] = 7, + [285679] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -271132,1421 +279911,1440 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(2884), 1, sym_WHEN, - ACTIONS(6797), 1, + ACTIONS(6935), 1, anon_sym_SEMI, - STATE(5290), 1, + STATE(5484), 1, sym_when_expression, - STATE(5387), 3, + STATE(5599), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275828] = 7, + [285703] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6799), 1, - anon_sym_SEMI, - STATE(7114), 1, - sym_initialiser, - STATE(5388), 3, + ACTIONS(6937), 1, + anon_sym_COMMA, + ACTIONS(6939), 1, + anon_sym_COLON, + STATE(5960), 1, + aux_sym_instantiation_list_repeat1, + STATE(5600), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275852] = 7, + [285727] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6801), 1, + ACTIONS(6941), 1, sym_CONSTANT, - ACTIONS(6803), 1, + ACTIONS(6943), 1, sym_SIGNAL, - ACTIONS(6805), 1, + ACTIONS(6945), 1, sym_VARIABLE, - STATE(5389), 3, + STATE(5601), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275876] = 7, + [285751] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6807), 1, - anon_sym_LT_EQ, - ACTIONS(6809), 1, - sym_variable_assignment, - STATE(18), 1, - sym_signal_assignment, - STATE(5390), 3, + ACTIONS(5990), 1, + anon_sym_RPAREN, + ACTIONS(6947), 1, + anon_sym_COMMA, + STATE(5167), 1, + aux_sym_group_constituent_list_repeat1, + STATE(5602), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275900] = 7, + [285775] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(6811), 1, - anon_sym_SEMI, - STATE(7117), 1, - sym_port_map_aspect, - STATE(5391), 3, + ACTIONS(6949), 1, + sym_CONSTANT, + ACTIONS(6951), 1, + sym_SIGNAL, + ACTIONS(6953), 1, + sym_VARIABLE, + STATE(5603), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [285799] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(6955), 1, + sym_CONSTANT, + ACTIONS(6957), 1, + sym_SIGNAL, + ACTIONS(6959), 1, + sym_VARIABLE, + STATE(5604), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275924] = 7, + [285823] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, + ACTIONS(2884), 1, sym_WHEN, - ACTIONS(5610), 1, + ACTIONS(6961), 1, anon_sym_SEMI, - STATE(7092), 1, + STATE(5484), 1, sym_when_expression, - STATE(5392), 3, + STATE(5605), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275948] = 7, + [285847] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, - anon_sym_COMMA, - ACTIONS(6813), 1, + ACTIONS(6963), 3, + sym_GENERIC, + sym_PORT, anon_sym_SEMI, - STATE(5384), 1, - aux_sym_use_clause_repeat1, - STATE(5393), 3, + STATE(5606), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275972] = 5, + [285867] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6815), 3, + ACTIONS(6965), 3, sym_IS, anon_sym_SEMI, anon_sym_RPAREN, - STATE(5394), 3, + STATE(5607), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [275992] = 7, + [285887] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6819), 1, + ACTIONS(6967), 1, anon_sym_RPAREN, - STATE(5398), 1, + STATE(5611), 1, aux_sym_association_list_repeat1, - STATE(5395), 3, + STATE(5608), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276016] = 7, + [285911] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6821), 1, + ACTIONS(6969), 1, anon_sym_COMMA, - ACTIONS(6823), 1, - anon_sym_COLON, - STATE(5119), 1, - aux_sym_signature_repeat1, - STATE(5396), 3, + ACTIONS(6972), 1, + anon_sym_RPAREN, + STATE(5609), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [276040] = 7, + aux_sym_index_constraint_repeat1, + [285933] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(6825), 1, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(6974), 1, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5397), 3, + STATE(7444), 1, + sym_port_map_aspect, + STATE(5610), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276064] = 7, + [285957] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6827), 1, + ACTIONS(6976), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5398), 3, + STATE(5611), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276088] = 6, + [285981] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6829), 1, - anon_sym_COMMA, - ACTIONS(6832), 1, - anon_sym_RPAREN, - STATE(5399), 4, + ACTIONS(6978), 1, + sym_CONSTANT, + ACTIONS(6980), 1, + sym_SIGNAL, + ACTIONS(6982), 1, + sym_VARIABLE, + STATE(5612), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_aggregate_repeat1, - [276110] = 7, + [286005] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5645), 1, + ACTIONS(6984), 3, + sym_GENERIC, + sym_PORT, anon_sym_SEMI, - STATE(7090), 1, - sym_when_expression, - STATE(5400), 3, + STATE(5613), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276134] = 7, + [286025] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6834), 1, - sym_CONSTANT, - ACTIONS(6836), 1, - sym_SIGNAL, - ACTIONS(6838), 1, - sym_VARIABLE, - STATE(5401), 3, + ACTIONS(6986), 3, + sym_IS, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(5614), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276158] = 7, + [286045] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, - anon_sym_COMMA, - ACTIONS(6840), 1, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5829), 1, anon_sym_SEMI, - STATE(5742), 1, - aux_sym_use_clause_repeat1, - STATE(5402), 3, + STATE(7704), 1, + sym_timeout_clause, + STATE(5615), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276182] = 6, + [286069] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6842), 1, + ACTIONS(6988), 3, + sym_GENERIC, + sym_PORT, anon_sym_SEMI, - ACTIONS(5817), 2, - anon_sym_LT_EQ, - sym_variable_assignment, - STATE(5403), 3, + STATE(5616), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276204] = 7, + [286089] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2988), 1, - sym_SEVERITY, - ACTIONS(6844), 1, - anon_sym_SEMI, - STATE(7151), 1, - sym_severity_expression, - STATE(5404), 3, + STATE(5717), 1, + aux_sym_index_constraint_repeat1, + ACTIONS(6097), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5617), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276228] = 7, + [286111] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, - anon_sym_COMMA, - ACTIONS(6846), 1, - anon_sym_SEMI, - STATE(5742), 1, - aux_sym_use_clause_repeat1, - STATE(5405), 3, + ACTIONS(6990), 1, + sym_CONSTANT, + ACTIONS(6992), 1, + sym_SIGNAL, + ACTIONS(6994), 1, + sym_VARIABLE, + STATE(5618), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276252] = 7, + [286135] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5775), 1, - anon_sym_SEMI, - STATE(7088), 1, - sym_timeout_clause, - STATE(5406), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5619), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276276] = 7, + [286159] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(6848), 1, + ACTIONS(6998), 1, anon_sym_SEMI, - STATE(5414), 1, + STATE(5627), 1, aux_sym_use_clause_repeat1, - STATE(5407), 3, + STATE(5620), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276300] = 7, + [286183] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(6850), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7000), 1, anon_sym_SEMI, - STATE(7171), 1, - sym_port_map_aspect, - STATE(5408), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5621), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276324] = 7, + [286207] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6852), 1, + ACTIONS(7002), 1, anon_sym_RPAREN, - STATE(5827), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5409), 3, + STATE(5622), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276348] = 7, + [286231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(6856), 1, - anon_sym_RPAREN, - STATE(5814), 1, - aux_sym_enumeration_type_definition_repeat1, - STATE(5410), 3, + ACTIONS(6019), 3, + sym_GENERIC, + anon_sym_SEMI, + sym_variable_assignment, + STATE(5623), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276372] = 7, + [286251] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(7004), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_SEMI, - STATE(5402), 1, - aux_sym_use_clause_repeat1, - STATE(5411), 3, + ACTIONS(7007), 1, + anon_sym_RPAREN, + STATE(5624), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [276396] = 6, + aux_sym_aggregate_repeat1, + [286273] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5563), 1, - aux_sym_index_constraint_repeat1, - ACTIONS(6860), 2, + ACTIONS(6871), 1, anon_sym_COMMA, + ACTIONS(7009), 1, anon_sym_RPAREN, - STATE(5412), 3, + STATE(5619), 1, + aux_sym_association_list_repeat1, + STATE(5625), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276418] = 7, + [286297] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6862), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6864), 1, - anon_sym_COLON, - STATE(5791), 1, - aux_sym_identifier_list_repeat1, - STATE(5413), 3, + ACTIONS(7011), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5626), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276442] = 7, + [286321] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(6866), 1, + ACTIONS(7013), 1, anon_sym_SEMI, - STATE(5742), 1, + STATE(6010), 1, aux_sym_use_clause_repeat1, - STATE(5414), 3, + STATE(5627), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276466] = 7, + [286345] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6868), 1, - anon_sym_SEMI, - ACTIONS(6870), 1, - sym_IS, - STATE(6084), 1, - sym_subprogram_head, - STATE(5415), 3, + ACTIONS(7015), 1, + sym_CONSTANT, + ACTIONS(7017), 1, + sym_SIGNAL, + ACTIONS(7019), 1, + sym_VARIABLE, + STATE(5628), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276490] = 7, + [286369] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5643), 1, - sym_PORT, - ACTIONS(6098), 1, - sym_END, - STATE(6816), 1, - sym_port_clause, - STATE(5416), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7021), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_association_list_repeat1, + STATE(5629), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276514] = 5, + [286393] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6046), 3, - sym_RETURN, + ACTIONS(6871), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5417), 3, + ACTIONS(7023), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5630), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276534] = 7, + [286417] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6156), 1, - anon_sym_SEMI, - STATE(7893), 1, - sym_initialiser, - STATE(5418), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7025), 1, + anon_sym_RPAREN, + STATE(5630), 1, + aux_sym_association_list_repeat1, + STATE(5631), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276558] = 5, + [286441] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6872), 3, - sym_FOR, - sym_UNTIL, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7027), 1, anon_sym_SEMI, - STATE(5419), 3, + STATE(6010), 1, + aux_sym_use_clause_repeat1, + STATE(5632), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276578] = 7, + [286465] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5970), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7029), 1, anon_sym_SEMI, - STATE(7873), 1, - sym_timeout_clause, - STATE(5420), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5633), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276602] = 5, + [286489] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6874), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5421), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7031), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5634), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276622] = 7, + [286513] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(6876), 1, - anon_sym_SEMI, - STATE(7252), 1, - sym_timeout_clause, - STATE(5422), 3, + ACTIONS(7033), 1, + sym_CONSTANT, + ACTIONS(7035), 1, + sym_SIGNAL, + ACTIONS(7037), 1, + sym_VARIABLE, + STATE(5635), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276646] = 7, + [286537] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6878), 1, - anon_sym_DOT, - ACTIONS(6880), 1, - anon_sym_LPAREN, - ACTIONS(6882), 1, - anon_sym_COLON, - STATE(5423), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7039), 1, + anon_sym_RPAREN, + STATE(5634), 1, + aux_sym_association_list_repeat1, + STATE(5636), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276670] = 7, + [286561] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6884), 1, - sym_CONSTANT, - ACTIONS(6886), 1, - sym_SIGNAL, - ACTIONS(6888), 1, - sym_VARIABLE, - STATE(5424), 3, + ACTIONS(7041), 1, + anon_sym_LT_EQ, + ACTIONS(7043), 1, + sym_variable_assignment, + STATE(62), 1, + sym_signal_assignment, + STATE(5637), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276694] = 5, + [286585] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6890), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5425), 3, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7045), 1, + anon_sym_SEMI, + STATE(5632), 1, + aux_sym_use_clause_repeat1, + STATE(5638), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276714] = 5, + [286609] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 3, - sym_IS, - sym_OPEN, + ACTIONS(2954), 1, + sym_SEVERITY, + ACTIONS(7047), 1, anon_sym_SEMI, - STATE(5426), 3, + STATE(7465), 1, + sym_severity_expression, + STATE(5639), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276734] = 7, + [286633] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6892), 1, + ACTIONS(7049), 1, anon_sym_RPAREN, - STATE(5429), 1, + STATE(5642), 1, aux_sym_association_list_repeat1, - STATE(5427), 3, + STATE(5640), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276758] = 7, + [286657] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2988), 1, - sym_SEVERITY, - ACTIONS(6894), 1, - anon_sym_SEMI, - STATE(6856), 1, - sym_severity_expression, - STATE(5428), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7051), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5641), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276782] = 7, + [286681] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6896), 1, + ACTIONS(7053), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5429), 3, + STATE(5642), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276806] = 7, + [286705] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6898), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6900), 1, + ACTIONS(7055), 1, anon_sym_RPAREN, - STATE(5753), 1, - aux_sym_element_association_list_repeat1, - STATE(5430), 3, + STATE(5641), 1, + aux_sym_association_list_repeat1, + STATE(5643), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276830] = 7, + [286729] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6902), 1, - sym_CONSTANT, - ACTIONS(6904), 1, - sym_SIGNAL, - ACTIONS(6906), 1, - sym_VARIABLE, - STATE(5431), 3, + ACTIONS(6923), 1, + sym_IS, + ACTIONS(7057), 1, + anon_sym_SEMI, + STATE(6284), 1, + sym_subprogram_head, + STATE(5644), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276854] = 7, + [286753] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6908), 1, - sym_CONSTANT, - ACTIONS(6910), 1, - sym_SIGNAL, - ACTIONS(6912), 1, - sym_VARIABLE, - STATE(5432), 3, + ACTIONS(6097), 1, + sym_OF, + ACTIONS(7059), 1, + anon_sym_COMMA, + STATE(5730), 1, + aux_sym_index_constraint_repeat1, + STATE(5645), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276878] = 7, + [286777] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6745), 1, - anon_sym_SEMI, - ACTIONS(6914), 1, - sym_ELSE, - STATE(5988), 1, - sym_else_expression_or_unaffected, - STATE(5433), 3, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(7061), 1, + anon_sym_COLON, + STATE(5962), 1, + aux_sym_group_constituent_list_repeat1, + STATE(5646), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276902] = 7, + [286801] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(6916), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5434), 3, + ACTIONS(7041), 1, + anon_sym_LT_EQ, + ACTIONS(7063), 1, + sym_variable_assignment, + STATE(49), 1, + sym_signal_assignment, + STATE(5647), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276926] = 6, + [286825] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - STATE(5412), 1, - aux_sym_index_constraint_repeat1, - ACTIONS(6127), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5435), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7065), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5648), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276948] = 7, + [286849] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6918), 1, - sym_CONSTANT, - ACTIONS(6920), 1, - sym_SIGNAL, - ACTIONS(6922), 1, - sym_VARIABLE, - STATE(5436), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7067), 1, + anon_sym_SEMI, + STATE(7317), 1, + sym_initialiser, + STATE(5649), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276972] = 7, + [286873] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(6924), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5437), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7069), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5650), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [276996] = 7, + [286897] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(6926), 1, + ACTIONS(7071), 1, anon_sym_SEMI, - STATE(5445), 1, + STATE(5658), 1, aux_sym_use_clause_repeat1, - STATE(5438), 3, + STATE(5651), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277020] = 7, + [286921] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6928), 1, - sym_CONSTANT, - ACTIONS(6930), 1, - sym_SIGNAL, - ACTIONS(6932), 1, - sym_VARIABLE, - STATE(5439), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5652), 1, + anon_sym_SEMI, + STATE(7701), 1, + sym_when_expression, + STATE(5652), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277044] = 5, + [286945] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6934), 3, - sym_IS, - anon_sym_SEMI, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7073), 1, anon_sym_RPAREN, - STATE(5440), 3, + STATE(5650), 1, + aux_sym_association_list_repeat1, + STATE(5653), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277064] = 7, + [286969] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6936), 1, - sym_directive_body, - ACTIONS(6938), 1, - sym__directive_newline, - STATE(5737), 1, - aux_sym_user_directive_repeat1, - STATE(5441), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7075), 1, + anon_sym_SEMI, + STATE(8106), 1, + sym_generic_map_aspect, + STATE(5654), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277088] = 7, + [286993] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5993), 1, - anon_sym_RPAREN, - ACTIONS(6821), 1, - anon_sym_COMMA, - STATE(5119), 1, - aux_sym_signature_repeat1, - STATE(5442), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7077), 1, + anon_sym_SEMI, + STATE(7435), 1, + sym_initialiser, + STATE(5655), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277112] = 7, + [287017] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6936), 1, - sym_directive_body, - ACTIONS(6940), 1, - sym__directive_newline, - STATE(5737), 1, - aux_sym_user_directive_repeat1, - STATE(5443), 3, + ACTIONS(7079), 1, + sym_CONSTANT, + ACTIONS(7081), 1, + sym_SIGNAL, + ACTIONS(7083), 1, + sym_VARIABLE, + STATE(5656), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277136] = 7, + [287041] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(6942), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5444), 3, + ACTIONS(7085), 1, + sym_CONSTANT, + ACTIONS(7087), 1, + sym_SIGNAL, + ACTIONS(7089), 1, + sym_VARIABLE, + STATE(5657), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277160] = 7, + [287065] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(6944), 1, + ACTIONS(7091), 1, anon_sym_SEMI, - STATE(5742), 1, + STATE(6010), 1, aux_sym_use_clause_repeat1, - STATE(5445), 3, + STATE(5658), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277184] = 7, + [287089] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7093), 1, anon_sym_COMMA, - ACTIONS(6946), 1, + ACTIONS(7096), 1, anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5446), 3, + STATE(5659), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [277208] = 7, + aux_sym_association_or_range_list_repeat1, + [287111] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6948), 1, + ACTIONS(7098), 1, sym_CONSTANT, - ACTIONS(6950), 1, + ACTIONS(7100), 1, sym_SIGNAL, - ACTIONS(6952), 1, + ACTIONS(7102), 1, sym_VARIABLE, - STATE(5447), 3, + STATE(5660), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277232] = 7, + [287135] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6954), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7104), 1, anon_sym_SEMI, - STATE(7244), 1, - sym_initialiser, - STATE(5448), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [277256] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(6956), 1, - sym_CONSTANT, - ACTIONS(6958), 1, - sym_SIGNAL, - ACTIONS(6960), 1, - sym_VARIABLE, - STATE(5449), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5661), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277280] = 7, + [287159] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6962), 1, - anon_sym_SEMI, - STATE(6557), 1, - sym_initialiser, - STATE(5450), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7106), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5662), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277304] = 7, + [287183] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2988), 1, - sym_SEVERITY, - ACTIONS(6964), 1, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7108), 1, anon_sym_SEMI, - STATE(7069), 1, - sym_severity_expression, - STATE(5451), 3, + STATE(6010), 1, + aux_sym_use_clause_repeat1, + STATE(5663), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277328] = 7, + [287207] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(6966), 1, + ACTIONS(6073), 3, + sym_GENERIC, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5452), 3, + sym_variable_assignment, + STATE(5664), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277352] = 7, + [287227] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(6968), 1, - anon_sym_LT_EQ, - ACTIONS(6970), 1, - sym_variable_assignment, - STATE(60), 1, - sym_signal_assignment, - STATE(5453), 3, + sym__block_comment_start, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7110), 1, + anon_sym_RPAREN, + STATE(5662), 1, + aux_sym_association_list_repeat1, + STATE(5665), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277376] = 7, + [287251] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(6972), 1, - anon_sym_SEMI, - STATE(6560), 1, - sym_generic_map_aspect, - STATE(5454), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7112), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5666), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277400] = 6, + [287275] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6974), 1, - anon_sym_SEMI, - ACTIONS(5817), 2, - anon_sym_LT_EQ, + ACTIONS(5899), 1, sym_variable_assignment, - STATE(5455), 3, + ACTIONS(7114), 1, + anon_sym_SEMI, + STATE(6771), 1, + sym_initialiser, + STATE(5667), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277422] = 7, + [287299] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(6976), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5456), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7116), 1, + anon_sym_SEMI, + STATE(6774), 1, + sym_generic_map_aspect, + STATE(5668), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277446] = 7, + [287323] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7118), 3, + sym_RETURN, anon_sym_COMMA, - ACTIONS(6978), 1, - anon_sym_RPAREN, - STATE(5456), 1, - aux_sym_association_list_repeat1, - STATE(5457), 3, + anon_sym_RBRACK, + STATE(5669), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277470] = 7, + [287343] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(6980), 1, - anon_sym_RPAREN, - STATE(5460), 1, - aux_sym_association_list_repeat1, - STATE(5458), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7120), 1, + anon_sym_SEMI, + STATE(8101), 1, + sym_initialiser, + STATE(5670), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277494] = 7, + [287367] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6982), 1, + ACTIONS(7122), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5673), 1, aux_sym_association_list_repeat1, - STATE(5459), 3, + STATE(5671), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277518] = 7, + [287391] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(6984), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5460), 3, + ACTIONS(7124), 1, + sym_CONSTANT, + ACTIONS(7126), 1, + sym_SIGNAL, + ACTIONS(7128), 1, + sym_VARIABLE, + STATE(5672), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277542] = 7, + [287415] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6986), 1, + ACTIONS(7130), 1, anon_sym_RPAREN, - STATE(5459), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5461), 3, + STATE(5673), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277566] = 7, + [287439] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6988), 1, + ACTIONS(7132), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5462), 3, + STATE(5674), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277590] = 7, + [287463] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, + ACTIONS(788), 1, sym_WHEN, - ACTIONS(6990), 1, + ACTIONS(5676), 1, anon_sym_SEMI, - STATE(5290), 1, + STATE(7699), 1, sym_when_expression, - STATE(5463), 3, + STATE(5675), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277614] = 7, + [287487] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6992), 1, + ACTIONS(7134), 1, anon_sym_RPAREN, - STATE(5462), 1, + STATE(5674), 1, aux_sym_association_list_repeat1, - STATE(5464), 3, + STATE(5676), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277638] = 7, + [287511] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6994), 1, + ACTIONS(7136), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5756), 1, aux_sym_association_list_repeat1, - STATE(5465), 3, + STATE(5677), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277662] = 7, + [287535] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6996), 1, + ACTIONS(7138), 1, sym_CONSTANT, - ACTIONS(6998), 1, + ACTIONS(7140), 1, sym_SIGNAL, - ACTIONS(7000), 1, + ACTIONS(7142), 1, sym_VARIABLE, - STATE(5466), 3, + STATE(5678), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277686] = 7, + [287559] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7002), 1, - anon_sym_RPAREN, - STATE(5465), 1, - aux_sym_association_list_repeat1, - STATE(5467), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7144), 1, + anon_sym_SEMI, + STATE(6777), 1, + sym_generic_map_aspect, + STATE(5679), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277710] = 6, + [287583] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7004), 1, - anon_sym_SEMI, - ACTIONS(5817), 2, + ACTIONS(7146), 1, + sym_CONSTANT, + ACTIONS(7148), 1, + sym_SIGNAL, + ACTIONS(7150), 1, + sym_VARIABLE, + STATE(5680), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [287607] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(7041), 1, anon_sym_LT_EQ, + ACTIONS(7152), 1, sym_variable_assignment, - STATE(5468), 3, + STATE(31), 1, + sym_signal_assignment, + STATE(5681), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277732] = 5, + [287631] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7006), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5469), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7154), 1, + anon_sym_RPAREN, + STATE(5666), 1, + aux_sym_association_list_repeat1, + STATE(5682), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277752] = 7, + [287655] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2988), 1, - sym_SEVERITY, - ACTIONS(7008), 1, - anon_sym_SEMI, - STATE(6658), 1, - sym_severity_expression, - STATE(5470), 3, + ACTIONS(6851), 1, + anon_sym_COMMA, + ACTIONS(7156), 1, + anon_sym_COLON, + STATE(5987), 1, + aux_sym_identifier_list_repeat1, + STATE(5683), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277776] = 7, + [287679] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7010), 1, - sym_CONSTANT, - ACTIONS(7012), 1, - sym_SIGNAL, - ACTIONS(7014), 1, - sym_VARIABLE, - STATE(5471), 3, + ACTIONS(7158), 1, + anon_sym_LT_EQ, + ACTIONS(7160), 1, + sym_variable_assignment, + STATE(95), 1, + sym_signal_assignment, + STATE(5684), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277800] = 7, + [287703] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -272555,2836 +281353,2841 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(2884), 1, sym_WHEN, - ACTIONS(7016), 1, + ACTIONS(6676), 1, anon_sym_SEMI, - STATE(5290), 1, + STATE(6150), 1, sym_when_expression, - STATE(5472), 3, + STATE(5685), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277824] = 7, + [287727] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7018), 1, - sym_CONSTANT, - ACTIONS(7020), 1, - sym_SIGNAL, - ACTIONS(7022), 1, - sym_VARIABLE, - STATE(5473), 3, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(7162), 1, + anon_sym_SEMI, + STATE(7323), 1, + sym_timeout_clause, + STATE(5686), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277848] = 7, + [287751] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7024), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5474), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6181), 1, + anon_sym_SEMI, + STATE(6779), 1, + sym_initialiser, + STATE(5687), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277872] = 7, + [287775] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7026), 1, + ACTIONS(7164), 1, anon_sym_RPAREN, - STATE(5474), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5475), 3, + STATE(5688), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277896] = 7, + [287799] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7028), 1, + ACTIONS(7166), 1, anon_sym_RPAREN, - STATE(5444), 1, + STATE(5688), 1, aux_sym_association_list_repeat1, - STATE(5476), 3, + STATE(5689), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277920] = 7, + [287823] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7030), 1, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(7168), 1, anon_sym_SEMI, - ACTIONS(7032), 1, - anon_sym_COMMA, - STATE(5615), 1, - aux_sym_logical_name_list_repeat1, - STATE(5477), 3, + STATE(7487), 1, + sym_port_map_aspect, + STATE(5690), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277944] = 7, + [287847] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6007), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7170), 1, anon_sym_SEMI, - STATE(6563), 1, - sym_initialiser, - STATE(5478), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5691), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277968] = 7, + [287871] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7034), 1, - sym_CONSTANT, - ACTIONS(7036), 1, - sym_SIGNAL, - ACTIONS(7038), 1, - sym_VARIABLE, - STATE(5479), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7172), 1, + anon_sym_SEMI, + STATE(6783), 1, + sym_generic_map_aspect, + STATE(5692), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [277992] = 7, + [287895] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7040), 1, - sym_CONSTANT, - ACTIONS(7042), 1, - sym_SIGNAL, - ACTIONS(7044), 1, - sym_VARIABLE, - STATE(5480), 3, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7174), 1, + anon_sym_SEMI, + STATE(5751), 1, + aux_sym_use_clause_repeat1, + STATE(5693), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278016] = 7, + [287919] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7046), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5481), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(7176), 1, + anon_sym_SEMI, + STATE(7016), 1, + sym_port_map_aspect, + STATE(5694), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278040] = 7, + [287943] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(7048), 1, - anon_sym_RPAREN, - STATE(5481), 1, - aux_sym_association_list_repeat1, - STATE(5482), 3, + ACTIONS(7178), 1, + anon_sym_SEMI, + STATE(5804), 1, + aux_sym_use_clause_repeat1, + STATE(5695), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278064] = 7, + [287967] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(7050), 1, - anon_sym_SEMI, - STATE(7043), 1, - sym_port_map_aspect, - STATE(5483), 3, + ACTIONS(7180), 1, + sym_CONSTANT, + ACTIONS(7182), 1, + sym_SIGNAL, + ACTIONS(7184), 1, + sym_VARIABLE, + STATE(5696), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278088] = 7, + [287991] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2988), 1, - sym_SEVERITY, - ACTIONS(7052), 1, - anon_sym_SEMI, - STATE(6610), 1, - sym_severity_expression, - STATE(5484), 3, + ACTIONS(7041), 1, + anon_sym_LT_EQ, + ACTIONS(7186), 1, + sym_variable_assignment, + STATE(18), 1, + sym_signal_assignment, + STATE(5697), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278112] = 7, + [288015] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7054), 1, + ACTIONS(7188), 1, anon_sym_RPAREN, - STATE(5487), 1, + STATE(5700), 1, aux_sym_association_list_repeat1, - STATE(5485), 3, + STATE(5698), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278136] = 7, + [288039] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7056), 1, - anon_sym_SEMI, - STATE(7038), 1, - sym_generic_map_aspect, - STATE(5486), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7190), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5699), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278160] = 7, + [288063] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7058), 1, + ACTIONS(7192), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5487), 3, + STATE(5700), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278184] = 7, + [288087] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7060), 1, - anon_sym_SEMI, - STATE(7274), 1, - sym_generic_map_aspect, - STATE(5488), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7194), 1, + anon_sym_RPAREN, + STATE(5699), 1, + aux_sym_association_list_repeat1, + STATE(5701), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278208] = 7, + [288111] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7062), 1, + ACTIONS(7196), 1, + anon_sym_SEMI, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_RPAREN, - STATE(5677), 1, - aux_sym_association_or_range_list_repeat1, - STATE(5489), 3, + STATE(5784), 1, + aux_sym_logical_name_list_repeat1, + STATE(5702), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278232] = 7, + [288135] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7066), 1, + ACTIONS(7200), 1, sym_CONSTANT, - ACTIONS(7068), 1, + ACTIONS(7202), 1, sym_SIGNAL, - ACTIONS(7070), 1, + ACTIONS(7204), 1, sym_VARIABLE, - STATE(5490), 3, + STATE(5703), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278256] = 7, + [288159] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7072), 1, - sym_CONSTANT, - ACTIONS(7074), 1, - sym_SIGNAL, - ACTIONS(7076), 1, - sym_VARIABLE, - STATE(5491), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(7206), 1, + anon_sym_SEMI, + STATE(8095), 1, + sym_when_expression, + STATE(5704), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278280] = 7, + [288183] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7078), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7208), 1, anon_sym_SEMI, - STATE(7864), 1, - sym_generic_map_aspect, - STATE(5492), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5705), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278304] = 7, + [288207] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7080), 1, - anon_sym_COMMA, - ACTIONS(7082), 1, - anon_sym_RPAREN, - STATE(5591), 1, - aux_sym_aggregate_repeat1, - STATE(5493), 3, + ACTIONS(7210), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(5706), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278328] = 7, + [288227] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(7084), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5494), 3, + ACTIONS(7212), 1, + anon_sym_SEMI, + STATE(5167), 1, + aux_sym_group_constituent_list_repeat1, + STATE(5707), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278352] = 7, + [288251] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7086), 1, - anon_sym_RPAREN, - STATE(5494), 1, - aux_sym_association_list_repeat1, - STATE(5495), 3, + ACTIONS(6678), 3, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + STATE(5708), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278376] = 7, + [288271] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7088), 1, + ACTIONS(7214), 3, + sym_IS, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_association_list_repeat1, - STATE(5496), 3, + STATE(5709), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278400] = 7, + [288291] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7090), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5497), 3, + ACTIONS(5660), 1, + sym_PORT, + ACTIONS(6075), 1, + sym_END, + STATE(8212), 1, + sym_port_clause, + STATE(5710), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278424] = 7, + [288315] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7092), 1, - sym_CONSTANT, - ACTIONS(7094), 1, - sym_SIGNAL, - ACTIONS(7096), 1, - sym_VARIABLE, - STATE(5498), 3, + ACTIONS(6659), 3, + sym_WHEN, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5711), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278448] = 7, + [288335] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7098), 1, + ACTIONS(7216), 1, sym_CONSTANT, - ACTIONS(7100), 1, + ACTIONS(7218), 1, sym_SIGNAL, - ACTIONS(7102), 1, + ACTIONS(7220), 1, sym_VARIABLE, - STATE(5499), 3, + STATE(5712), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278472] = 7, + [288359] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7104), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5500), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7222), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5713), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278496] = 7, + [288383] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7106), 1, - anon_sym_SEMI, - STATE(5742), 1, - aux_sym_use_clause_repeat1, - STATE(5501), 3, + ACTIONS(7224), 1, + anon_sym_RPAREN, + STATE(5713), 1, + aux_sym_association_list_repeat1, + STATE(5714), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278520] = 7, + [288407] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(6044), 1, + ACTIONS(7226), 1, anon_sym_SEMI, - STATE(7285), 1, + STATE(6803), 1, sym_initialiser, - STATE(5502), 3, + STATE(5715), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278544] = 6, + [288431] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7108), 1, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(7228), 1, anon_sym_SEMI, - ACTIONS(5817), 2, - anon_sym_LT_EQ, - sym_variable_assignment, - STATE(5503), 3, + STATE(8094), 1, + sym_when_expression, + STATE(5716), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278566] = 7, + [288455] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + STATE(5609), 1, + aux_sym_index_constraint_repeat1, + ACTIONS(7230), 2, anon_sym_COMMA, - ACTIONS(7110), 1, anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5504), 3, + STATE(5717), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278590] = 5, + [288477] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7112), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5505), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(7232), 1, + anon_sym_SEMI, + STATE(7245), 1, + sym_port_map_aspect, + STATE(5718), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278610] = 7, + [288501] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7114), 1, + ACTIONS(7234), 1, anon_sym_RPAREN, - STATE(5504), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5506), 3, + STATE(5719), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278634] = 7, + [288525] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6968), 1, - anon_sym_LT_EQ, - ACTIONS(7116), 1, + ACTIONS(2424), 3, + anon_sym_SEMI, + anon_sym_RPAREN, sym_variable_assignment, - STATE(46), 1, - sym_signal_assignment, - STATE(5507), 3, + STATE(5720), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278658] = 7, + [288545] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5950), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7236), 1, anon_sym_SEMI, - STATE(7023), 1, - sym_timeout_clause, - STATE(5508), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5721), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278682] = 7, + [288569] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7118), 1, - sym_CONSTANT, - ACTIONS(7120), 1, - sym_SIGNAL, - ACTIONS(7122), 1, - sym_VARIABLE, - STATE(5509), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7238), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5722), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278706] = 7, + [288593] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7124), 1, - anon_sym_SEMI, - STATE(5579), 1, - aux_sym_use_clause_repeat1, - STATE(5510), 3, + ACTIONS(7240), 1, + anon_sym_RPAREN, + STATE(5722), 1, + aux_sym_association_list_repeat1, + STATE(5723), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278730] = 7, + [288617] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7126), 1, - anon_sym_SEMI, - STATE(7288), 1, - sym_initialiser, - STATE(5511), 3, + ACTIONS(7242), 1, + sym_CONSTANT, + ACTIONS(7244), 1, + sym_SIGNAL, + ACTIONS(7246), 1, + sym_VARIABLE, + STATE(5724), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278754] = 7, + [288641] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7128), 1, + ACTIONS(7248), 1, anon_sym_RPAREN, - STATE(5514), 1, + STATE(5727), 1, aux_sym_association_list_repeat1, - STATE(5512), 3, + STATE(5725), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278778] = 7, + [288665] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7130), 1, - sym_CONSTANT, - ACTIONS(7132), 1, - sym_SIGNAL, - ACTIONS(7134), 1, - sym_VARIABLE, - STATE(5513), 3, + ACTIONS(7250), 1, + anon_sym_COMMA, + ACTIONS(7253), 1, + anon_sym_RPAREN, + STATE(5726), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [278802] = 7, + aux_sym_association_list_repeat1, + [288687] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7136), 1, + ACTIONS(7255), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5514), 3, + STATE(5727), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278826] = 7, + [288711] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7138), 1, - sym_CONSTANT, - ACTIONS(7140), 1, - sym_SIGNAL, - ACTIONS(7142), 1, - sym_VARIABLE, - STATE(5515), 3, + ACTIONS(2882), 3, + sym_IS, + sym_OPEN, + anon_sym_SEMI, + STATE(5728), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278850] = 7, + [288731] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(7144), 1, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, anon_sym_SEMI, - STATE(7293), 1, - sym_when_expression, - STATE(5516), 3, + STATE(6010), 1, + aux_sym_use_clause_repeat1, + STATE(5729), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278874] = 7, + [288755] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7146), 1, - sym_CONSTANT, - ACTIONS(7148), 1, - sym_SIGNAL, - ACTIONS(7150), 1, - sym_VARIABLE, - STATE(5517), 3, + ACTIONS(7059), 1, + anon_sym_COMMA, + ACTIONS(7230), 1, + sym_OF, + STATE(5974), 1, + aux_sym_index_constraint_repeat1, + STATE(5730), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278898] = 7, + [288779] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(7152), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7259), 1, anon_sym_SEMI, - STATE(7294), 1, - sym_when_expression, - STATE(5518), 3, + STATE(7074), 1, + sym_initialiser, + STATE(5731), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278922] = 7, + [288803] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7154), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5519), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7261), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5732), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278946] = 7, + [288827] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7156), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5520), 3, + ACTIONS(7263), 1, + sym_CONSTANT, + ACTIONS(7265), 1, + sym_SIGNAL, + ACTIONS(7267), 1, + sym_VARIABLE, + STATE(5733), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278970] = 7, + [288851] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7158), 1, + ACTIONS(7269), 1, anon_sym_RPAREN, - STATE(5519), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5521), 3, + STATE(5734), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [278994] = 7, + [288875] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7160), 1, - anon_sym_SEMI, - STATE(5501), 1, - aux_sym_use_clause_repeat1, - STATE(5522), 3, + ACTIONS(7271), 1, + anon_sym_RPAREN, + STATE(5734), 1, + aux_sym_association_list_repeat1, + STATE(5735), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279018] = 7, + [288899] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5946), 1, - anon_sym_RPAREN, - ACTIONS(6821), 1, - anon_sym_COMMA, - STATE(5442), 1, - aux_sym_signature_repeat1, - STATE(5523), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7273), 1, + anon_sym_SEMI, + STATE(7011), 1, + sym_initialiser, + STATE(5736), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279042] = 7, + [288923] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7162), 1, - sym_CONSTANT, - ACTIONS(7164), 1, - sym_SIGNAL, - ACTIONS(7166), 1, - sym_VARIABLE, - STATE(5524), 3, + ACTIONS(2954), 1, + sym_SEVERITY, + ACTIONS(7275), 1, + anon_sym_SEMI, + STATE(7226), 1, + sym_severity_expression, + STATE(5737), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279066] = 7, + [288947] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7168), 1, + ACTIONS(7277), 1, sym_CONSTANT, - ACTIONS(7170), 1, + ACTIONS(7279), 1, sym_SIGNAL, - ACTIONS(7172), 1, + ACTIONS(7281), 1, sym_VARIABLE, - STATE(5525), 3, + STATE(5738), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279090] = 7, + [288971] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7174), 1, - sym_CONSTANT, - ACTIONS(7176), 1, - sym_SIGNAL, - ACTIONS(7178), 1, - sym_VARIABLE, - STATE(5526), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7283), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5739), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279114] = 5, + [288995] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6080), 3, - sym_GENERIC, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7285), 1, anon_sym_SEMI, - sym_variable_assignment, - STATE(5527), 3, + STATE(5729), 1, + aux_sym_use_clause_repeat1, + STATE(5740), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279134] = 7, + [289019] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7180), 1, - sym_CONSTANT, - ACTIONS(7182), 1, - sym_SIGNAL, - ACTIONS(7184), 1, - sym_VARIABLE, - STATE(5528), 3, + ACTIONS(6245), 3, + sym_GENERIC, + anon_sym_SEMI, + sym_variable_assignment, + STATE(5741), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279158] = 7, + [289039] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(7186), 1, - anon_sym_SEMI, - STATE(7885), 1, - sym_when_expression, - STATE(5529), 3, + ACTIONS(7158), 1, + anon_sym_LT_EQ, + ACTIONS(7287), 1, + sym_variable_assignment, + STATE(60), 1, + sym_signal_assignment, + STATE(5742), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279182] = 7, + [289063] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7188), 1, - sym_CONSTANT, - ACTIONS(7190), 1, - sym_SIGNAL, - ACTIONS(7192), 1, - sym_VARIABLE, - STATE(5530), 3, + ACTIONS(7289), 1, + anon_sym_COMMA, + ACTIONS(7291), 1, + anon_sym_RPAREN, + STATE(5948), 1, + aux_sym_array_index_incomplete_type_list_repeat1, + STATE(5743), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279206] = 7, + [289087] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(6055), 1, + ACTIONS(7293), 1, anon_sym_SEMI, - STATE(7305), 1, - sym_timeout_clause, - STATE(5531), 3, + ACTIONS(5840), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(5744), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279230] = 7, + [289109] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(7194), 1, - anon_sym_SEMI, - STATE(7886), 1, - sym_when_expression, - STATE(5532), 3, + ACTIONS(6093), 3, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + STATE(5745), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279254] = 7, + [289129] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7196), 1, + ACTIONS(7295), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5533), 3, + STATE(5746), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279278] = 7, + [289153] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(7198), 1, - anon_sym_SEMI, - STATE(7006), 1, - sym_when_expression, - STATE(5534), 3, + ACTIONS(7297), 1, + sym_CONSTANT, + ACTIONS(7299), 1, + sym_SIGNAL, + ACTIONS(7301), 1, + sym_VARIABLE, + STATE(5747), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279302] = 7, + [289177] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7200), 1, + ACTIONS(7303), 1, anon_sym_RPAREN, - STATE(5533), 1, + STATE(5746), 1, aux_sym_association_list_repeat1, - STATE(5535), 3, + STATE(5748), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279326] = 5, + [289201] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6135), 3, - sym_GENERIC, + ACTIONS(2954), 1, + sym_SEVERITY, + ACTIONS(7305), 1, anon_sym_SEMI, - sym_variable_assignment, - STATE(5536), 3, + STATE(7756), 1, + sym_severity_expression, + STATE(5749), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279346] = 7, + [289225] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(7202), 1, - anon_sym_SEMI, - STATE(7005), 1, - sym_when_expression, - STATE(5537), 3, + ACTIONS(6909), 1, + anon_sym_DOT, + ACTIONS(6911), 1, + anon_sym_LPAREN, + ACTIONS(7307), 1, + anon_sym_COLON, + STATE(5750), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279370] = 5, + [289249] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 3, - sym_GENERIC, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7309), 1, anon_sym_SEMI, - sym_variable_assignment, - STATE(5538), 3, + STATE(6010), 1, + aux_sym_use_clause_repeat1, + STATE(5751), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279390] = 7, + [289273] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7204), 1, + ACTIONS(7311), 1, anon_sym_RPAREN, - STATE(5541), 1, + STATE(5754), 1, aux_sym_association_list_repeat1, - STATE(5539), 3, + STATE(5752), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279414] = 7, + [289297] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7206), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5540), 3, + ACTIONS(2528), 3, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + STATE(5753), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279438] = 7, + [289317] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7208), 1, + ACTIONS(7313), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5541), 3, + STATE(5754), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279462] = 7, + [289341] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7210), 1, - anon_sym_SEMI, - STATE(6611), 1, - sym_initialiser, - STATE(5542), 3, + ACTIONS(7315), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(5755), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279486] = 6, + [289361] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7214), 1, - sym_box, - ACTIONS(7212), 2, + ACTIONS(6871), 1, anon_sym_COMMA, + ACTIONS(7317), 1, anon_sym_RPAREN, - STATE(5543), 3, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5756), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279508] = 7, + [289385] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7216), 1, - anon_sym_COMMA, - ACTIONS(7218), 1, - anon_sym_RPAREN, - STATE(5765), 1, - aux_sym_entity_class_entry_list_repeat1, - STATE(5544), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7319), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5757), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279532] = 7, + [289409] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7220), 1, - sym_CONSTANT, - ACTIONS(7222), 1, - sym_SIGNAL, - ACTIONS(7224), 1, - sym_VARIABLE, - STATE(5545), 3, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7321), 1, + anon_sym_SEMI, + STATE(6010), 1, + aux_sym_use_clause_repeat1, + STATE(5758), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279556] = 5, + [289433] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7226), 3, - sym_box, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5546), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7323), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5759), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279576] = 7, + [289457] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5771), 1, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5634), 1, anon_sym_SEMI, - STATE(6490), 1, - sym_timeout_clause, - STATE(5547), 3, + STATE(7421), 1, + sym_when_expression, + STATE(5760), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279600] = 7, + [289481] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7228), 1, + ACTIONS(7325), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5548), 3, + STATE(5761), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279624] = 7, + [289505] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7230), 1, + ACTIONS(7327), 1, anon_sym_RPAREN, - STATE(5548), 1, + STATE(5761), 1, aux_sym_association_list_repeat1, - STATE(5549), 3, + STATE(5762), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279648] = 7, + [289529] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7232), 1, - sym_CONSTANT, - ACTIONS(7234), 1, - sym_SIGNAL, - ACTIONS(7236), 1, - sym_VARIABLE, - STATE(5550), 3, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(7329), 1, + anon_sym_SEMI, + STATE(7079), 1, + sym_timeout_clause, + STATE(5763), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279672] = 7, + [289553] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7238), 1, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(7331), 1, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5551), 3, + STATE(5758), 1, + aux_sym_use_clause_repeat1, + STATE(5764), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279696] = 7, + [289577] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7240), 1, - anon_sym_SEMI, - STATE(7313), 1, - sym_generic_map_aspect, - STATE(5552), 3, + ACTIONS(7333), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(5765), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279720] = 7, + [289597] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7242), 1, - sym_CONSTANT, - ACTIONS(7244), 1, - sym_SIGNAL, - ACTIONS(7246), 1, - sym_VARIABLE, - STATE(5553), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5650), 1, + anon_sym_SEMI, + STATE(7419), 1, + sym_when_expression, + STATE(5766), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279744] = 5, + [289621] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5777), 3, - sym_GENERIC, + ACTIONS(2420), 3, anon_sym_SEMI, + anon_sym_RPAREN, sym_variable_assignment, - STATE(5554), 3, + STATE(5767), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279764] = 7, + [289641] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7248), 1, - anon_sym_SEMI, - STATE(6615), 1, - sym_generic_map_aspect, - STATE(5555), 3, + ACTIONS(7335), 1, + anon_sym_COMMA, + ACTIONS(7337), 1, + anon_sym_RPAREN, + STATE(5624), 1, + aux_sym_aggregate_repeat1, + STATE(5768), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279788] = 5, + [289665] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3220), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(5556), 3, + ACTIONS(7041), 1, + anon_sym_LT_EQ, + ACTIONS(7339), 1, + sym_variable_assignment, + STATE(27), 1, + sym_signal_assignment, + STATE(5769), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279808] = 5, + [289689] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3242), 3, + ACTIONS(7341), 3, + sym_ELSE, + sym_ELSIF, sym_END, - sym_FOR, - sym_USE, - STATE(5557), 3, + STATE(5770), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279828] = 7, + [289709] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7250), 1, + ACTIONS(7343), 1, sym_CONSTANT, - ACTIONS(7252), 1, + ACTIONS(7345), 1, sym_SIGNAL, - ACTIONS(7254), 1, + ACTIONS(7347), 1, sym_VARIABLE, - STATE(5558), 3, + STATE(5771), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279852] = 7, + [289733] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7256), 1, - sym_CONSTANT, - ACTIONS(7258), 1, - sym_SIGNAL, - ACTIONS(7260), 1, - sym_VARIABLE, - STATE(5559), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7349), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5772), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279876] = 7, + [289757] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7262), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5560), 3, + ACTIONS(7351), 1, + sym_CONSTANT, + ACTIONS(7353), 1, + sym_SIGNAL, + ACTIONS(7355), 1, + sym_VARIABLE, + STATE(5773), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279900] = 7, + [289781] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(7264), 1, + ACTIONS(7357), 1, anon_sym_SEMI, - STATE(6996), 1, + STATE(6847), 1, sym_initialiser, - STATE(5561), 3, + STATE(5774), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279924] = 7, + [289805] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7266), 1, + ACTIONS(7359), 1, anon_sym_RPAREN, - STATE(5560), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5562), 3, + STATE(5775), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279948] = 6, + [289829] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7268), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7271), 1, + ACTIONS(7361), 1, anon_sym_RPAREN, - STATE(5563), 4, + STATE(5775), 1, + aux_sym_association_list_repeat1, + STATE(5776), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_index_constraint_repeat1, - [279970] = 7, + [289853] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(7273), 1, - anon_sym_RPAREN, - STATE(5540), 1, - aux_sym_association_list_repeat1, - STATE(5564), 3, + ACTIONS(7363), 1, + anon_sym_SEMI, + STATE(5586), 1, + aux_sym_use_clause_repeat1, + STATE(5777), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [279994] = 5, + [289877] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2622), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - STATE(5565), 3, + ACTIONS(7365), 1, + sym_directive_body, + ACTIONS(7367), 1, + sym__directive_newline, + STATE(5797), 1, + aux_sym_user_directive_repeat1, + STATE(5778), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280014] = 7, + [289901] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7275), 1, + ACTIONS(7369), 1, anon_sym_RPAREN, - STATE(5568), 1, + STATE(5781), 1, aux_sym_association_list_repeat1, - STATE(5566), 3, + STATE(5779), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280038] = 7, + [289925] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(7277), 1, - anon_sym_SEMI, - STATE(7323), 1, - sym_port_map_aspect, - STATE(5567), 3, + ACTIONS(6587), 1, + sym_WHEN, + STATE(5463), 1, + aux_sym_case_generate_block_repeat1, + STATE(6200), 1, + sym_case_generate_alternative, + STATE(5780), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280062] = 7, + [289949] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7279), 1, + ACTIONS(7371), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5568), 3, + STATE(5781), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280086] = 7, + [289973] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7032), 1, - anon_sym_COMMA, - ACTIONS(7281), 1, - anon_sym_SEMI, - STATE(5477), 1, - aux_sym_logical_name_list_repeat1, - STATE(5569), 3, + ACTIONS(7373), 1, + sym_CONSTANT, + ACTIONS(7375), 1, + sym_SIGNAL, + ACTIONS(7377), 1, + sym_VARIABLE, + STATE(5782), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280110] = 5, + [289997] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6452), 3, + ACTIONS(1635), 1, sym_GENERIC, - sym_PORT, + ACTIONS(7379), 1, anon_sym_SEMI, - STATE(5570), 3, + STATE(7332), 1, + sym_generic_map_aspect, + STATE(5783), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280130] = 7, + [290021] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6793), 1, + ACTIONS(7381), 1, + anon_sym_SEMI, + ACTIONS(7383), 1, anon_sym_COMMA, - ACTIONS(7283), 1, - anon_sym_COLON, - STATE(5386), 1, - aux_sym_instantiation_list_repeat1, - STATE(5571), 3, + STATE(5784), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [280154] = 5, + aux_sym_logical_name_list_repeat1, + [290043] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2888), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - STATE(5572), 3, + ACTIONS(7386), 1, + sym_CONSTANT, + ACTIONS(7388), 1, + sym_SIGNAL, + ACTIONS(7390), 1, + sym_VARIABLE, + STATE(5785), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280174] = 7, + [290067] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3810), 1, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7392), 1, anon_sym_RPAREN, - ACTIONS(7285), 1, - anon_sym_SEMI, - STATE(5758), 1, - aux_sym_interface_list_repeat1, - STATE(5573), 3, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5786), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280198] = 7, + [290091] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6821), 1, - anon_sym_COMMA, - ACTIONS(7287), 1, - anon_sym_COLON, - STATE(5396), 1, - aux_sym_signature_repeat1, - STATE(5574), 3, + ACTIONS(7394), 1, + sym_CONSTANT, + ACTIONS(7396), 1, + sym_SIGNAL, + ACTIONS(7398), 1, + sym_VARIABLE, + STATE(5787), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280222] = 7, + [290115] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7289), 1, + ACTIONS(7400), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5786), 1, aux_sym_association_list_repeat1, - STATE(5575), 3, + STATE(5788), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280246] = 7, + [290139] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7291), 1, - anon_sym_RPAREN, - STATE(5575), 1, - aux_sym_association_list_repeat1, - STATE(5576), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7402), 1, + anon_sym_SEMI, + STATE(6849), 1, + sym_generic_map_aspect, + STATE(5789), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280270] = 7, + [290163] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, - anon_sym_COMMA, - ACTIONS(7293), 1, + ACTIONS(7404), 3, + sym_IS, anon_sym_SEMI, - STATE(5405), 1, - aux_sym_use_clause_repeat1, - STATE(5577), 3, + anon_sym_RPAREN, + STATE(5790), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280294] = 7, + [290183] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(5958), 1, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(6189), 1, anon_sym_SEMI, - STATE(6994), 1, - sym_initialiser, - STATE(5578), 3, + STATE(8079), 1, + sym_timeout_clause, + STATE(5791), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280318] = 7, + [290207] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, - anon_sym_COMMA, - ACTIONS(7295), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7406), 1, anon_sym_SEMI, - STATE(5742), 1, - aux_sym_use_clause_repeat1, - STATE(5579), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5792), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280342] = 7, + [290231] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(7297), 1, - anon_sym_SEMI, - STATE(7403), 1, - sym_port_map_aspect, - STATE(5580), 3, + ACTIONS(7408), 1, + anon_sym_COMMA, + ACTIONS(7410), 1, + anon_sym_RPAREN, + STATE(6001), 1, + aux_sym_record_resolution_repeat1, + STATE(5793), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280366] = 7, + [290255] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(5962), 1, + ACTIONS(7412), 3, + sym_FOR, + sym_UNTIL, anon_sym_SEMI, - STATE(6617), 1, - sym_initialiser, - STATE(5581), 3, + STATE(5794), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280390] = 5, + [290275] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6146), 3, + ACTIONS(2954), 1, + sym_SEVERITY, + ACTIONS(7414), 1, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - STATE(5582), 3, + STATE(7164), 1, + sym_severity_expression, + STATE(5795), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280410] = 7, + [290299] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6862), 1, - anon_sym_COMMA, - ACTIONS(7299), 1, - anon_sym_COLON, - STATE(5413), 1, - aux_sym_identifier_list_repeat1, - STATE(5583), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7416), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5796), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280434] = 7, + [290323] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5647), 1, - anon_sym_SEMI, - STATE(6474), 1, - sym_when_expression, - STATE(5584), 3, + ACTIONS(7418), 1, + sym_directive_body, + ACTIONS(7421), 1, + sym__directive_newline, + STATE(5797), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [280458] = 7, + aux_sym_user_directive_repeat1, + [290345] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7301), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5585), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(7423), 1, + anon_sym_SEMI, + STATE(8039), 1, + sym_port_map_aspect, + STATE(5798), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280482] = 7, + [290369] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(7303), 1, + ACTIONS(7425), 1, anon_sym_SEMI, - STATE(6618), 1, + STATE(6852), 1, sym_generic_map_aspect, - STATE(5586), 3, + STATE(5799), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280506] = 7, + [290393] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7305), 1, + ACTIONS(7427), 1, anon_sym_RPAREN, - STATE(5585), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5587), 3, + STATE(5800), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280530] = 5, + [290417] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7307), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5588), 3, + ACTIONS(7429), 1, + sym_CONSTANT, + ACTIONS(7431), 1, + sym_SIGNAL, + ACTIONS(7433), 1, + sym_VARIABLE, + STATE(5801), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280550] = 7, + [290441] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7309), 1, + ACTIONS(7435), 1, anon_sym_RPAREN, - STATE(5656), 1, + STATE(5800), 1, aux_sym_association_list_repeat1, - STATE(5589), 3, + STATE(5802), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280574] = 7, + [290465] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5649), 1, + ACTIONS(6529), 1, anon_sym_SEMI, - STATE(6470), 1, - sym_when_expression, - STATE(5590), 3, + ACTIONS(7437), 1, + sym_ELSE, + STATE(6160), 1, + sym_else_expression_or_unaffected, + STATE(5803), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280598] = 7, + [290489] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7080), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(7311), 1, - anon_sym_RPAREN, - STATE(5399), 1, - aux_sym_aggregate_repeat1, - STATE(5591), 3, + ACTIONS(7439), 1, + anon_sym_SEMI, + STATE(6010), 1, + aux_sym_use_clause_repeat1, + STATE(5804), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280622] = 6, + [290513] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7313), 1, - anon_sym_SEMI, - ACTIONS(5817), 2, - anon_sym_LT_EQ, + ACTIONS(5899), 1, sym_variable_assignment, - STATE(5592), 3, + ACTIONS(7441), 1, + anon_sym_SEMI, + STATE(8178), 1, + sym_initialiser, + STATE(5805), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280644] = 7, + [290537] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7315), 1, + ACTIONS(7443), 1, anon_sym_RPAREN, - STATE(5595), 1, + STATE(5808), 1, aux_sym_association_list_repeat1, - STATE(5593), 3, + STATE(5806), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280668] = 7, + [290561] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7317), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5594), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7445), 1, + anon_sym_RPAREN, + STATE(5772), 1, + aux_sym_association_list_repeat1, + STATE(5807), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280692] = 7, + [290585] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7319), 1, + ACTIONS(7447), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5595), 3, + STATE(5808), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280716] = 7, + [290609] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2988), 1, - sym_SEVERITY, - ACTIONS(7321), 1, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7449), 1, anon_sym_SEMI, - STATE(7350), 1, - sym_severity_expression, - STATE(5596), 3, + STATE(7089), 1, + sym_generic_map_aspect, + STATE(5809), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [290633] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(7365), 1, + sym_directive_body, + ACTIONS(7451), 1, + sym__directive_newline, + STATE(5797), 1, + aux_sym_user_directive_repeat1, + STATE(5810), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280740] = 7, + [290657] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7323), 1, + ACTIONS(7453), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5597), 3, + STATE(5811), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280764] = 6, + [290681] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7327), 1, - sym_IS, - ACTIONS(7325), 2, + ACTIONS(7457), 1, + sym_OF, + ACTIONS(7455), 2, anon_sym_SEMI, anon_sym_RPAREN, - STATE(5598), 3, + STATE(5812), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280786] = 7, + [290703] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7329), 1, + ACTIONS(7459), 1, anon_sym_RPAREN, - STATE(5597), 1, + STATE(5811), 1, aux_sym_association_list_repeat1, - STATE(5599), 3, + STATE(5813), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280810] = 7, + [290727] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6968), 1, - anon_sym_LT_EQ, - ACTIONS(7331), 1, - sym_variable_assignment, - STATE(62), 1, - sym_signal_assignment, - STATE(5600), 3, + ACTIONS(6245), 3, + sym_IS, + sym_OPEN, + anon_sym_SEMI, + STATE(5814), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280834] = 7, + [290747] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6936), 1, - sym_directive_body, - ACTIONS(7333), 1, - sym__directive_newline, - STATE(5441), 1, - aux_sym_user_directive_repeat1, - STATE(5601), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7461), 1, + anon_sym_SEMI, + STATE(6150), 1, + sym_when_expression, + STATE(5815), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280858] = 7, + [290771] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7335), 1, - sym_CONSTANT, - ACTIONS(7337), 1, - sym_SIGNAL, - ACTIONS(7339), 1, - sym_VARIABLE, - STATE(5602), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6210), 1, + anon_sym_SEMI, + STATE(6858), 1, + sym_initialiser, + STATE(5816), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280882] = 7, + [290795] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7341), 1, - sym_CONSTANT, - ACTIONS(7343), 1, - sym_SIGNAL, - ACTIONS(7345), 1, - sym_VARIABLE, - STATE(5603), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7463), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5817), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280906] = 7, + [290819] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6936), 1, - sym_directive_body, - ACTIONS(7347), 1, - sym__directive_newline, - STATE(5443), 1, - aux_sym_user_directive_repeat1, - STATE(5604), 3, + ACTIONS(7465), 1, + anon_sym_COMMA, + ACTIONS(7468), 1, + anon_sym_COLON, + STATE(5818), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [280930] = 7, + aux_sym_entity_name_list_repeat1, + [290841] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6807), 1, - anon_sym_LT_EQ, - ACTIONS(7349), 1, - sym_variable_assignment, - STATE(53), 1, - sym_signal_assignment, - STATE(5605), 3, + ACTIONS(7470), 1, + sym_CONSTANT, + ACTIONS(7472), 1, + sym_SIGNAL, + ACTIONS(7474), 1, + sym_VARIABLE, + STATE(5819), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280954] = 7, + [290865] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6968), 1, + ACTIONS(7476), 1, + anon_sym_SEMI, + ACTIONS(5840), 2, anon_sym_LT_EQ, - ACTIONS(7351), 1, sym_variable_assignment, - STATE(52), 1, - sym_signal_assignment, - STATE(5606), 3, + STATE(5820), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [280978] = 7, + [290887] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(5796), 1, + ACTIONS(5737), 1, anon_sym_SEMI, - STATE(7292), 1, + ACTIONS(5739), 1, + sym_FOR, + STATE(7176), 1, sym_timeout_clause, - STATE(5607), 3, + STATE(5821), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281002] = 7, + [290911] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(7353), 1, + ACTIONS(7478), 1, anon_sym_SEMI, - STATE(6983), 1, + STATE(6862), 1, sym_generic_map_aspect, - STATE(5608), 3, + STATE(5822), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281026] = 7, + [290935] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5624), 1, - anon_sym_SEMI, - STATE(7367), 1, - sym_when_expression, - STATE(5609), 3, + ACTIONS(6143), 1, + anon_sym_RPAREN, + ACTIONS(6947), 1, + anon_sym_COMMA, + STATE(5602), 1, + aux_sym_group_constituent_list_repeat1, + STATE(5823), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281050] = 7, + [290959] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6807), 1, - anon_sym_LT_EQ, - ACTIONS(7355), 1, - sym_variable_assignment, - STATE(48), 1, - sym_signal_assignment, - STATE(5610), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(7480), 1, + anon_sym_SEMI, + STATE(7191), 1, + sym_port_map_aspect, + STATE(5824), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281074] = 7, + [290983] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7357), 1, + ACTIONS(7482), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5611), 3, + STATE(5825), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281098] = 7, + [291007] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7359), 1, - anon_sym_RPAREN, - STATE(5611), 1, - aux_sym_association_list_repeat1, - STATE(5612), 3, + ACTIONS(7158), 1, + anon_sym_LT_EQ, + ACTIONS(7484), 1, + sym_variable_assignment, + STATE(94), 1, + sym_signal_assignment, + STATE(5826), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281122] = 7, + [291031] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7361), 1, - anon_sym_SEMI, - STATE(6645), 1, - sym_initialiser, - STATE(5613), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7486), 1, + anon_sym_RPAREN, + STATE(5825), 1, + aux_sym_association_list_repeat1, + STATE(5827), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281146] = 7, + [291055] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6878), 1, - anon_sym_DOT, - ACTIONS(6880), 1, - anon_sym_LPAREN, - ACTIONS(7363), 1, - anon_sym_COLON, - STATE(5614), 3, + ACTIONS(7488), 1, + anon_sym_SEMI, + ACTIONS(5840), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(5828), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281170] = 6, + [291077] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7365), 1, - anon_sym_SEMI, - ACTIONS(7367), 1, + ACTIONS(6851), 1, anon_sym_COMMA, - STATE(5615), 4, + ACTIONS(7490), 1, + anon_sym_COLON, + STATE(5987), 1, + aux_sym_identifier_list_repeat1, + STATE(5829), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_logical_name_list_repeat1, - [281192] = 7, + [291101] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7370), 1, + ACTIONS(2954), 1, + sym_SEVERITY, + ACTIONS(7492), 1, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5616), 3, + STATE(6687), 1, + sym_severity_expression, + STATE(5830), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281216] = 7, + [291125] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(786), 1, - sym_WHEN, - ACTIONS(5622), 1, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(7494), 1, anon_sym_SEMI, - STATE(7368), 1, - sym_when_expression, - STATE(5617), 3, + STATE(8173), 1, + sym_timeout_clause, + STATE(5831), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281240] = 7, + [291149] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7372), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5618), 3, + ACTIONS(7496), 1, + sym_CONSTANT, + ACTIONS(7498), 1, + sym_SIGNAL, + ACTIONS(7500), 1, + sym_VARIABLE, + STATE(5832), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281264] = 7, + [291173] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7374), 1, - anon_sym_SEMI, - STATE(5742), 1, - aux_sym_use_clause_repeat1, - STATE(5619), 3, + ACTIONS(7502), 1, + anon_sym_RPAREN, + STATE(5835), 1, + aux_sym_association_list_repeat1, + STATE(5833), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281288] = 7, + [291197] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7504), 1, anon_sym_COMMA, - ACTIONS(7376), 1, + ACTIONS(7507), 1, anon_sym_RPAREN, - STATE(5622), 1, - aux_sym_association_list_repeat1, - STATE(5620), 3, + STATE(5834), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [281312] = 7, + aux_sym_enumeration_type_definition_repeat1, + [291219] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7378), 1, + ACTIONS(7509), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5621), 3, + STATE(5835), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281336] = 7, + [291243] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7380), 1, + ACTIONS(7511), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5622), 3, + STATE(5836), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281360] = 7, + [291267] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7382), 1, + ACTIONS(7513), 1, anon_sym_RPAREN, - STATE(5621), 1, + STATE(5836), 1, aux_sym_association_list_repeat1, - STATE(5623), 3, + STATE(5837), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281384] = 7, + [291291] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6870), 1, + ACTIONS(7515), 3, sym_IS, - ACTIONS(7384), 1, anon_sym_SEMI, - STATE(6154), 1, - sym_subprogram_head, - STATE(5624), 3, + anon_sym_RPAREN, + STATE(5838), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281408] = 7, + [291311] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7386), 1, - sym_CONSTANT, - ACTIONS(7388), 1, - sym_SIGNAL, - ACTIONS(7390), 1, - sym_VARIABLE, - STATE(5625), 3, + ACTIONS(7519), 1, + sym_IS, + ACTIONS(7517), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(5839), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281432] = 5, + [291333] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7392), 3, - sym_IS, + ACTIONS(7521), 1, anon_sym_SEMI, + ACTIONS(7523), 1, anon_sym_RPAREN, - STATE(5626), 3, + STATE(6016), 1, + aux_sym_interface_list_repeat1, + STATE(5840), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281452] = 7, + [291357] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7394), 1, - sym_CONSTANT, - ACTIONS(7396), 1, - sym_SIGNAL, - ACTIONS(7398), 1, - sym_VARIABLE, - STATE(5627), 3, + ACTIONS(6923), 1, + sym_IS, + ACTIONS(7525), 1, + anon_sym_SEMI, + STATE(6324), 1, + sym_subprogram_head, + STATE(5841), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281476] = 7, + [291381] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6968), 1, + ACTIONS(7527), 1, + anon_sym_SEMI, + ACTIONS(5840), 2, anon_sym_LT_EQ, - ACTIONS(7400), 1, sym_variable_assignment, - STATE(37), 1, - sym_signal_assignment, - STATE(5628), 3, + STATE(5842), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281500] = 7, + [291403] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7402), 1, - sym_CONSTANT, - ACTIONS(7404), 1, - sym_SIGNAL, - ACTIONS(7406), 1, - sym_VARIABLE, - STATE(5629), 3, + ACTIONS(6923), 1, + sym_IS, + ACTIONS(7529), 1, + anon_sym_SEMI, + STATE(6392), 1, + sym_subprogram_head, + STATE(5843), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281524] = 7, + [291427] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6807), 1, - anon_sym_LT_EQ, - ACTIONS(7408), 1, - sym_variable_assignment, - STATE(32), 1, - sym_signal_assignment, - STATE(5630), 3, + ACTIONS(7531), 1, + anon_sym_COMMA, + ACTIONS(7533), 1, + anon_sym_COLON, + STATE(5818), 1, + aux_sym_entity_name_list_repeat1, + STATE(5844), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281548] = 7, + [291451] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7410), 1, - sym_CONSTANT, - ACTIONS(7412), 1, - sym_SIGNAL, - ACTIONS(7414), 1, - sym_VARIABLE, - STATE(5631), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7535), 1, + anon_sym_SEMI, + STATE(7194), 1, + sym_initialiser, + STATE(5845), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281572] = 7, + [291475] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6968), 1, - anon_sym_LT_EQ, - ACTIONS(7416), 1, - sym_variable_assignment, - STATE(30), 1, - sym_signal_assignment, - STATE(5632), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7537), 1, + anon_sym_SEMI, + STATE(7341), 1, + sym_generic_map_aspect, + STATE(5846), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281596] = 7, + [291499] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(7539), 1, anon_sym_COMMA, - ACTIONS(7418), 1, - anon_sym_SEMI, - STATE(5619), 1, - aux_sym_use_clause_repeat1, - STATE(5633), 3, + ACTIONS(7542), 1, + anon_sym_RPAREN, + STATE(5847), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [281620] = 7, + aux_sym_array_index_incomplete_type_list_repeat1, + [291521] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7420), 1, + ACTIONS(2954), 1, + sym_SEVERITY, + ACTIONS(7544), 1, anon_sym_SEMI, - STATE(7388), 1, - sym_initialiser, - STATE(5634), 3, + STATE(7404), 1, + sym_severity_expression, + STATE(5848), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281644] = 7, + [291545] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6807), 1, - anon_sym_LT_EQ, - ACTIONS(7422), 1, - sym_variable_assignment, - STATE(26), 1, - sym_signal_assignment, - STATE(5635), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7546), 1, + anon_sym_SEMI, + STATE(7092), 1, + sym_generic_map_aspect, + STATE(5849), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281668] = 7, + [291569] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7424), 1, + ACTIONS(7548), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5636), 3, + STATE(5850), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281692] = 7, + [291593] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7426), 1, + ACTIONS(7550), 1, anon_sym_RPAREN, - STATE(5636), 1, + STATE(5850), 1, aux_sym_association_list_repeat1, - STATE(5637), 3, + STATE(5851), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281716] = 6, + [291617] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7430), 1, - sym_IS, - ACTIONS(7428), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5638), 3, + ACTIONS(7158), 1, + anon_sym_LT_EQ, + ACTIONS(7552), 1, + sym_variable_assignment, + STATE(23), 1, + sym_signal_assignment, + STATE(5852), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281738] = 7, + [291641] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7432), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7554), 1, anon_sym_SEMI, - ACTIONS(7434), 1, - anon_sym_RPAREN, - STATE(5573), 1, - aux_sym_interface_list_repeat1, - STATE(5639), 3, + STATE(6894), 1, + sym_initialiser, + STATE(5853), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281762] = 7, + [291665] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7436), 1, - sym_CONSTANT, - ACTIONS(7438), 1, - sym_SIGNAL, - ACTIONS(7440), 1, - sym_VARIABLE, - STATE(5640), 3, + ACTIONS(7041), 1, + anon_sym_LT_EQ, + ACTIONS(7556), 1, + sym_variable_assignment, + STATE(21), 1, + sym_signal_assignment, + STATE(5854), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281786] = 7, + [291689] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -275393,460 +284196,434 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(2884), 1, sym_WHEN, - ACTIONS(7442), 1, + ACTIONS(7558), 1, anon_sym_SEMI, - STATE(5290), 1, + STATE(5484), 1, sym_when_expression, - STATE(5641), 3, + STATE(5855), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281810] = 7, + [291713] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(7444), 1, + ACTIONS(7560), 1, anon_sym_SEMI, - STATE(6970), 1, - sym_timeout_clause, - STATE(5642), 3, + ACTIONS(5840), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(5856), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281834] = 5, + [291735] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7446), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5643), 3, + ACTIONS(7562), 1, + sym_CONSTANT, + ACTIONS(7564), 1, + sym_SIGNAL, + ACTIONS(7566), 1, + sym_VARIABLE, + STATE(5857), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281854] = 7, + [291759] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7448), 1, + ACTIONS(7568), 3, + sym_GENERIC, + sym_PORT, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5644), 3, + STATE(5858), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281878] = 7, + [291779] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7570), 1, anon_sym_COMMA, - ACTIONS(7450), 1, + ACTIONS(7573), 1, anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5645), 3, + STATE(5859), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [281902] = 7, + aux_sym_element_association_list_repeat1, + [291801] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7452), 1, + ACTIONS(7575), 1, anon_sym_RPAREN, - STATE(5645), 1, + STATE(5862), 1, aux_sym_association_list_repeat1, - STATE(5646), 3, + STATE(5860), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281926] = 7, + [291825] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7454), 1, + ACTIONS(7577), 1, anon_sym_RPAREN, - STATE(5649), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5647), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [281950] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(6807), 1, - anon_sym_LT_EQ, - ACTIONS(7456), 1, - sym_variable_assignment, - STATE(29), 1, - sym_signal_assignment, - STATE(5648), 3, + STATE(5861), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281974] = 7, + [291849] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7458), 1, + ACTIONS(7579), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5649), 3, + STATE(5862), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [281998] = 7, + [291873] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7062), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7460), 1, + ACTIONS(7581), 1, anon_sym_RPAREN, - STATE(5489), 1, - aux_sym_association_or_range_list_repeat1, - STATE(5650), 3, + STATE(5861), 1, + aux_sym_association_list_repeat1, + STATE(5863), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282022] = 5, + [291897] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7462), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5651), 3, + ACTIONS(7158), 1, + anon_sym_LT_EQ, + ACTIONS(7583), 1, + sym_variable_assignment, + STATE(45), 1, + sym_signal_assignment, + STATE(5864), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282042] = 7, + [291921] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(7464), 1, + ACTIONS(7585), 1, anon_sym_SEMI, - STATE(5742), 1, + STATE(6010), 1, aux_sym_use_clause_repeat1, - STATE(5652), 3, + STATE(5865), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282066] = 6, + [291945] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7466), 1, - anon_sym_SEMI, - ACTIONS(5817), 2, + ACTIONS(7158), 1, anon_sym_LT_EQ, + ACTIONS(7587), 1, sym_variable_assignment, - STATE(5653), 3, + STATE(75), 1, + sym_signal_assignment, + STATE(5866), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282088] = 7, + [291969] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2988), 1, - sym_SEVERITY, - ACTIONS(7468), 1, - anon_sym_SEMI, - STATE(7478), 1, - sym_severity_expression, - STATE(5654), 3, + ACTIONS(7589), 1, + sym_CONSTANT, + ACTIONS(7591), 1, + sym_SIGNAL, + ACTIONS(7593), 1, + sym_VARIABLE, + STATE(5867), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282112] = 7, + [291993] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7470), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(7595), 1, anon_sym_SEMI, - STATE(6960), 1, - sym_initialiser, - STATE(5655), 3, + STATE(5707), 1, + aux_sym_group_constituent_list_repeat1, + STATE(5868), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282136] = 7, + [292017] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7472), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5656), 3, + ACTIONS(7365), 1, + sym_directive_body, + ACTIONS(7597), 1, + sym__directive_newline, + STATE(5778), 1, + aux_sym_user_directive_repeat1, + STATE(5869), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282160] = 7, + [292041] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(7474), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5657), 3, + ACTIONS(7599), 1, + anon_sym_SEMI, + STATE(5865), 1, + aux_sym_use_clause_repeat1, + STATE(5870), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282184] = 7, + [292065] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(7476), 1, - anon_sym_SEMI, - STATE(7542), 1, - sym_port_map_aspect, - STATE(5658), 3, + ACTIONS(7601), 1, + sym_CONSTANT, + ACTIONS(7603), 1, + sym_SIGNAL, + ACTIONS(7605), 1, + sym_VARIABLE, + STATE(5871), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282208] = 6, + [292089] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7480), 1, - sym_OF, - ACTIONS(7478), 2, + ACTIONS(7607), 3, + sym_IS, anon_sym_SEMI, anon_sym_RPAREN, - STATE(5659), 3, + STATE(5872), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282230] = 7, + [292109] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7482), 1, - sym_CONSTANT, - ACTIONS(7484), 1, - sym_SIGNAL, - ACTIONS(7486), 1, - sym_VARIABLE, - STATE(5660), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_RPAREN, + STATE(5622), 1, + aux_sym_association_list_repeat1, + STATE(5873), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282254] = 5, + [292133] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3136), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(5661), 3, + ACTIONS(7611), 1, + sym_CONSTANT, + ACTIONS(7613), 1, + sym_SIGNAL, + ACTIONS(7615), 1, + sym_VARIABLE, + STATE(5874), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282274] = 7, + [292157] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(7488), 1, + ACTIONS(7617), 1, anon_sym_RPAREN, - STATE(5657), 1, - aux_sym_association_list_repeat1, - STATE(5662), 3, + STATE(5167), 1, + aux_sym_group_constituent_list_repeat1, + STATE(5875), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282298] = 7, + [292181] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7490), 1, + ACTIONS(7619), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5719), 1, aux_sym_association_list_repeat1, - STATE(5663), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [282322] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7492), 1, - anon_sym_SEMI, - STATE(6701), 1, - sym_initialiser, - STATE(5664), 3, + STATE(5876), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282346] = 7, + [292205] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7494), 1, - anon_sym_SEMI, - STATE(5652), 1, - aux_sym_use_clause_repeat1, - STATE(5665), 3, + ACTIONS(7621), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5877), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282370] = 5, + [292229] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3150), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(5666), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7623), 1, + anon_sym_RPAREN, + STATE(5877), 1, + aux_sym_association_list_repeat1, + STATE(5878), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282390] = 5, + [292253] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6174), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(5667), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7625), 1, + anon_sym_SEMI, + STATE(8069), 1, + sym_generic_map_aspect, + STATE(5879), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282410] = 5, + [292277] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7496), 3, + ACTIONS(6923), 1, sym_IS, + ACTIONS(7627), 1, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5668), 3, + STATE(6218), 1, + sym_subprogram_head, + STATE(5880), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282430] = 7, + [292301] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -275855,1836 +284632,1833 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(2884), 1, sym_WHEN, - ACTIONS(7498), 1, + ACTIONS(7629), 1, anon_sym_SEMI, - STATE(5290), 1, + STATE(5484), 1, sym_when_expression, - STATE(5669), 3, + STATE(5881), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282454] = 7, + [292325] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7500), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5670), 3, + ACTIONS(7631), 1, + sym_CONSTANT, + ACTIONS(7633), 1, + sym_SIGNAL, + ACTIONS(7635), 1, + sym_VARIABLE, + STATE(5882), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282478] = 7, + [292349] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7408), 1, anon_sym_COMMA, - ACTIONS(7502), 1, + ACTIONS(7637), 1, anon_sym_RPAREN, - STATE(5670), 1, - aux_sym_association_list_repeat1, - STATE(5671), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [282502] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7504), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5672), 3, + STATE(5793), 1, + aux_sym_record_resolution_repeat1, + STATE(5883), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282526] = 7, + [292373] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, + ACTIONS(1635), 1, sym_GENERIC, - ACTIONS(7506), 1, + ACTIONS(7639), 1, anon_sym_SEMI, - STATE(6703), 1, + STATE(8147), 1, sym_generic_map_aspect, - STATE(5673), 3, + STATE(5884), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282550] = 7, + [292397] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7641), 1, anon_sym_COMMA, - ACTIONS(7508), 1, + ACTIONS(7643), 1, anon_sym_RPAREN, - STATE(5676), 1, - aux_sym_association_list_repeat1, - STATE(5674), 3, + STATE(5859), 1, + aux_sym_element_association_list_repeat1, + STATE(5885), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282574] = 7, + [292421] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6870), 1, - sym_IS, - ACTIONS(7510), 1, - anon_sym_SEMI, - STATE(6122), 1, - sym_subprogram_head, - STATE(5675), 3, + ACTIONS(7645), 1, + sym_CONSTANT, + ACTIONS(7647), 1, + sym_SIGNAL, + ACTIONS(7649), 1, + sym_VARIABLE, + STATE(5886), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282598] = 7, + [292445] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7512), 1, + ACTIONS(7651), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5889), 1, aux_sym_association_list_repeat1, - STATE(5676), 3, + STATE(5887), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282622] = 6, + [292469] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7514), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7517), 1, + ACTIONS(7653), 1, anon_sym_RPAREN, - STATE(5677), 4, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5888), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_association_or_range_list_repeat1, - [282644] = 5, + [292493] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2568), 3, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - STATE(5678), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7655), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5889), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282664] = 7, + [292517] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7519), 1, + ACTIONS(7657), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5888), 1, aux_sym_association_list_repeat1, - STATE(5679), 3, + STATE(5890), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282688] = 7, + [292541] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(7521), 1, - anon_sym_SEMI, - STATE(7838), 1, - sym_port_map_aspect, - STATE(5680), 3, + ACTIONS(7659), 1, + sym_CONSTANT, + ACTIONS(7661), 1, + sym_SIGNAL, + ACTIONS(7663), 1, + sym_VARIABLE, + STATE(5891), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282712] = 7, + [292565] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7523), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5681), 3, + ACTIONS(7665), 1, + sym_CONSTANT, + ACTIONS(7667), 1, + sym_SIGNAL, + ACTIONS(7669), 1, + sym_VARIABLE, + STATE(5892), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282736] = 7, + [292589] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(6444), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6037), 1, anon_sym_SEMI, - STATE(5959), 1, - sym_when_expression, - STATE(5682), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [282760] = 7, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7525), 1, - anon_sym_RPAREN, - STATE(5679), 1, - aux_sym_association_list_repeat1, - STATE(5683), 3, + STATE(7102), 1, + sym_initialiser, + STATE(5893), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282784] = 7, + [292613] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7527), 1, - sym_CONSTANT, - ACTIONS(7529), 1, - sym_SIGNAL, - ACTIONS(7531), 1, - sym_VARIABLE, - STATE(5684), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6081), 1, + anon_sym_SEMI, + STATE(7348), 1, + sym_initialiser, + STATE(5894), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282808] = 7, + [292637] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7533), 1, + ACTIONS(7673), 1, + sym_IS, + ACTIONS(7671), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(5663), 1, - aux_sym_association_list_repeat1, - STATE(5685), 3, + STATE(5895), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282832] = 7, + [292659] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7535), 1, - anon_sym_COMMA, - ACTIONS(7537), 1, - anon_sym_COLON, - STATE(5724), 1, - aux_sym_entity_name_list_repeat1, - STATE(5686), 3, + ACTIONS(7675), 1, + sym_CONSTANT, + ACTIONS(7677), 1, + sym_SIGNAL, + ACTIONS(7679), 1, + sym_VARIABLE, + STATE(5896), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282856] = 5, + [292683] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6439), 3, - sym_WHEN, + ACTIONS(2954), 1, + sym_SEVERITY, + ACTIONS(7681), 1, anon_sym_SEMI, - anon_sym_COMMA, - STATE(5687), 3, + STATE(7807), 1, + sym_severity_expression, + STATE(5897), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282876] = 5, + [292707] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5924), 3, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - STATE(5688), 3, + ACTIONS(7683), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(5898), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282896] = 7, + [292727] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7539), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7685), 1, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5689), 3, + STATE(7103), 1, + sym_initialiser, + STATE(5899), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282920] = 6, + [292751] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7541), 1, + ACTIONS(7335), 1, anon_sym_COMMA, - ACTIONS(7544), 1, + ACTIONS(7687), 1, anon_sym_RPAREN, - STATE(5690), 4, + STATE(5768), 1, + aux_sym_aggregate_repeat1, + STATE(5900), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_array_index_incomplete_type_list_repeat1, - [282942] = 7, + [292775] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7546), 1, + ACTIONS(7689), 1, sym_CONSTANT, - ACTIONS(7548), 1, + ACTIONS(7691), 1, sym_SIGNAL, - ACTIONS(7550), 1, + ACTIONS(7693), 1, sym_VARIABLE, - STATE(5691), 3, + STATE(5901), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282966] = 7, + [292799] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, + ACTIONS(5899), 1, sym_variable_assignment, - ACTIONS(6068), 1, + ACTIONS(7695), 1, anon_sym_SEMI, - STATE(6705), 1, + STATE(7353), 1, sym_initialiser, - STATE(5692), 3, + STATE(5902), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [282990] = 7, + [292823] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(7552), 1, + ACTIONS(7697), 3, + sym_IS, anon_sym_SEMI, - STATE(7969), 1, - sym_port_map_aspect, - STATE(5693), 3, + anon_sym_RPAREN, + STATE(5903), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283014] = 7, + [292843] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6870), 1, - sym_IS, - ACTIONS(7554), 1, - anon_sym_SEMI, - STATE(6046), 1, - sym_subprogram_head, - STATE(5694), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7699), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5904), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283038] = 7, + [292867] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7556), 1, + ACTIONS(7701), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5904), 1, aux_sym_association_list_repeat1, - STATE(5695), 3, + STATE(5905), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283062] = 7, + [292891] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7558), 1, - anon_sym_SEMI, - STATE(6712), 1, - sym_generic_map_aspect, - STATE(5696), 3, + ACTIONS(7365), 1, + sym_directive_body, + ACTIONS(7703), 1, + sym__directive_newline, + STATE(5810), 1, + aux_sym_user_directive_repeat1, + STATE(5906), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283086] = 7, + [292915] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7560), 1, - anon_sym_RPAREN, - STATE(5695), 1, - aux_sym_association_list_repeat1, - STATE(5697), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5648), 1, + anon_sym_SEMI, + STATE(7179), 1, + sym_when_expression, + STATE(5907), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283110] = 5, + [292939] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3198), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(5698), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7705), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5908), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283130] = 7, + [292963] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7562), 1, - sym_CONSTANT, - ACTIONS(7564), 1, - sym_SIGNAL, - ACTIONS(7566), 1, - sym_VARIABLE, - STATE(5699), 3, + ACTIONS(7707), 3, + sym_GENERIC, + sym_PORT, + anon_sym_SEMI, + STATE(5909), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283154] = 5, + [292983] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7568), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5700), 3, + ACTIONS(5509), 1, + sym_RANGE, + ACTIONS(5703), 1, + sym_IS, + STATE(8017), 1, + sym_range_constraint, + STATE(5910), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283174] = 7, + [293007] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7709), 1, anon_sym_COMMA, - ACTIONS(7570), 1, + ACTIONS(7712), 1, anon_sym_RPAREN, - STATE(5703), 1, - aux_sym_association_list_repeat1, - STATE(5701), 3, + STATE(5911), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [283198] = 7, + aux_sym_entity_class_entry_list_repeat1, + [293029] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, - anon_sym_COMMA, - ACTIONS(7572), 1, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(7714), 1, anon_sym_SEMI, - STATE(5704), 1, - aux_sym_use_clause_repeat1, - STATE(5702), 3, + STATE(7108), 1, + sym_when_expression, + STATE(5912), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283222] = 7, + [293053] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7574), 1, + ACTIONS(7716), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5703), 3, + STATE(5913), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283246] = 7, + [293077] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7576), 1, - anon_sym_SEMI, - STATE(5742), 1, - aux_sym_use_clause_repeat1, - STATE(5704), 3, + ACTIONS(7718), 1, + anon_sym_RPAREN, + STATE(5916), 1, + aux_sym_association_list_repeat1, + STATE(5914), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283270] = 7, + [293101] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7578), 1, + ACTIONS(7720), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5913), 1, aux_sym_association_list_repeat1, - STATE(5705), 3, + STATE(5915), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283294] = 7, + [293125] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7580), 1, + ACTIONS(7722), 1, anon_sym_RPAREN, - STATE(5705), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5706), 3, + STATE(5916), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283318] = 5, + [293149] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7582), 3, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - STATE(5707), 3, + ACTIONS(7724), 1, + sym_CONSTANT, + ACTIONS(7726), 1, + sym_SIGNAL, + ACTIONS(7728), 1, + sym_VARIABLE, + STATE(5917), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283338] = 7, + [293173] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7584), 1, - sym_SHARED, - ACTIONS(7586), 1, - sym_VARIABLE, - STATE(4575), 1, - sym_variable_declaration, - STATE(5708), 3, + ACTIONS(6678), 3, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + STATE(5918), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283362] = 5, + [293193] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2622), 3, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - STATE(5709), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7730), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5919), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283382] = 5, + [293217] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7588), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5710), 3, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(7732), 1, + anon_sym_SEMI, + STATE(7113), 1, + sym_when_expression, + STATE(5920), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283402] = 7, + [293241] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7590), 1, - anon_sym_RPAREN, - STATE(5822), 1, - aux_sym_association_list_repeat1, - STATE(5711), 3, + ACTIONS(3198), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(5921), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283426] = 5, + [293261] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2666), 3, - sym_PARAMETER, - anon_sym_SEMI, - anon_sym_LPAREN, - STATE(5712), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7734), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5922), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283446] = 5, + [293285] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2662), 3, - sym_PARAMETER, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7736), 1, anon_sym_SEMI, - anon_sym_LPAREN, - STATE(5713), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5923), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283466] = 5, + [293309] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2622), 3, - sym_PARAMETER, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7738), 1, anon_sym_SEMI, - anon_sym_LPAREN, - STATE(5714), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5924), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283486] = 7, + [293333] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7592), 1, - anon_sym_COMMA, - ACTIONS(7594), 1, - anon_sym_RPAREN, - STATE(5823), 1, - aux_sym_record_resolution_repeat1, - STATE(5715), 3, + ACTIONS(6230), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(5925), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283510] = 7, + [293353] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7596), 1, + ACTIONS(2882), 3, + sym_GENERIC, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5716), 3, + sym_variable_assignment, + STATE(5926), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283534] = 5, + [293373] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7598), 3, - sym_IS, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7740), 1, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5717), 3, + STATE(6950), 1, + sym_initialiser, + STATE(5927), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283554] = 7, + [293397] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7600), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5718), 3, + ACTIONS(7742), 1, + sym_CONSTANT, + ACTIONS(7744), 1, + sym_SIGNAL, + ACTIONS(7746), 1, + sym_VARIABLE, + STATE(5928), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283578] = 7, + [293421] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7602), 1, + ACTIONS(7748), 1, anon_sym_RPAREN, - STATE(5718), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5719), 3, + STATE(5929), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283602] = 6, + [293445] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7604), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7607), 1, - anon_sym_COLON, - STATE(5720), 4, + ACTIONS(7750), 1, + anon_sym_RPAREN, + STATE(5929), 1, + aux_sym_association_list_repeat1, + STATE(5930), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_instantiation_list_repeat1, - [283624] = 7, + [293469] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7609), 1, - anon_sym_SEMI, - STATE(7892), 1, - sym_initialiser, - STATE(5721), 3, + ACTIONS(7752), 1, + sym_CONSTANT, + ACTIONS(7754), 1, + sym_SIGNAL, + ACTIONS(7756), 1, + sym_VARIABLE, + STATE(5931), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283648] = 7, + [293493] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - ACTIONS(7611), 1, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7758), 1, anon_sym_SEMI, - STATE(6860), 1, - sym_port_map_aspect, - STATE(5722), 3, + STATE(6953), 1, + sym_generic_map_aspect, + STATE(5932), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283672] = 5, + [293517] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6135), 3, + ACTIONS(7760), 3, sym_IS, - sym_OPEN, anon_sym_SEMI, - STATE(5723), 3, + anon_sym_RPAREN, + STATE(5933), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283692] = 6, + [293537] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7613), 1, - anon_sym_COMMA, - ACTIONS(7616), 1, - anon_sym_COLON, - STATE(5724), 4, + ACTIONS(7762), 1, + sym_CONSTANT, + ACTIONS(7764), 1, + sym_SIGNAL, + ACTIONS(7766), 1, + sym_VARIABLE, + STATE(5934), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_entity_name_list_repeat1, - [283714] = 7, + [293561] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7618), 1, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(7768), 1, anon_sym_SEMI, - STATE(6740), 1, - sym_initialiser, - STATE(5725), 3, + STATE(7358), 1, + sym_when_expression, + STATE(5935), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283738] = 7, + [293585] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7620), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7770), 1, anon_sym_SEMI, - STATE(6857), 1, - sym_initialiser, - STATE(5726), 3, + STATE(5484), 1, + sym_when_expression, + STATE(5936), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283762] = 5, + [293609] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3190), 3, + ACTIONS(3184), 3, sym_END, sym_FOR, sym_USE, - STATE(5727), 3, + STATE(5937), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283782] = 7, + [293629] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7641), 1, anon_sym_COMMA, - ACTIONS(7622), 1, + ACTIONS(7772), 1, anon_sym_RPAREN, - STATE(5730), 1, - aux_sym_association_list_repeat1, - STATE(5728), 3, + STATE(5885), 1, + aux_sym_element_association_list_repeat1, + STATE(5938), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [293653] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(3272), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(5939), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283806] = 7, + [293673] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7624), 1, + ACTIONS(7774), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5729), 3, + STATE(5940), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283830] = 7, + [293697] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7626), 1, + ACTIONS(7776), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5943), 1, aux_sym_association_list_repeat1, - STATE(5730), 3, + STATE(5941), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283854] = 7, + [293721] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7628), 1, + ACTIONS(7778), 1, anon_sym_RPAREN, - STATE(5729), 1, + STATE(5940), 1, aux_sym_association_list_repeat1, - STATE(5731), 3, + STATE(5942), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283878] = 5, + [293745] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7630), 3, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - STATE(5732), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7780), 1, + anon_sym_RPAREN, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5943), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283898] = 5, + [293769] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2666), 3, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(7782), 1, anon_sym_SEMI, - anon_sym_RPAREN, - sym_variable_assignment, - STATE(5733), 3, + STATE(8156), 1, + sym_port_map_aspect, + STATE(5944), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283918] = 5, + [293793] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2662), 3, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - STATE(5734), 3, + ACTIONS(7784), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(5945), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283938] = 5, + [293813] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2666), 3, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - STATE(5735), 3, + ACTIONS(3286), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(5946), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283958] = 7, + [293833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7632), 1, + ACTIONS(2404), 3, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5736), 3, + anon_sym_RPAREN, + sym_variable_assignment, + STATE(5947), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [283982] = 6, + [293853] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7634), 1, - sym_directive_body, - ACTIONS(7637), 1, - sym__directive_newline, - STATE(5737), 4, + ACTIONS(7289), 1, + anon_sym_COMMA, + ACTIONS(7786), 1, + anon_sym_RPAREN, + STATE(5847), 1, + aux_sym_array_index_incomplete_type_list_repeat1, + STATE(5948), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_user_directive_repeat1, - [284004] = 5, + [293877] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7639), 3, - sym_END, - sym_FOR, - sym_USE, - STATE(5738), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7788), 1, + anon_sym_SEMI, + STATE(6959), 1, + sym_generic_map_aspect, + STATE(5949), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284024] = 7, + [293901] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, + ACTIONS(788), 1, sym_WHEN, - ACTIONS(7641), 1, + ACTIONS(7790), 1, anon_sym_SEMI, - STATE(5290), 1, + STATE(7359), 1, sym_when_expression, - STATE(5739), 3, + STATE(5950), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284048] = 5, + [293925] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6710), 3, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - STATE(5740), 3, + ACTIONS(7531), 1, + anon_sym_COMMA, + ACTIONS(7792), 1, + anon_sym_COLON, + STATE(5844), 1, + aux_sym_entity_name_list_repeat1, + STATE(5951), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284068] = 6, + [293949] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7643), 1, - anon_sym_COMMA, - ACTIONS(7646), 1, - anon_sym_RPAREN, - STATE(5741), 4, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(6031), 1, + anon_sym_SEMI, + STATE(7125), 1, + sym_timeout_clause, + STATE(5952), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_association_list_repeat1, - [284090] = 6, + [293973] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7648), 1, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7794), 1, anon_sym_SEMI, - ACTIONS(7650), 1, - anon_sym_COMMA, - STATE(5742), 4, + STATE(5484), 1, + sym_when_expression, + STATE(5953), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_use_clause_repeat1, - [284112] = 7, + [293997] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6821), 1, - anon_sym_COMMA, - ACTIONS(7653), 1, + ACTIONS(7796), 1, anon_sym_SEMI, - STATE(5826), 1, - aux_sym_signature_repeat1, - STATE(5743), 3, + ACTIONS(7799), 1, + anon_sym_RPAREN, + STATE(5954), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [284136] = 5, + aux_sym_interface_list_repeat1, + [294019] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7655), 3, - sym_GENERIC, - sym_PORT, + ACTIONS(7803), 1, + sym_OF, + ACTIONS(7801), 2, anon_sym_SEMI, - STATE(5744), 3, + anon_sym_RPAREN, + STATE(5955), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284156] = 7, + [294041] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7657), 1, + ACTIONS(6073), 3, + sym_IS, + sym_OPEN, anon_sym_SEMI, - STATE(7937), 1, - sym_generic_map_aspect, - STATE(5745), 3, + STATE(5956), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284180] = 7, + [294061] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5746), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7805), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5957), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284204] = 7, + [294085] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7661), 1, + ACTIONS(7807), 1, anon_sym_RPAREN, - STATE(5746), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5747), 3, + STATE(5958), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284228] = 7, + [294109] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7663), 1, - anon_sym_SEMI, - STATE(5742), 1, - aux_sym_use_clause_repeat1, - STATE(5748), 3, + ACTIONS(7809), 1, + anon_sym_RPAREN, + STATE(5958), 1, + aux_sym_association_list_repeat1, + STATE(5959), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284252] = 5, + [294133] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6330), 3, - anon_sym_SEMI, + ACTIONS(6937), 1, anon_sym_COMMA, - anon_sym_DOT, - STATE(5749), 3, + ACTIONS(7811), 1, + anon_sym_COLON, + STATE(5980), 1, + aux_sym_instantiation_list_repeat1, + STATE(5960), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284272] = 7, + [294157] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7665), 1, - sym_CONSTANT, - ACTIONS(7667), 1, - sym_SIGNAL, - ACTIONS(7669), 1, - sym_VARIABLE, - STATE(5750), 3, + ACTIONS(7815), 1, + sym_box, + ACTIONS(7813), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5961), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284296] = 7, + [294179] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7671), 1, - anon_sym_SEMI, - STATE(7901), 1, - sym_generic_map_aspect, - STATE(5751), 3, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(7817), 1, + anon_sym_COLON, + STATE(5167), 1, + aux_sym_group_constituent_list_repeat1, + STATE(5962), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284320] = 7, + [294203] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6862), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7673), 1, - anon_sym_COLON, - STATE(5791), 1, - aux_sym_identifier_list_repeat1, - STATE(5752), 3, + ACTIONS(7819), 1, + anon_sym_RPAREN, + STATE(5922), 1, + aux_sym_association_list_repeat1, + STATE(5963), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284344] = 7, + [294227] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6898), 1, + ACTIONS(7821), 1, anon_sym_COMMA, - ACTIONS(7675), 1, + ACTIONS(7823), 1, anon_sym_RPAREN, - STATE(5815), 1, - aux_sym_element_association_list_repeat1, - STATE(5753), 3, + STATE(5999), 1, + aux_sym_entity_class_entry_list_repeat1, + STATE(5964), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284368] = 5, + [294251] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7677), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5754), 3, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7825), 1, + anon_sym_SEMI, + STATE(8164), 1, + sym_generic_map_aspect, + STATE(5965), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284388] = 7, + [294275] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7679), 1, - anon_sym_RPAREN, - STATE(5757), 1, - aux_sym_association_list_repeat1, - STATE(5755), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7827), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(5966), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284412] = 5, + [294299] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7681), 3, - sym_IS, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(7829), 1, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5756), 3, + STATE(7382), 1, + sym_port_map_aspect, + STATE(5967), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284432] = 7, + [294323] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7683), 1, + ACTIONS(7831), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5970), 1, aux_sym_association_list_repeat1, - STATE(5757), 3, + STATE(5968), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284456] = 6, + [294347] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7685), 1, - anon_sym_SEMI, - ACTIONS(7688), 1, - anon_sym_RPAREN, - STATE(5758), 4, + ACTIONS(5660), 1, + sym_PORT, + ACTIONS(7833), 1, + sym_END, + STATE(7590), 1, + sym_port_clause, + STATE(5969), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_interface_list_repeat1, - [284478] = 7, + [294371] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7690), 1, + ACTIONS(7835), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5759), 3, + STATE(5970), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284502] = 6, + [294395] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7692), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7695), 1, + ACTIONS(7837), 1, anon_sym_RPAREN, - STATE(5760), 4, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5971), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_enumeration_type_definition_repeat1, - [284524] = 7, + [294419] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7697), 1, - anon_sym_RPAREN, - STATE(5759), 1, - aux_sym_association_list_repeat1, - STATE(5761), 3, + ACTIONS(7839), 3, + sym_GENERIC, + sym_PORT, + anon_sym_SEMI, + STATE(5972), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284548] = 7, + [294439] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7699), 1, - sym_CONSTANT, - ACTIONS(7701), 1, - sym_SIGNAL, - ACTIONS(7703), 1, - sym_VARIABLE, - STATE(5762), 3, + ACTIONS(2424), 3, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + STATE(5973), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284572] = 6, + [294459] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7271), 1, + ACTIONS(6972), 1, sym_OF, - ACTIONS(7705), 1, + ACTIONS(7841), 1, anon_sym_COMMA, - STATE(5763), 4, + STATE(5974), 4, sym__tool_directive, sym_line_comment, sym_block_comment, aux_sym_index_constraint_repeat1, - [284594] = 7, + [294481] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6789), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7708), 1, - anon_sym_SEMI, - STATE(5748), 1, - aux_sym_use_clause_repeat1, - STATE(5764), 3, + ACTIONS(7844), 1, + anon_sym_RPAREN, + STATE(5971), 1, + aux_sym_association_list_repeat1, + STATE(5975), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284618] = 7, + [294505] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7216), 1, - anon_sym_COMMA, - ACTIONS(7710), 1, - anon_sym_RPAREN, - STATE(5795), 1, - aux_sym_entity_class_entry_list_repeat1, - STATE(5765), 3, + ACTIONS(7437), 1, + sym_ELSE, + ACTIONS(7846), 1, + anon_sym_SEMI, + STATE(6160), 1, + sym_else_expression_or_unaffected, + STATE(5976), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284642] = 5, + [294529] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7712), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - STATE(5766), 3, + ACTIONS(7848), 1, + sym_CONSTANT, + ACTIONS(7850), 1, + sym_SIGNAL, + ACTIONS(7852), 1, + sym_VARIABLE, + STATE(5977), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284662] = 7, + [294553] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6821), 1, - anon_sym_COMMA, - ACTIONS(7714), 1, - anon_sym_RPAREN, - STATE(5794), 1, - aux_sym_signature_repeat1, - STATE(5767), 3, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(6224), 1, + anon_sym_SEMI, + STATE(6963), 1, + sym_initialiser, + STATE(5978), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284686] = 7, + [294577] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7716), 1, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7854), 1, anon_sym_SEMI, - STATE(7853), 1, - sym_initialiser, - STATE(5768), 3, + STATE(7134), 1, + sym_generic_map_aspect, + STATE(5979), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284710] = 7, + [294601] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7718), 1, + ACTIONS(7856), 1, anon_sym_COMMA, - ACTIONS(7720), 1, - anon_sym_RPAREN, - STATE(5690), 1, - aux_sym_array_index_incomplete_type_list_repeat1, - STATE(5769), 3, + ACTIONS(7859), 1, + anon_sym_COLON, + STATE(5980), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [284734] = 7, + aux_sym_instantiation_list_repeat1, + [294623] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7722), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5770), 3, + ACTIONS(2420), 3, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + STATE(5981), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284758] = 7, + [294643] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6433), 1, - sym_WHEN, - STATE(5239), 1, - aux_sym_case_generate_block_repeat1, - STATE(5997), 1, - sym_case_generate_alternative, - STATE(5771), 3, + ACTIONS(3196), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(5982), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284782] = 5, + [294663] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5777), 3, - sym_IS, - sym_OPEN, + ACTIONS(1755), 1, + sym_PORT, + ACTIONS(7861), 1, anon_sym_SEMI, - STATE(5772), 3, + STATE(7140), 1, + sym_port_map_aspect, + STATE(5983), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284802] = 7, + [294687] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6870), 1, - sym_IS, - ACTIONS(7724), 1, - anon_sym_SEMI, - STATE(6018), 1, - sym_subprogram_head, - STATE(5773), 3, + ACTIONS(7863), 1, + sym_CONSTANT, + ACTIONS(7865), 1, + sym_SIGNAL, + ACTIONS(7867), 1, + sym_VARIABLE, + STATE(5984), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284826] = 7, + [294711] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7726), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5774), 3, + ACTIONS(2404), 3, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + STATE(5985), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284850] = 7, + [294731] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7728), 1, + ACTIONS(2420), 3, + sym_PARAMETER, anon_sym_SEMI, - STATE(7894), 1, - sym_generic_map_aspect, - STATE(5775), 3, + anon_sym_LPAREN, + STATE(5986), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284874] = 7, + [294751] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7869), 1, anon_sym_COMMA, - ACTIONS(7730), 1, - anon_sym_RPAREN, - STATE(5774), 1, - aux_sym_association_list_repeat1, - STATE(5776), 3, + ACTIONS(7872), 1, + anon_sym_COLON, + STATE(5987), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [284898] = 7, + aux_sym_identifier_list_repeat1, + [294773] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6127), 1, - sym_OF, - ACTIONS(7732), 1, - anon_sym_COMMA, - STATE(5812), 1, - aux_sym_index_constraint_repeat1, - STATE(5777), 3, + ACTIONS(6019), 3, + sym_IS, + sym_OPEN, + anon_sym_SEMI, + STATE(5988), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284922] = 5, + [294793] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6080), 3, - sym_IS, - sym_OPEN, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7874), 1, anon_sym_SEMI, - STATE(5778), 3, + STATE(7594), 1, + sym_initialiser, + STATE(5989), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284942] = 7, + [294817] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7734), 1, + ACTIONS(5899), 1, + sym_variable_assignment, + ACTIONS(7876), 1, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5779), 3, + STATE(6964), 1, + sym_initialiser, + STATE(5990), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284966] = 5, + [294841] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7736), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5780), 3, + ACTIONS(6295), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + STATE(5991), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [284986] = 7, + [294861] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -277693,4192 +286467,4172 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(2884), 1, sym_WHEN, - ACTIONS(7738), 1, + ACTIONS(7878), 1, anon_sym_SEMI, - STATE(5290), 1, + STATE(5484), 1, sym_when_expression, - STATE(5781), 3, + STATE(5992), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285010] = 7, + [294885] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7740), 1, + ACTIONS(7880), 1, anon_sym_RPAREN, - STATE(5784), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5782), 3, + STATE(5993), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285034] = 5, + [294909] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7742), 3, - sym_ELSE, - sym_ELSIF, - sym_END, - STATE(5783), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7882), 1, + anon_sym_RPAREN, + STATE(5993), 1, + aux_sym_association_list_repeat1, + STATE(5994), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285054] = 7, + [294933] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7744), 1, + ACTIONS(7884), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5997), 1, aux_sym_association_list_repeat1, - STATE(5784), 3, + STATE(5995), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285078] = 7, + [294957] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6914), 1, - sym_ELSE, - ACTIONS(7746), 1, + ACTIONS(788), 1, + sym_WHEN, + ACTIONS(5662), 1, anon_sym_SEMI, - STATE(5988), 1, - sym_else_expression_or_unaffected, - STATE(5785), 3, + STATE(7177), 1, + sym_when_expression, + STATE(5996), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285102] = 5, + [294981] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2662), 3, - anon_sym_SEMI, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7886), 1, anon_sym_RPAREN, - sym_variable_assignment, - STATE(5786), 3, + STATE(5726), 1, + aux_sym_association_list_repeat1, + STATE(5997), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285122] = 7, + [295005] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7748), 1, - sym_CONSTANT, - ACTIONS(7750), 1, - sym_SIGNAL, - ACTIONS(7752), 1, - sym_VARIABLE, - STATE(5787), 3, + ACTIONS(7888), 3, + sym_box, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5998), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285146] = 7, + [295025] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7821), 1, anon_sym_COMMA, - ACTIONS(7754), 1, + ACTIONS(7890), 1, anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5788), 3, + STATE(5911), 1, + aux_sym_entity_class_entry_list_repeat1, + STATE(5999), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [295049] = 7, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7892), 1, + anon_sym_SEMI, + STATE(6979), 1, + sym_generic_map_aspect, + STATE(6000), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285170] = 7, + [295073] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(7894), 1, anon_sym_COMMA, - ACTIONS(7756), 1, + ACTIONS(7897), 1, anon_sym_RPAREN, - STATE(5788), 1, - aux_sym_association_list_repeat1, - STATE(5789), 3, + STATE(6001), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [285194] = 5, + aux_sym_record_resolution_repeat1, + [295095] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7758), 3, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - STATE(5790), 3, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(7899), 1, + anon_sym_RPAREN, + STATE(5875), 1, + aux_sym_group_constituent_list_repeat1, + STATE(6002), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285214] = 6, + [295119] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7760), 1, - anon_sym_COMMA, - ACTIONS(7763), 1, - anon_sym_COLON, - STATE(5791), 4, + ACTIONS(7901), 1, + sym_CONSTANT, + ACTIONS(7903), 1, + sym_SIGNAL, + ACTIONS(7905), 1, + sym_VARIABLE, + STATE(6003), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_identifier_list_repeat1, - [285236] = 7, + [295143] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5643), 1, - sym_PORT, - ACTIONS(7765), 1, - sym_END, - STATE(7985), 1, - sym_port_clause, - STATE(5792), 3, + ACTIONS(7907), 1, + sym_CONSTANT, + ACTIONS(7909), 1, + sym_SIGNAL, + ACTIONS(7911), 1, + sym_VARIABLE, + STATE(6004), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285260] = 7, + [295167] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7767), 1, + ACTIONS(7913), 3, + sym_GENERIC, + sym_PORT, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5793), 3, + STATE(6005), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285284] = 7, + [295187] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6821), 1, - anon_sym_COMMA, - ACTIONS(7769), 1, - anon_sym_RPAREN, - STATE(5119), 1, - aux_sym_signature_repeat1, - STATE(5794), 3, + ACTIONS(2424), 3, + sym_PARAMETER, + anon_sym_SEMI, + anon_sym_LPAREN, + STATE(6006), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285308] = 6, + [295207] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7771), 1, + ACTIONS(7198), 1, anon_sym_COMMA, - ACTIONS(7774), 1, - anon_sym_RPAREN, - STATE(5795), 4, + ACTIONS(7915), 1, + anon_sym_SEMI, + STATE(5702), 1, + aux_sym_logical_name_list_repeat1, + STATE(6007), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_entity_class_entry_list_repeat1, - [285330] = 7, + [295231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5699), 1, - sym_FOR, - ACTIONS(7776), 1, - anon_sym_SEMI, - STATE(7961), 1, - sym_timeout_clause, - STATE(5796), 3, + ACTIONS(7917), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(6008), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285354] = 7, + [295251] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6839), 1, anon_sym_COMMA, - ACTIONS(7778), 1, + ACTIONS(7919), 1, anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5797), 3, + STATE(5659), 1, + aux_sym_association_or_range_list_repeat1, + STATE(6009), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285378] = 7, + [295275] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7780), 1, + ACTIONS(7921), 1, anon_sym_SEMI, - STATE(6799), 1, - sym_initialiser, - STATE(5798), 3, + ACTIONS(7923), 1, + anon_sym_COMMA, + STATE(6010), 4, sym__tool_directive, sym_line_comment, sym_block_comment, - [285402] = 7, + aux_sym_use_clause_repeat1, + [295297] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7782), 1, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(6025), 1, anon_sym_SEMI, - STATE(7966), 1, - sym_initialiser, - STATE(5799), 3, + STATE(7369), 1, + sym_timeout_clause, + STATE(6011), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285426] = 6, + [295321] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7786), 1, - sym_OF, - ACTIONS(7784), 2, + ACTIONS(1635), 1, + sym_GENERIC, + ACTIONS(7926), 1, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5800), 3, + STATE(7378), 1, + sym_generic_map_aspect, + STATE(6012), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285448] = 7, + [295345] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7788), 1, + ACTIONS(7928), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5801), 3, + STATE(6013), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285472] = 7, + [295369] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7790), 1, - sym_CONSTANT, - ACTIONS(7792), 1, - sym_SIGNAL, - ACTIONS(7794), 1, - sym_VARIABLE, - STATE(5802), 3, + ACTIONS(6871), 1, + anon_sym_COMMA, + ACTIONS(7930), 1, + anon_sym_RPAREN, + STATE(6013), 1, + aux_sym_association_list_repeat1, + STATE(6014), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285496] = 7, + [295393] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7796), 1, - anon_sym_RPAREN, - STATE(5801), 1, - aux_sym_association_list_repeat1, - STATE(5803), 3, + ACTIONS(3190), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(6015), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285520] = 7, + [295413] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7798), 1, + ACTIONS(3828), 1, + anon_sym_RPAREN, + ACTIONS(7932), 1, anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5804), 3, + STATE(5954), 1, + aux_sym_interface_list_repeat1, + STATE(6016), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285544] = 7, + [295437] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7800), 1, - sym_CONSTANT, - ACTIONS(7802), 1, - sym_SIGNAL, - ACTIONS(7804), 1, - sym_VARIABLE, - STATE(5805), 3, + ACTIONS(6851), 1, + anon_sym_COMMA, + ACTIONS(7934), 1, + anon_sym_COLON, + STATE(5683), 1, + aux_sym_identifier_list_repeat1, + STATE(6017), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285568] = 5, + [295461] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5995), 3, - sym_PARAMETER, - sym_RETURN, - anon_sym_LPAREN, - STATE(5806), 3, + ACTIONS(2884), 1, + sym_WHEN, + ACTIONS(7936), 1, + anon_sym_SEMI, + STATE(5484), 1, + sym_when_expression, + STATE(6018), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285588] = 7, + [295485] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7806), 1, + ACTIONS(6173), 3, anon_sym_SEMI, - STATE(6805), 1, - sym_generic_map_aspect, - STATE(5807), 3, + anon_sym_COMMA, + anon_sym_DOT, + STATE(6019), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285612] = 7, + [295505] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7718), 1, - anon_sym_COMMA, - ACTIONS(7808), 1, - anon_sym_RPAREN, - STATE(5769), 1, - aux_sym_array_index_incomplete_type_list_repeat1, - STATE(5808), 3, + ACTIONS(3200), 3, + sym_END, + sym_FOR, + sym_USE, + STATE(6020), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [295525] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(7938), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(6021), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285636] = 7, + [295545] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7810), 1, + ACTIONS(7940), 1, anon_sym_RPAREN, - STATE(5811), 1, + STATE(6024), 1, aux_sym_association_list_repeat1, - STATE(5809), 3, + STATE(6022), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285660] = 7, + [295569] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7812), 1, - sym_CONSTANT, - ACTIONS(7814), 1, - sym_SIGNAL, - ACTIONS(7816), 1, - sym_VARIABLE, - STATE(5810), 3, + ACTIONS(7942), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + STATE(6023), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285684] = 7, + [295589] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(7818), 1, + ACTIONS(7944), 1, anon_sym_RPAREN, - STATE(5741), 1, + STATE(5726), 1, aux_sym_association_list_repeat1, - STATE(5811), 3, + STATE(6024), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285708] = 7, + [295613] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(6860), 1, - sym_OF, - ACTIONS(7732), 1, - anon_sym_COMMA, - STATE(5763), 1, - aux_sym_index_constraint_repeat1, - STATE(5812), 3, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(2404), 3, + sym_PARAMETER, + sym_RETURN, + anon_sym_LPAREN, + STATE(6025), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285732] = 7, + [295633] = 7, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7820), 1, - anon_sym_RPAREN, - STATE(5797), 1, - aux_sym_association_list_repeat1, - STATE(5813), 3, + ACTIONS(5739), 1, + sym_FOR, + ACTIONS(5805), 1, + anon_sym_SEMI, + STATE(7416), 1, + sym_timeout_clause, + STATE(6026), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285756] = 7, + [295657] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6854), 1, - anon_sym_COMMA, - ACTIONS(7822), 1, - anon_sym_RPAREN, - STATE(5760), 1, - aux_sym_enumeration_type_definition_repeat1, - STATE(5814), 3, + ACTIONS(7946), 3, + sym_ELSE, + sym_ELSIF, + sym_END, + STATE(6027), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285780] = 6, + [295677] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7824), 1, - anon_sym_COMMA, - ACTIONS(7827), 1, - anon_sym_RPAREN, - STATE(5815), 4, + ACTIONS(7948), 1, + sym_END, + STATE(6962), 1, + sym_end_view, + STATE(6028), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_element_association_list_repeat1, - [285802] = 7, + [295698] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6862), 1, - anon_sym_COMMA, - ACTIONS(7829), 1, - anon_sym_COLON, - STATE(5752), 1, - aux_sym_identifier_list_repeat1, - STATE(5816), 3, + ACTIONS(2410), 1, + anon_sym_LPAREN, + STATE(1975), 1, + sym_parenthesis_group, + STATE(6029), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285826] = 5, + [295719] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7831), 3, - sym_IS, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5817), 3, + ACTIONS(1491), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_parenthesis_group, + STATE(6030), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285846] = 7, + [295740] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7535), 1, + ACTIONS(2614), 2, anon_sym_COMMA, - ACTIONS(7833), 1, anon_sym_COLON, - STATE(5686), 1, - aux_sym_entity_name_list_repeat1, - STATE(5818), 3, + STATE(6031), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285870] = 7, + [295759] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(2662), 2, anon_sym_COMMA, - ACTIONS(7835), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5819), 3, + anon_sym_COLON, + STATE(6032), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285894] = 7, + [295778] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7837), 1, - sym_CONSTANT, - ACTIONS(7839), 1, - sym_SIGNAL, - ACTIONS(7841), 1, - sym_VARIABLE, - STATE(5820), 3, + ACTIONS(2674), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(6033), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285918] = 7, + [295797] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(2374), 2, anon_sym_COMMA, - ACTIONS(7843), 1, - anon_sym_RPAREN, - STATE(5819), 1, - aux_sym_association_list_repeat1, - STATE(5821), 3, + anon_sym_COLON, + STATE(6034), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285942] = 7, + [295816] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, + ACTIONS(2640), 2, anon_sym_COMMA, - ACTIONS(7845), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5822), 3, + anon_sym_COLON, + STATE(6035), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [285966] = 6, + [295835] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7847), 1, + ACTIONS(2602), 2, anon_sym_COMMA, - ACTIONS(7850), 1, - anon_sym_RPAREN, - STATE(5823), 4, + anon_sym_COLON, + STATE(6036), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - aux_sym_record_resolution_repeat1, - [285988] = 7, + [295854] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(6189), 1, - anon_sym_SEMI, - STATE(6814), 1, - sym_initialiser, - STATE(5824), 3, + ACTIONS(7950), 2, + sym_based_integer, + sym_based_float, + STATE(6037), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286012] = 7, + [295873] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5823), 1, - sym_variable_assignment, - ACTIONS(7852), 1, - anon_sym_SEMI, - STATE(6819), 1, - sym_initialiser, - STATE(5825), 3, + ACTIONS(6915), 2, + sym_END, + sym_WHEN, + STATE(6038), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286036] = 7, + [295892] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6821), 1, - anon_sym_COMMA, - ACTIONS(7854), 1, + ACTIONS(2424), 2, + sym_PORT, anon_sym_SEMI, - STATE(5119), 1, - aux_sym_signature_repeat1, - STATE(5826), 3, + STATE(6039), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286060] = 7, + [295911] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6817), 1, - anon_sym_COMMA, - ACTIONS(7856), 1, - anon_sym_RPAREN, - STATE(5741), 1, - aux_sym_association_list_repeat1, - STATE(5827), 3, + ACTIONS(2420), 2, + sym_PORT, + anon_sym_SEMI, + STATE(6040), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286084] = 7, + [295930] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7858), 1, - anon_sym_SEMI, - STATE(5290), 1, - sym_when_expression, - STATE(5828), 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(1738), 1, + sym_association_list, + STATE(6041), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286108] = 5, + [295951] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6710), 3, - sym_PARAMETER, - anon_sym_SEMI, + ACTIONS(2562), 1, anon_sym_LPAREN, - STATE(5829), 3, + STATE(2144), 1, + sym_parenthesis_group, + STATE(6042), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286128] = 7, + [295972] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - ACTIONS(7860), 1, + ACTIONS(2404), 2, + sym_PORT, anon_sym_SEMI, - STATE(5959), 1, - sym_when_expression, - STATE(5830), 3, + STATE(6043), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286152] = 5, + [295991] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3134), 3, + ACTIONS(7210), 2, sym_END, - sym_FOR, - sym_USE, - STATE(5831), 3, + sym_WHEN, + STATE(6044), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286172] = 7, + [296010] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5495), 1, - sym_RANGE, - ACTIONS(5777), 1, - sym_IS, - STATE(7781), 1, - sym_range_constraint, - STATE(5832), 3, + ACTIONS(2562), 1, + anon_sym_LPAREN, + STATE(2162), 1, + sym_parenthesis_group, + STATE(6045), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286196] = 7, + [296031] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1623), 1, - sym_GENERIC, - ACTIONS(7862), 1, - anon_sym_SEMI, - STATE(6824), 1, - sym_generic_map_aspect, - STATE(5833), 3, + ACTIONS(7954), 2, + sym_END, + sym_FOR, + STATE(6046), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286220] = 7, + [296050] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7592), 1, - anon_sym_COMMA, - ACTIONS(7864), 1, - anon_sym_RPAREN, - STATE(5715), 1, - aux_sym_record_resolution_repeat1, - STATE(5834), 3, + ACTIONS(7956), 2, + sym_END, + sym_FOR, + STATE(6047), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286244] = 5, + [296069] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7866), 3, - sym_GENERIC, - sym_PORT, - anon_sym_SEMI, - STATE(5835), 3, + ACTIONS(7958), 2, + sym_END, + sym_FOR, + STATE(6048), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286264] = 5, + [296088] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7868), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5836), 3, + ACTIONS(2456), 1, + anon_sym_LPAREN, + STATE(2068), 1, + sym_parenthesis_group, + STATE(6049), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286283] = 6, + [296109] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7870), 1, - anon_sym_LPAREN, - STATE(5565), 1, - sym_association_list, - STATE(5837), 3, + ACTIONS(6972), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6050), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286304] = 6, + [296128] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2628), 1, - anon_sym_LPAREN, - STATE(2184), 1, - sym_parenthesis_group, - STATE(5838), 3, + ACTIONS(6230), 2, + sym_END, + sym_USE, + STATE(6051), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286325] = 5, + [296147] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2404), 2, + ACTIONS(5691), 2, anon_sym_COMMA, - anon_sym_COLON, - STATE(5839), 3, + anon_sym_RPAREN, + STATE(6052), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286344] = 5, + [296166] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2552), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(5840), 3, + ACTIONS(2882), 2, + sym_UNITS, + anon_sym_SEMI, + STATE(6053), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286363] = 6, + [296185] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2628), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - STATE(2186), 1, + STATE(860), 1, sym_parenthesis_group, - STATE(5841), 3, + STATE(6054), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286384] = 5, + [296206] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2548), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(5842), 3, + ACTIONS(7960), 1, + anon_sym_LPAREN, + STATE(3421), 1, + sym_association_list, + STATE(6055), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286403] = 5, + [296227] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2572), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(5843), 3, + ACTIONS(2948), 2, + sym_WHEN, + anon_sym_SEMI, + STATE(6056), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286422] = 5, + [296246] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2494), 2, + ACTIONS(2882), 2, + sym_OF, anon_sym_COMMA, - anon_sym_COLON, - STATE(5844), 3, + STATE(6057), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286441] = 5, + [296265] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2662), 2, - sym_PORT, - anon_sym_SEMI, - STATE(5845), 3, + ACTIONS(7962), 2, + sym_based_integer, + sym_based_float, + STATE(6058), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286460] = 5, + [296284] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2666), 2, - sym_PORT, - anon_sym_SEMI, - STATE(5846), 3, + ACTIONS(7964), 2, + sym_END, + sym_FOR, + STATE(6059), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286479] = 5, + [296303] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6890), 2, - sym_END, - sym_WHEN, - STATE(5847), 3, + ACTIONS(7966), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6060), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286498] = 5, + [296322] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5371), 2, + ACTIONS(7921), 2, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5848), 3, + STATE(6061), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286517] = 5, + [296341] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7872), 2, + ACTIONS(7968), 2, sym_based_integer, sym_based_float, - STATE(5849), 3, + STATE(6062), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286536] = 5, + [296360] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2622), 2, - sym_PORT, - anon_sym_SEMI, - STATE(5850), 3, + ACTIONS(6338), 1, + sym_END, + STATE(7600), 1, + sym_end_entity, + STATE(6063), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286555] = 5, + [296381] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 2, - sym_UNITS, + ACTIONS(7970), 2, anon_sym_SEMI, - STATE(5851), 3, + anon_sym_RPAREN, + STATE(6064), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286574] = 5, + [296400] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7874), 2, + ACTIONS(7972), 2, sym_END, sym_FOR, - STATE(5852), 3, + STATE(6065), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286593] = 6, + [296419] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7876), 1, + ACTIONS(7974), 1, anon_sym_LPAREN, - STATE(875), 1, + STATE(844), 1, sym_association_list, - STATE(5853), 3, + STATE(6066), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286614] = 6, + [296440] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5307), 1, + ACTIONS(5339), 1, anon_sym_LPAREN, - STATE(4747), 1, + STATE(4901), 1, sym_parenthesis_group, - STATE(5854), 3, + STATE(6067), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286635] = 5, + [296461] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7878), 2, - sym_END, - sym_FOR, - STATE(5855), 3, + ACTIONS(7976), 1, + anon_sym_COLON, + ACTIONS(7978), 1, + sym_IS, + STATE(6068), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286654] = 5, + [296482] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7880), 2, - sym_END, - sym_FOR, - STATE(5856), 3, + ACTIONS(7859), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(6069), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286673] = 5, + [296501] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7307), 2, + ACTIONS(2992), 1, sym_END, - sym_WHEN, - STATE(5857), 3, + STATE(8298), 1, + sym_end_for, + STATE(6070), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286692] = 5, + [296522] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2404), 2, - sym_GENERIC, - anon_sym_SEMI, - STATE(5858), 3, + ACTIONS(7980), 1, + anon_sym_COLON, + ACTIONS(7982), 1, + sym_IS, + STATE(6071), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286711] = 6, + [296543] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5307), 1, + ACTIONS(5339), 1, anon_sym_LPAREN, - STATE(4744), 1, + STATE(4896), 1, sym_parenthesis_group, - STATE(5859), 3, + STATE(6072), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286732] = 5, + [296564] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7271), 2, - anon_sym_COMMA, + ACTIONS(7984), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(5860), 3, + STATE(6073), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286751] = 5, + [296583] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2494), 2, - sym_GENERIC, - anon_sym_SEMI, - STATE(5861), 3, + ACTIONS(7986), 1, + anon_sym_COLON, + ACTIONS(7988), 1, + sym_IS, + STATE(6074), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286770] = 5, + [296604] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2572), 2, - sym_GENERIC, - anon_sym_SEMI, - STATE(5862), 3, + ACTIONS(2992), 1, + sym_END, + STATE(8288), 1, + sym_end_for, + STATE(6075), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286789] = 5, + [296625] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2548), 2, - sym_GENERIC, - anon_sym_SEMI, - STATE(5863), 3, + ACTIONS(7990), 2, + sym_END, + sym_FOR, + STATE(6076), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286808] = 5, + [296644] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2552), 2, - sym_GENERIC, - anon_sym_SEMI, - STATE(5864), 3, + ACTIONS(7992), 1, + anon_sym_COLON, + ACTIONS(7994), 1, + sym_IS, + STATE(6077), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286827] = 6, + [296665] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, - sym_BEGIN, - STATE(5987), 1, - sym_concurrent_block, - STATE(5865), 3, + ACTIONS(7996), 1, + anon_sym_COLON, + ACTIONS(7998), 1, + sym_IS, + STATE(6078), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286848] = 5, + [296686] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6174), 2, - sym_END, - sym_USE, - STATE(5866), 3, + ACTIONS(8000), 1, + anon_sym_LPAREN, + STATE(5947), 1, + sym_association_list, + STATE(6079), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286867] = 5, + [296707] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5626), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5867), 3, + ACTIONS(2992), 1, + sym_END, + STATE(8271), 1, + sym_end_for, + STATE(6080), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286886] = 5, + [296728] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7882), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5868), 3, + ACTIONS(8002), 2, + sym_END, + sym_WHEN, + STATE(6081), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286905] = 5, + [296747] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 2, - sym_OF, - anon_sym_COMMA, - STATE(5869), 3, + ACTIONS(2282), 1, + anon_sym_LPAREN, + STATE(1894), 1, + sym_parenthesis_group, + STATE(6082), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286924] = 5, + [296768] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7884), 2, - sym_based_integer, - sym_based_float, - STATE(5870), 3, + ACTIONS(8004), 1, + anon_sym_DOT, + ACTIONS(8006), 1, + anon_sym_COLON, + STATE(6083), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286943] = 5, + [296789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7827), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5871), 3, + ACTIONS(8008), 2, + sym_IS, + anon_sym_SEMI, + STATE(6084), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286962] = 5, + [296808] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7886), 2, + ACTIONS(8010), 2, sym_based_integer, sym_based_float, - STATE(5872), 3, + STATE(6085), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [286981] = 5, + [296827] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2888), 2, - sym_WHEN, + ACTIONS(8012), 2, anon_sym_SEMI, - STATE(5873), 3, + anon_sym_RPAREN, + STATE(6086), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287000] = 6, + [296846] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(40), 1, - sym_signal_assignment, - STATE(5874), 3, + ACTIONS(2282), 1, + anon_sym_LPAREN, + STATE(1896), 1, + sym_parenthesis_group, + STATE(6087), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287021] = 5, + [296867] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7890), 2, - sym_END, - sym_FOR, - STATE(5875), 3, + ACTIONS(7872), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(6088), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287040] = 5, + [296886] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7892), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5876), 3, + ACTIONS(8014), 1, + anon_sym_LPAREN, + STATE(1934), 1, + sym_association_list, + STATE(6089), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287059] = 5, + [296907] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7894), 2, + ACTIONS(8016), 2, anon_sym_SEMI, anon_sym_RPAREN, - STATE(5877), 3, + STATE(6090), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287078] = 5, + [296926] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7896), 2, - sym_END, - sym_FOR, - STATE(5878), 3, + ACTIONS(8018), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6091), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287097] = 6, + [296945] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7898), 1, - anon_sym_COLON, - ACTIONS(7900), 1, - sym_IS, - STATE(5879), 3, + ACTIONS(8020), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6092), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287118] = 6, + [296964] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7902), 1, + ACTIONS(8022), 1, anon_sym_LPAREN, - STATE(2118), 1, + STATE(2290), 1, sym_association_list, - STATE(5880), 3, + STATE(6093), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287139] = 6, + [296985] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4230), 1, + ACTIONS(4234), 1, anon_sym_LPAREN, - STATE(4299), 1, + STATE(4401), 1, sym_parenthesis_group, - STATE(5881), 3, + STATE(6094), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287160] = 6, + [297006] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, + ACTIONS(8024), 2, sym_END, - STATE(8077), 1, - sym_end_for, - STATE(5882), 3, + sym_WHEN, + STATE(6095), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287181] = 6, + [297025] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7904), 1, - anon_sym_COLON, - ACTIONS(7906), 1, - sym_IS, - STATE(5883), 3, + ACTIONS(8026), 1, + sym_END, + STATE(6081), 1, + sym_generate_block_end, + STATE(6096), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287202] = 5, + [297046] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7908), 2, - sym_END, - sym_FOR, - STATE(5884), 3, + ACTIONS(8004), 1, + anon_sym_DOT, + ACTIONS(8028), 1, + anon_sym_COLON, + STATE(6097), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287221] = 5, + [297067] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7910), 2, + ACTIONS(8030), 2, sym_END, - sym_WHEN, - STATE(5885), 3, + sym_FOR, + STATE(6098), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287240] = 6, + [297086] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4230), 1, + ACTIONS(4234), 1, anon_sym_LPAREN, - STATE(4276), 1, + STATE(4425), 1, sym_parenthesis_group, - STATE(5886), 3, + STATE(6099), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287261] = 6, + [297107] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(7914), 1, - sym_IS, - STATE(5887), 3, + ACTIONS(8032), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6100), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287282] = 6, + [297126] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - STATE(8067), 1, - sym_end_for, - STATE(5888), 3, + ACTIONS(7542), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6101), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287303] = 5, + [297145] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7916), 2, - sym_END, - sym_FOR, - STATE(5889), 3, + ACTIONS(8034), 2, + sym_IS, + anon_sym_SEMI, + STATE(6102), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287322] = 6, + [297164] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1491), 1, - anon_sym_LPAREN, - STATE(855), 1, - sym_parenthesis_group, - STATE(5890), 3, + ACTIONS(8036), 2, + sym_based_integer, + sym_based_float, + STATE(6103), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287343] = 6, + [297183] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7918), 1, - anon_sym_COLON, - ACTIONS(7920), 1, + ACTIONS(8038), 2, sym_IS, - STATE(5891), 3, + anon_sym_SEMI, + STATE(6104), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287364] = 6, + [297202] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7922), 1, - anon_sym_COLON, - ACTIONS(7924), 1, - sym_IS, - STATE(5892), 3, + ACTIONS(8040), 1, + anon_sym_LPAREN, + STATE(7602), 1, + sym_association_list, + STATE(6105), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287385] = 6, + [297223] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7926), 1, - anon_sym_LPAREN, - STATE(5565), 1, - sym_association_list, - STATE(5893), 3, + ACTIONS(6725), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6106), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287406] = 6, + [297242] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2964), 1, - sym_END, - STATE(8050), 1, - sym_end_for, - STATE(5894), 3, + ACTIONS(8042), 1, + sym_IS, + STATE(6344), 1, + sym_configuration_head, + STATE(6107), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287427] = 6, + [297263] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7928), 1, - sym_END, - STATE(7827), 1, - sym_generate_block_end, - STATE(5895), 3, + ACTIONS(2614), 2, + sym_GENERIC, + anon_sym_SEMI, + STATE(6108), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287448] = 6, + [297282] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7930), 1, - anon_sym_DOT, - ACTIONS(7932), 1, - anon_sym_COLON, - STATE(5896), 3, + ACTIONS(8044), 2, + sym_END, + sym_FOR, + STATE(6109), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287469] = 5, + [297301] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7934), 2, - sym_IS, - anon_sym_SEMI, - STATE(5897), 3, + ACTIONS(8046), 2, + sym_END, + sym_FOR, + STATE(6110), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287488] = 6, + [297320] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1491), 1, - anon_sym_LPAREN, - STATE(858), 1, - sym_parenthesis_group, - STATE(5898), 3, + ACTIONS(2662), 2, + sym_GENERIC, + anon_sym_SEMI, + STATE(6111), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287509] = 5, + [297339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7936), 2, + ACTIONS(8048), 2, sym_based_integer, sym_based_float, - STATE(5899), 3, + STATE(6112), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287528] = 5, + [297358] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7938), 2, + ACTIONS(2674), 2, + sym_GENERIC, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5900), 3, + STATE(6113), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287547] = 6, + [297377] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7940), 1, - anon_sym_LPAREN, - STATE(3260), 1, - sym_association_list, - STATE(5901), 3, + ACTIONS(2374), 2, + sym_GENERIC, + anon_sym_SEMI, + STATE(6114), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287568] = 6, + [297396] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(7814), 1, - sym_end_generate, - STATE(5902), 3, + ACTIONS(2640), 2, + sym_GENERIC, + anon_sym_SEMI, + STATE(6115), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287589] = 5, + [297415] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7942), 2, + ACTIONS(2602), 2, + sym_GENERIC, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5903), 3, + STATE(6116), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287608] = 5, + [297434] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7944), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5904), 3, + ACTIONS(8050), 2, + sym_END, + sym_WHEN, + STATE(6117), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287627] = 5, + [297453] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7946), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5905), 3, + ACTIONS(8052), 1, + sym_BEGIN, + STATE(6096), 1, + sym_generate_block, + STATE(6118), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287646] = 5, + [297474] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7948), 2, + ACTIONS(8054), 2, sym_END, sym_WHEN, - STATE(5906), 3, + STATE(6119), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287665] = 6, + [297493] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7950), 1, + ACTIONS(8056), 1, anon_sym_LPAREN, - STATE(4758), 1, + STATE(4929), 1, sym_association_list, - STATE(5907), 3, + STATE(6120), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287686] = 6, + [297514] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4715), 1, + ACTIONS(4837), 1, anon_sym_LPAREN, - STATE(4403), 1, + STATE(4617), 1, sym_parenthesis_group, - STATE(5908), 3, + STATE(6121), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287707] = 6, + [297535] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7952), 1, - sym_END, - STATE(5885), 1, - sym_generate_block_end, - STATE(5909), 3, + ACTIONS(2884), 1, + sym_WHEN, + STATE(6150), 1, + sym_when_expression, + STATE(6122), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287728] = 5, + [297556] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7954), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(5910), 3, + ACTIONS(3918), 1, + anon_sym_LPAREN, + STATE(3383), 1, + sym_parenthesis_group, + STATE(6123), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287747] = 6, + [297577] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7930), 1, - anon_sym_DOT, - ACTIONS(7956), 1, - anon_sym_COLON, - STATE(5911), 3, + ACTIONS(7253), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6124), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287768] = 5, + [297596] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7958), 2, + ACTIONS(8058), 1, + anon_sym_SEMI, + ACTIONS(8060), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5912), 3, + STATE(6125), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287787] = 6, + [297617] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4715), 1, + ACTIONS(4837), 1, anon_sym_LPAREN, - STATE(4411), 1, + STATE(4636), 1, sym_parenthesis_group, - STATE(5913), 3, + STATE(6126), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287808] = 5, + [297638] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7544), 2, + ACTIONS(7712), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(5914), 3, + STATE(6127), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287827] = 5, + [297657] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7960), 2, - sym_IS, - anon_sym_SEMI, - STATE(5915), 3, + ACTIONS(7507), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6128), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287846] = 5, + [297676] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6425), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5916), 3, + ACTIONS(6972), 2, + sym_OF, + anon_sym_COMMA, + STATE(6129), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287865] = 5, + [297695] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7962), 2, - sym_based_integer, - sym_based_float, - STATE(5917), 3, + ACTIONS(8060), 1, + anon_sym_COMMA, + ACTIONS(8062), 1, + anon_sym_SEMI, + STATE(6130), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287884] = 6, + [297716] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7964), 1, - sym_BEGIN, - STATE(5909), 1, - sym_generate_block, - STATE(5918), 3, + ACTIONS(7437), 1, + sym_ELSE, + STATE(6160), 1, + sym_else_expression_or_unaffected, + STATE(6131), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287905] = 5, + [297737] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7966), 2, - sym_END, - sym_FOR, - STATE(5919), 3, + ACTIONS(3918), 1, + anon_sym_LPAREN, + STATE(3380), 1, + sym_parenthesis_group, + STATE(6132), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287924] = 5, + [297758] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7968), 2, - sym_END, - sym_FOR, - STATE(5920), 3, + ACTIONS(8064), 2, + sym_WHEN, + anon_sym_SEMI, + STATE(6133), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287943] = 5, + [297777] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7970), 2, - sym_END, - sym_WHEN, - STATE(5921), 3, + ACTIONS(8066), 1, + anon_sym_LPAREN, + STATE(2017), 1, + sym_association_list, + STATE(6134), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287962] = 5, + [297798] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7972), 2, - sym_END, - sym_WHEN, - STATE(5922), 3, + ACTIONS(8068), 2, + sym_IS, + anon_sym_SEMI, + STATE(6135), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [287981] = 6, + [297817] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2884), 1, - sym_WHEN, - STATE(5959), 1, - sym_when_expression, - STATE(5923), 3, + ACTIONS(7897), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6136), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288002] = 5, + [297836] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7646), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5924), 3, + ACTIONS(8070), 2, + sym_IS, + anon_sym_SEMI, + STATE(6137), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288021] = 6, + [297855] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7974), 1, + ACTIONS(6063), 2, anon_sym_SEMI, - ACTIONS(7976), 1, - anon_sym_COMMA, - STATE(5925), 3, + anon_sym_RPAREN, + STATE(6138), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288042] = 5, + [297874] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7978), 2, + ACTIONS(8072), 2, sym_based_integer, sym_based_float, - STATE(5926), 3, + STATE(6139), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288061] = 5, + [297893] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7695), 2, - anon_sym_COMMA, + ACTIONS(8074), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(5927), 3, + STATE(6140), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288080] = 5, + [297912] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7271), 2, - sym_OF, - anon_sym_COMMA, - STATE(5928), 3, + ACTIONS(8076), 2, + sym_based_integer, + sym_based_float, + STATE(6141), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288099] = 6, + [297931] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7976), 1, - anon_sym_COMMA, - ACTIONS(7980), 1, + ACTIONS(8078), 2, anon_sym_SEMI, - STATE(5929), 3, + anon_sym_RPAREN, + STATE(6142), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288120] = 6, + [297950] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6914), 1, - sym_ELSE, - STATE(5988), 1, - sym_else_expression_or_unaffected, - STATE(5930), 3, + ACTIONS(8080), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6143), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288141] = 5, + [297969] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7982), 2, - sym_WHEN, + ACTIONS(8082), 2, anon_sym_SEMI, - STATE(5931), 3, + anon_sym_RPAREN, + STATE(6144), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288160] = 5, + [297988] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7774), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5932), 3, + ACTIONS(6230), 2, + sym_FOR, + sym_USE, + STATE(6145), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288179] = 5, + [298007] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7984), 2, - sym_IS, - anon_sym_SEMI, - STATE(5933), 3, + ACTIONS(4160), 2, + sym_END, + sym_PORT, + STATE(6146), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288198] = 6, + [298026] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7986), 1, + ACTIONS(8084), 1, anon_sym_LPAREN, - STATE(4300), 1, + STATE(4434), 1, sym_association_list, - STATE(5934), 3, + STATE(6147), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288219] = 6, + [298047] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4803), 1, + ACTIONS(4601), 1, anon_sym_LPAREN, - STATE(4457), 1, + STATE(4610), 1, sym_parenthesis_group, - STATE(5935), 3, + STATE(6148), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288240] = 5, + [298068] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6090), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5936), 3, + ACTIONS(8086), 1, + sym_END, + STATE(8202), 1, + sym_end_process, + STATE(6149), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288259] = 5, + [298089] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7988), 2, + ACTIONS(6496), 2, + sym_ELSE, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5937), 3, + STATE(6150), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288278] = 5, + [298108] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7990), 2, + ACTIONS(8088), 2, + sym_WHEN, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5938), 3, + STATE(6151), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288297] = 5, + [298127] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7992), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5939), 3, + ACTIONS(3412), 1, + sym_WHEN, + STATE(8194), 1, + sym_when_element, + STATE(6152), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288316] = 6, + [298148] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4803), 1, + ACTIONS(4601), 1, anon_sym_LPAREN, - STATE(4461), 1, + STATE(4598), 1, sym_parenthesis_group, - STATE(5940), 3, + STATE(6153), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288337] = 5, + [298169] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7994), 2, + ACTIONS(8090), 1, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5941), 3, + ACTIONS(8092), 1, + anon_sym_COMMA, + STATE(6154), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288356] = 5, + [298190] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7996), 2, - anon_sym_SEMI, + ACTIONS(8094), 2, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(5942), 3, + STATE(6155), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288375] = 5, + [298209] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6174), 2, - sym_FOR, - sym_USE, - STATE(5943), 3, + ACTIONS(5815), 1, + sym_END, + STATE(8174), 1, + sym_end_if, + STATE(6156), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288394] = 6, + [298230] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2334), 1, - anon_sym_LPAREN, - STATE(1720), 1, - sym_parenthesis_group, - STATE(5944), 3, + ACTIONS(8096), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6157), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288415] = 5, + [298249] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4132), 2, + ACTIONS(8098), 1, sym_END, - sym_PORT, - STATE(5945), 3, + STATE(8172), 1, + sym_end_block, + STATE(6158), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288434] = 5, + [298270] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7850), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5946), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6226), 1, + sym_select_target, + STATE(6159), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288453] = 6, + [298291] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7987), 1, - sym_end_process, - STATE(5947), 3, + ACTIONS(6710), 2, + sym_WHEN, + anon_sym_SEMI, + STATE(6160), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288474] = 5, + [298310] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8000), 2, - sym_WHEN, - anon_sym_SEMI, - STATE(5948), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6236), 1, + sym_select_target, + STATE(6161), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288493] = 5, + [298331] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8002), 2, + ACTIONS(8102), 2, sym_based_integer, sym_based_float, - STATE(5949), 3, + STATE(6162), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288512] = 6, + [298350] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3392), 1, - sym_WHEN, - STATE(7981), 1, - sym_when_element, - STATE(5950), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6243), 1, + sym_select_target, + STATE(6163), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288533] = 6, + [298371] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2334), 1, - anon_sym_LPAREN, - STATE(1827), 1, - sym_parenthesis_group, - STATE(5951), 3, + ACTIONS(8104), 2, + sym_IS, + anon_sym_SEMI, + STATE(6164), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288554] = 6, + [298390] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8004), 1, - anon_sym_LPAREN, - STATE(2039), 1, - sym_association_list, - STATE(5952), 3, + ACTIONS(8106), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6165), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288575] = 6, + [298409] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8006), 1, - anon_sym_SEMI, - ACTIONS(8008), 1, - anon_sym_COMMA, - STATE(5953), 3, + ACTIONS(8108), 1, + anon_sym_LPAREN, + STATE(2074), 1, + sym_association_list, + STATE(6166), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288596] = 5, + [298430] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8010), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5954), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(5637), 1, + sym_select_target, + STATE(6167), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288615] = 6, + [298451] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, - sym_END, - STATE(7962), 1, - sym_end_if, - STATE(5955), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6256), 1, + sym_select_target, + STATE(6168), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288636] = 6, + [298472] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7960), 1, - sym_end_block, - STATE(5956), 3, + ACTIONS(8110), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6169), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288657] = 6, + [298491] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8014), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, - STATE(4492), 1, + STATE(4578), 1, sym_association_list, - STATE(5957), 3, + STATE(6170), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288678] = 6, + [298512] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2274), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - STATE(1818), 1, + STATE(1864), 1, sym_parenthesis_group, - STATE(5958), 3, + STATE(6171), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288699] = 5, + [298533] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6215), 2, - sym_ELSE, - anon_sym_SEMI, - STATE(5959), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(5697), 1, + sym_select_target, + STATE(6172), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288718] = 6, + [298554] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2504), 1, - anon_sym_LPAREN, - STATE(1954), 1, - sym_parenthesis_group, - STATE(5960), 3, + ACTIONS(8114), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6173), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288739] = 6, + [298573] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6030), 1, - sym_select_target, - STATE(5961), 3, + ACTIONS(8116), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6174), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288760] = 5, + [298592] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8018), 2, - sym_based_integer, - sym_based_float, - STATE(5962), 3, + ACTIONS(2456), 1, + anon_sym_LPAREN, + STATE(2073), 1, + sym_parenthesis_group, + STATE(6175), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288779] = 6, + [298613] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2274), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - STATE(1816), 1, + STATE(1867), 1, sym_parenthesis_group, - STATE(5963), 3, + STATE(6176), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288800] = 5, + [298634] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8020), 2, - anon_sym_COMMA, + ACTIONS(8118), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(5964), 3, + STATE(6177), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288819] = 5, + [298653] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8022), 2, + ACTIONS(8120), 2, anon_sym_SEMI, anon_sym_RPAREN, - STATE(5965), 3, + STATE(6178), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288838] = 6, + [298672] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6042), 1, - sym_select_target, - STATE(5966), 3, + ACTIONS(7799), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6179), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288859] = 6, + [298691] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5441), 1, - sym_FOR, - STATE(5979), 1, - sym_block_configuration, - STATE(5967), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6278), 1, + sym_select_target, + STATE(6180), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288880] = 5, + [298712] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8024), 2, + ACTIONS(8122), 2, + sym_IS, anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5968), 3, + STATE(6181), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288899] = 5, + [298731] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8026), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5969), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6285), 1, + sym_select_target, + STATE(6182), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288918] = 6, + [298752] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6047), 1, - sym_select_target, - STATE(5970), 3, + ACTIONS(8124), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6183), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288939] = 5, + [298771] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8028), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5971), 3, + ACTIONS(8126), 1, + sym_END, + STATE(8143), 1, + sym_end_configuration, + STATE(6184), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288958] = 5, + [298792] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8030), 2, + ACTIONS(8128), 2, sym_based_integer, sym_based_float, - STATE(5972), 3, + STATE(6185), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288977] = 5, + [298811] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7688), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5973), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(5769), 1, + sym_select_target, + STATE(6186), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [288996] = 5, + [298832] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8032), 2, - sym_IS, - anon_sym_SEMI, - STATE(5974), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6298), 1, + sym_select_target, + STATE(6187), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289015] = 6, + [298853] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, + ACTIONS(8100), 1, sym_SELECT, - STATE(5635), 1, + STATE(5854), 1, sym_select_target, - STATE(5975), 3, + STATE(6188), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289036] = 6, + [298874] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6056), 1, - sym_select_target, - STATE(5976), 3, + ACTIONS(7468), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(6189), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289057] = 6, + [298893] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(5630), 1, - sym_select_target, - STATE(5977), 3, + ACTIONS(8130), 2, + sym_based_integer, + sym_based_float, + STATE(6190), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289078] = 5, + [298912] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8034), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(5978), 3, + ACTIONS(8132), 1, + sym_END, + STATE(8138), 1, + sym_end_architecture, + STATE(6191), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289097] = 6, + [298933] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8036), 1, - sym_END, - STATE(7933), 1, - sym_end_configuration, - STATE(5979), 3, + ACTIONS(8134), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6192), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289118] = 6, + [298952] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8038), 1, + ACTIONS(8136), 1, anon_sym_LPAREN, - STATE(4429), 1, + STATE(4561), 1, sym_association_list, - STATE(5980), 3, + STATE(6193), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289139] = 6, + [298973] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4345), 1, + ACTIONS(4357), 1, anon_sym_LPAREN, - STATE(4313), 1, + STATE(4543), 1, sym_parenthesis_group, - STATE(5981), 3, + STATE(6194), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289160] = 6, + [298994] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, + ACTIONS(8100), 1, sym_SELECT, - STATE(6078), 1, + STATE(6321), 1, sym_select_target, - STATE(5982), 3, + STATE(6195), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289181] = 6, + [299015] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6085), 1, - sym_select_target, - STATE(5983), 3, + ACTIONS(8138), 2, + sym_IS, + anon_sym_SEMI, + STATE(6196), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289202] = 5, + [299034] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7616), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(5984), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6325), 1, + sym_select_target, + STATE(6197), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289221] = 6, + [299055] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3868), 1, - anon_sym_LPAREN, - STATE(3310), 1, - sym_parenthesis_group, - STATE(5985), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6149), 1, + sym_sequential_block, + STATE(6198), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289242] = 6, + [299076] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4345), 1, + ACTIONS(4357), 1, anon_sym_LPAREN, - STATE(4351), 1, + STATE(4547), 1, sym_parenthesis_group, - STATE(5986), 3, + STATE(6199), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289263] = 6, + [299097] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8040), 1, + ACTIONS(8140), 2, sym_END, - STATE(7928), 1, - sym_end_architecture, - STATE(5987), 3, + sym_WHEN, + STATE(6200), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289284] = 5, + [299116] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6281), 2, - sym_WHEN, - anon_sym_SEMI, - STATE(5988), 3, + ACTIONS(8098), 1, + sym_END, + STATE(8133), 1, + sym_end_block, + STATE(6201), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289303] = 5, + [299137] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8042), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5989), 3, + ACTIONS(8142), 1, + anon_sym_COLON, + ACTIONS(8144), 1, + sym_IS, + STATE(6202), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289322] = 6, + [299158] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(5947), 1, - sym_sequential_block, - STATE(5990), 3, + ACTIONS(8146), 1, + sym_IS, + STATE(6426), 1, + sym_package_declaration_body, + STATE(6203), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289343] = 6, + [299179] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(5610), 1, - sym_select_target, - STATE(5991), 3, + ACTIONS(8148), 1, + anon_sym_COLON, + ACTIONS(8150), 1, + sym_IS, + STATE(6204), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289364] = 6, + [299200] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6097), 1, - sym_select_target, - STATE(5992), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6427), 1, + sym_sequential_block, + STATE(6205), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289385] = 6, + [299221] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(5605), 1, - sym_select_target, - STATE(5993), 3, + ACTIONS(7096), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6206), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289406] = 5, + [299240] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8044), 2, + ACTIONS(8152), 2, sym_based_integer, sym_based_float, - STATE(5994), 3, + STATE(6207), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289425] = 6, + [299259] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3868), 1, - anon_sym_LPAREN, - STATE(3312), 1, - sym_parenthesis_group, - STATE(5995), 3, + ACTIONS(8154), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6208), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289446] = 6, + [299278] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8046), 1, - anon_sym_LPAREN, - STATE(2009), 1, - sym_association_list, - STATE(5996), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6429), 1, + sym_sequential_block, + STATE(6209), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289467] = 5, + [299299] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8048), 2, - sym_END, + ACTIONS(3412), 1, sym_WHEN, - STATE(5997), 3, + STATE(6154), 1, + sym_when_element, + STATE(6210), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289486] = 6, + [299320] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7923), 1, - sym_end_block, - STATE(5998), 3, + ACTIONS(8092), 1, + anon_sym_COMMA, + ACTIONS(8156), 1, + anon_sym_SEMI, + STATE(6211), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289507] = 6, + [299341] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6111), 1, - sym_select_target, - STATE(5999), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6433), 1, + sym_sequential_block, + STATE(6212), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289528] = 6, + [299362] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8050), 1, + ACTIONS(8158), 1, anon_sym_LPAREN, - STATE(1741), 1, + STATE(1881), 1, sym_association_list, - STATE(6000), 3, + STATE(6213), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289549] = 6, + [299383] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1815), 1, + ACTIONS(1871), 1, anon_sym_LPAREN, - STATE(1232), 1, + STATE(1380), 1, sym_parenthesis_group, - STATE(6001), 3, + STATE(6214), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289570] = 5, + [299404] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7517), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6002), 3, + ACTIONS(6909), 1, + anon_sym_DOT, + ACTIONS(6911), 1, + anon_sym_LPAREN, + STATE(6215), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289589] = 6, + [299425] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6123), 1, - sym_select_target, - STATE(6003), 3, + ACTIONS(2394), 1, + anon_sym_LPAREN, + STATE(2133), 1, + sym_parenthesis_group, + STATE(6216), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289610] = 6, + [299446] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(8052), 1, - anon_sym_SEMI, - STATE(6004), 3, + ACTIONS(8160), 1, + sym_IS, + STATE(6434), 1, + sym_package_definition_body, + STATE(6217), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289631] = 5, + [299467] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8054), 2, - sym_based_integer, - sym_based_float, - STATE(6005), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6435), 1, + sym_sequential_block, + STATE(6218), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289650] = 6, + [299488] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1815), 1, + ACTIONS(1871), 1, anon_sym_LPAREN, - STATE(1234), 1, + STATE(1375), 1, sym_parenthesis_group, - STATE(6006), 3, + STATE(6219), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289671] = 5, + [299509] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8056), 2, - sym_based_integer, - sym_based_float, - STATE(6007), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6437), 1, + sym_sequential_block, + STATE(6220), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289690] = 6, + [299530] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8058), 1, - anon_sym_SEMI, - ACTIONS(8060), 1, + ACTIONS(8162), 1, sym_IS, - STATE(6008), 3, + STATE(6438), 1, + sym_package_declaration_body, + STATE(6221), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289711] = 6, + [299551] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8062), 1, + ACTIONS(8164), 1, anon_sym_COLON, - ACTIONS(8064), 1, + ACTIONS(8166), 1, sym_IS, - STATE(6009), 3, + STATE(6222), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289732] = 5, + [299572] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8066), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6010), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6440), 1, + sym_sequential_block, + STATE(6223), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289751] = 6, + [299593] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8068), 1, - sym_IS, - STATE(6225), 1, - sym_package_declaration_body, - STATE(6011), 3, + ACTIONS(7948), 1, + sym_END, + STATE(8121), 1, + sym_end_view, + STATE(6224), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289772] = 6, + [299614] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8070), 1, - anon_sym_COLON, - ACTIONS(8072), 1, - sym_IS, - STATE(6012), 3, + ACTIONS(2394), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_parenthesis_group, + STATE(6225), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289793] = 6, + [299635] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6226), 1, - sym_sequential_block, - STATE(6013), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(93), 1, + sym_signal_assignment, + STATE(6226), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289814] = 6, + [299656] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(5907), 1, - anon_sym_SEMI, - STATE(6014), 3, + ACTIONS(8170), 1, + anon_sym_LPAREN, + STATE(4713), 1, + sym_association_list, + STATE(6227), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289835] = 6, + [299677] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, + ACTIONS(1086), 1, sym_BEGIN, - STATE(6227), 1, - sym_sequential_block, - STATE(6015), 3, + STATE(6443), 1, + sym_concurrent_block, + STATE(6228), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289856] = 6, + [299698] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6232), 1, - sym_sequential_block, - STATE(6016), 3, + ACTIONS(8172), 1, + sym_IS, + STATE(6028), 1, + sym_mode_view_body, + STATE(6229), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289877] = 6, + [299719] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8074), 1, - sym_IS, - STATE(6233), 1, - sym_package_definition_body, - STATE(6017), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6444), 1, + sym_sequential_block, + STATE(6230), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289898] = 6, + [299740] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6235), 1, - sym_sequential_block, - STATE(6018), 3, + ACTIONS(8174), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6231), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289919] = 6, + [299759] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8076), 1, + ACTIONS(8176), 1, anon_sym_LPAREN, - STATE(4325), 1, + STATE(4481), 1, sym_association_list, - STATE(6019), 3, + STATE(6232), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289940] = 6, + [299780] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1761), 1, + ACTIONS(1883), 1, anon_sym_LPAREN, - STATE(1261), 1, + STATE(1341), 1, sym_parenthesis_group, - STATE(6020), 3, + STATE(6233), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289961] = 6, + [299801] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6236), 1, - sym_sequential_block, - STATE(6021), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(113), 1, + sym_signal_assignment, + STATE(6234), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [289982] = 6, + [299822] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3392), 1, - sym_WHEN, - STATE(5953), 1, - sym_when_element, - STATE(6022), 3, + ACTIONS(1086), 1, + sym_BEGIN, + STATE(6448), 1, + sym_concurrent_block, + STATE(6235), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290003] = 6, + [299843] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(8078), 1, - anon_sym_SEMI, - STATE(6023), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(85), 1, + sym_signal_assignment, + STATE(6236), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290024] = 6, + [299864] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8080), 1, - sym_IS, - STATE(6237), 1, - sym_package_declaration_body, - STATE(6024), 3, + ACTIONS(8178), 2, + sym_based_integer, + sym_based_float, + STATE(6237), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290045] = 6, + [299883] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1761), 1, + ACTIONS(1883), 1, anon_sym_LPAREN, - STATE(1264), 1, + STATE(1339), 1, sym_parenthesis_group, - STATE(6025), 3, + STATE(6238), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290066] = 6, + [299904] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8082), 1, - anon_sym_COLON, - ACTIONS(8084), 1, - sym_IS, - STATE(6026), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6449), 1, + sym_sequential_block, + STATE(6239), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290087] = 6, + [299925] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8086), 1, - anon_sym_LPAREN, - STATE(1526), 1, - sym_association_list, - STATE(6027), 3, + ACTIONS(6245), 2, + sym_UNITS, + anon_sym_SEMI, + STATE(6240), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290108] = 6, + [299944] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6243), 1, - sym_sequential_block, - STATE(6028), 3, + ACTIONS(8160), 1, + sym_IS, + STATE(6450), 1, + sym_package_definition_body, + STATE(6241), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290129] = 6, + [299965] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1913), 1, - anon_sym_LPAREN, - STATE(1525), 1, - sym_parenthesis_group, - STATE(6029), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6456), 1, + sym_sequential_block, + STATE(6242), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290150] = 6, + [299986] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, + ACTIONS(8168), 1, anon_sym_LT_EQ, - STATE(78), 1, + STATE(84), 1, sym_signal_assignment, - STATE(6030), 3, + STATE(6243), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290171] = 6, + [300007] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2504), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_parenthesis_group, - STATE(6031), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6462), 1, + sym_sequential_block, + STATE(6244), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290192] = 6, + [300028] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, - sym_BEGIN, - STATE(6250), 1, - sym_concurrent_block, - STATE(6032), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(107), 1, + sym_signal_assignment, + STATE(6245), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290213] = 6, + [300049] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8088), 1, - anon_sym_LPAREN, - STATE(1939), 1, - sym_association_list, - STATE(6033), 3, + ACTIONS(8180), 1, + sym_IS, + STATE(6463), 1, + sym_package_declaration_body, + STATE(6246), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290234] = 6, + [300070] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8090), 1, + ACTIONS(8182), 1, + anon_sym_COLON, + ACTIONS(8184), 1, sym_IS, - STATE(6251), 1, - sym_mode_view_body, - STATE(6034), 3, + STATE(6247), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290255] = 6, + [300091] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6252), 1, - sym_sequential_block, - STATE(6035), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(110), 1, + sym_signal_assignment, + STATE(6248), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290276] = 6, + [300112] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(100), 1, - sym_signal_assignment, - STATE(6036), 3, + ACTIONS(8186), 2, + anon_sym_SEMI, + sym_variable_assignment, + STATE(6249), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290297] = 6, + [300131] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(8092), 1, - anon_sym_SEMI, - STATE(6037), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6476), 1, + sym_sequential_block, + STATE(6250), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290318] = 6, + [300152] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8094), 1, + ACTIONS(8188), 1, anon_sym_LPAREN, - STATE(1282), 1, + STATE(1318), 1, sym_association_list, - STATE(6038), 3, + STATE(6251), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290339] = 6, + [300173] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1961), 1, + ACTIONS(1913), 1, anon_sym_LPAREN, - STATE(1633), 1, + STATE(1500), 1, sym_parenthesis_group, - STATE(6039), 3, + STATE(6252), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290360] = 6, + [300194] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, + ACTIONS(2902), 1, sym_BEGIN, - STATE(6256), 1, - sym_concurrent_block, - STATE(6040), 3, + STATE(6482), 1, + sym_sequential_block, + STATE(6253), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290381] = 5, + [300215] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8096), 2, - sym_based_integer, - sym_based_float, - STATE(6041), 3, + ACTIONS(2534), 1, + anon_sym_LPAREN, + STATE(2240), 1, + sym_parenthesis_group, + STATE(6254), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290400] = 6, + [300236] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(19), 1, - sym_signal_assignment, - STATE(6042), 3, + ACTIONS(8190), 1, + sym_END, + STATE(8098), 1, + sym_end_loop, + STATE(6255), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290421] = 6, + [300257] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6264), 1, - sym_sequential_block, - STATE(6043), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(96), 1, + sym_signal_assignment, + STATE(6256), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290442] = 6, + [300278] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1961), 1, + ACTIONS(1913), 1, anon_sym_LPAREN, - STATE(1612), 1, + STATE(1503), 1, sym_parenthesis_group, - STATE(6044), 3, + STATE(6257), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290463] = 6, + [300299] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8074), 1, - sym_IS, - STATE(6265), 1, - sym_package_definition_body, - STATE(6045), 3, + ACTIONS(8192), 1, + sym_END, + STATE(8092), 1, + sym_end_case, + STATE(6258), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290484] = 6, + [300320] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, + ACTIONS(1086), 1, sym_BEGIN, - STATE(6273), 1, - sym_sequential_block, - STATE(6046), 3, + STATE(6489), 1, + sym_concurrent_block, + STATE(6259), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290505] = 6, + [300341] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(20), 1, - sym_signal_assignment, - STATE(6047), 3, + ACTIONS(8172), 1, + sym_IS, + STATE(6490), 1, + sym_mode_view_body, + STATE(6260), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290526] = 6, + [300362] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6274), 1, - sym_sequential_block, - STATE(6048), 3, + ACTIONS(271), 1, + sym_LOOP, + STATE(6491), 1, + sym_loop_body, + STATE(6261), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290547] = 6, + [300383] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(125), 1, - sym_signal_assignment, - STATE(6049), 3, + ACTIONS(8194), 1, + sym_IS, + STATE(6492), 1, + sym_case_body, + STATE(6262), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290568] = 6, + [300404] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8098), 1, - sym_IS, - STATE(6275), 1, - sym_package_declaration_body, - STATE(6050), 3, + ACTIONS(2534), 1, + anon_sym_LPAREN, + STATE(2248), 1, + sym_parenthesis_group, + STATE(6263), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290589] = 6, + [300425] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8100), 1, - anon_sym_COLON, - ACTIONS(8102), 1, - sym_IS, - STATE(6051), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6158), 1, + sym_sequential_block, + STATE(6264), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290610] = 6, + [300446] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(124), 1, - sym_signal_assignment, - STATE(6052), 3, + ACTIONS(8196), 1, + anon_sym_LPAREN, + STATE(3508), 1, + sym_association_list, + STATE(6265), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290631] = 6, + [300467] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(7805), 1, - sym_end_generate, - STATE(6053), 3, + ACTIONS(8198), 1, + sym_IS, + STATE(6349), 1, + sym_architecture_head, + STATE(6266), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290652] = 6, + [300488] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - STATE(6282), 1, + STATE(6496), 1, sym_sequential_block, - STATE(6054), 3, + STATE(6267), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290673] = 6, + [300509] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - STATE(6290), 1, + STATE(6497), 1, sym_sequential_block, - STATE(6055), 3, + STATE(6268), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290694] = 6, + [300530] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, + ACTIONS(8168), 1, anon_sym_LT_EQ, - STATE(28), 1, + STATE(109), 1, sym_signal_assignment, - STATE(6056), 3, + STATE(6269), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290715] = 6, + [300551] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8104), 1, + ACTIONS(8200), 1, anon_sym_LPAREN, - STATE(1304), 1, + STATE(1281), 1, sym_association_list, - STATE(6057), 3, + STATE(6270), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290736] = 6, + [300572] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2087), 1, + ACTIONS(2003), 1, anon_sym_LPAREN, - STATE(1565), 1, + STATE(1542), 1, sym_parenthesis_group, - STATE(6058), 3, + STATE(6271), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290757] = 6, + [300593] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, - sym_BEGIN, - STATE(6293), 1, - sym_concurrent_block, - STATE(6059), 3, + ACTIONS(5815), 1, + sym_END, + STATE(8082), 1, + sym_end_if, + STATE(6272), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290778] = 6, + [300614] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8090), 1, - sym_IS, - STATE(6295), 1, - sym_mode_view_body, - STATE(6060), 3, + ACTIONS(1086), 1, + sym_BEGIN, + STATE(6502), 1, + sym_concurrent_block, + STATE(6273), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290799] = 6, + [300635] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -281887,237 +290641,236 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(271), 1, sym_LOOP, - STATE(6298), 1, + STATE(6506), 1, sym_loop_body, - STATE(6061), 3, + STATE(6274), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290820] = 6, + [300656] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8106), 1, - sym_IS, - STATE(6300), 1, - sym_case_body, - STATE(6062), 3, + ACTIONS(8202), 2, + sym_based_integer, + sym_based_float, + STATE(6275), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290841] = 6, + [300675] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2087), 1, + ACTIONS(2003), 1, anon_sym_LPAREN, - STATE(1560), 1, + STATE(1551), 1, sym_parenthesis_group, - STATE(6063), 3, + STATE(6276), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290862] = 6, + [300696] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6303), 1, - sym_sequential_block, - STATE(6064), 3, + ACTIONS(8194), 1, + sym_IS, + STATE(6509), 1, + sym_case_body, + STATE(6277), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290883] = 6, + [300717] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6306), 1, - sym_sequential_block, - STATE(6065), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(51), 1, + sym_signal_assignment, + STATE(6278), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290904] = 6, + [300738] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6151), 1, - sym_select_target, - STATE(6066), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6512), 1, + sym_sequential_block, + STATE(6279), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290925] = 6, + [300759] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(119), 1, - sym_signal_assignment, - STATE(6067), 3, + ACTIONS(8204), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(6280), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290946] = 6, + [300778] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(8108), 1, - anon_sym_SEMI, - STATE(6068), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6391), 1, + sym_select_target, + STATE(6281), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290967] = 6, + [300799] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2600), 1, - anon_sym_LPAREN, - STATE(1888), 1, - sym_parenthesis_group, - STATE(6069), 3, + ACTIONS(8160), 1, + sym_IS, + STATE(6513), 1, + sym_package_definition_body, + STATE(6282), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [290988] = 6, + [300820] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, - sym_BEGIN, - STATE(6311), 1, - sym_concurrent_block, - STATE(6070), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(8206), 1, + anon_sym_SEMI, + STATE(6283), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291009] = 6, + [300841] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(271), 1, - sym_LOOP, - STATE(6318), 1, - sym_loop_body, - STATE(6071), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6525), 1, + sym_sequential_block, + STATE(6284), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291030] = 6, + [300862] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8106), 1, - sym_IS, - STATE(6322), 1, - sym_case_body, - STATE(6072), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(44), 1, + sym_signal_assignment, + STATE(6285), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291051] = 6, + [300883] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2600), 1, - anon_sym_LPAREN, - STATE(1880), 1, - sym_parenthesis_group, - STATE(6073), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6530), 1, + sym_sequential_block, + STATE(6286), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291072] = 6, + [300904] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8110), 1, - anon_sym_LPAREN, - STATE(4709), 1, - sym_association_list, - STATE(6074), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(120), 1, + sym_signal_assignment, + STATE(6287), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291093] = 5, + [300925] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8112), 2, + ACTIONS(8208), 1, sym_IS, - anon_sym_SEMI, - STATE(6075), 3, + STATE(6531), 1, + sym_package_declaration_body, + STATE(6288), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291112] = 6, + [300946] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8114), 1, + ACTIONS(8210), 1, anon_sym_LPAREN, - STATE(1532), 1, + STATE(1566), 1, sym_association_list, - STATE(6076), 3, + STATE(6289), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291133] = 6, + [300967] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -282126,73 +290879,72 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(1725), 1, anon_sym_LPAREN, - STATE(1174), 1, + STATE(1231), 1, sym_parenthesis_group, - STATE(6077), 3, + STATE(6290), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291154] = 6, + [300988] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(39), 1, - sym_signal_assignment, - STATE(6078), 3, + ACTIONS(8212), 1, + anon_sym_COLON, + ACTIONS(8214), 1, + sym_IS, + STATE(6291), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291175] = 6, + [301009] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6327), 1, - sym_sequential_block, - STATE(6079), 3, + ACTIONS(4893), 1, + anon_sym_LPAREN, + STATE(4753), 1, + sym_parenthesis_group, + STATE(6292), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291196] = 6, + [301030] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, + ACTIONS(8168), 1, anon_sym_LT_EQ, - STATE(112), 1, + STATE(123), 1, sym_signal_assignment, - STATE(6080), 3, + STATE(6293), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291217] = 6, + [301051] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8074), 1, - sym_IS, - STATE(6328), 1, - sym_package_definition_body, - STATE(6081), 3, + ACTIONS(8216), 2, + sym_END, + sym_WHEN, + STATE(6294), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291238] = 6, + [301070] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -282201,1056 +290953,1050 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(1725), 1, anon_sym_LPAREN, - STATE(1169), 1, + STATE(1227), 1, sym_parenthesis_group, - STATE(6082), 3, + STATE(6295), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291259] = 5, + [301091] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 2, - anon_sym_LT_EQ, - sym_variable_assignment, - STATE(6083), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6545), 1, + sym_sequential_block, + STATE(6296), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291278] = 6, + [301112] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - STATE(6334), 1, + STATE(6549), 1, sym_sequential_block, - STATE(6084), 3, + STATE(6297), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291299] = 6, + [301133] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, + ACTIONS(8168), 1, anon_sym_LT_EQ, - STATE(41), 1, + STATE(25), 1, sym_signal_assignment, - STATE(6085), 3, + STATE(6298), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291320] = 6, + [301154] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6337), 1, - sym_sequential_block, - STATE(6086), 3, + ACTIONS(8098), 1, + sym_END, + STATE(8077), 1, + sym_end_block, + STATE(6299), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291341] = 5, + [301175] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2568), 2, - sym_directive_body, - sym__directive_newline, - STATE(6087), 3, + ACTIONS(1086), 1, + sym_BEGIN, + STATE(6551), 1, + sym_concurrent_block, + STATE(6300), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291360] = 5, + [301196] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8116), 2, - sym_based_integer, - sym_based_float, - STATE(6088), 3, + ACTIONS(4893), 1, + anon_sym_LPAREN, + STATE(4755), 1, + sym_parenthesis_group, + STATE(6301), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291379] = 6, + [301217] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(116), 1, - sym_signal_assignment, - STATE(6089), 3, + ACTIONS(8172), 1, + sym_IS, + STATE(6552), 1, + sym_mode_view_body, + STATE(6302), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291400] = 6, + [301238] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8118), 1, - sym_IS, - STATE(6338), 1, - sym_package_declaration_body, - STATE(6090), 3, + ACTIONS(8218), 1, + anon_sym_LPAREN, + STATE(5013), 1, + sym_association_list, + STATE(6303), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291421] = 6, + [301259] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8120), 1, - anon_sym_COLON, - ACTIONS(8122), 1, - sym_IS, - STATE(6091), 3, + ACTIONS(271), 1, + sym_LOOP, + STATE(6557), 1, + sym_loop_body, + STATE(6304), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291442] = 6, + [301280] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(115), 1, - sym_signal_assignment, - STATE(6092), 3, + ACTIONS(8194), 1, + sym_IS, + STATE(6558), 1, + sym_case_body, + STATE(6305), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291463] = 6, + [301301] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6353), 1, - sym_sequential_block, - STATE(6093), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(105), 1, + sym_signal_assignment, + STATE(6306), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291484] = 6, + [301322] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - STATE(6356), 1, + STATE(6563), 1, sym_sequential_block, - STATE(6094), 3, + STATE(6307), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291505] = 6, + [301343] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8124), 1, + ACTIONS(8220), 1, anon_sym_LPAREN, - STATE(1508), 1, + STATE(1588), 1, sym_association_list, - STATE(6095), 3, + STATE(6308), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291526] = 6, + [301364] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3920), 1, + ACTIONS(3864), 1, anon_sym_LPAREN, - STATE(3275), 1, + STATE(3374), 1, sym_parenthesis_group, - STATE(6096), 3, + STATE(6309), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291547] = 6, + [301385] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(51), 1, - sym_signal_assignment, - STATE(6097), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6566), 1, + sym_sequential_block, + STATE(6310), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291568] = 6, + [301406] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, - sym_BEGIN, - STATE(6363), 1, - sym_concurrent_block, - STATE(6098), 3, + ACTIONS(8086), 1, + sym_END, + STATE(8071), 1, + sym_end_process, + STATE(6311), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291589] = 6, + [301427] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8090), 1, - sym_IS, - STATE(6364), 1, - sym_mode_view_body, - STATE(6099), 3, + ACTIONS(5840), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(6312), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291610] = 6, + [301446] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(271), 1, - sym_LOOP, - STATE(6366), 1, - sym_loop_body, - STATE(6100), 3, + ACTIONS(2528), 2, + sym_directive_body, + sym__directive_newline, + STATE(6313), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291631] = 6, + [301465] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3920), 1, + ACTIONS(3864), 1, anon_sym_LPAREN, - STATE(3281), 1, + STATE(3377), 1, sym_parenthesis_group, - STATE(6101), 3, + STATE(6314), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291652] = 6, + [301486] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8106), 1, - sym_IS, - STATE(6369), 1, - sym_case_body, - STATE(6102), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(114), 1, + sym_signal_assignment, + STATE(6315), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291673] = 6, + [301507] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, + ACTIONS(1086), 1, sym_BEGIN, - STATE(6371), 1, - sym_sequential_block, - STATE(6103), 3, + STATE(6573), 1, + sym_concurrent_block, + STATE(6316), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291694] = 6, + [301528] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6374), 1, - sym_sequential_block, - STATE(6104), 3, + ACTIONS(8222), 1, + sym_IF, + ACTIONS(8224), 1, + sym__directive_newline, + STATE(6317), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291715] = 6, + [301549] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(111), 1, - sym_signal_assignment, - STATE(6105), 3, + ACTIONS(8226), 2, + sym_based_integer, + sym_based_float, + STATE(6318), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291736] = 6, + [301568] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, - sym_BEGIN, - STATE(6378), 1, - sym_concurrent_block, - STATE(6106), 3, + ACTIONS(271), 1, + sym_LOOP, + STATE(6577), 1, + sym_loop_body, + STATE(6319), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291757] = 6, + [301589] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(271), 1, - sym_LOOP, - STATE(6387), 1, - sym_loop_body, - STATE(6107), 3, + ACTIONS(8194), 1, + sym_IS, + STATE(6579), 1, + sym_case_body, + STATE(6320), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291778] = 6, + [301610] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8106), 1, - sym_IS, - STATE(6389), 1, - sym_case_body, - STATE(6108), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(20), 1, + sym_signal_assignment, + STATE(6321), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291799] = 6, + [301631] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2558), 1, - anon_sym_LPAREN, - STATE(1886), 1, - sym_parenthesis_group, - STATE(6109), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6583), 1, + sym_sequential_block, + STATE(6322), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291820] = 6, + [301652] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, - sym_BEGIN, - STATE(5998), 1, - sym_concurrent_block, - STATE(6110), 3, + ACTIONS(8160), 1, + sym_IS, + STATE(6585), 1, + sym_package_definition_body, + STATE(6323), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291841] = 6, + [301673] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(66), 1, - sym_signal_assignment, - STATE(6111), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6598), 1, + sym_sequential_block, + STATE(6324), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291862] = 6, + [301694] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6392), 1, - sym_sequential_block, - STATE(6112), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(34), 1, + sym_signal_assignment, + STATE(6325), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291883] = 5, + [301715] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8126), 2, - sym_IS, - anon_sym_COLON, - STATE(6113), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6604), 1, + sym_sequential_block, + STATE(6326), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291902] = 6, + [301736] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8128), 1, + ACTIONS(8228), 1, anon_sym_LPAREN, - STATE(1148), 1, + STATE(1187), 1, sym_association_list, - STATE(6114), 3, + STATE(6327), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291923] = 6, + [301757] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2021), 1, + ACTIONS(1979), 1, anon_sym_LPAREN, - STATE(1478), 1, + STATE(1633), 1, sym_parenthesis_group, - STATE(6115), 3, + STATE(6328), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291944] = 6, + [301778] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8130), 1, - anon_sym_COLON, - ACTIONS(8132), 1, + ACTIONS(8230), 2, sym_IS, - STATE(6116), 3, + anon_sym_SEMI, + STATE(6329), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291965] = 6, + [301797] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2558), 1, - anon_sym_LPAREN, - STATE(1890), 1, - sym_parenthesis_group, - STATE(6117), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(121), 1, + sym_signal_assignment, + STATE(6330), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [291986] = 6, + [301818] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8074), 1, + ACTIONS(8232), 1, sym_IS, - STATE(6393), 1, - sym_package_definition_body, - STATE(6118), 3, + STATE(6606), 1, + sym_package_declaration_body, + STATE(6331), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292007] = 6, + [301839] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8134), 1, - anon_sym_LPAREN, - STATE(3447), 1, - sym_association_list, - STATE(6119), 3, + ACTIONS(8234), 1, + anon_sym_COLON, + ACTIONS(8236), 1, + sym_IS, + STATE(6332), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292028] = 6, + [301860] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2021), 1, + ACTIONS(1979), 1, anon_sym_LPAREN, - STATE(1474), 1, + STATE(1635), 1, sym_parenthesis_group, - STATE(6120), 3, + STATE(6333), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292049] = 6, + [301881] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6878), 1, - anon_sym_DOT, - ACTIONS(6880), 1, - anon_sym_LPAREN, - STATE(6121), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(119), 1, + sym_signal_assignment, + STATE(6334), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292070] = 6, + [301902] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6405), 1, - sym_sequential_block, - STATE(6122), 3, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(8238), 2, + sym_IS, + anon_sym_COLON, + STATE(6335), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292091] = 6, + [301921] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(67), 1, - sym_signal_assignment, - STATE(6123), 3, + ACTIONS(8240), 1, + anon_sym_COLON, + ACTIONS(8242), 1, + sym_IS, + STATE(6336), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292112] = 6, + [301942] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6413), 1, - sym_sequential_block, - STATE(6124), 3, + ACTIONS(3954), 1, + anon_sym_LPAREN, + STATE(3444), 1, + sym_parenthesis_group, + STATE(6337), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292133] = 6, + [301963] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(107), 1, - sym_signal_assignment, - STATE(6125), 3, + ACTIONS(8244), 2, + sym_IS, + anon_sym_SEMI, + STATE(6338), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292154] = 5, + [301982] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8136), 2, + ACTIONS(8246), 2, sym_based_integer, sym_based_float, - STATE(6126), 3, + STATE(6339), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292173] = 6, + [302001] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8138), 1, - sym_IS, - STATE(6414), 1, - sym_package_declaration_body, - STATE(6127), 3, + ACTIONS(2470), 1, + sym_OF, + ACTIONS(2528), 1, + anon_sym_COLON, + STATE(6340), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292194] = 6, + [302022] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8140), 1, - anon_sym_COLON, - ACTIONS(8142), 1, + ACTIONS(8248), 1, sym_IS, - STATE(6128), 3, + STATE(5370), 1, + sym_entity_head, + STATE(6341), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292215] = 6, + [302043] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7797), 1, - sym_end_block, - STATE(6129), 3, + ACTIONS(3954), 1, + anon_sym_LPAREN, + STATE(3450), 1, + sym_parenthesis_group, + STATE(6342), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292236] = 5, + [302064] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8144), 2, - sym_based_integer, - sym_based_float, - STATE(6130), 3, + ACTIONS(8250), 1, + anon_sym_LPAREN, + STATE(3257), 1, + sym_association_list, + STATE(6343), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292255] = 6, + [302085] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(103), 1, - sym_signal_assignment, - STATE(6131), 3, + ACTIONS(5465), 1, + sym_FOR, + STATE(6184), 1, + sym_block_configuration, + STATE(6344), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292276] = 6, + [302106] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2408), 1, - sym_OF, - ACTIONS(2568), 1, + ACTIONS(8252), 1, anon_sym_COLON, - STATE(6132), 3, + ACTIONS(8254), 1, + sym_IS, + STATE(6345), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292297] = 6, + [302127] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8146), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - STATE(5709), 1, + STATE(6025), 1, sym_association_list, - STATE(6133), 3, + STATE(6346), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292318] = 6, + [302148] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - STATE(1069), 1, + STATE(1074), 1, sym_parenthesis_group, - STATE(6134), 3, + STATE(6347), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292339] = 6, + [302169] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1913), 1, - anon_sym_LPAREN, - STATE(1452), 1, - sym_parenthesis_group, - STATE(6135), 3, + ACTIONS(8258), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(6348), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292360] = 6, + [302188] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8148), 1, - sym_IS, - STATE(5375), 1, - sym_entity_head, - STATE(6136), 3, + ACTIONS(1086), 1, + sym_BEGIN, + STATE(6191), 1, + sym_concurrent_block, + STATE(6349), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292381] = 6, + [302209] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8150), 1, - sym_END, - STATE(5421), 1, - sym_generate_block_end, - STATE(6137), 3, + ACTIONS(5441), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6350), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292402] = 6, + [302228] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8152), 1, - anon_sym_COLON, - ACTIONS(8154), 1, + ACTIONS(8260), 2, sym_IS, - STATE(6138), 3, + anon_sym_SEMI, + STATE(6351), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292423] = 6, + [302247] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1663), 1, + ACTIONS(1671), 1, anon_sym_LPAREN, - STATE(1085), 1, + STATE(1082), 1, sym_parenthesis_group, - STATE(6139), 3, + STATE(6352), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292444] = 6, + [302268] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8156), 1, - sym_IS, - STATE(6175), 1, - sym_package_declaration_body, - STATE(6140), 3, + ACTIONS(8262), 1, + sym_END, + STATE(8002), 1, + sym_generate_block_end, + STATE(6353), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292465] = 6, + [302289] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8158), 1, - sym_IF, - ACTIONS(8160), 1, - sym__directive_newline, - STATE(6141), 3, + ACTIONS(5771), 1, + sym_END, + STATE(8012), 1, + sym_end_generate, + STATE(6354), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292486] = 6, + [302310] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(6180), 1, - sym_select_target, - STATE(6142), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(41), 1, + sym_signal_assignment, + STATE(6355), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292507] = 6, + [302331] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(5913), 1, - anon_sym_SEMI, - STATE(6143), 3, + ACTIONS(8264), 2, + sym_based_integer, + sym_based_float, + STATE(6356), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292528] = 6, + [302350] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(121), 1, - sym_signal_assignment, - STATE(6144), 3, + ACTIONS(7573), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6357), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292549] = 6, + [302369] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7076), 1, - sym_end_process, - STATE(6145), 3, + ACTIONS(1086), 1, + sym_BEGIN, + STATE(6201), 1, + sym_concurrent_block, + STATE(6358), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292570] = 6, + [302390] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6178), 1, - sym_sequential_block, - STATE(6146), 3, + ACTIONS(8098), 1, + sym_END, + STATE(7849), 1, + sym_end_block, + STATE(6359), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292591] = 6, + [302411] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8162), 1, - anon_sym_SEMI, - ACTIONS(8164), 1, - sym_IS, - STATE(6147), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6473), 1, + sym_select_target, + STATE(6360), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292612] = 5, + [302432] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8166), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6148), 3, + ACTIONS(4186), 1, + anon_sym_LPAREN, + STATE(4341), 1, + sym_parenthesis_group, + STATE(6361), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292631] = 6, + [302453] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5940), 1, - anon_sym_PIPE, - ACTIONS(8168), 1, - anon_sym_EQ_GT, - STATE(6149), 3, + ACTIONS(5838), 1, + anon_sym_SEMI, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + STATE(6362), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292652] = 6, + [302474] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4891), 1, - anon_sym_LPAREN, - STATE(4551), 1, - sym_parenthesis_group, - STATE(6150), 3, + ACTIONS(8266), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6363), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292673] = 6, + [302493] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(44), 1, - sym_signal_assignment, - STATE(6151), 3, + ACTIONS(3412), 1, + sym_WHEN, + STATE(6211), 1, + sym_when_element, + STATE(6364), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292694] = 6, + [302514] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8170), 1, + ACTIONS(8268), 1, anon_sym_LPAREN, - STATE(3314), 1, + STATE(3414), 1, sym_association_list, - STATE(6152), 3, + STATE(6365), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292715] = 6, + [302535] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -283259,72 +292005,71 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(1509), 1, anon_sym_LPAREN, - STATE(911), 1, + STATE(918), 1, sym_parenthesis_group, - STATE(6153), 3, + STATE(6366), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292736] = 6, + [302556] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6224), 1, - sym_sequential_block, - STATE(6154), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(122), 1, + sym_signal_assignment, + STATE(6367), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292757] = 5, + [302577] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8172), 2, - sym_directive_body, - sym__directive_newline, - STATE(6155), 3, + ACTIONS(8270), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(6368), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292776] = 6, + [302596] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8174), 1, - sym_END, - STATE(7912), 1, - sym_end_view, - STATE(6156), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(8272), 1, + anon_sym_SEMI, + STATE(6369), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292797] = 6, + [302617] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5637), 1, - sym_END, - STATE(6803), 1, - sym_end_component, - STATE(6157), 3, + ACTIONS(8274), 2, + sym_based_integer, + sym_based_float, + STATE(6370), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292818] = 6, + [302636] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -283333,2462 +292078,2470 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(1509), 1, anon_sym_LPAREN, - STATE(904), 1, + STATE(915), 1, sym_parenthesis_group, - STATE(6158), 3, + STATE(6371), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292839] = 6, + [302657] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, + ACTIONS(5840), 1, anon_sym_LT_EQ, - ACTIONS(8176), 1, + ACTIONS(5871), 1, anon_sym_SEMI, - STATE(6159), 3, + STATE(6372), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292860] = 5, + [302678] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8178), 2, - sym_based_integer, - sym_based_float, - STATE(6160), 3, + ACTIONS(8276), 1, + anon_sym_SEMI, + ACTIONS(8278), 1, + sym_IS, + STATE(6373), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292879] = 6, + [302699] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5815), 1, - anon_sym_SEMI, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - STATE(6161), 3, + ACTIONS(8086), 1, + sym_END, + STATE(6881), 1, + sym_end_process, + STATE(6374), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292900] = 6, + [302720] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4891), 1, + ACTIONS(8280), 1, anon_sym_LPAREN, - STATE(4547), 1, - sym_parenthesis_group, - STATE(6162), 3, + STATE(1589), 1, + sym_association_list, + STATE(6375), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292921] = 6, + [302741] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8180), 1, - anon_sym_SEMI, - ACTIONS(8182), 1, - sym_IS, - STATE(6163), 3, + ACTIONS(1991), 1, + anon_sym_LPAREN, + STATE(1586), 1, + sym_parenthesis_group, + STATE(6376), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292942] = 6, + [302762] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8184), 1, + ACTIONS(5403), 1, anon_sym_LPAREN, - STATE(4796), 1, - sym_association_list, - STATE(6164), 3, + STATE(5035), 1, + sym_parenthesis_group, + STATE(6377), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292963] = 5, + [302783] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8186), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6165), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6471), 1, + sym_sequential_block, + STATE(6378), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [292982] = 6, + [302804] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8188), 1, - anon_sym_LPAREN, - STATE(5850), 1, - sym_association_list, - STATE(6166), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(8282), 1, + anon_sym_SEMI, + STATE(6379), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293003] = 6, + [302825] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8190), 1, - sym_END, - STATE(6764), 1, - sym_end_context, - STATE(6167), 3, + ACTIONS(8284), 1, + anon_sym_SEMI, + ACTIONS(8286), 1, + sym_IS, + STATE(6380), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293024] = 6, + [302846] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2458), 1, + ACTIONS(5403), 1, anon_sym_LPAREN, - STATE(1978), 1, + STATE(5031), 1, sym_parenthesis_group, - STATE(6168), 3, + STATE(6381), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293045] = 6, + [302867] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(8192), 1, - anon_sym_SEMI, - STATE(6169), 3, + ACTIONS(8288), 1, + anon_sym_LPAREN, + STATE(934), 1, + sym_association_list, + STATE(6382), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293066] = 5, + [302888] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6080), 2, - sym_UNITS, - anon_sym_SEMI, - STATE(6170), 3, + ACTIONS(5771), 1, + sym_END, + STATE(8005), 1, + sym_end_generate, + STATE(6383), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293085] = 6, + [302909] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8194), 1, + ACTIONS(8290), 1, anon_sym_LPAREN, - STATE(5198), 1, + STATE(5405), 1, sym_association_list, - STATE(6171), 3, + STATE(6384), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293106] = 6, + [302930] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2177), 1, + ACTIONS(2139), 1, anon_sym_LPAREN, - STATE(1638), 1, + STATE(1765), 1, sym_parenthesis_group, - STATE(6172), 3, + STATE(6385), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293127] = 6, + [302951] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8074), 1, - sym_IS, - STATE(6301), 1, - sym_package_definition_body, - STATE(6173), 3, + ACTIONS(8292), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6386), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293148] = 5, + [302970] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8196), 2, - sym_based_integer, - sym_based_float, - STATE(6174), 3, + ACTIONS(1991), 1, + anon_sym_LPAREN, + STATE(1517), 1, + sym_parenthesis_group, + STATE(6387), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293167] = 6, + [302991] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8198), 1, - sym_END, - STATE(6664), 1, - sym_end_package, - STATE(6175), 3, + ACTIONS(8294), 1, + sym_IS, + STATE(6470), 1, + sym_package_declaration_body, + STATE(6388), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293188] = 6, + [303012] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2458), 1, - anon_sym_LPAREN, - STATE(2018), 1, - sym_parenthesis_group, - STATE(6176), 3, + ACTIONS(8296), 1, + sym_END, + STATE(5755), 1, + sym_generate_block_end, + STATE(6389), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293209] = 6, + [303033] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2177), 1, + ACTIONS(2139), 1, anon_sym_LPAREN, - STATE(1852), 1, + STATE(1770), 1, sym_parenthesis_group, - STATE(6177), 3, + STATE(6390), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293230] = 6, + [303054] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(6659), 1, - sym_end_process, - STATE(6178), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(33), 1, + sym_signal_assignment, + STATE(6391), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293251] = 6, + [303075] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, + ACTIONS(2902), 1, sym_BEGIN, - STATE(6308), 1, + STATE(6559), 1, sym_sequential_block, - STATE(6179), 3, + STATE(6392), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293272] = 6, + [303096] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(35), 1, - sym_signal_assignment, - STATE(6180), 3, + ACTIONS(6195), 1, + anon_sym_PIPE, + ACTIONS(8298), 1, + anon_sym_EQ_GT, + STATE(6393), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293293] = 5, + [303117] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6005), 2, - sym_IS, - anon_sym_SEMI, - STATE(6181), 3, + ACTIONS(8300), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6394), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293312] = 6, + [303136] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8106), 1, - sym_IS, - STATE(6340), 1, - sym_case_body, - STATE(6182), 3, + ACTIONS(8302), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(6395), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293333] = 6, + [303155] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(271), 1, - sym_LOOP, - STATE(6350), 1, - sym_loop_body, - STATE(6183), 3, + ACTIONS(8304), 2, + sym_based_integer, + sym_based_float, + STATE(6396), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293354] = 6, + [303174] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(5390), 1, - sym_select_target, - STATE(6184), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(8306), 1, + anon_sym_SEMI, + STATE(6397), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293375] = 6, + [303195] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8200), 1, - sym_POSTPONED, - ACTIONS(8202), 1, - sym_PROCESS, - STATE(6185), 3, + ACTIONS(8308), 2, + sym_based_integer, + sym_based_float, + STATE(6398), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293396] = 6, + [303214] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8204), 1, - sym_ELSE, - STATE(5376), 1, - sym_else_expression, - STATE(6186), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(5867), 1, + anon_sym_SEMI, + STATE(6399), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293417] = 5, + [303235] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8206), 2, - anon_sym_LT_EQ, - sym_variable_assignment, - STATE(6187), 3, + ACTIONS(8310), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6400), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293436] = 5, + [303254] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8208), 2, - anon_sym_LT_EQ, - sym_variable_assignment, - STATE(6188), 3, + ACTIONS(8312), 1, + anon_sym_SEMI, + ACTIONS(8314), 1, + sym_IS, + STATE(6401), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293455] = 6, + [303275] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8210), 1, - anon_sym_LPAREN, - STATE(4245), 1, - sym_association_list, - STATE(6189), 3, + ACTIONS(7007), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6402), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293476] = 6, + [303294] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8212), 1, + ACTIONS(8316), 1, anon_sym_LPAREN, - STATE(1547), 1, + STATE(1464), 1, sym_association_list, - STATE(6190), 3, + STATE(6403), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293497] = 6, + [303315] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2163), 1, + ACTIONS(2127), 1, anon_sym_LPAREN, - STATE(1677), 1, + STATE(1847), 1, sym_parenthesis_group, - STATE(6191), 3, + STATE(6404), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293518] = 6, + [303336] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4146), 1, + ACTIONS(8318), 1, anon_sym_LPAREN, - STATE(4244), 1, - sym_parenthesis_group, - STATE(6192), 3, + STATE(6043), 1, + sym_association_list, + STATE(6405), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293539] = 5, + [303357] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8214), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6193), 3, + ACTIONS(2546), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_parenthesis_group, + STATE(6406), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293558] = 5, + [303378] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8216), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6194), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(8320), 1, + anon_sym_SEMI, + STATE(6407), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293577] = 6, + [303399] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(3392), 1, - sym_parenthesis_group, - STATE(6195), 3, + ACTIONS(8172), 1, + sym_IS, + STATE(6224), 1, + sym_mode_view_body, + STATE(6408), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293598] = 6, + [303420] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2163), 1, + ACTIONS(2127), 1, anon_sym_LPAREN, - STATE(1672), 1, + STATE(1859), 1, sym_parenthesis_group, - STATE(6196), 3, + STATE(6409), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293619] = 5, + [303441] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8218), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6197), 3, + ACTIONS(8322), 2, + sym_directive_body, + sym__directive_newline, + STATE(6410), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293638] = 6, + [303460] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, - sym_END, - STATE(6581), 1, - sym_end_loop, - STATE(6198), 3, + ACTIONS(8324), 1, + anon_sym_SEMI, + ACTIONS(8326), 1, + sym_UNITS, + STATE(6411), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293659] = 5, + [303481] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6456), 2, - sym_WHEN, - anon_sym_SEMI, - STATE(6199), 3, + ACTIONS(2546), 1, + anon_sym_LPAREN, + STATE(2067), 1, + sym_parenthesis_group, + STATE(6412), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293678] = 6, + [303502] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, + ACTIONS(5654), 1, sym_END, - STATE(7347), 1, - sym_end_block, - STATE(6200), 3, + STATE(8219), 1, + sym_end_component, + STATE(6413), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293699] = 6, + [303523] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1086), 1, - sym_BEGIN, - STATE(6129), 1, - sym_concurrent_block, - STATE(6201), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(8328), 1, + anon_sym_SEMI, + STATE(6414), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293720] = 6, + [303544] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(8222), 1, - anon_sym_SEMI, - STATE(6202), 3, + ACTIONS(8330), 2, + sym_based_integer, + sym_based_float, + STATE(6415), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293741] = 6, + [303563] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(5874), 1, - sym_select_target, - STATE(6203), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(5930), 1, + anon_sym_SEMI, + STATE(6416), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293762] = 6, + [303584] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4068), 1, + ACTIONS(3834), 1, anon_sym_LPAREN, - STATE(3419), 1, + STATE(3334), 1, sym_parenthesis_group, - STATE(6204), 3, + STATE(6417), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293783] = 6, + [303605] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8224), 1, - anon_sym_LPAREN, - STATE(3165), 1, - sym_association_list, - STATE(6205), 3, + ACTIONS(8332), 1, + anon_sym_SEMI, + ACTIONS(8334), 1, + sym_IS, + STATE(6418), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293804] = 6, + [303626] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(8226), 1, - anon_sym_SEMI, - STATE(6206), 3, + ACTIONS(8336), 1, + anon_sym_LPAREN, + STATE(2244), 1, + sym_association_list, + STATE(6419), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293825] = 6, + [303647] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7888), 1, - anon_sym_LT_EQ, - STATE(114), 1, - sym_signal_assignment, - STATE(6207), 3, + ACTIONS(3834), 1, + anon_sym_LPAREN, + STATE(3234), 1, + sym_parenthesis_group, + STATE(6420), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293846] = 6, + [303668] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(5861), 1, - anon_sym_SEMI, - STATE(6208), 3, + ACTIONS(1569), 1, + anon_sym_LPAREN, + STATE(991), 1, + sym_parenthesis_group, + STATE(6421), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293867] = 6, + [303689] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8228), 1, + ACTIONS(8338), 1, anon_sym_LPAREN, - STATE(1035), 1, + STATE(1012), 1, sym_association_list, - STATE(6209), 3, + STATE(6422), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293888] = 6, + [303710] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5251), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - STATE(4595), 1, + STATE(4801), 1, sym_parenthesis_group, - STATE(6210), 3, + STATE(6423), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293909] = 6, + [303731] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8230), 1, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(8340), 1, anon_sym_SEMI, - ACTIONS(8232), 1, - sym_IS, - STATE(6211), 3, + STATE(6424), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293930] = 6, + [303752] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(7991), 1, - sym_end_generate, - STATE(6212), 3, + ACTIONS(8342), 1, + anon_sym_LPAREN, + STATE(1838), 1, + sym_association_list, + STATE(6425), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293951] = 6, + [303773] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8234), 1, - anon_sym_LPAREN, - STATE(2190), 1, - sym_association_list, - STATE(6213), 3, + ACTIONS(8344), 1, + sym_END, + STATE(6815), 1, + sym_end_package, + STATE(6426), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293972] = 6, + [303794] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - STATE(7969), 1, - sym_port_map_aspect, - STATE(6214), 3, + ACTIONS(8086), 1, + sym_END, + STATE(6845), 1, + sym_end_process, + STATE(6427), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [293993] = 6, + [303815] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5251), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - STATE(4601), 1, + STATE(4807), 1, sym_parenthesis_group, - STATE(6215), 3, + STATE(6428), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294014] = 6, + [303836] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, + ACTIONS(8086), 1, sym_END, - STATE(8037), 1, - sym_end_generate, - STATE(6216), 3, + STATE(6861), 1, + sym_end_process, + STATE(6429), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294035] = 6, + [303857] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1551), 1, - anon_sym_LPAREN, - STATE(970), 1, - sym_parenthesis_group, - STATE(6217), 3, + ACTIONS(8346), 1, + sym_END, + STATE(8316), 1, + sym_end_context, + STATE(6430), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294056] = 6, + [303878] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7964), 1, - sym_BEGIN, - STATE(5895), 1, - sym_generate_block, - STATE(6218), 3, + ACTIONS(1569), 1, + anon_sym_LPAREN, + STATE(948), 1, + sym_parenthesis_group, + STATE(6431), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294077] = 5, + [303899] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8236), 2, + ACTIONS(8348), 2, sym_based_integer, sym_based_float, - STATE(6219), 3, + STATE(6432), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294096] = 6, + [303918] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5817), 1, - anon_sym_LT_EQ, - ACTIONS(8238), 1, - anon_sym_SEMI, - STATE(6220), 3, + ACTIONS(8086), 1, + sym_END, + STATE(6886), 1, + sym_end_process, + STATE(6433), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294117] = 6, + [303939] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1551), 1, - anon_sym_LPAREN, - STATE(980), 1, - sym_parenthesis_group, - STATE(6221), 3, + ACTIONS(8350), 1, + sym_END, + STATE(6889), 1, + sym_end_package_body, + STATE(6434), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294138] = 6, + [303960] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8240), 1, - sym_IS, - STATE(5865), 1, - sym_architecture_head, - STATE(6222), 3, + ACTIONS(8352), 1, + sym_END, + STATE(6896), 1, + sym_subprogram_end, + STATE(6435), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294159] = 5, + [303981] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8242), 2, + ACTIONS(8354), 2, sym_based_integer, sym_based_float, - STATE(6223), 3, + STATE(6436), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294178] = 6, + [304000] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8244), 1, + ACTIONS(8086), 1, sym_END, - STATE(6773), 1, - sym_subprogram_end, - STATE(6224), 3, + STATE(6912), 1, + sym_end_process, + STATE(6437), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294199] = 6, + [304021] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8198), 1, + ACTIONS(8344), 1, sym_END, - STATE(6669), 1, + STATE(6913), 1, sym_end_package, - STATE(6225), 3, + STATE(6438), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294220] = 6, + [304042] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(8086), 1, sym_END, - STATE(6700), 1, + STATE(6930), 1, sym_end_process, - STATE(6226), 3, + STATE(6439), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294241] = 6, + [304063] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(8086), 1, sym_END, - STATE(6708), 1, + STATE(6908), 1, sym_end_process, - STATE(6227), 3, + STATE(6440), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294262] = 6, + [304084] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8246), 1, + ACTIONS(8356), 1, anon_sym_LPAREN, - STATE(900), 1, + STATE(893), 1, sym_association_list, - STATE(6228), 3, + STATE(6441), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294283] = 6, + [304105] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1973), 1, + ACTIONS(2015), 1, anon_sym_LPAREN, - STATE(1543), 1, + STATE(1455), 1, sym_parenthesis_group, - STATE(6229), 3, + STATE(6442), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294304] = 6, + [304126] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8248), 1, - sym_IS, - STATE(5967), 1, - sym_configuration_head, - STATE(6230), 3, + ACTIONS(8098), 1, + sym_END, + STATE(6960), 1, + sym_end_block, + STATE(6443), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294325] = 5, + [304147] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7763), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(6231), 3, + ACTIONS(8086), 1, + sym_END, + STATE(6978), 1, + sym_end_process, + STATE(6444), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294344] = 6, + [304168] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(5771), 1, sym_END, - STATE(6732), 1, - sym_end_process, - STATE(6232), 3, + STATE(6989), 1, + sym_end_generate, + STATE(6445), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294365] = 6, + [304189] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8250), 1, + ACTIONS(5771), 1, sym_END, - STATE(6735), 1, - sym_end_package_body, - STATE(6233), 3, + STATE(6990), 1, + sym_end_generate, + STATE(6446), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294386] = 6, + [304210] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1973), 1, + ACTIONS(2015), 1, anon_sym_LPAREN, - STATE(1531), 1, + STATE(1483), 1, sym_parenthesis_group, - STATE(6234), 3, + STATE(6447), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294407] = 6, + [304231] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8244), 1, + ACTIONS(8098), 1, sym_END, - STATE(6742), 1, - sym_subprogram_end, - STATE(6235), 3, + STATE(6991), 1, + sym_end_block, + STATE(6448), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294428] = 6, + [304252] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(8086), 1, sym_END, - STATE(6755), 1, + STATE(7006), 1, sym_end_process, - STATE(6236), 3, + STATE(6449), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294449] = 6, + [304273] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8198), 1, + ACTIONS(8350), 1, sym_END, - STATE(6757), 1, - sym_end_package, - STATE(6237), 3, + STATE(7007), 1, + sym_end_package_body, + STATE(6450), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294470] = 6, + [304294] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5401), 1, - anon_sym_LPAREN, - STATE(4868), 1, - sym_parenthesis_group, - STATE(6238), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7013), 1, + sym_end_generate, + STATE(6451), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294491] = 5, + [304315] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8252), 2, - sym_based_integer, - sym_based_float, - STATE(6239), 3, + ACTIONS(1755), 1, + sym_PORT, + STATE(7016), 1, + sym_port_map_aspect, + STATE(6452), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294510] = 6, + [304336] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(6775), 1, - sym_end_process, - STATE(6240), 3, + ACTIONS(1539), 1, + anon_sym_LPAREN, + STATE(982), 1, + sym_parenthesis_group, + STATE(6453), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294531] = 6, + [304357] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8254), 1, - anon_sym_SEMI, - ACTIONS(8256), 1, - sym_IS, - STATE(6241), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7015), 1, + sym_end_generate, + STATE(6454), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294552] = 5, + [304378] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7648), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6242), 3, + ACTIONS(8098), 1, + sym_END, + STATE(7017), 1, + sym_end_block, + STATE(6455), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294571] = 6, + [304399] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(8352), 1, sym_END, - STATE(6797), 1, - sym_end_process, - STATE(6243), 3, + STATE(7018), 1, + sym_subprogram_end, + STATE(6456), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294592] = 6, + [304420] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5401), 1, + ACTIONS(1539), 1, anon_sym_LPAREN, - STATE(4875), 1, + STATE(984), 1, sym_parenthesis_group, - STATE(6244), 3, + STATE(6457), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294613] = 6, + [304441] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8258), 1, + ACTIONS(8358), 1, anon_sym_LPAREN, - STATE(984), 1, + STATE(4806), 1, sym_association_list, - STATE(6245), 3, + STATE(6458), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294634] = 6, + [304462] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8260), 1, - anon_sym_LPAREN, - STATE(936), 1, - sym_association_list, - STATE(6246), 3, + ACTIONS(8360), 2, + sym_based_integer, + sym_based_float, + STATE(6459), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294655] = 6, + [304481] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8262), 1, + ACTIONS(8362), 1, anon_sym_LPAREN, - STATE(1724), 1, + STATE(1754), 1, sym_association_list, - STATE(6247), 3, + STATE(6460), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294676] = 6, + [304502] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5085), 1, + ACTIONS(5047), 1, anon_sym_LPAREN, - STATE(4641), 1, + STATE(4875), 1, sym_parenthesis_group, - STATE(6248), 3, + STATE(6461), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294697] = 6, + [304523] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5191), 1, - anon_sym_LPAREN, - STATE(4530), 1, - sym_parenthesis_group, - STATE(6249), 3, + ACTIONS(8086), 1, + sym_END, + STATE(7033), 1, + sym_end_process, + STATE(6462), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294718] = 6, + [304544] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, + ACTIONS(8344), 1, sym_END, - STATE(6806), 1, - sym_end_block, - STATE(6250), 3, + STATE(7036), 1, + sym_end_package, + STATE(6463), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294739] = 6, + [304565] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8174), 1, - sym_END, - STATE(6813), 1, - sym_end_view, - STATE(6251), 3, + ACTIONS(8364), 1, + anon_sym_SEMI, + ACTIONS(8366), 1, + sym_IS, + STATE(6464), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294760] = 6, + [304586] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(6822), 1, - sym_end_process, - STATE(6252), 3, + ACTIONS(8368), 1, + anon_sym_LPAREN, + STATE(958), 1, + sym_association_list, + STATE(6465), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294781] = 6, + [304607] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5085), 1, + ACTIONS(5047), 1, anon_sym_LPAREN, - STATE(4633), 1, + STATE(4858), 1, sym_parenthesis_group, - STATE(6253), 3, + STATE(6466), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294802] = 6, + [304628] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(6831), 1, - sym_end_generate, - STATE(6254), 3, + ACTIONS(4943), 1, + anon_sym_LPAREN, + STATE(4726), 1, + sym_parenthesis_group, + STATE(6467), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294823] = 6, + [304649] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(6833), 1, - sym_end_generate, - STATE(6255), 3, + ACTIONS(8160), 1, + sym_IS, + STATE(6605), 1, + sym_package_definition_body, + STATE(6468), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294844] = 6, + [304670] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, + ACTIONS(8086), 1, sym_END, - STATE(6834), 1, - sym_end_block, - STATE(6256), 3, + STATE(7050), 1, + sym_end_process, + STATE(6469), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294865] = 6, + [304691] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6769), 1, + ACTIONS(8344), 1, sym_END, - STATE(7561), 1, - sym_end_entity, - STATE(6257), 3, + STATE(6916), 1, + sym_end_package, + STATE(6470), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294886] = 5, + [304712] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7607), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(6258), 3, + ACTIONS(8086), 1, + sym_END, + STATE(6914), 1, + sym_end_process, + STATE(6471), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294905] = 5, + [304733] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8264), 2, - anon_sym_SEMI, - sym_variable_assignment, - STATE(6259), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6477), 1, + sym_sequential_block, + STATE(6472), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294924] = 6, + [304754] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7870), 1, - anon_sym_LPAREN, - STATE(7548), 1, - sym_association_list, - STATE(6260), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(30), 1, + sym_signal_assignment, + STATE(6473), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294945] = 5, + [304775] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8266), 2, + ACTIONS(8370), 2, sym_based_integer, sym_based_float, - STATE(6261), 3, + STATE(6474), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294964] = 5, + [304794] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8268), 2, + ACTIONS(6228), 2, sym_IS, anon_sym_SEMI, - STATE(6262), 3, + STATE(6475), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [294983] = 6, + [304813] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5191), 1, - anon_sym_LPAREN, - STATE(4511), 1, - sym_parenthesis_group, - STATE(6263), 3, + ACTIONS(8086), 1, + sym_END, + STATE(7073), 1, + sym_end_process, + STATE(6476), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295004] = 6, + [304834] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(8086), 1, sym_END, - STATE(6766), 1, + STATE(7678), 1, sym_end_process, - STATE(6264), 3, + STATE(6477), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295025] = 6, + [304855] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8250), 1, - sym_END, - STATE(6852), 1, - sym_end_package_body, - STATE(6265), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(5681), 1, + sym_select_target, + STATE(6478), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295046] = 6, + [304876] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8270), 1, + ACTIONS(8372), 1, anon_sym_LPAREN, - STATE(1739), 1, + STATE(1691), 1, sym_association_list, - STATE(6266), 3, + STATE(6479), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295067] = 6, + [304897] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4369), 1, + ACTIONS(4311), 1, anon_sym_LPAREN, - STATE(4358), 1, + STATE(4532), 1, sym_parenthesis_group, - STATE(6267), 3, + STATE(6480), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295088] = 6, + [304918] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, + ACTIONS(5815), 1, sym_END, - STATE(6858), 1, - sym_end_generate, - STATE(6268), 3, - sym__tool_directive, - sym_line_comment, - sym_block_comment, - [295109] = 6, - ACTIONS(3), 1, - sym__grave_accent, - ACTIONS(5), 1, - sym__line_comment_start, - ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - STATE(6860), 1, - sym_port_map_aspect, - STATE(6269), 3, + STATE(7078), 1, + sym_end_if, + STATE(6481), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295130] = 6, + [304939] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, + ACTIONS(8098), 1, sym_END, - STATE(6859), 1, - sym_end_generate, - STATE(6270), 3, + STATE(7081), 1, + sym_end_block, + STATE(6482), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295151] = 6, + [304960] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, - sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(6862), 1, - sym_end_block, - STATE(6271), 3, + sym__block_comment_start, + ACTIONS(8194), 1, + sym_IS, + STATE(6601), 1, + sym_case_body, + STATE(6483), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295172] = 6, + [304981] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4369), 1, + ACTIONS(4943), 1, anon_sym_LPAREN, - STATE(4362), 1, + STATE(4684), 1, sym_parenthesis_group, - STATE(6272), 3, + STATE(6484), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295193] = 6, + [305002] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8244), 1, - sym_END, - STATE(6867), 1, - sym_subprogram_end, - STATE(6273), 3, + ACTIONS(4311), 1, + anon_sym_LPAREN, + STATE(4537), 1, + sym_parenthesis_group, + STATE(6485), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295214] = 6, + [305023] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(6881), 1, - sym_end_process, - STATE(6274), 3, + ACTIONS(271), 1, + sym_LOOP, + STATE(6564), 1, + sym_loop_body, + STATE(6486), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295235] = 6, + [305044] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8198), 1, + ACTIONS(8190), 1, sym_END, - STATE(6885), 1, - sym_end_package, - STATE(6275), 3, + STATE(6767), 1, + sym_end_loop, + STATE(6487), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295256] = 6, + [305065] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(6912), 1, - sym_end_process, - STATE(6276), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(5647), 1, + sym_select_target, + STATE(6488), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295277] = 5, + [305086] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8272), 2, - sym_IS, - anon_sym_SEMI, - STATE(6277), 3, + ACTIONS(8098), 1, + sym_END, + STATE(7094), 1, + sym_end_block, + STATE(6489), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295296] = 6, + [305107] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3814), 1, - anon_sym_LPAREN, - STATE(3225), 1, - sym_parenthesis_group, - STATE(6278), 3, + ACTIONS(7948), 1, + sym_END, + STATE(7100), 1, + sym_end_view, + STATE(6490), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295317] = 6, + [305128] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, + ACTIONS(8190), 1, sym_END, - STATE(7889), 1, + STATE(7106), 1, sym_end_loop, - STATE(6279), 3, + STATE(6491), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295338] = 5, + [305149] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8274), 2, - sym_based_integer, - sym_based_float, - STATE(6280), 3, + ACTIONS(8192), 1, + sym_END, + STATE(7107), 1, + sym_end_case, + STATE(6492), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295357] = 6, + [305170] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4146), 1, - anon_sym_LPAREN, - STATE(4224), 1, - sym_parenthesis_group, - STATE(6281), 3, + ACTIONS(8374), 1, + sym_POSTPONED, + ACTIONS(8376), 1, + sym_PROCESS, + STATE(6493), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295378] = 6, + [305191] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(5815), 1, sym_END, - STATE(6959), 1, - sym_end_process, - STATE(6282), 3, + STATE(7122), 1, + sym_end_if, + STATE(6494), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295399] = 6, + [305212] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3814), 1, + ACTIONS(2314), 1, anon_sym_LPAREN, - STATE(3228), 1, + STATE(1752), 1, sym_parenthesis_group, - STATE(6283), 3, + STATE(6495), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295420] = 5, + [305233] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8276), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(6284), 3, + ACTIONS(8098), 1, + sym_END, + STATE(7127), 1, + sym_end_block, + STATE(6496), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295439] = 6, + [305254] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8278), 1, - anon_sym_LPAREN, - STATE(4576), 1, - sym_association_list, - STATE(6285), 3, + ACTIONS(8086), 1, + sym_END, + STATE(7132), 1, + sym_end_process, + STATE(6497), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295460] = 6, + [305275] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1803), 1, + ACTIONS(8378), 1, anon_sym_LPAREN, - STATE(1284), 1, - sym_parenthesis_group, - STATE(6286), 3, + STATE(4789), 1, + sym_association_list, + STATE(6498), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295481] = 6, + [305296] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8280), 1, - anon_sym_SEMI, - ACTIONS(8282), 1, - sym_IS, - STATE(6287), 3, + ACTIONS(1789), 1, + anon_sym_LPAREN, + STATE(1279), 1, + sym_parenthesis_group, + STATE(6499), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295502] = 6, + [305317] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8284), 1, - anon_sym_LPAREN, - STATE(1644), 1, - sym_association_list, - STATE(6288), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7149), 1, + sym_end_generate, + STATE(6500), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295523] = 6, + [305338] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, + ACTIONS(5771), 1, sym_END, - STATE(6969), 1, - sym_end_if, - STATE(6289), 3, + STATE(7151), 1, + sym_end_generate, + STATE(6501), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295544] = 6, + [305359] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, + ACTIONS(8098), 1, sym_END, - STATE(6971), 1, + STATE(7152), 1, sym_end_block, - STATE(6290), 3, + STATE(6502), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295565] = 6, + [305380] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1803), 1, + ACTIONS(2314), 1, anon_sym_LPAREN, - STATE(1296), 1, + STATE(1842), 1, sym_parenthesis_group, - STATE(6291), 3, + STATE(6503), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295586] = 6, + [305401] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8286), 1, - sym_END, - STATE(7887), 1, - sym_end_case, - STATE(6292), 3, + ACTIONS(1789), 1, + anon_sym_LPAREN, + STATE(1276), 1, + sym_parenthesis_group, + STATE(6504), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295607] = 6, + [305422] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(6985), 1, - sym_end_block, - STATE(6293), 3, + ACTIONS(8380), 1, + sym_ELSE, + STATE(5465), 1, + sym_else_expression, + STATE(6505), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295628] = 6, + [305443] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8288), 1, - anon_sym_LPAREN, - STATE(4555), 1, - sym_association_list, - STATE(6294), 3, + ACTIONS(8190), 1, + sym_END, + STATE(7168), 1, + sym_end_loop, + STATE(6506), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295649] = 6, + [305464] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8174), 1, + ACTIONS(5815), 1, sym_END, - STATE(6990), 1, - sym_end_view, - STATE(6295), 3, + STATE(7173), 1, + sym_end_if, + STATE(6507), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295670] = 6, + [305485] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1611), 1, + ACTIONS(8382), 1, anon_sym_LPAREN, - STATE(1090), 1, - sym_parenthesis_group, - STATE(6296), 3, + STATE(3757), 1, + sym_association_list, + STATE(6508), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295691] = 5, + [305506] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7365), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6297), 3, + ACTIONS(8192), 1, + sym_END, + STATE(7175), 1, + sym_end_case, + STATE(6509), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295710] = 6, + [305527] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, + ACTIONS(8098), 1, sym_END, - STATE(6999), 1, - sym_end_loop, - STATE(6298), 3, + STATE(7180), 1, + sym_end_block, + STATE(6510), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295731] = 5, + [305548] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8290), 2, - sym_based_integer, - sym_based_float, - STATE(6299), 3, + ACTIONS(8384), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(6511), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295750] = 6, + [305567] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8286), 1, + ACTIONS(8086), 1, sym_END, - STATE(7002), 1, - sym_end_case, - STATE(6300), 3, + STATE(7187), 1, + sym_end_process, + STATE(6512), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295771] = 6, + [305588] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8250), 1, + ACTIONS(8350), 1, sym_END, - STATE(6544), 1, + STATE(7188), 1, sym_end_package_body, - STATE(6301), 3, + STATE(6513), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295792] = 6, + [305609] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, - sym_END, - STATE(7021), 1, - sym_end_if, - STATE(6302), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6311), 1, + sym_sequential_block, + STATE(6514), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [305630] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(271), 1, + sym_LOOP, + STATE(6255), 1, + sym_loop_body, + STATE(6515), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295813] = 6, + [305651] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, + ACTIONS(5771), 1, sym_END, - STATE(7026), 1, - sym_end_block, - STATE(6303), 3, + STATE(7197), 1, + sym_end_generate, + STATE(6516), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295834] = 6, + [305672] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8292), 1, + ACTIONS(8386), 1, anon_sym_LPAREN, - STATE(1427), 1, + STATE(1534), 1, sym_association_list, - STATE(6304), 3, + STATE(6517), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295855] = 6, + [305693] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1599), 1, + ACTIONS(1659), 1, anon_sym_LPAREN, - STATE(1052), 1, + STATE(1113), 1, sym_parenthesis_group, - STATE(6305), 3, + STATE(6518), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295876] = 6, + [305714] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7033), 1, - sym_end_process, - STATE(6306), 3, + ACTIONS(1755), 1, + sym_PORT, + STATE(7191), 1, + sym_port_map_aspect, + STATE(6519), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295897] = 6, + [305735] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(7055), 1, - sym_end_generate, - STATE(6307), 3, + ACTIONS(8388), 2, + sym_based_integer, + sym_based_float, + STATE(6520), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295918] = 6, + [305754] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(6488), 1, - sym_end_process, - STATE(6308), 3, + ACTIONS(8194), 1, + sym_IS, + STATE(6258), 1, + sym_case_body, + STATE(6521), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295939] = 6, + [305775] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, + ACTIONS(5771), 1, sym_END, - STATE(7056), 1, + STATE(7199), 1, sym_end_generate, - STATE(6309), 3, + STATE(6522), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295960] = 6, + [305796] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1599), 1, + ACTIONS(1659), 1, anon_sym_LPAREN, - STATE(1057), 1, + STATE(1115), 1, sym_parenthesis_group, - STATE(6310), 3, + STATE(6523), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [295981] = 6, + [305817] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, + ACTIONS(8098), 1, sym_END, - STATE(7057), 1, + STATE(7201), 1, sym_end_block, - STATE(6311), 3, + STATE(6524), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296002] = 6, + [305838] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6416), 1, - sym_sequential_block, - STATE(6312), 3, + ACTIONS(8352), 1, + sym_END, + STATE(7203), 1, + sym_subprogram_end, + STATE(6525), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296023] = 5, + [305859] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8294), 2, - sym_IS, - anon_sym_SEMI, - STATE(6313), 3, + ACTIONS(8390), 2, + sym_based_integer, + sym_based_float, + STATE(6526), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296042] = 6, + [305878] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(6461), 1, - sym_end_block, - STATE(6314), 3, + ACTIONS(8392), 2, + sym_IS, + anon_sym_SEMI, + STATE(6527), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296063] = 6, + [305897] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(6426), 1, - sym_sequential_block, - STATE(6315), 3, + ACTIONS(8394), 1, + anon_sym_SEMI, + ACTIONS(8396), 1, + sym_IS, + STATE(6528), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296084] = 6, + [305918] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1539), 1, - anon_sym_LPAREN, - STATE(960), 1, - sym_parenthesis_group, - STATE(6316), 3, + ACTIONS(8190), 1, + sym_END, + STATE(7224), 1, + sym_end_loop, + STATE(6529), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296105] = 6, + [305939] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1611), 1, - anon_sym_LPAREN, - STATE(1096), 1, - sym_parenthesis_group, - STATE(6317), 3, + ACTIONS(8086), 1, + sym_END, + STATE(7237), 1, + sym_end_process, + STATE(6530), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296126] = 6, + [305960] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, + ACTIONS(8344), 1, sym_END, - STATE(7080), 1, - sym_end_loop, - STATE(6318), 3, + STATE(7239), 1, + sym_end_package, + STATE(6531), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296147] = 6, + [305981] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, - sym_END, - STATE(7081), 1, - sym_end_if, - STATE(6319), 3, + ACTIONS(8398), 1, + anon_sym_LPAREN, + STATE(4792), 1, + sym_association_list, + STATE(6532), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296168] = 6, + [306002] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1539), 1, + ACTIONS(1683), 1, anon_sym_LPAREN, - STATE(952), 1, + STATE(1096), 1, sym_parenthesis_group, - STATE(6320), 3, + STATE(6533), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296189] = 6, + [306023] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8296), 1, - anon_sym_LPAREN, - STATE(4669), 1, - sym_association_list, - STATE(6321), 3, + ACTIONS(5654), 1, + sym_END, + STATE(7248), 1, + sym_end_component, + STATE(6534), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296210] = 6, + [306044] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8286), 1, + ACTIONS(8086), 1, sym_END, - STATE(7086), 1, - sym_end_case, - STATE(6322), 3, + STATE(7264), 1, + sym_end_process, + STATE(6535), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296231] = 6, + [306065] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8298), 1, + ACTIONS(8400), 1, anon_sym_LPAREN, - STATE(4538), 1, + STATE(4657), 1, sym_association_list, - STATE(6323), 3, + STATE(6536), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296252] = 6, + [306086] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -285797,72 +294550,72 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(1713), 1, anon_sym_LPAREN, - STATE(1116), 1, + STATE(1160), 1, sym_parenthesis_group, - STATE(6324), 3, + STATE(6537), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296273] = 6, + [306107] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7093), 1, - sym_end_block, - STATE(6325), 3, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(1101), 1, + sym_parenthesis_group, + STATE(6538), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296294] = 5, + [306128] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3236), 2, - sym_WHEN, - anon_sym_SEMI, - STATE(6326), 3, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(4855), 1, + sym_parenthesis_group, + STATE(6539), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296313] = 6, + [306149] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7101), 1, - sym_end_process, - STATE(6327), 3, + ACTIONS(8402), 2, + anon_sym_LT_EQ, + sym_variable_assignment, + STATE(6540), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296334] = 6, + [306168] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8250), 1, - sym_END, - STATE(7103), 1, - sym_end_package_body, - STATE(6328), 3, + ACTIONS(8404), 1, + anon_sym_LPAREN, + STATE(4358), 1, + sym_association_list, + STATE(6541), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296355] = 6, + [306189] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, @@ -285871,36745 +294624,37161 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment_start, ACTIONS(1713), 1, anon_sym_LPAREN, - STATE(1108), 1, + STATE(1154), 1, sym_parenthesis_group, - STATE(6329), 3, + STATE(6542), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296376] = 6, + [306210] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(7115), 1, - sym_end_generate, - STATE(6330), 3, + ACTIONS(4186), 1, + anon_sym_LPAREN, + STATE(4359), 1, + sym_parenthesis_group, + STATE(6543), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296397] = 6, + [306231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - STATE(7117), 1, - sym_port_map_aspect, - STATE(6331), 3, + ACTIONS(8406), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6544), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296418] = 6, + [306250] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, + ACTIONS(8086), 1, sym_END, - STATE(7116), 1, - sym_end_generate, - STATE(6332), 3, + STATE(7312), 1, + sym_end_process, + STATE(6545), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296439] = 6, + [306271] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7122), 1, - sym_end_block, - STATE(6333), 3, + ACTIONS(8408), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6546), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296460] = 6, + [306290] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8244), 1, + ACTIONS(5815), 1, sym_END, - STATE(7124), 1, - sym_subprogram_end, - STATE(6334), 3, + STATE(7322), 1, + sym_end_if, + STATE(6547), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296481] = 5, + [306311] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8300), 2, - sym_based_integer, - sym_based_float, - STATE(6335), 3, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(4739), 1, + sym_parenthesis_group, + STATE(6548), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296500] = 6, + [306332] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, + ACTIONS(8098), 1, sym_END, - STATE(7149), 1, - sym_end_loop, - STATE(6336), 3, + STATE(7324), 1, + sym_end_block, + STATE(6549), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296521] = 6, + [306353] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7164), 1, - sym_end_process, - STATE(6337), 3, + ACTIONS(8410), 1, + anon_sym_LPAREN, + STATE(1919), 1, + sym_association_list, + STATE(6550), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296542] = 6, + [306374] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8198), 1, + ACTIONS(8098), 1, sym_END, - STATE(7167), 1, - sym_end_package, - STATE(6338), 3, + STATE(7345), 1, + sym_end_block, + STATE(6551), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296563] = 6, + [306395] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2896), 1, - sym_BEGIN, - STATE(5956), 1, - sym_sequential_block, - STATE(6339), 3, + ACTIONS(7948), 1, + sym_END, + STATE(7347), 1, + sym_end_view, + STATE(6552), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296584] = 6, + [306416] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8286), 1, + ACTIONS(8098), 1, sym_END, - STATE(6512), 1, - sym_end_case, - STATE(6340), 3, + STATE(7694), 1, + sym_end_block, + STATE(6553), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296605] = 5, + [306437] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8302), 2, + ACTIONS(8412), 2, sym_based_integer, sym_based_float, - STATE(6341), 3, + STATE(6554), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296624] = 6, + [306456] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8304), 1, + ACTIONS(8414), 1, anon_sym_LPAREN, - STATE(4336), 1, + STATE(4454), 1, sym_association_list, - STATE(6342), 3, + STATE(6555), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296645] = 6, + [306477] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1827), 1, + ACTIONS(1839), 1, anon_sym_LPAREN, - STATE(1344), 1, + STATE(1288), 1, sym_parenthesis_group, - STATE(6343), 3, + STATE(6556), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296666] = 6, + [306498] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5637), 1, + ACTIONS(8190), 1, sym_END, - STATE(7173), 1, - sym_end_component, - STATE(6344), 3, + STATE(7356), 1, + sym_end_loop, + STATE(6557), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296687] = 6, + [306519] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(8192), 1, sym_END, - STATE(7191), 1, - sym_end_process, - STATE(6345), 3, + STATE(7357), 1, + sym_end_case, + STATE(6558), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296708] = 6, + [306540] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8306), 1, - anon_sym_LPAREN, - STATE(993), 1, - sym_association_list, - STATE(6346), 3, + ACTIONS(8352), 1, + sym_END, + STATE(7547), 1, + sym_subprogram_end, + STATE(6559), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296729] = 6, + [306561] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, - sym_END, - STATE(6547), 1, - sym_end_if, - STATE(6347), 3, + ACTIONS(6800), 2, + sym_WHEN, + anon_sym_SEMI, + STATE(6560), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296750] = 6, + [306580] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1827), 1, + ACTIONS(1839), 1, anon_sym_LPAREN, - STATE(1341), 1, + STATE(1271), 1, sym_parenthesis_group, - STATE(6348), 3, + STATE(6561), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296771] = 6, + [306601] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4901), 1, - anon_sym_LPAREN, - STATE(4631), 1, - sym_parenthesis_group, - STATE(6349), 3, + ACTIONS(5815), 1, + sym_END, + STATE(7368), 1, + sym_end_if, + STATE(6562), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296792] = 6, + [306622] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, + ACTIONS(8098), 1, sym_END, - STATE(6607), 1, - sym_end_loop, - STATE(6350), 3, + STATE(7370), 1, + sym_end_block, + STATE(6563), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296813] = 6, + [306643] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4901), 1, - anon_sym_LPAREN, - STATE(4568), 1, - sym_parenthesis_group, - STATE(6351), 3, + ACTIONS(8190), 1, + sym_END, + STATE(7747), 1, + sym_end_loop, + STATE(6564), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296834] = 6, + [306664] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2322), 1, - anon_sym_LPAREN, - STATE(1688), 1, - sym_parenthesis_group, - STATE(6352), 3, + ACTIONS(2902), 1, + sym_BEGIN, + STATE(6299), 1, + sym_sequential_block, + STATE(6565), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296855] = 6, + [306685] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(8086), 1, sym_END, - STATE(7241), 1, + STATE(7377), 1, sym_end_process, - STATE(6353), 3, + STATE(6566), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296876] = 6, + [306706] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8106), 1, - sym_IS, - STATE(6292), 1, - sym_case_body, - STATE(6354), 3, + ACTIONS(8416), 1, + anon_sym_LPAREN, + STATE(1047), 1, + sym_association_list, + STATE(6567), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296897] = 6, + [306727] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, + ACTIONS(8098), 1, sym_END, - STATE(7251), 1, - sym_end_if, - STATE(6355), 3, + STATE(7554), 1, + sym_end_block, + STATE(6568), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296918] = 6, + [306748] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7255), 1, - sym_end_block, - STATE(6356), 3, + ACTIONS(4915), 1, + anon_sym_LPAREN, + STATE(4687), 1, + sym_parenthesis_group, + STATE(6569), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296939] = 6, + [306769] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(271), 1, - sym_LOOP, - STATE(6279), 1, - sym_loop_body, - STATE(6357), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7391), 1, + sym_end_generate, + STATE(6570), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296960] = 6, + [306790] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2322), 1, - anon_sym_LPAREN, - STATE(1701), 1, - sym_parenthesis_group, - STATE(6358), 3, + ACTIONS(1086), 1, + sym_BEGIN, + STATE(6359), 1, + sym_concurrent_block, + STATE(6571), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [296981] = 6, + [306811] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8308), 1, - anon_sym_LPAREN, - STATE(3662), 1, - sym_association_list, - STATE(6359), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7392), 1, + sym_end_generate, + STATE(6572), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297002] = 6, + [306832] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8016), 1, - sym_SELECT, - STATE(5648), 1, - sym_select_target, - STATE(6360), 3, + ACTIONS(8098), 1, + sym_END, + STATE(7393), 1, + sym_end_block, + STATE(6573), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297023] = 6, + [306853] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8310), 1, + ACTIONS(8418), 1, anon_sym_LPAREN, - STATE(1328), 1, + STATE(1244), 1, sym_association_list, - STATE(6361), 3, + STATE(6574), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297044] = 6, + [306874] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4405), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - STATE(4486), 1, + STATE(4650), 1, sym_parenthesis_group, - STATE(6362), 3, + STATE(6575), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297065] = 6, + [306895] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7282), 1, - sym_end_block, - STATE(6363), 3, + ACTIONS(4915), 1, + anon_sym_LPAREN, + STATE(4707), 1, + sym_parenthesis_group, + STATE(6576), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297086] = 6, + [306916] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8174), 1, + ACTIONS(8190), 1, sym_END, - STATE(7284), 1, - sym_end_view, - STATE(6364), 3, + STATE(7412), 1, + sym_end_loop, + STATE(6577), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297107] = 6, + [306937] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, + ACTIONS(5815), 1, sym_END, - STATE(7872), 1, + STATE(7414), 1, sym_end_if, - STATE(6365), 3, + STATE(6578), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297128] = 6, + [306958] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, + ACTIONS(8192), 1, sym_END, - STATE(7291), 1, - sym_end_loop, - STATE(6366), 3, + STATE(7415), 1, + sym_end_case, + STATE(6579), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297149] = 6, + [306979] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4405), 1, + ACTIONS(4769), 1, anon_sym_LPAREN, - STATE(4488), 1, + STATE(4628), 1, sym_parenthesis_group, - STATE(6367), 3, + STATE(6580), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297170] = 5, + [307000] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8312), 2, - sym_based_integer, - sym_based_float, - STATE(6368), 3, + ACTIONS(8098), 1, + sym_END, + STATE(7422), 1, + sym_end_block, + STATE(6581), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297189] = 6, + [307021] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8286), 1, - sym_END, - STATE(7235), 1, - sym_end_case, - STATE(6369), 3, + ACTIONS(8100), 1, + sym_SELECT, + STATE(6355), 1, + sym_select_target, + STATE(6582), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297210] = 6, + [307042] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, + ACTIONS(8086), 1, sym_END, - STATE(7304), 1, - sym_end_if, - STATE(6370), 3, + STATE(7425), 1, + sym_end_process, + STATE(6583), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297231] = 6, + [307063] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7306), 1, - sym_end_block, - STATE(6371), 3, + ACTIONS(4142), 1, + anon_sym_LPAREN, + STATE(3716), 1, + sym_parenthesis_group, + STATE(6584), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297252] = 6, + [307084] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8314), 1, - anon_sym_LPAREN, - STATE(4684), 1, - sym_association_list, - STATE(6372), 3, + ACTIONS(8350), 1, + sym_END, + STATE(7426), 1, + sym_end_package_body, + STATE(6585), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297273] = 6, + [307105] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1791), 1, - anon_sym_LPAREN, - STATE(1356), 1, - sym_parenthesis_group, - STATE(6373), 3, + ACTIONS(5840), 1, + anon_sym_LT_EQ, + ACTIONS(8420), 1, + anon_sym_SEMI, + STATE(6586), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297294] = 6, + [307126] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7312), 1, - sym_end_process, - STATE(6374), 3, + ACTIONS(8168), 1, + anon_sym_LT_EQ, + STATE(111), 1, + sym_signal_assignment, + STATE(6587), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297315] = 5, + [307147] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8316), 2, - sym_based_integer, - sym_based_float, - STATE(6375), 3, + ACTIONS(8052), 1, + sym_BEGIN, + STATE(6389), 1, + sym_generate_block, + STATE(6588), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297334] = 6, + [307168] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(7329), 1, - sym_end_generate, - STATE(6376), 3, + ACTIONS(8052), 1, + sym_BEGIN, + STATE(6353), 1, + sym_generate_block, + STATE(6589), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297355] = 6, + [307189] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(7332), 1, - sym_end_generate, - STATE(6377), 3, + ACTIONS(4142), 1, + anon_sym_LPAREN, + STATE(3729), 1, + sym_parenthesis_group, + STATE(6590), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297376] = 6, + [307210] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7335), 1, - sym_end_block, - STATE(6378), 3, + ACTIONS(8040), 1, + anon_sym_LPAREN, + STATE(5947), 1, + sym_association_list, + STATE(6591), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297397] = 6, + [307231] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1791), 1, - anon_sym_LPAREN, - STATE(1368), 1, - sym_parenthesis_group, - STATE(6379), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7441), 1, + sym_end_generate, + STATE(6592), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297418] = 6, + [307252] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8318), 1, + ACTIONS(8422), 1, anon_sym_LPAREN, - STATE(1046), 1, + STATE(1010), 1, sym_association_list, - STATE(6380), 3, + STATE(6593), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297439] = 6, + [307273] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4359), 1, + ACTIONS(4393), 1, anon_sym_LPAREN, - STATE(4369), 1, + STATE(4482), 1, sym_parenthesis_group, - STATE(6381), 3, + STATE(6594), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297460] = 6, + [307294] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8320), 1, - anon_sym_SEMI, - ACTIONS(8322), 1, - sym_UNITS, - STATE(6382), 3, + ACTIONS(1755), 1, + sym_PORT, + STATE(7444), 1, + sym_port_map_aspect, + STATE(6595), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297481] = 6, + [307315] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8090), 1, - sym_IS, - STATE(6156), 1, - sym_mode_view_body, - STATE(6383), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7443), 1, + sym_end_generate, + STATE(6596), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297502] = 5, + [307336] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6832), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6384), 3, + ACTIONS(8098), 1, + sym_END, + STATE(7447), 1, + sym_end_block, + STATE(6597), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297521] = 5, + [307357] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8324), 2, - anon_sym_LT_EQ, - sym_variable_assignment, - STATE(6385), 3, + ACTIONS(8352), 1, + sym_END, + STATE(7448), 1, + sym_subprogram_end, + STATE(6598), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297540] = 6, + [307378] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4359), 1, + ACTIONS(4393), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(4485), 1, sym_parenthesis_group, - STATE(6386), 3, + STATE(6599), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297561] = 6, + [307399] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, + ACTIONS(5815), 1, sym_END, - STATE(7360), 1, - sym_end_loop, - STATE(6387), 3, + STATE(7740), 1, + sym_end_if, + STATE(6600), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297582] = 6, + [307420] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5719), 1, + ACTIONS(8192), 1, sym_END, - STATE(7361), 1, - sym_end_if, - STATE(6388), 3, + STATE(7723), 1, + sym_end_case, + STATE(6601), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297603] = 6, + [307441] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8286), 1, + ACTIONS(8190), 1, sym_END, - STATE(7362), 1, - sym_end_case, - STATE(6389), 3, + STATE(7460), 1, + sym_end_loop, + STATE(6602), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297624] = 6, + [307462] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7371), 1, - sym_end_block, - STATE(6390), 3, + ACTIONS(8424), 2, + sym_based_integer, + sym_based_float, + STATE(6603), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297645] = 5, + [307481] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8326), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6391), 3, + ACTIONS(8086), 1, + sym_END, + STATE(7476), 1, + sym_end_process, + STATE(6604), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297664] = 6, + [307502] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, + ACTIONS(8350), 1, sym_END, - STATE(7377), 1, - sym_end_process, - STATE(6392), 3, + STATE(7664), 1, + sym_end_package_body, + STATE(6605), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297685] = 6, + [307523] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8250), 1, + ACTIONS(8344), 1, sym_END, - STATE(7378), 1, - sym_end_package_body, - STATE(6393), 3, + STATE(7477), 1, + sym_end_package, + STATE(6606), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297706] = 6, + [307544] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5137), 1, - anon_sym_LPAREN, - STATE(4702), 1, - sym_parenthesis_group, - STATE(6394), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7566), 1, + sym_end_generate, + STATE(6607), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297727] = 5, + [307565] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8328), 2, - sym_based_integer, - sym_based_float, - STATE(6395), 3, + ACTIONS(5654), 1, + sym_END, + STATE(6627), 1, + sym_end_component, + STATE(6608), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297746] = 6, + [307586] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8330), 1, + ACTIONS(8426), 1, anon_sym_LPAREN, - STATE(1185), 1, + STATE(1205), 1, sym_association_list, - STATE(6396), 3, + STATE(6609), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297767] = 5, + [307607] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8332), 2, - sym_END, - sym_WHEN, - STATE(6397), 3, + ACTIONS(8428), 2, + sym_based_integer, + sym_based_float, + STATE(6610), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297786] = 6, + [307626] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7964), 1, - sym_BEGIN, - STATE(6137), 1, - sym_generate_block, - STATE(6398), 3, + ACTIONS(8430), 1, + anon_sym_LPAREN, + STATE(4851), 1, + sym_association_list, + STATE(6611), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297807] = 6, + [307647] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, - sym_END, - STATE(7396), 1, - sym_end_generate, - STATE(6399), 3, + ACTIONS(3282), 2, + sym_WHEN, + anon_sym_SEMI, + STATE(6612), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297828] = 6, + [307666] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5137), 1, + ACTIONS(1777), 1, anon_sym_LPAREN, - STATE(4560), 1, + STATE(1410), 1, sym_parenthesis_group, - STATE(6400), 3, + STATE(6613), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297849] = 6, + [307687] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(1757), 1, - sym_PORT, - STATE(7403), 1, - sym_port_map_aspect, - STATE(6401), 3, + ACTIONS(1777), 1, + anon_sym_LPAREN, + STATE(1404), 1, + sym_parenthesis_group, + STATE(6614), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297870] = 6, + [307708] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8334), 1, - anon_sym_LPAREN, - STATE(2015), 1, - sym_association_list, - STATE(6402), 3, + ACTIONS(8432), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6615), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297891] = 6, + [307727] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5677), 1, + ACTIONS(8086), 1, sym_END, - STATE(7398), 1, - sym_end_generate, - STATE(6403), 3, + STATE(7511), 1, + sym_end_process, + STATE(6616), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297912] = 6, + [307748] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7406), 1, - sym_end_block, - STATE(6404), 3, + ACTIONS(1755), 1, + sym_PORT, + STATE(7564), 1, + sym_port_map_aspect, + STATE(6617), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297933] = 6, + [307769] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8244), 1, - sym_END, - STATE(7408), 1, - sym_subprogram_end, - STATE(6405), 3, + ACTIONS(8434), 1, + anon_sym_LPAREN, + STATE(1346), 1, + sym_association_list, + STATE(6618), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297954] = 6, + [307790] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8336), 1, + ACTIONS(8436), 1, anon_sym_LPAREN, - STATE(1314), 1, + STATE(1250), 1, sym_association_list, - STATE(6406), 3, + STATE(6619), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297975] = 6, + [307811] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8338), 1, + ACTIONS(8438), 1, anon_sym_LPAREN, - STATE(1380), 1, + STATE(5985), 1, sym_association_list, - STATE(6407), 3, + STATE(6620), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [297996] = 6, + [307832] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2440), 1, - anon_sym_LPAREN, - STATE(2047), 1, - sym_parenthesis_group, - STATE(6408), 3, + ACTIONS(5771), 1, + sym_END, + STATE(7568), 1, + sym_end_generate, + STATE(6621), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298017] = 6, + [307853] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2440), 1, + ACTIONS(8440), 1, anon_sym_LPAREN, - STATE(2043), 1, - sym_parenthesis_group, - STATE(6409), 3, + STATE(4519), 1, + sym_association_list, + STATE(6622), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298038] = 6, + [307874] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8340), 1, + ACTIONS(8442), 2, + sym_based_integer, + sym_based_float, + STATE(6623), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [307893] = 6, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(8444), 1, anon_sym_LPAREN, - STATE(1656), 1, + STATE(4569), 1, sym_association_list, - STATE(6410), 3, + STATE(6624), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298059] = 6, + [307914] = 6, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8220), 1, - sym_END, - STATE(7474), 1, - sym_end_loop, - STATE(6411), 3, + ACTIONS(2410), 1, + anon_sym_LPAREN, + STATE(1967), 1, + sym_parenthesis_group, + STATE(6625), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298080] = 5, + [307935] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8342), 2, - sym_based_integer, - sym_based_float, - STATE(6412), 3, + ACTIONS(8446), 1, + anon_sym_RPAREN, + STATE(6626), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298099] = 6, + [307953] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7510), 1, - sym_end_process, - STATE(6413), 3, + ACTIONS(8448), 1, + anon_sym_SEMI, + STATE(6627), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298120] = 6, + [307971] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8198), 1, - sym_END, - STATE(7516), 1, - sym_end_package, - STATE(6414), 3, + ACTIONS(8450), 1, + anon_sym_GT_GT, + STATE(6628), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298141] = 6, + [307989] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8344), 1, - anon_sym_LPAREN, - STATE(5714), 1, - sym_association_list, - STATE(6415), 3, + ACTIONS(8452), 1, + anon_sym_RBRACK, + STATE(6629), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298162] = 6, + [308007] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7868), 1, - sym_end_process, - STATE(6416), 3, + ACTIONS(8454), 1, + anon_sym_GT_GT, + STATE(6630), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298183] = 5, + [308025] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8346), 2, - anon_sym_LT_EQ, - sym_variable_assignment, - STATE(6417), 3, + ACTIONS(8456), 1, + anon_sym_GT_GT, + STATE(6631), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298202] = 6, + [308043] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5637), 1, - sym_END, - STATE(7546), 1, - sym_end_component, - STATE(6418), 3, + ACTIONS(8458), 1, + anon_sym_RBRACK, + STATE(6632), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298223] = 6, + [308061] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8348), 1, - anon_sym_LPAREN, - STATE(4432), 1, - sym_association_list, - STATE(6419), 3, + ACTIONS(8460), 1, + anon_sym_RBRACK, + STATE(6633), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298244] = 5, + [308079] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8350), 2, - sym_based_integer, - sym_based_float, - STATE(6420), 3, + ACTIONS(8462), 1, + anon_sym_RPAREN, + STATE(6634), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298263] = 6, + [308097] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3392), 1, - sym_WHEN, - STATE(6023), 1, - sym_when_element, - STATE(6421), 3, + ACTIONS(8464), 1, + anon_sym_RBRACK, + STATE(6635), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298284] = 6, + [308115] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4102), 1, - anon_sym_LPAREN, - STATE(3709), 1, - sym_parenthesis_group, - STATE(6422), 3, + ACTIONS(8466), 1, + anon_sym_RPAREN, + STATE(6636), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298305] = 6, + [308133] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8352), 1, - anon_sym_LPAREN, - STATE(4367), 1, - sym_association_list, - STATE(6423), 3, + ACTIONS(8468), 1, + anon_sym_RPAREN, + STATE(6637), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298326] = 6, + [308151] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7998), 1, - sym_END, - STATE(7605), 1, - sym_end_process, - STATE(6424), 3, + ACTIONS(8470), 1, + anon_sym_RPAREN, + STATE(6638), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298347] = 6, + [308169] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4102), 1, - anon_sym_LPAREN, - STATE(3717), 1, - sym_parenthesis_group, - STATE(6425), 3, + ACTIONS(8472), 1, + anon_sym_RPAREN, + STATE(6639), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298368] = 6, + [308187] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8012), 1, - sym_END, - STATE(7871), 1, - sym_end_block, - STATE(6426), 3, + ACTIONS(8474), 1, + sym_bit_string_value, + STATE(6640), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298389] = 5, + [308205] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8354), 2, - anon_sym_COMMA, + ACTIONS(8476), 1, anon_sym_RPAREN, - STATE(6427), 3, + STATE(6641), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298408] = 5, + [308223] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8356), 1, + ACTIONS(8478), 1, anon_sym_RPAREN, - STATE(6428), 3, + STATE(6642), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298426] = 5, + [308241] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8358), 1, - anon_sym_SEMI, - STATE(6429), 3, + ACTIONS(8480), 1, + anon_sym_RPAREN, + STATE(6643), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298444] = 5, + [308259] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8360), 1, - anon_sym_RBRACK, - STATE(6430), 3, + ACTIONS(8482), 1, + anon_sym_RPAREN, + STATE(6644), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298462] = 5, + [308277] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8362), 1, - anon_sym_GT_GT, - STATE(6431), 3, + ACTIONS(8484), 1, + anon_sym_RPAREN, + STATE(6645), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298480] = 5, + [308295] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8364), 1, + ACTIONS(8486), 1, anon_sym_RPAREN, - STATE(6432), 3, + STATE(6646), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298498] = 5, + [308313] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8366), 1, + ACTIONS(8488), 1, anon_sym_RPAREN, - STATE(6433), 3, + STATE(6647), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298516] = 5, + [308331] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8368), 1, + ACTIONS(8490), 1, anon_sym_RPAREN, - STATE(6434), 3, + STATE(6648), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298534] = 5, + [308349] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8370), 1, + ACTIONS(8492), 1, anon_sym_RPAREN, - STATE(6435), 3, + STATE(6649), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298552] = 5, + [308367] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8372), 1, + ACTIONS(8494), 1, anon_sym_RPAREN, - STATE(6436), 3, + STATE(6650), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298570] = 5, + [308385] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8374), 1, + ACTIONS(8496), 1, anon_sym_RPAREN, - STATE(6437), 3, + STATE(6651), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298588] = 5, + [308403] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8376), 1, + ACTIONS(8498), 1, anon_sym_RPAREN, - STATE(6438), 3, + STATE(6652), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298606] = 5, + [308421] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8378), 1, + ACTIONS(8500), 1, anon_sym_RPAREN, - STATE(6439), 3, + STATE(6653), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298624] = 5, + [308439] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8380), 1, + ACTIONS(8502), 1, anon_sym_RPAREN, - STATE(6440), 3, + STATE(6654), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298642] = 5, + [308457] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8382), 1, + ACTIONS(8504), 1, anon_sym_RPAREN, - STATE(6441), 3, + STATE(6655), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298660] = 5, + [308475] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8384), 1, + ACTIONS(8506), 1, anon_sym_RPAREN, - STATE(6442), 3, + STATE(6656), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298678] = 5, + [308493] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8386), 1, + ACTIONS(8508), 1, anon_sym_RPAREN, - STATE(6443), 3, + STATE(6657), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298696] = 5, + [308511] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8388), 1, + ACTIONS(8510), 1, anon_sym_RPAREN, - STATE(6444), 3, + STATE(6658), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298714] = 5, + [308529] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8390), 1, + ACTIONS(8512), 1, anon_sym_RPAREN, - STATE(6445), 3, + STATE(6659), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298732] = 5, + [308547] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8392), 1, + ACTIONS(8514), 1, anon_sym_RPAREN, - STATE(6446), 3, + STATE(6660), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298750] = 5, + [308565] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8394), 1, + ACTIONS(8516), 1, anon_sym_RPAREN, - STATE(6447), 3, + STATE(6661), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298768] = 5, + [308583] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8396), 1, + ACTIONS(8518), 1, anon_sym_RPAREN, - STATE(6448), 3, + STATE(6662), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298786] = 5, + [308601] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8398), 1, + ACTIONS(8520), 1, anon_sym_RPAREN, - STATE(6449), 3, + STATE(6663), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298804] = 5, + [308619] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8400), 1, + ACTIONS(8522), 1, anon_sym_RPAREN, - STATE(6450), 3, + STATE(6664), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298822] = 5, + [308637] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8402), 1, + ACTIONS(8524), 1, anon_sym_RPAREN, - STATE(6451), 3, + STATE(6665), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298840] = 5, + [308655] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8404), 1, - anon_sym_RPAREN, - STATE(6452), 3, + ACTIONS(8526), 1, + sym_bit_string_value, + STATE(6666), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298858] = 5, + [308673] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8406), 1, - anon_sym_RPAREN, - STATE(6453), 3, + ACTIONS(5829), 1, + anon_sym_SEMI, + STATE(6667), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298876] = 5, + [308691] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8408), 1, - anon_sym_RPAREN, - STATE(6454), 3, + ACTIONS(8528), 1, + anon_sym_RBRACK, + STATE(6668), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298894] = 5, + [308709] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8410), 1, - anon_sym_RPAREN, - STATE(6455), 3, + ACTIONS(8530), 1, + anon_sym_SEMI, + STATE(6669), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298912] = 5, + [308727] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8412), 1, - anon_sym_RPAREN, - STATE(6456), 3, + ACTIONS(8532), 1, + anon_sym_RBRACK, + STATE(6670), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298930] = 5, + [308745] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8414), 1, - anon_sym_GT_GT, - STATE(6457), 3, + ACTIONS(8534), 1, + sym_bit_string_base, + STATE(6671), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298948] = 5, + [308763] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8416), 1, - anon_sym_GT_GT, - STATE(6458), 3, + ACTIONS(8536), 1, + anon_sym_RPAREN, + STATE(6672), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298966] = 5, + [308781] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8418), 1, - anon_sym_SEMI, - STATE(6459), 3, + ACTIONS(8538), 1, + anon_sym_GT_GT, + STATE(6673), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [298984] = 5, + [308799] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6735), 1, - anon_sym_RBRACK, - STATE(6460), 3, + ACTIONS(8540), 1, + anon_sym_COLON, + STATE(6674), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299002] = 5, + [308817] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8420), 1, - anon_sym_SEMI, - STATE(6461), 3, + ACTIONS(8542), 1, + anon_sym_GT_GT, + STATE(6675), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299020] = 5, + [308835] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8422), 1, - sym_bit_string_base, - STATE(6462), 3, + ACTIONS(8544), 1, + anon_sym_RBRACK, + STATE(6676), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299038] = 5, + [308853] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8424), 1, - anon_sym_RPAREN, - STATE(6463), 3, + ACTIONS(8546), 1, + sym_MAP, + STATE(6677), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299056] = 5, + [308871] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8426), 1, - anon_sym_COLON, - STATE(6464), 3, + ACTIONS(8548), 1, + sym_MAP, + STATE(6678), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299074] = 5, + [308889] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8428), 1, - sym_MAP, - STATE(6465), 3, + ACTIONS(8550), 1, + anon_sym_RBRACK, + STATE(6679), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299092] = 5, + [308907] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8430), 1, - sym_MAP, - STATE(6466), 3, + ACTIONS(8552), 1, + anon_sym_GT_GT, + STATE(6680), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299110] = 5, + [308925] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8432), 1, - anon_sym_GT_GT, - STATE(6467), 3, + ACTIONS(8554), 1, + anon_sym_RBRACK, + STATE(6681), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299128] = 5, + [308943] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8434), 1, - anon_sym_SEMI, - STATE(6468), 3, + ACTIONS(8556), 1, + anon_sym_RBRACK, + STATE(6682), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299146] = 5, + [308961] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8436), 1, - sym_bit_string_value, - STATE(6469), 3, + ACTIONS(8558), 1, + anon_sym_RPAREN, + STATE(6683), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299164] = 5, + [308979] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7186), 1, - anon_sym_SEMI, - STATE(6470), 3, + ACTIONS(8560), 1, + anon_sym_RBRACK, + STATE(6684), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299182] = 5, + [308997] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8438), 1, - sym_bit_string_value, - STATE(6471), 3, + ACTIONS(796), 1, + anon_sym_SEMI, + STATE(6685), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299200] = 5, + [309015] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8440), 1, + ACTIONS(8562), 1, anon_sym_RBRACK, - STATE(6472), 3, + STATE(6686), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299218] = 5, + [309033] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8442), 1, + ACTIONS(7305), 1, anon_sym_SEMI, - STATE(6473), 3, + STATE(6687), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299236] = 5, + [309051] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7194), 1, + ACTIONS(8564), 1, anon_sym_SEMI, - STATE(6474), 3, + STATE(6688), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299254] = 5, + [309069] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8444), 1, + ACTIONS(8566), 1, anon_sym_SEMI, - STATE(6475), 3, + STATE(6689), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299272] = 5, + [309087] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8446), 1, - anon_sym_RBRACK, - STATE(6476), 3, + ACTIONS(8568), 1, + sym_bit_string_value, + STATE(6690), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299290] = 5, + [309105] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8448), 1, - anon_sym_RBRACK, - STATE(6477), 3, + ACTIONS(8570), 1, + anon_sym_GT_GT, + STATE(6691), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299308] = 5, + [309123] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8450), 1, - anon_sym_RPAREN, - STATE(6478), 3, + ACTIONS(8572), 1, + sym_bit_string_value, + STATE(6692), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299326] = 5, + [309141] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8452), 1, - anon_sym_SEMI, - STATE(6479), 3, + ACTIONS(8574), 1, + anon_sym_RBRACK, + STATE(6693), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299344] = 5, + [309159] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8454), 1, - anon_sym_RPAREN, - STATE(6480), 3, + ACTIONS(8576), 1, + sym_bit_string_value, + STATE(6694), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299362] = 5, + [309177] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8456), 1, - anon_sym_GT_GT, - STATE(6481), 3, + ACTIONS(8578), 1, + anon_sym_RBRACK, + STATE(6695), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299380] = 5, + [309195] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8458), 1, - anon_sym_GT_GT, - STATE(6482), 3, + ACTIONS(8580), 1, + sym_bit_string_value, + STATE(6696), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299398] = 5, + [309213] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8460), 1, - anon_sym_RBRACK, - STATE(6483), 3, + ACTIONS(8582), 1, + sym_GENERATE, + STATE(6697), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299416] = 5, + [309231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8462), 1, + ACTIONS(8584), 1, anon_sym_GT_GT, - STATE(6484), 3, + STATE(6698), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299434] = 5, + [309249] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8464), 1, - anon_sym_RBRACK, - STATE(6485), 3, + ACTIONS(8586), 1, + sym_IF, + STATE(6699), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299452] = 5, + [309267] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6749), 1, - anon_sym_RBRACK, - STATE(6486), 3, + ACTIONS(8588), 1, + anon_sym_GT_GT, + STATE(6700), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299470] = 5, + [309285] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8466), 1, - anon_sym_RPAREN, - STATE(6487), 3, + ACTIONS(8590), 1, + anon_sym_SEMI, + STATE(6701), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299488] = 5, + [309303] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8468), 1, + ACTIONS(8592), 1, anon_sym_SEMI, - STATE(6488), 3, + STATE(6702), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299506] = 5, + [309321] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6724), 1, - anon_sym_RBRACK, - STATE(6489), 3, + ACTIONS(8594), 1, + anon_sym_SEMI, + STATE(6703), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299524] = 5, + [309339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5970), 1, - anon_sym_SEMI, - STATE(6490), 3, + ACTIONS(8596), 1, + sym_MAP, + STATE(6704), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299542] = 5, + [309357] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8470), 1, - sym_MAP, - STATE(6491), 3, + ACTIONS(8598), 1, + anon_sym_GT_GT, + STATE(6705), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299560] = 5, + [309375] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8472), 1, - sym_bit_string_value, - STATE(6492), 3, + ACTIONS(6897), 1, + anon_sym_SEMI, + STATE(6706), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299578] = 5, + [309393] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8474), 1, - anon_sym_COLON, - STATE(6493), 3, + ACTIONS(8600), 1, + anon_sym_SEMI, + STATE(6707), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299596] = 5, + [309411] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8476), 1, + ACTIONS(8602), 1, anon_sym_RPAREN, - STATE(6494), 3, + STATE(6708), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299614] = 5, + [309429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8478), 1, - anon_sym_RPAREN, - STATE(6495), 3, + ACTIONS(8604), 1, + sym_IN, + STATE(6709), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299632] = 5, + [309447] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8480), 1, - sym_IN, - STATE(6496), 3, + ACTIONS(8606), 1, + anon_sym_RBRACK, + STATE(6710), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299650] = 5, + [309465] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8482), 1, - anon_sym_RPAREN, - STATE(6497), 3, + ACTIONS(8608), 1, + anon_sym_RBRACK, + STATE(6711), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299668] = 5, + [309483] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8484), 1, - sym_bit_string_value, - STATE(6498), 3, + ACTIONS(5652), 1, + anon_sym_SEMI, + STATE(6712), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299686] = 5, + [309501] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8486), 1, - anon_sym_RBRACK, - STATE(6499), 3, + ACTIONS(8610), 1, + anon_sym_RPAREN, + STATE(6713), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299704] = 5, + [309519] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8488), 1, - anon_sym_RBRACK, - STATE(6500), 3, + ACTIONS(8612), 1, + anon_sym_RPAREN, + STATE(6714), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299722] = 5, + [309537] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8490), 1, - anon_sym_RPAREN, - STATE(6501), 3, + ACTIONS(6893), 1, + anon_sym_SEMI, + STATE(6715), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299740] = 5, + [309555] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6716), 1, - anon_sym_RBRACK, - STATE(6502), 3, + ACTIONS(6881), 1, + anon_sym_SEMI, + STATE(6716), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299758] = 5, + [309573] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8492), 1, - sym_bit_string_value, - STATE(6503), 3, + ACTIONS(8614), 1, + anon_sym_RPAREN, + STATE(6717), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299776] = 5, + [309591] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8494), 1, - anon_sym_DOT, - STATE(6504), 3, + ACTIONS(6879), 1, + anon_sym_SEMI, + STATE(6718), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299794] = 5, + [309609] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6698), 1, + ACTIONS(8616), 1, anon_sym_RBRACK, - STATE(6505), 3, + STATE(6719), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299812] = 5, + [309627] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8496), 1, - anon_sym_COLON, - STATE(6506), 3, + ACTIONS(8618), 1, + anon_sym_RBRACK, + STATE(6720), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299830] = 5, + [309645] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8498), 1, - anon_sym_RPAREN, - STATE(6507), 3, + ACTIONS(8620), 1, + anon_sym_SEMI, + STATE(6721), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299848] = 5, + [309663] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8500), 1, - anon_sym_EQ_GT, - STATE(6508), 3, + ACTIONS(8622), 1, + anon_sym_RBRACK, + STATE(6722), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299866] = 5, + [309681] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8502), 1, - anon_sym_RBRACK, - STATE(6509), 3, + ACTIONS(8624), 1, + anon_sym_GT_GT, + STATE(6723), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299884] = 5, + [309699] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8504), 1, - sym_CASE, - STATE(6510), 3, + ACTIONS(8626), 1, + anon_sym_SEMI, + STATE(6724), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299902] = 5, + [309717] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8506), 1, - anon_sym_GT_GT, - STATE(6511), 3, + ACTIONS(8628), 1, + sym_GENERATE, + STATE(6725), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299920] = 5, + [309735] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8508), 1, + ACTIONS(8630), 1, anon_sym_SEMI, - STATE(6512), 3, + STATE(6726), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299938] = 5, + [309753] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8510), 1, - anon_sym_RBRACK, - STATE(6513), 3, + ACTIONS(8632), 1, + anon_sym_GT_GT, + STATE(6727), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299956] = 5, + [309771] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8512), 1, + ACTIONS(8634), 1, anon_sym_GT_GT, - STATE(6514), 3, + STATE(6728), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299974] = 5, + [309789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8514), 1, + ACTIONS(8636), 1, anon_sym_GT_GT, - STATE(6515), 3, + STATE(6729), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [299992] = 5, + [309807] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8516), 1, + ACTIONS(8638), 1, anon_sym_RBRACK, - STATE(6516), 3, + STATE(6730), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300010] = 5, + [309825] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8518), 1, - anon_sym_GT_GT, - STATE(6517), 3, + ACTIONS(8640), 1, + anon_sym_RBRACK, + STATE(6731), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300028] = 5, + [309843] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8520), 1, - anon_sym_GT_GT, - STATE(6518), 3, + ACTIONS(8642), 1, + sym_IN, + STATE(6732), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300046] = 5, + [309861] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8522), 1, + ACTIONS(8644), 1, anon_sym_GT_GT, - STATE(6519), 3, + STATE(6733), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300064] = 5, + [309879] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8524), 1, - anon_sym_SEMI, - STATE(6520), 3, + ACTIONS(8646), 1, + anon_sym_GT_GT, + STATE(6734), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300082] = 5, + [309897] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8526), 1, - anon_sym_RBRACK, - STATE(6521), 3, + ACTIONS(8648), 1, + anon_sym_GT_GT, + STATE(6735), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300100] = 5, + [309915] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8528), 1, - anon_sym_GT_GT, - STATE(6522), 3, + ACTIONS(6153), 1, + anon_sym_SEMI, + STATE(6736), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300118] = 5, + [309933] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8530), 1, + ACTIONS(8650), 1, anon_sym_GT_GT, - STATE(6523), 3, + STATE(6737), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300136] = 5, + [309951] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6694), 1, + ACTIONS(8652), 1, anon_sym_RBRACK, - STATE(6524), 3, + STATE(6738), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300154] = 5, + [309969] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8532), 1, - anon_sym_GT_GT, - STATE(6525), 3, + ACTIONS(8654), 1, + anon_sym_DOT, + STATE(6739), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300172] = 5, + [309987] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8534), 1, + ACTIONS(8656), 1, anon_sym_SEMI, - STATE(6526), 3, + STATE(6740), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300190] = 5, + [310005] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8536), 1, - anon_sym_RBRACK, - STATE(6527), 3, + ACTIONS(8658), 1, + anon_sym_SEMI, + STATE(6741), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300208] = 5, + [310023] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8538), 1, + ACTIONS(8660), 1, anon_sym_RPAREN, - STATE(6528), 3, + STATE(6742), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300226] = 5, + [310041] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8540), 1, + ACTIONS(8662), 1, anon_sym_RPAREN, - STATE(6529), 3, + STATE(6743), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300244] = 5, + [310059] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8542), 1, - anon_sym_RBRACK, - STATE(6530), 3, + ACTIONS(8664), 1, + anon_sym_RPAREN, + STATE(6744), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300262] = 5, + [310077] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8320), 1, - anon_sym_SEMI, - STATE(6531), 3, + ACTIONS(8666), 1, + anon_sym_GT_GT, + STATE(6745), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300280] = 5, + [310095] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5895), 1, - anon_sym_SEMI, - STATE(6532), 3, + ACTIONS(8668), 1, + anon_sym_RBRACK, + STATE(6746), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300298] = 5, + [310113] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6771), 1, - anon_sym_RBRACK, - STATE(6533), 3, + ACTIONS(7946), 1, + sym_END, + STATE(6747), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300316] = 5, + [310131] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8544), 1, - sym_END, - STATE(6534), 3, + ACTIONS(8670), 1, + anon_sym_RBRACK, + STATE(6748), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300334] = 5, + [310149] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8546), 1, + ACTIONS(8672), 1, anon_sym_RPAREN, - STATE(6535), 3, + STATE(6749), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300352] = 5, + [310167] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8548), 1, + ACTIONS(8674), 1, anon_sym_RPAREN, - STATE(6536), 3, + STATE(6750), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300370] = 5, + [310185] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8550), 1, - anon_sym_RPAREN, - STATE(6537), 3, + ACTIONS(8676), 1, + anon_sym_RBRACK, + STATE(6751), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300388] = 5, + [310203] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8552), 1, + ACTIONS(8678), 1, anon_sym_RPAREN, - STATE(6538), 3, + STATE(6752), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300406] = 5, + [310221] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8554), 1, + ACTIONS(5676), 1, anon_sym_SEMI, - STATE(6539), 3, + STATE(6753), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300424] = 5, + [310239] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8556), 1, - anon_sym_RBRACK, - STATE(6540), 3, + ACTIONS(8680), 1, + anon_sym_SEMI, + STATE(6754), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300442] = 5, + [310257] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8558), 1, - sym_bit_string_value, - STATE(6541), 3, + ACTIONS(8682), 1, + anon_sym_RBRACK, + STATE(6755), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300460] = 5, + [310275] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8560), 1, - sym_OF, - STATE(6542), 3, + ACTIONS(8684), 1, + anon_sym_RPAREN, + STATE(6756), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300478] = 5, + [310293] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8562), 1, - anon_sym_RBRACK, - STATE(6543), 3, + ACTIONS(8686), 1, + anon_sym_GT_GT, + STATE(6757), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300496] = 5, + [310311] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8564), 1, - anon_sym_SEMI, - STATE(6544), 3, + ACTIONS(8688), 1, + anon_sym_GT_GT, + STATE(6758), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300514] = 5, + [310329] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8566), 1, - anon_sym_RPAREN, - STATE(6545), 3, + ACTIONS(8690), 1, + anon_sym_GT_GT, + STATE(6759), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300532] = 5, + [310347] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8568), 1, - sym_bit_string_value, - STATE(6546), 3, + ACTIONS(8692), 1, + anon_sym_RPAREN, + STATE(6760), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300550] = 5, + [310365] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8570), 1, - anon_sym_SEMI, - STATE(6547), 3, + ACTIONS(8694), 1, + sym_bit_string_value, + STATE(6761), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300568] = 5, + [310383] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8572), 1, - sym_bit_string_value, - STATE(6548), 3, + ACTIONS(8696), 1, + sym_LOOP, + STATE(6762), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300586] = 5, + [310401] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8574), 1, - anon_sym_GT_GT, - STATE(6549), 3, + ACTIONS(8698), 1, + anon_sym_RBRACK, + STATE(6763), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300604] = 5, + [310419] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8576), 1, - anon_sym_GT_GT, - STATE(6550), 3, + ACTIONS(8700), 1, + sym_bit_string_value, + STATE(6764), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300622] = 5, + [310437] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8578), 1, - anon_sym_GT_GT, - STATE(6551), 3, + ACTIONS(8702), 1, + sym_bit_string_value, + STATE(6765), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300640] = 5, + [310455] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8580), 1, - sym_bit_string_value, - STATE(6552), 3, + ACTIONS(8704), 1, + anon_sym_RPAREN, + STATE(6766), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300658] = 5, + [310473] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8582), 1, - sym_PROCESS, - STATE(6553), 3, + ACTIONS(8706), 1, + anon_sym_SEMI, + STATE(6767), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300676] = 5, + [310491] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8584), 1, + ACTIONS(8708), 1, sym_OF, - STATE(6554), 3, + STATE(6768), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300694] = 5, + [310509] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6676), 1, - anon_sym_RBRACK, - STATE(6555), 3, + ACTIONS(8710), 1, + anon_sym_RPAREN, + STATE(6769), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300712] = 5, + [310527] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8586), 1, + ACTIONS(8712), 1, sym_IS, - STATE(6556), 3, + STATE(6770), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300730] = 5, + [310545] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8588), 1, + ACTIONS(8714), 1, anon_sym_SEMI, - STATE(6557), 3, + STATE(6771), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300748] = 5, + [310563] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8590), 1, - anon_sym_RPAREN, - STATE(6558), 3, + ACTIONS(8716), 1, + sym_bit_string_value, + STATE(6772), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300766] = 5, + [310581] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8592), 1, - anon_sym_SEMI, - STATE(6559), 3, + ACTIONS(8718), 1, + sym_MAP, + STATE(6773), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300784] = 5, + [310599] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8594), 1, + ACTIONS(8720), 1, anon_sym_SEMI, - STATE(6560), 3, + STATE(6774), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300802] = 5, + [310617] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8596), 1, - anon_sym_RBRACK, - STATE(6561), 3, + ACTIONS(8722), 1, + anon_sym_SEMI, + STATE(6775), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300820] = 5, + [310635] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8598), 1, + ACTIONS(8724), 1, anon_sym_RPAREN, - STATE(6562), 3, + STATE(6776), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300838] = 5, + [310653] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6962), 1, + ACTIONS(8726), 1, anon_sym_SEMI, - STATE(6563), 3, + STATE(6777), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300856] = 5, + [310671] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6972), 1, - anon_sym_SEMI, - STATE(6564), 3, + ACTIONS(8728), 1, + anon_sym_RBRACK, + STATE(6778), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300874] = 5, + [310689] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8600), 1, - anon_sym_RPAREN, - STATE(6565), 3, + ACTIONS(7114), 1, + anon_sym_SEMI, + STATE(6779), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300892] = 5, + [310707] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8602), 1, - anon_sym_RPAREN, - STATE(6566), 3, + ACTIONS(7116), 1, + anon_sym_SEMI, + STATE(6780), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300910] = 5, + [310725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6624), 1, - anon_sym_RBRACK, - STATE(6567), 3, + ACTIONS(8730), 1, + anon_sym_RPAREN, + STATE(6781), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300928] = 5, + [310743] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8604), 1, - anon_sym_RPAREN, - STATE(6568), 3, + ACTIONS(8732), 1, + anon_sym_RBRACK, + STATE(6782), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300946] = 5, + [310761] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8606), 1, + ACTIONS(8734), 1, anon_sym_SEMI, - STATE(6569), 3, + STATE(6783), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300964] = 5, + [310779] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8608), 1, - anon_sym_RBRACK, - STATE(6570), 3, + ACTIONS(8736), 1, + anon_sym_SEMI, + STATE(6784), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [300982] = 5, + [310797] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8610), 1, - anon_sym_SEMI, - STATE(6571), 3, + ACTIONS(8738), 1, + anon_sym_RBRACK, + STATE(6785), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301000] = 5, + [310815] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8612), 1, + ACTIONS(7144), 1, anon_sym_SEMI, - STATE(6572), 3, + STATE(6786), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301018] = 5, + [310833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6664), 1, - anon_sym_RBRACK, - STATE(6573), 3, + ACTIONS(8740), 1, + anon_sym_RPAREN, + STATE(6787), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301036] = 5, + [310851] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8614), 1, - anon_sym_RBRACK, - STATE(6574), 3, + ACTIONS(8742), 1, + anon_sym_RPAREN, + STATE(6788), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301054] = 5, + [310869] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8616), 1, + ACTIONS(8744), 1, anon_sym_SEMI, - STATE(6575), 3, + STATE(6789), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301072] = 5, + [310887] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8618), 1, - anon_sym_GT_GT, - STATE(6576), 3, + ACTIONS(8746), 1, + anon_sym_SEMI, + STATE(6790), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301090] = 5, + [310905] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8620), 1, + ACTIONS(8748), 1, sym_box, - STATE(6577), 3, + STATE(6791), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301108] = 5, + [310923] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8622), 1, + ACTIONS(8750), 1, anon_sym_GT_GT, - STATE(6578), 3, + STATE(6792), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301126] = 5, + [310941] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8624), 1, - anon_sym_GT_GT, - STATE(6579), 3, + ACTIONS(8752), 1, + anon_sym_RBRACK, + STATE(6793), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301144] = 5, + [310959] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6007), 1, - anon_sym_SEMI, - STATE(6580), 3, + ACTIONS(8754), 1, + anon_sym_GT_GT, + STATE(6794), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301162] = 5, + [310977] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8626), 1, - anon_sym_SEMI, - STATE(6581), 3, + ACTIONS(8756), 1, + anon_sym_GT_GT, + STATE(6795), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301180] = 5, + [310995] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8628), 1, + ACTIONS(8758), 1, sym_OF, - STATE(6582), 3, + STATE(6796), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301198] = 5, + [311013] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8630), 1, - sym_LOOP, - STATE(6583), 3, + ACTIONS(8760), 1, + anon_sym_RPAREN, + STATE(6797), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301216] = 5, + [311031] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8632), 1, - anon_sym_RBRACK, - STATE(6584), 3, + ACTIONS(8762), 1, + anon_sym_GT_GT, + STATE(6798), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301234] = 5, + [311049] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6690), 1, - anon_sym_RBRACK, - STATE(6585), 3, + ACTIONS(8764), 1, + anon_sym_GT_GT, + STATE(6799), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301252] = 5, + [311067] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6660), 1, + ACTIONS(8766), 1, anon_sym_RBRACK, - STATE(6586), 3, + STATE(6800), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301270] = 5, + [311085] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8634), 1, + ACTIONS(6181), 1, anon_sym_SEMI, - STATE(6587), 3, + STATE(6801), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301288] = 5, + [311103] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8636), 1, - anon_sym_RPAREN, - STATE(6588), 3, + ACTIONS(8768), 1, + anon_sym_SEMI, + STATE(6802), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301306] = 5, + [311121] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8638), 1, - anon_sym_RPAREN, - STATE(6589), 3, + ACTIONS(8770), 1, + anon_sym_SEMI, + STATE(6803), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301324] = 5, + [311139] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8640), 1, - anon_sym_GT_GT, - STATE(6590), 3, + ACTIONS(8772), 1, + anon_sym_RBRACK, + STATE(6804), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301342] = 5, + [311157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8642), 1, - anon_sym_SEMI, - STATE(6591), 3, + ACTIONS(8774), 1, + anon_sym_RBRACK, + STATE(6805), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301360] = 5, + [311175] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8644), 1, + ACTIONS(8776), 1, sym_bit_string_base, - STATE(6592), 3, + STATE(6806), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301378] = 5, + [311193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8646), 1, - anon_sym_GT_GT, - STATE(6593), 3, + ACTIONS(8778), 1, + anon_sym_COLON, + STATE(6807), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301396] = 5, + [311211] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8648), 1, - anon_sym_GT_GT, - STATE(6594), 3, + ACTIONS(8780), 1, + anon_sym_SEMI, + STATE(6808), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301414] = 5, + [311229] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8650), 1, - anon_sym_GT_GT, - STATE(6595), 3, + ACTIONS(8782), 1, + anon_sym_RPAREN, + STATE(6809), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301432] = 5, + [311247] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8652), 1, + ACTIONS(8784), 1, sym_MAP, - STATE(6596), 3, + STATE(6810), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301450] = 5, + [311265] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8654), 1, + ACTIONS(8786), 1, sym_MAP, - STATE(6597), 3, + STATE(6811), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301468] = 5, + [311283] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8656), 1, - anon_sym_RBRACK, - STATE(6598), 3, + ACTIONS(8788), 1, + anon_sym_COLON, + STATE(6812), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301486] = 5, + [311301] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8658), 1, - sym_IF, - STATE(6599), 3, + ACTIONS(8790), 1, + anon_sym_SEMI, + STATE(6813), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301504] = 5, + [311319] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8660), 1, - sym_bit_string_value, - STATE(6600), 3, + ACTIONS(8792), 1, + anon_sym_SEMI, + STATE(6814), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301522] = 5, + [311337] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8662), 1, + ACTIONS(8794), 1, anon_sym_SEMI, - STATE(6601), 3, + STATE(6815), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301540] = 5, + [311355] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8664), 1, - sym_bit_string_value, - STATE(6602), 3, + ACTIONS(8796), 1, + anon_sym_SEMI, + STATE(6816), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301558] = 5, + [311373] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8666), 1, - anon_sym_GT_GT, - STATE(6603), 3, + ACTIONS(8798), 1, + anon_sym_RPAREN, + STATE(6817), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301576] = 5, + [311391] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8668), 1, - anon_sym_RPAREN, - STATE(6604), 3, + ACTIONS(8800), 1, + anon_sym_SEMI, + STATE(6818), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301594] = 5, + [311409] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8670), 1, + ACTIONS(8802), 1, anon_sym_RPAREN, - STATE(6605), 3, + STATE(6819), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301612] = 5, + [311427] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8672), 1, + ACTIONS(8804), 1, anon_sym_GT_GT, - STATE(6606), 3, + STATE(6820), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301630] = 5, + [311445] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8674), 1, - anon_sym_SEMI, - STATE(6607), 3, + ACTIONS(8806), 1, + anon_sym_GT_GT, + STATE(6821), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301648] = 5, + [311463] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8676), 1, - sym_bit_string_value, - STATE(6608), 3, + ACTIONS(8808), 1, + anon_sym_GT_GT, + STATE(6822), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301666] = 5, + [311481] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8678), 1, + ACTIONS(8810), 1, anon_sym_RBRACK, - STATE(6609), 3, + STATE(6823), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301684] = 5, + [311499] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7008), 1, - anon_sym_SEMI, - STATE(6610), 3, + ACTIONS(8812), 1, + anon_sym_DOT, + STATE(6824), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301702] = 5, + [311517] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8680), 1, - anon_sym_SEMI, - STATE(6611), 3, + ACTIONS(8814), 1, + anon_sym_RPAREN, + STATE(6825), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301720] = 5, + [311535] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8682), 1, - sym_RETURN, - STATE(6612), 3, + ACTIONS(8816), 1, + anon_sym_RBRACK, + STATE(6826), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301738] = 5, + [311553] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5771), 1, - anon_sym_SEMI, - STATE(6613), 3, + ACTIONS(8818), 1, + anon_sym_COLON, + STATE(6827), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301756] = 5, + [311571] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8684), 1, - anon_sym_SEMI, - STATE(6614), 3, + ACTIONS(8820), 1, + sym_bit_string_value, + STATE(6828), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301774] = 5, + [311589] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8686), 1, + ACTIONS(8822), 1, anon_sym_SEMI, - STATE(6615), 3, + STATE(6829), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301792] = 5, + [311607] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8688), 1, + ACTIONS(8824), 1, anon_sym_RBRACK, - STATE(6616), 3, + STATE(6830), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301810] = 5, + [311625] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7210), 1, - anon_sym_SEMI, - STATE(6617), 3, + ACTIONS(8826), 1, + sym_bit_string_value, + STATE(6831), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301828] = 5, + [311643] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8690), 1, - anon_sym_SEMI, - STATE(6618), 3, + ACTIONS(8828), 1, + anon_sym_COLON, + STATE(6832), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301846] = 5, + [311661] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8692), 1, - anon_sym_SEMI, - STATE(6619), 3, + ACTIONS(8830), 1, + anon_sym_RBRACK, + STATE(6833), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301864] = 5, + [311679] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8694), 1, + ACTIONS(8832), 1, sym_MAP, - STATE(6620), 3, + STATE(6834), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301882] = 5, + [311697] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8696), 1, - anon_sym_RBRACK, - STATE(6621), 3, + ACTIONS(8834), 1, + anon_sym_GT_GT, + STATE(6835), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301900] = 5, + [311715] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7248), 1, - anon_sym_SEMI, - STATE(6622), 3, + ACTIONS(8836), 1, + anon_sym_COLON, + STATE(6836), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301918] = 5, + [311733] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8698), 1, - anon_sym_SEMI, - STATE(6623), 3, + ACTIONS(8838), 1, + anon_sym_COLON, + STATE(6837), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301936] = 5, + [311751] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8700), 1, - anon_sym_RBRACK, - STATE(6624), 3, + ACTIONS(8840), 1, + anon_sym_GT_GT, + STATE(6838), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301954] = 5, + [311769] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8702), 1, - sym_bit_string_value, - STATE(6625), 3, + ACTIONS(8842), 1, + anon_sym_GT_GT, + STATE(6839), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301972] = 5, + [311787] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8704), 1, + ACTIONS(8844), 1, anon_sym_SEMI, - STATE(6626), 3, + STATE(6840), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [301990] = 5, + [311805] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8706), 1, - anon_sym_GT_GT, - STATE(6627), 3, + ACTIONS(8846), 1, + anon_sym_RBRACK, + STATE(6841), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302008] = 5, + [311823] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8708), 1, - anon_sym_GT_GT, - STATE(6628), 3, + ACTIONS(8848), 1, + anon_sym_RPAREN, + STATE(6842), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302026] = 5, + [311841] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8710), 1, - anon_sym_RBRACK, - STATE(6629), 3, + ACTIONS(8850), 1, + anon_sym_DOT, + STATE(6843), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302044] = 5, + [311859] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8712), 1, - anon_sym_GT_GT, - STATE(6630), 3, + ACTIONS(8852), 1, + anon_sym_RPAREN, + STATE(6844), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302062] = 5, + [311877] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(782), 1, + ACTIONS(8854), 1, anon_sym_SEMI, - STATE(6631), 3, + STATE(6845), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302080] = 5, + [311895] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8714), 1, - anon_sym_GT_GT, - STATE(6632), 3, + ACTIONS(8856), 1, + sym_bit_string_value, + STATE(6846), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302098] = 5, + [311913] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8716), 1, - anon_sym_GT_GT, - STATE(6633), 3, + ACTIONS(8858), 1, + anon_sym_SEMI, + STATE(6847), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302116] = 5, + [311931] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8718), 1, - sym_bit_string_value, - STATE(6634), 3, + ACTIONS(8860), 1, + anon_sym_RPAREN, + STATE(6848), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302134] = 5, + [311949] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6652), 1, - anon_sym_RBRACK, - STATE(6635), 3, + ACTIONS(8862), 1, + anon_sym_SEMI, + STATE(6849), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302152] = 5, + [311967] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8720), 1, - anon_sym_GT_GT, - STATE(6636), 3, + ACTIONS(8864), 1, + anon_sym_SEMI, + STATE(6850), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [311985] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(8866), 1, + sym_bit_string_value, + STATE(6851), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302170] = 5, + [312003] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5647), 1, + ACTIONS(8868), 1, anon_sym_SEMI, - STATE(6637), 3, + STATE(6852), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302188] = 5, + [312021] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8722), 1, - anon_sym_RPAREN, - STATE(6638), 3, + ACTIONS(8870), 1, + anon_sym_RBRACK, + STATE(6853), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302206] = 5, + [312039] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8724), 1, + ACTIONS(8872), 1, anon_sym_RPAREN, - STATE(6639), 3, + STATE(6854), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302224] = 5, + [312057] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8726), 1, - anon_sym_RPAREN, - STATE(6640), 3, + ACTIONS(8874), 1, + anon_sym_RBRACK, + STATE(6855), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302242] = 5, + [312075] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5962), 1, - anon_sym_SEMI, - STATE(6641), 3, + ACTIONS(8876), 1, + anon_sym_RBRACK, + STATE(6856), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302260] = 5, + [312093] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8728), 1, - anon_sym_RPAREN, - STATE(6642), 3, + ACTIONS(8878), 1, + anon_sym_GT_GT, + STATE(6857), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302278] = 5, + [312111] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8730), 1, + ACTIONS(7357), 1, anon_sym_SEMI, - STATE(6643), 3, + STATE(6858), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302296] = 5, + [312129] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5649), 1, - anon_sym_SEMI, - STATE(6644), 3, + ACTIONS(8880), 1, + anon_sym_GT_GT, + STATE(6859), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302314] = 5, + [312147] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8732), 1, + ACTIONS(7402), 1, anon_sym_SEMI, - STATE(6645), 3, + STATE(6860), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302332] = 5, + [312165] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6636), 1, - anon_sym_RBRACK, - STATE(6646), 3, + ACTIONS(8882), 1, + anon_sym_SEMI, + STATE(6861), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302350] = 5, + [312183] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8734), 1, - anon_sym_RBRACK, - STATE(6647), 3, + ACTIONS(8884), 1, + anon_sym_SEMI, + STATE(6862), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302368] = 5, + [312201] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8736), 1, - anon_sym_RBRACK, - STATE(6648), 3, + ACTIONS(8886), 1, + anon_sym_SEMI, + STATE(6863), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302386] = 5, + [312219] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8738), 1, - anon_sym_GT_GT, - STATE(6649), 3, + ACTIONS(7425), 1, + anon_sym_SEMI, + STATE(6864), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302404] = 5, + [312237] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8740), 1, + ACTIONS(8888), 1, anon_sym_SEMI, - STATE(6650), 3, + STATE(6865), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302422] = 5, + [312255] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6566), 1, - anon_sym_RBRACK, - STATE(6651), 3, + ACTIONS(8890), 1, + anon_sym_SEMI, + STATE(6866), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302440] = 5, + [312273] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8742), 1, - anon_sym_GT_GT, - STATE(6652), 3, + ACTIONS(8892), 1, + anon_sym_SEMI, + STATE(6867), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302458] = 5, + [312291] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8744), 1, - anon_sym_SEMI, - STATE(6653), 3, + ACTIONS(8894), 1, + anon_sym_RBRACK, + STATE(6868), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302476] = 5, + [312309] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8746), 1, + ACTIONS(8896), 1, anon_sym_GT_GT, - STATE(6654), 3, + STATE(6869), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302494] = 5, + [312327] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8748), 1, - anon_sym_GT_GT, - STATE(6655), 3, + ACTIONS(8898), 1, + anon_sym_RBRACK, + STATE(6870), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302512] = 5, + [312345] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8750), 1, + ACTIONS(8900), 1, anon_sym_GT_GT, - STATE(6656), 3, + STATE(6871), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302530] = 5, + [312363] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6632), 1, - anon_sym_RBRACK, - STATE(6657), 3, + ACTIONS(8902), 1, + anon_sym_RPAREN, + STATE(6872), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302548] = 5, + [312381] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8752), 1, - anon_sym_SEMI, - STATE(6658), 3, + ACTIONS(8904), 1, + anon_sym_GT_GT, + STATE(6873), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302566] = 5, + [312399] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8754), 1, - anon_sym_SEMI, - STATE(6659), 3, + ACTIONS(8906), 1, + anon_sym_GT_GT, + STATE(6874), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302584] = 5, + [312417] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8756), 1, + ACTIONS(8908), 1, anon_sym_RPAREN, - STATE(6660), 3, + STATE(6875), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302602] = 5, + [312435] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8758), 1, + ACTIONS(8910), 1, anon_sym_RPAREN, - STATE(6661), 3, + STATE(6876), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302620] = 5, + [312453] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8760), 1, + ACTIONS(8912), 1, anon_sym_RPAREN, - STATE(6662), 3, + STATE(6877), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302638] = 5, + [312471] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8762), 1, - anon_sym_GT_GT, - STATE(6663), 3, + ACTIONS(8914), 1, + anon_sym_RPAREN, + STATE(6878), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302656] = 5, + [312489] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8764), 1, - anon_sym_SEMI, - STATE(6664), 3, + ACTIONS(8916), 1, + anon_sym_COLON, + STATE(6879), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302674] = 5, + [312507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8766), 1, + ACTIONS(6210), 1, anon_sym_SEMI, - STATE(6665), 3, + STATE(6880), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302692] = 5, + [312525] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8768), 1, + ACTIONS(8918), 1, anon_sym_SEMI, - STATE(6666), 3, + STATE(6881), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302710] = 5, + [312543] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8770), 1, + ACTIONS(8920), 1, anon_sym_RPAREN, - STATE(6667), 3, + STATE(6882), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302728] = 5, + [312561] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8772), 1, - anon_sym_RPAREN, - STATE(6668), 3, + ACTIONS(8922), 1, + anon_sym_RBRACK, + STATE(6883), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302746] = 5, + [312579] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8774), 1, - anon_sym_SEMI, - STATE(6669), 3, + ACTIONS(8924), 1, + sym__directive_newline, + STATE(6884), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302764] = 5, + [312597] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8776), 1, - anon_sym_SEMI, - STATE(6670), 3, + ACTIONS(8926), 1, + anon_sym_RPAREN, + STATE(6885), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302782] = 5, + [312615] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8778), 1, - anon_sym_RBRACK, - STATE(6671), 3, + ACTIONS(8928), 1, + anon_sym_SEMI, + STATE(6886), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302800] = 5, + [312633] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8780), 1, - anon_sym_SEMI, - STATE(6672), 3, + ACTIONS(8930), 1, + anon_sym_RPAREN, + STATE(6887), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302818] = 5, + [312651] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8782), 1, - anon_sym_RBRACK, - STATE(6673), 3, + ACTIONS(8932), 1, + anon_sym_GT_GT, + STATE(6888), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302836] = 5, + [312669] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8784), 1, - anon_sym_RPAREN, - STATE(6674), 3, + ACTIONS(8934), 1, + anon_sym_SEMI, + STATE(6889), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302854] = 5, + [312687] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8786), 1, - anon_sym_RPAREN, - STATE(6675), 3, + ACTIONS(8936), 1, + anon_sym_RBRACK, + STATE(6890), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302872] = 5, + [312705] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8788), 1, - anon_sym_RBRACK, - STATE(6676), 3, + ACTIONS(8938), 1, + anon_sym_SEMI, + STATE(6891), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302890] = 5, + [312723] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8790), 1, - sym_bit_string_value, - STATE(6677), 3, + ACTIONS(8940), 1, + sym_LOOP, + STATE(6892), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302908] = 5, + [312741] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8792), 1, - anon_sym_RBRACK, - STATE(6678), 3, + ACTIONS(8942), 1, + anon_sym_GT_GT, + STATE(6893), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302926] = 5, + [312759] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8794), 1, - sym_bit_string_value, - STATE(6679), 3, + ACTIONS(8944), 1, + anon_sym_SEMI, + STATE(6894), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302944] = 5, + [312777] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8796), 1, - anon_sym_GT_GT, - STATE(6680), 3, + ACTIONS(8946), 1, + anon_sym_RBRACK, + STATE(6895), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302962] = 5, + [312795] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8798), 1, - anon_sym_LPAREN, - STATE(6681), 3, + ACTIONS(8948), 1, + anon_sym_SEMI, + STATE(6896), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302980] = 5, + [312813] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6532), 1, - sym_RETURN, - STATE(6682), 3, + ACTIONS(8950), 1, + anon_sym_GT_GT, + STATE(6897), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [302998] = 5, + [312831] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8800), 1, + ACTIONS(8952), 1, anon_sym_RPAREN, - STATE(6683), 3, + STATE(6898), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303016] = 5, + [312849] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8802), 1, + ACTIONS(8954), 1, anon_sym_GT_GT, - STATE(6684), 3, + STATE(6899), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303034] = 5, + [312867] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8804), 1, - anon_sym_COLON, - STATE(6685), 3, + ACTIONS(8956), 1, + anon_sym_GT_GT, + STATE(6900), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303052] = 5, + [312885] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8806), 1, - anon_sym_RPAREN, - STATE(6686), 3, + ACTIONS(8958), 1, + anon_sym_GT_GT, + STATE(6901), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303070] = 5, + [312903] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8808), 1, - sym_bit_string_value, - STATE(6687), 3, + ACTIONS(8960), 1, + anon_sym_RBRACK, + STATE(6902), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303088] = 5, + [312921] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8810), 1, - anon_sym_GT_GT, - STATE(6688), 3, + ACTIONS(8962), 1, + anon_sym_RBRACK, + STATE(6903), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303106] = 5, + [312939] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8812), 1, - anon_sym_RPAREN, - STATE(6689), 3, + ACTIONS(8964), 1, + anon_sym_RBRACK, + STATE(6904), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303124] = 5, + [312957] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6620), 1, + ACTIONS(8966), 1, anon_sym_RBRACK, - STATE(6690), 3, + STATE(6905), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303142] = 5, + [312975] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8814), 1, - anon_sym_RPAREN, - STATE(6691), 3, + ACTIONS(8968), 1, + anon_sym_SEMI, + STATE(6906), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303160] = 5, + [312993] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8816), 1, + ACTIONS(8970), 1, anon_sym_RPAREN, - STATE(6692), 3, + STATE(6907), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303178] = 5, + [313011] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8818), 1, - sym_bit_string_value, - STATE(6693), 3, + ACTIONS(8972), 1, + anon_sym_SEMI, + STATE(6908), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303196] = 5, + [313029] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8820), 1, + ACTIONS(8974), 1, anon_sym_RPAREN, - STATE(6694), 3, + STATE(6909), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303214] = 5, + [313047] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8822), 1, - anon_sym_RPAREN, - STATE(6695), 3, + ACTIONS(8976), 1, + anon_sym_SEMI, + STATE(6910), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303232] = 5, + [313065] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8824), 1, - anon_sym_COLON, - STATE(6696), 3, + ACTIONS(8978), 1, + anon_sym_SEMI, + STATE(6911), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303250] = 5, + [313083] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6608), 1, - anon_sym_RBRACK, - STATE(6697), 3, + ACTIONS(8980), 1, + anon_sym_SEMI, + STATE(6912), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303268] = 5, + [313101] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5885), 1, + ACTIONS(8982), 1, anon_sym_SEMI, - STATE(6698), 3, + STATE(6913), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303286] = 5, + [313119] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8826), 1, - sym_FUNCTION, - STATE(6699), 3, + ACTIONS(8984), 1, + anon_sym_SEMI, + STATE(6914), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303304] = 5, + [313137] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8828), 1, + ACTIONS(8986), 1, anon_sym_SEMI, - STATE(6700), 3, + STATE(6915), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303322] = 5, + [313155] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8830), 1, + ACTIONS(8988), 1, anon_sym_SEMI, - STATE(6701), 3, + STATE(6916), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303340] = 5, + [313173] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8832), 1, - anon_sym_SEMI, - STATE(6702), 3, + ACTIONS(8990), 1, + anon_sym_RBRACK, + STATE(6917), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303358] = 5, + [313191] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8834), 1, + ACTIONS(8992), 1, anon_sym_SEMI, - STATE(6703), 3, + STATE(6918), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303376] = 5, + [313209] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8836), 1, - anon_sym_RBRACK, - STATE(6704), 3, + ACTIONS(8994), 1, + anon_sym_SEMI, + STATE(6919), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303394] = 5, + [313227] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7492), 1, - anon_sym_SEMI, - STATE(6705), 3, + ACTIONS(8996), 1, + anon_sym_RPAREN, + STATE(6920), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303412] = 5, + [313245] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8838), 1, - anon_sym_RBRACK, - STATE(6706), 3, + ACTIONS(8998), 1, + sym_bit_string_value, + STATE(6921), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303430] = 5, + [313263] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8840), 1, + ACTIONS(9000), 1, sym_bit_string_base, - STATE(6707), 3, + STATE(6922), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303448] = 5, + [313281] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8842), 1, - anon_sym_SEMI, - STATE(6708), 3, + ACTIONS(9002), 1, + anon_sym_RBRACK, + STATE(6923), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303466] = 5, + [313299] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8844), 1, - anon_sym_RBRACK, - STATE(6709), 3, + ACTIONS(9004), 1, + anon_sym_SEMI, + STATE(6924), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303484] = 5, + [313317] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8846), 1, + ACTIONS(9006), 1, sym_MAP, - STATE(6710), 3, + STATE(6925), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303502] = 5, + [313335] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8848), 1, + ACTIONS(9008), 1, sym_MAP, - STATE(6711), 3, + STATE(6926), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303520] = 5, + [313353] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8850), 1, - anon_sym_SEMI, - STATE(6712), 3, + ACTIONS(9010), 1, + anon_sym_GT_GT, + STATE(6927), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303538] = 5, + [313371] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8852), 1, - anon_sym_SEMI, - STATE(6713), 3, + ACTIONS(9012), 1, + anon_sym_GT_GT, + STATE(6928), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303556] = 5, + [313389] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8854), 1, - anon_sym_SEMI, - STATE(6714), 3, + ACTIONS(9014), 1, + anon_sym_GT_GT, + STATE(6929), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303574] = 5, + [313407] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7506), 1, + ACTIONS(9016), 1, anon_sym_SEMI, - STATE(6715), 3, + STATE(6930), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303592] = 5, + [313425] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8856), 1, - anon_sym_SEMI, - STATE(6716), 3, + ACTIONS(9018), 1, + anon_sym_RPAREN, + STATE(6931), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303610] = 5, + [313443] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8858), 1, - anon_sym_SEMI, - STATE(6717), 3, + ACTIONS(9020), 1, + sym_bit_string_value, + STATE(6932), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303628] = 5, + [313461] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8860), 1, - anon_sym_SEMI, - STATE(6718), 3, + ACTIONS(9022), 1, + sym_bit_string_value, + STATE(6933), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303646] = 5, + [313479] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8862), 1, + ACTIONS(9024), 1, anon_sym_SEMI, - STATE(6719), 3, + STATE(6934), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303664] = 5, + [313497] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8864), 1, - anon_sym_GT_GT, - STATE(6720), 3, + ACTIONS(9026), 1, + anon_sym_RBRACK, + STATE(6935), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303682] = 5, + [313515] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8866), 1, - anon_sym_GT_GT, - STATE(6721), 3, + ACTIONS(9028), 1, + anon_sym_RPAREN, + STATE(6936), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303700] = 5, + [313533] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5555), 1, - sym_VUNIT, - STATE(6722), 3, + ACTIONS(9030), 1, + sym_bit_string_value, + STATE(6937), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303718] = 5, + [313551] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8868), 1, - anon_sym_SEMI, - STATE(6723), 3, + ACTIONS(9032), 1, + anon_sym_RPAREN, + STATE(6938), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303736] = 5, + [313569] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8870), 1, - anon_sym_GT_GT, - STATE(6724), 3, + ACTIONS(9034), 1, + anon_sym_COLON, + STATE(6939), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303754] = 5, + [313587] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8872), 1, - anon_sym_GT_GT, - STATE(6725), 3, + ACTIONS(9036), 1, + anon_sym_SEMI, + STATE(6940), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303772] = 5, + [313605] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8874), 1, - anon_sym_GT_GT, - STATE(6726), 3, + ACTIONS(9038), 1, + sym_PROCESS, + STATE(6941), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303790] = 5, + [313623] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8876), 1, - sym_FOR, - STATE(6727), 3, + ACTIONS(9040), 1, + anon_sym_SEMI, + STATE(6942), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303808] = 5, + [313641] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6068), 1, + ACTIONS(9042), 1, anon_sym_SEMI, - STATE(6728), 3, + STATE(6943), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303826] = 5, + [313659] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8878), 1, + ACTIONS(9044), 1, sym_MAP, - STATE(6729), 3, + STATE(6944), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303844] = 5, + [313677] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8880), 1, - anon_sym_RBRACK, - STATE(6730), 3, + ACTIONS(9046), 1, + anon_sym_GT_GT, + STATE(6945), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303862] = 5, + [313695] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6070), 1, - anon_sym_SEMI, - STATE(6731), 3, + ACTIONS(9048), 1, + anon_sym_RPAREN, + STATE(6946), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303880] = 5, + [313713] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8882), 1, - anon_sym_SEMI, - STATE(6732), 3, + ACTIONS(9050), 1, + anon_sym_LPAREN, + STATE(6947), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303898] = 5, + [313731] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8884), 1, - anon_sym_GT_GT, - STATE(6733), 3, + ACTIONS(9052), 1, + anon_sym_RPAREN, + STATE(6948), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303916] = 5, + [313749] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8886), 1, - anon_sym_GT_GT, - STATE(6734), 3, + ACTIONS(9054), 1, + anon_sym_RBRACK, + STATE(6949), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303934] = 5, + [313767] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8888), 1, + ACTIONS(9056), 1, anon_sym_SEMI, - STATE(6735), 3, + STATE(6950), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303952] = 5, + [313785] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6604), 1, + ACTIONS(9058), 1, anon_sym_RBRACK, - STATE(6736), 3, + STATE(6951), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303970] = 5, + [313803] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8890), 1, - anon_sym_GT_GT, - STATE(6737), 3, + ACTIONS(9060), 1, + anon_sym_RBRACK, + STATE(6952), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [303988] = 5, + [313821] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8892), 1, + ACTIONS(9062), 1, anon_sym_SEMI, - STATE(6738), 3, + STATE(6953), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304006] = 5, + [313839] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8894), 1, - anon_sym_RPAREN, - STATE(6739), 3, + ACTIONS(9064), 1, + anon_sym_GT_GT, + STATE(6954), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304024] = 5, + [313857] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8896), 1, + ACTIONS(9066), 1, anon_sym_SEMI, - STATE(6740), 3, + STATE(6955), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304042] = 5, + [313875] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8898), 1, - anon_sym_RPAREN, - STATE(6741), 3, + ACTIONS(9068), 1, + anon_sym_GT_GT, + STATE(6956), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304060] = 5, + [313893] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8900), 1, - anon_sym_SEMI, - STATE(6742), 3, + ACTIONS(6376), 1, + sym_RETURN, + STATE(6957), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304078] = 5, + [313911] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8902), 1, - anon_sym_RBRACK, - STATE(6743), 3, + ACTIONS(9070), 1, + anon_sym_SEMI, + STATE(6958), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304096] = 5, + [313929] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8904), 1, - anon_sym_COLON, - STATE(6744), 3, + ACTIONS(9072), 1, + anon_sym_SEMI, + STATE(6959), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304114] = 5, + [313947] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6395), 1, - anon_sym_RBRACK, - STATE(6745), 3, + ACTIONS(9074), 1, + anon_sym_SEMI, + STATE(6960), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304132] = 5, + [313965] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8906), 1, + ACTIONS(9076), 1, anon_sym_RBRACK, - STATE(6746), 3, + STATE(6961), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304150] = 5, + [313983] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8908), 1, - anon_sym_RBRACK, - STATE(6747), 3, + ACTIONS(9078), 1, + anon_sym_SEMI, + STATE(6962), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304168] = 5, + [314001] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8910), 1, - sym_bit_string_value, - STATE(6748), 3, + ACTIONS(7740), 1, + anon_sym_SEMI, + STATE(6963), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304186] = 5, + [314019] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8912), 1, + ACTIONS(9080), 1, anon_sym_SEMI, - STATE(6749), 3, + STATE(6964), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304204] = 5, + [314037] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8914), 1, - anon_sym_SEMI, - STATE(6750), 3, + ACTIONS(9082), 1, + anon_sym_LPAREN, + STATE(6965), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304222] = 5, + [314055] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8916), 1, - anon_sym_RBRACK, - STATE(6751), 3, + ACTIONS(9084), 1, + sym_NEW, + STATE(6966), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304240] = 5, + [314073] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8918), 1, + ACTIONS(9086), 1, + anon_sym_LPAREN, + STATE(6967), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [314091] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(7758), 1, anon_sym_SEMI, - STATE(6752), 3, + STATE(6968), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304258] = 5, + [314109] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6934), 1, - sym_RETURN, - STATE(6753), 3, + ACTIONS(9088), 1, + anon_sym_GT_GT, + STATE(6969), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304276] = 5, + [314127] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8920), 1, + ACTIONS(9090), 1, anon_sym_GT_GT, - STATE(6754), 3, + STATE(6970), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304294] = 5, + [314145] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8922), 1, + ACTIONS(9092), 1, anon_sym_SEMI, - STATE(6755), 3, + STATE(6971), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304312] = 5, + [314163] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8924), 1, + ACTIONS(9094), 1, anon_sym_GT_GT, - STATE(6756), 3, + STATE(6972), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304330] = 5, + [314181] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8926), 1, + ACTIONS(9096), 1, anon_sym_SEMI, - STATE(6757), 3, + STATE(6973), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304348] = 5, + [314199] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8928), 1, - sym_AFTER, - STATE(6758), 3, + ACTIONS(7782), 1, + anon_sym_SEMI, + STATE(6974), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304366] = 5, + [314217] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8930), 1, + ACTIONS(9098), 1, anon_sym_RPAREN, - STATE(6759), 3, + STATE(6975), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304384] = 5, + [314235] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8932), 1, + ACTIONS(9100), 1, anon_sym_RPAREN, - STATE(6760), 3, + STATE(6976), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304402] = 5, + [314253] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8934), 1, - anon_sym_GT_GT, - STATE(6761), 3, + ACTIONS(9102), 1, + anon_sym_RBRACK, + STATE(6977), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304420] = 5, + [314271] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8936), 1, + ACTIONS(9104), 1, anon_sym_SEMI, - STATE(6762), 3, + STATE(6978), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304438] = 5, + [314289] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8938), 1, + ACTIONS(9106), 1, anon_sym_SEMI, - STATE(6763), 3, + STATE(6979), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304456] = 5, + [314307] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8940), 1, - anon_sym_SEMI, - STATE(6764), 3, + ACTIONS(9108), 1, + sym_MAP, + STATE(6980), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304474] = 5, + [314325] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8942), 1, - sym_bit_string_value, - STATE(6765), 3, + ACTIONS(9110), 1, + anon_sym_SEMI, + STATE(6981), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304492] = 5, + [314343] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8944), 1, + ACTIONS(7788), 1, anon_sym_SEMI, - STATE(6766), 3, + STATE(6982), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304510] = 5, + [314361] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6594), 1, - anon_sym_RBRACK, - STATE(6767), 3, + ACTIONS(9112), 1, + anon_sym_GT_GT, + STATE(6983), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304528] = 5, + [314379] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8946), 1, - anon_sym_RPAREN, - STATE(6768), 3, + ACTIONS(9114), 1, + anon_sym_SEMI, + STATE(6984), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304546] = 5, + [314397] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8948), 1, - anon_sym_RPAREN, - STATE(6769), 3, + ACTIONS(9116), 1, + anon_sym_SEMI, + STATE(6985), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304564] = 5, + [314415] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8950), 1, + ACTIONS(9118), 1, anon_sym_RPAREN, - STATE(6770), 3, + STATE(6986), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304582] = 5, + [314433] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8952), 1, - anon_sym_RPAREN, - STATE(6771), 3, + ACTIONS(9120), 1, + anon_sym_SEMI, + STATE(6987), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304600] = 5, + [314451] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8954), 1, + ACTIONS(9122), 1, anon_sym_RPAREN, - STATE(6772), 3, + STATE(6988), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304618] = 5, + [314469] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8956), 1, + ACTIONS(9124), 1, anon_sym_SEMI, - STATE(6773), 3, + STATE(6989), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304636] = 5, + [314487] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7609), 1, + ACTIONS(9126), 1, anon_sym_SEMI, - STATE(6774), 3, + STATE(6990), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304654] = 5, + [314505] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8958), 1, + ACTIONS(9128), 1, anon_sym_SEMI, - STATE(6775), 3, + STATE(6991), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304672] = 5, + [314523] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8960), 1, - anon_sym_RPAREN, - STATE(6776), 3, + ACTIONS(9130), 1, + anon_sym_RBRACK, + STATE(6992), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304690] = 5, + [314541] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8962), 1, - sym_bit_string_value, - STATE(6777), 3, + ACTIONS(9132), 1, + anon_sym_GT_GT, + STATE(6993), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304708] = 5, + [314559] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8964), 1, + ACTIONS(9134), 1, sym_bit_string_base, - STATE(6778), 3, + STATE(6994), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304726] = 5, + [314577] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8966), 1, - anon_sym_RPAREN, - STATE(6779), 3, + ACTIONS(9136), 1, + anon_sym_GT_GT, + STATE(6995), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304744] = 5, + [314595] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8968), 1, - anon_sym_RBRACK, - STATE(6780), 3, + ACTIONS(9138), 1, + anon_sym_RPAREN, + STATE(6996), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304762] = 5, + [314613] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8970), 1, + ACTIONS(9140), 1, sym_MAP, - STATE(6781), 3, + STATE(6997), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304780] = 5, + [314631] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8972), 1, + ACTIONS(9142), 1, sym_MAP, - STATE(6782), 3, + STATE(6998), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304798] = 5, + [314649] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8974), 1, - anon_sym_SEMI, - STATE(6783), 3, + ACTIONS(9144), 1, + anon_sym_GT_GT, + STATE(6999), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304816] = 5, + [314667] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8976), 1, - sym_bit_string_value, - STATE(6784), 3, + ACTIONS(6224), 1, + anon_sym_SEMI, + STATE(7000), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304834] = 5, + [314685] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6578), 1, - anon_sym_RBRACK, - STATE(6785), 3, + ACTIONS(7876), 1, + anon_sym_SEMI, + STATE(7001), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304852] = 5, + [314703] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8978), 1, - anon_sym_COLON, - STATE(6786), 3, + ACTIONS(9146), 1, + anon_sym_SEMI, + STATE(7002), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304870] = 5, + [314721] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8980), 1, + ACTIONS(9148), 1, anon_sym_RBRACK, - STATE(6787), 3, + STATE(7003), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304888] = 5, + [314739] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8982), 1, - anon_sym_GT_GT, - STATE(6788), 3, + ACTIONS(9150), 1, + anon_sym_RBRACK, + STATE(7004), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304906] = 5, + [314757] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8984), 1, + ACTIONS(9152), 1, anon_sym_SEMI, - STATE(6789), 3, + STATE(7005), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304924] = 5, + [314775] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8986), 1, - sym_OF, - STATE(6790), 3, + ACTIONS(9154), 1, + anon_sym_SEMI, + STATE(7006), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304942] = 5, + [314793] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8988), 1, + ACTIONS(9156), 1, anon_sym_SEMI, - STATE(6791), 3, + STATE(7007), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304960] = 5, + [314811] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8990), 1, + ACTIONS(9158), 1, anon_sym_SEMI, - STATE(6792), 3, + STATE(7008), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304978] = 5, + [314829] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8992), 1, + ACTIONS(9160), 1, sym_MAP, - STATE(6793), 3, + STATE(7009), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [304996] = 5, + [314847] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8994), 1, - anon_sym_GT_GT, - STATE(6794), 3, + ACTIONS(9162), 1, + sym_string_literal, + STATE(7010), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305014] = 5, + [314865] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8996), 1, + ACTIONS(9164), 1, anon_sym_SEMI, - STATE(6795), 3, + STATE(7011), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305032] = 5, + [314883] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8998), 1, - anon_sym_GT_GT, - STATE(6796), 3, + ACTIONS(9166), 1, + anon_sym_RBRACK, + STATE(7012), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305050] = 5, + [314901] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9000), 1, + ACTIONS(9168), 1, anon_sym_SEMI, - STATE(6797), 3, + STATE(7013), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305068] = 5, + [314919] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9002), 1, - anon_sym_GT_GT, - STATE(6798), 3, + ACTIONS(9170), 1, + sym_bit_string_value, + STATE(7014), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305086] = 5, + [314937] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9004), 1, + ACTIONS(9172), 1, + anon_sym_SEMI, + STATE(7015), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [314955] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(9174), 1, anon_sym_SEMI, - STATE(6799), 3, + STATE(7016), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305104] = 5, + [314973] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9006), 1, + ACTIONS(9176), 1, anon_sym_SEMI, - STATE(6800), 3, + STATE(7017), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305122] = 5, + [314991] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6574), 1, - anon_sym_RBRACK, - STATE(6801), 3, + ACTIONS(9178), 1, + anon_sym_SEMI, + STATE(7018), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305140] = 5, + [315009] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9008), 1, - anon_sym_GT_GT, - STATE(6802), 3, + ACTIONS(9180), 1, + anon_sym_RBRACK, + STATE(7019), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305158] = 5, + [315027] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9010), 1, - anon_sym_SEMI, - STATE(6803), 3, + ACTIONS(9182), 1, + anon_sym_GT_GT, + STATE(7020), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305176] = 5, + [315045] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9012), 1, - anon_sym_SEMI, - STATE(6804), 3, + ACTIONS(9184), 1, + anon_sym_RBRACK, + STATE(7021), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305194] = 5, + [315063] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9014), 1, + ACTIONS(9186), 1, anon_sym_SEMI, - STATE(6805), 3, + STATE(7022), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305212] = 5, + [315081] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9016), 1, + ACTIONS(9188), 1, anon_sym_SEMI, - STATE(6806), 3, + STATE(7023), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305230] = 5, + [315099] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9018), 1, + ACTIONS(9190), 1, anon_sym_RPAREN, - STATE(6807), 3, + STATE(7024), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305248] = 5, + [315117] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9020), 1, + ACTIONS(9192), 1, anon_sym_RPAREN, - STATE(6808), 3, + STATE(7025), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305266] = 5, + [315135] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9022), 1, - anon_sym_RPAREN, - STATE(6809), 3, + ACTIONS(9194), 1, + anon_sym_GT_GT, + STATE(7026), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305284] = 5, + [315153] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9024), 1, - anon_sym_RBRACK, - STATE(6810), 3, + ACTIONS(9196), 1, + anon_sym_SEMI, + STATE(7027), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305302] = 5, + [315171] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9026), 1, + ACTIONS(9198), 1, anon_sym_RPAREN, - STATE(6811), 3, + STATE(7028), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305320] = 5, + [315189] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9028), 1, - anon_sym_RPAREN, - STATE(6812), 3, + ACTIONS(9200), 1, + anon_sym_GT_GT, + STATE(7029), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305338] = 5, + [315207] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9030), 1, + ACTIONS(9202), 1, anon_sym_SEMI, - STATE(6813), 3, + STATE(7030), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305356] = 5, + [315225] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7780), 1, + ACTIONS(9204), 1, anon_sym_SEMI, - STATE(6814), 3, + STATE(7031), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305374] = 5, + [315243] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9032), 1, + ACTIONS(9206), 1, sym_bit_string_base, - STATE(6815), 3, + STATE(7032), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305392] = 5, + [315261] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7765), 1, - sym_END, - STATE(6816), 3, + ACTIONS(9208), 1, + anon_sym_SEMI, + STATE(7033), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305410] = 5, + [315279] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9034), 1, + ACTIONS(9210), 1, sym_MAP, - STATE(6817), 3, + STATE(7034), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305428] = 5, + [315297] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9036), 1, + ACTIONS(9212), 1, sym_MAP, - STATE(6818), 3, + STATE(7035), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305446] = 5, + [315315] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9038), 1, + ACTIONS(9214), 1, anon_sym_SEMI, - STATE(6819), 3, + STATE(7036), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305464] = 5, + [315333] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9040), 1, + ACTIONS(9216), 1, anon_sym_SEMI, - STATE(6820), 3, + STATE(7037), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305482] = 5, + [315351] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9042), 1, + ACTIONS(9218), 1, anon_sym_SEMI, - STATE(6821), 3, + STATE(7038), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305500] = 5, + [315369] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9044), 1, + ACTIONS(9220), 1, anon_sym_SEMI, - STATE(6822), 3, + STATE(7039), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305518] = 5, + [315387] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9046), 1, - anon_sym_GT_GT, - STATE(6823), 3, + ACTIONS(9222), 1, + anon_sym_RPAREN, + STATE(7040), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305536] = 5, + [315405] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9048), 1, + ACTIONS(7176), 1, anon_sym_SEMI, - STATE(6824), 3, + STATE(7041), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305554] = 5, + [315423] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9050), 1, - anon_sym_SEMI, - STATE(6825), 3, + ACTIONS(9224), 1, + anon_sym_RBRACK, + STATE(7042), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305572] = 5, + [315441] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7806), 1, + ACTIONS(9226), 1, anon_sym_SEMI, - STATE(6826), 3, + STATE(7043), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305590] = 5, + [315459] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9052), 1, + ACTIONS(9228), 1, anon_sym_SEMI, - STATE(6827), 3, + STATE(7044), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305608] = 5, + [315477] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9054), 1, + ACTIONS(9230), 1, sym_MAP, - STATE(6828), 3, + STATE(7045), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305626] = 5, + [315495] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9056), 1, - anon_sym_SEMI, - STATE(6829), 3, + ACTIONS(9232), 1, + anon_sym_RPAREN, + STATE(7046), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305644] = 5, + [315513] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9058), 1, - anon_sym_SEMI, - STATE(6830), 3, + ACTIONS(9234), 1, + anon_sym_RPAREN, + STATE(7047), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305662] = 5, + [315531] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9060), 1, - anon_sym_SEMI, - STATE(6831), 3, + ACTIONS(9236), 1, + anon_sym_RPAREN, + STATE(7048), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305680] = 5, + [315549] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5808), 1, - anon_sym_SEMI, - STATE(6832), 3, + ACTIONS(9238), 1, + sym_OF, + STATE(7049), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305698] = 5, + [315567] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9062), 1, + ACTIONS(9240), 1, anon_sym_SEMI, - STATE(6833), 3, + STATE(7050), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305716] = 5, + [315585] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9064), 1, + ACTIONS(9242), 1, anon_sym_SEMI, - STATE(6834), 3, + STATE(7051), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305734] = 5, + [315603] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9066), 1, - anon_sym_RBRACK, - STATE(6835), 3, + ACTIONS(9244), 1, + sym_bit_string_value, + STATE(7052), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305752] = 5, + [315621] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9068), 1, - anon_sym_GT_GT, - STATE(6836), 3, + ACTIONS(9246), 1, + anon_sym_RPAREN, + STATE(7053), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305770] = 5, + [315639] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9070), 1, - anon_sym_GT_GT, - STATE(6837), 3, + ACTIONS(9248), 1, + anon_sym_RBRACK, + STATE(7054), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305788] = 5, + [315657] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9072), 1, - anon_sym_RBRACK, - STATE(6838), 3, + ACTIONS(9250), 1, + anon_sym_SEMI, + STATE(7055), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305806] = 5, + [315675] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9074), 1, + ACTIONS(9252), 1, + sym_bit_string_value, + STATE(7056), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [315693] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(9254), 1, anon_sym_RPAREN, - STATE(6839), 3, + STATE(7057), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305824] = 5, + [315711] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9076), 1, - anon_sym_GT_GT, - STATE(6840), 3, + ACTIONS(9256), 1, + anon_sym_RBRACK, + STATE(7058), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305842] = 5, + [315729] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9078), 1, + ACTIONS(9258), 1, anon_sym_RPAREN, - STATE(6841), 3, + STATE(7059), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305860] = 5, + [315747] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6189), 1, - anon_sym_SEMI, - STATE(6842), 3, + ACTIONS(9260), 1, + anon_sym_COLON, + STATE(7060), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305878] = 5, + [315765] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9080), 1, + ACTIONS(9262), 1, sym_bit_string_base, - STATE(6843), 3, + STATE(7061), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305896] = 5, + [315783] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9082), 1, - sym_IS, - STATE(6844), 3, + ACTIONS(9264), 1, + anon_sym_RBRACK, + STATE(7062), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305914] = 5, + [315801] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9084), 1, + ACTIONS(9266), 1, sym_MAP, - STATE(6845), 3, + STATE(7063), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305932] = 5, + [315819] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9086), 1, + ACTIONS(9268), 1, sym_MAP, - STATE(6846), 3, + STATE(7064), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305950] = 5, + [315837] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7852), 1, + ACTIONS(9270), 1, anon_sym_SEMI, - STATE(6847), 3, + STATE(7065), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305968] = 5, + [315855] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9088), 1, + ACTIONS(9272), 1, anon_sym_SEMI, - STATE(6848), 3, + STATE(7066), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [305986] = 5, + [315873] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9090), 1, + ACTIONS(9274), 1, anon_sym_SEMI, - STATE(6849), 3, + STATE(7067), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306004] = 5, + [315891] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9092), 1, + ACTIONS(9276), 1, sym_MAP, - STATE(6850), 3, + STATE(7068), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306022] = 5, + [315909] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9094), 1, - anon_sym_COLON, - STATE(6851), 3, + ACTIONS(9278), 1, + anon_sym_SEMI, + STATE(7069), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306040] = 5, + [315927] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9096), 1, + ACTIONS(9280), 1, anon_sym_SEMI, - STATE(6852), 3, + STATE(7070), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306058] = 5, + [315945] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9098), 1, + ACTIONS(9282), 1, anon_sym_SEMI, - STATE(6853), 3, + STATE(7071), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306076] = 5, + [315963] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7833), 1, - anon_sym_COLON, - STATE(6854), 3, + ACTIONS(7861), 1, + anon_sym_SEMI, + STATE(7072), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306094] = 5, + [315981] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9100), 1, + ACTIONS(9284), 1, anon_sym_SEMI, - STATE(6855), 3, + STATE(7073), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306112] = 5, + [315999] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9102), 1, + ACTIONS(9286), 1, anon_sym_SEMI, - STATE(6856), 3, + STATE(7074), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306130] = 5, + [316017] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9104), 1, + ACTIONS(9288), 1, anon_sym_SEMI, - STATE(6857), 3, + STATE(7075), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306148] = 5, + [316035] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9106), 1, + ACTIONS(9290), 1, anon_sym_SEMI, - STATE(6858), 3, + STATE(7076), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306166] = 5, + [316053] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9108), 1, + ACTIONS(9292), 1, anon_sym_SEMI, - STATE(6859), 3, + STATE(7077), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306184] = 5, + [316071] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9110), 1, + ACTIONS(9294), 1, anon_sym_SEMI, - STATE(6860), 3, + STATE(7078), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306202] = 5, + [316089] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9112), 1, + ACTIONS(9296), 1, + anon_sym_SEMI, + STATE(7079), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [316107] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(9298), 1, anon_sym_RPAREN, - STATE(6861), 3, + STATE(7080), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306220] = 5, + [316125] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9114), 1, + ACTIONS(9300), 1, anon_sym_SEMI, - STATE(6862), 3, + STATE(7081), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306238] = 5, + [316143] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9116), 1, + ACTIONS(9302), 1, sym_bit_string_base, - STATE(6863), 3, + STATE(7082), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306256] = 5, + [316161] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9118), 1, - anon_sym_GT_GT, - STATE(6864), 3, + ACTIONS(9304), 1, + anon_sym_SEMI, + STATE(7083), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306274] = 5, + [316179] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9120), 1, + ACTIONS(9306), 1, sym_MAP, - STATE(6865), 3, + STATE(7084), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306292] = 5, + [316197] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9122), 1, + ACTIONS(9308), 1, sym_MAP, - STATE(6866), 3, + STATE(7085), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306310] = 5, + [316215] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9124), 1, + ACTIONS(9310), 1, anon_sym_SEMI, - STATE(6867), 3, + STATE(7086), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306328] = 5, + [316233] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9126), 1, + ACTIONS(9312), 1, sym_MAP, - STATE(6868), 3, + STATE(7087), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306346] = 5, + [316251] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9128), 1, - anon_sym_RBRACK, - STATE(6869), 3, + ACTIONS(9314), 1, + anon_sym_SEMI, + STATE(7088), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306364] = 5, + [316269] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6314), 1, - anon_sym_RBRACK, - STATE(6870), 3, + ACTIONS(9316), 1, + anon_sym_SEMI, + STATE(7089), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306382] = 5, + [316287] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9130), 1, - sym_IS, - STATE(6871), 3, + ACTIONS(9318), 1, + anon_sym_SEMI, + STATE(7090), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306400] = 5, + [316305] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9132), 1, + ACTIONS(9320), 1, anon_sym_SEMI, - STATE(6872), 3, + STATE(7091), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306418] = 5, + [316323] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9134), 1, + ACTIONS(9322), 1, anon_sym_SEMI, - STATE(6873), 3, + STATE(7092), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306436] = 5, + [316341] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9136), 1, + ACTIONS(9324), 1, anon_sym_SEMI, - STATE(6874), 3, + STATE(7093), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306454] = 5, + [316359] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9138), 1, + ACTIONS(9326), 1, anon_sym_SEMI, - STATE(6875), 3, + STATE(7094), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306472] = 5, + [316377] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9140), 1, - anon_sym_SEMI, - STATE(6876), 3, + ACTIONS(9328), 1, + anon_sym_RBRACK, + STATE(7095), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306490] = 5, + [316395] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9142), 1, + ACTIONS(9330), 1, sym_bit_string_base, - STATE(6877), 3, + STATE(7096), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306508] = 5, + [316413] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9144), 1, - sym__directive_newline, - STATE(6878), 3, + ACTIONS(9332), 1, + anon_sym_SEMI, + STATE(7097), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306526] = 5, + [316431] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9146), 1, + ACTIONS(9334), 1, sym_MAP, - STATE(6879), 3, + STATE(7098), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306544] = 5, + [316449] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9148), 1, + ACTIONS(9336), 1, sym_MAP, - STATE(6880), 3, + STATE(7099), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306562] = 5, + [316467] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9150), 1, + ACTIONS(9338), 1, anon_sym_SEMI, - STATE(6881), 3, + STATE(7100), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306580] = 5, + [316485] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9152), 1, + ACTIONS(9340), 1, sym_MAP, - STATE(6882), 3, + STATE(7101), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306598] = 5, + [316503] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9154), 1, - sym_string_literal, - STATE(6883), 3, + ACTIONS(7259), 1, + anon_sym_SEMI, + STATE(7102), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306616] = 5, + [316521] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9156), 1, - sym_string_literal, - STATE(6884), 3, + ACTIONS(9342), 1, + anon_sym_SEMI, + STATE(7103), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306634] = 5, + [316539] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9158), 1, + ACTIONS(9344), 1, anon_sym_SEMI, - STATE(6885), 3, + STATE(7104), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306652] = 5, + [316557] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9160), 1, - sym_PROTECTED, - STATE(6886), 3, + ACTIONS(9346), 1, + anon_sym_GT_GT, + STATE(7105), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306670] = 5, + [316575] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9162), 1, + ACTIONS(9348), 1, anon_sym_SEMI, - STATE(6887), 3, + STATE(7106), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306688] = 5, + [316593] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9164), 1, + ACTIONS(9350), 1, anon_sym_SEMI, - STATE(6888), 3, + STATE(7107), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306706] = 5, + [316611] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9166), 1, + ACTIONS(9352), 1, anon_sym_SEMI, - STATE(6889), 3, + STATE(7108), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306724] = 5, + [316629] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9168), 1, + ACTIONS(9354), 1, sym_bit_string_base, - STATE(6890), 3, + STATE(7109), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306742] = 5, + [316647] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9170), 1, - sym__directive_newline, - STATE(6891), 3, + ACTIONS(6075), 1, + sym_END, + STATE(7110), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306760] = 5, + [316665] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9172), 1, + ACTIONS(9356), 1, sym_MAP, - STATE(6892), 3, + STATE(7111), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306778] = 5, + [316683] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9174), 1, + ACTIONS(9358), 1, sym_MAP, - STATE(6893), 3, + STATE(7112), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306796] = 5, + [316701] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7611), 1, + ACTIONS(9360), 1, anon_sym_SEMI, - STATE(6894), 3, + STATE(7113), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306814] = 5, + [316719] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9176), 1, + ACTIONS(9362), 1, sym_MAP, - STATE(6895), 3, + STATE(7114), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306832] = 5, + [316737] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9154), 1, - anon_sym_RPAREN, - STATE(6896), 3, + ACTIONS(9364), 1, + anon_sym_SEMI, + STATE(7115), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306850] = 5, + [316755] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9178), 1, - anon_sym_COLON, - STATE(6897), 3, + ACTIONS(6605), 1, + anon_sym_SEMI, + STATE(7116), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306868] = 5, + [316773] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9180), 1, + ACTIONS(9366), 1, anon_sym_SEMI, - STATE(6898), 3, + STATE(7117), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306886] = 5, + [316791] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7006), 1, - sym_END, - STATE(6899), 3, + ACTIONS(9368), 1, + anon_sym_LPAREN, + STATE(7118), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306904] = 5, + [316809] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9182), 1, + ACTIONS(9370), 1, anon_sym_SEMI, - STATE(6900), 3, + STATE(7119), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306922] = 5, + [316827] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9184), 1, - anon_sym_RPAREN, - STATE(6901), 3, + ACTIONS(9372), 1, + anon_sym_SEMI, + STATE(7120), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306940] = 5, + [316845] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9186), 1, + ACTIONS(9374), 1, sym_bit_string_base, - STATE(6902), 3, + STATE(7121), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306958] = 5, + [316863] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9188), 1, - anon_sym_RBRACK, - STATE(6903), 3, + ACTIONS(9376), 1, + anon_sym_SEMI, + STATE(7122), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306976] = 5, + [316881] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9190), 1, + ACTIONS(9378), 1, sym_MAP, - STATE(6904), 3, + STATE(7123), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [306994] = 5, + [316899] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9192), 1, + ACTIONS(9380), 1, sym_MAP, - STATE(6905), 3, + STATE(7124), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307012] = 5, + [316917] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9194), 1, - anon_sym_GT_GT, - STATE(6906), 3, + ACTIONS(7329), 1, + anon_sym_SEMI, + STATE(7125), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307030] = 5, + [316935] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9196), 1, + ACTIONS(9382), 1, sym_MAP, - STATE(6907), 3, + STATE(7126), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307048] = 5, + [316953] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9198), 1, - anon_sym_GT_GT, - STATE(6908), 3, + ACTIONS(9384), 1, + anon_sym_SEMI, + STATE(7127), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307066] = 5, + [316971] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9200), 1, - anon_sym_GT_GT, - STATE(6909), 3, + ACTIONS(7449), 1, + anon_sym_SEMI, + STATE(7128), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307084] = 5, + [316989] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9202), 1, - sym_bit_string_value, - STATE(6910), 3, + ACTIONS(9386), 1, + anon_sym_SEMI, + STATE(7129), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307102] = 5, + [317007] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9204), 1, - anon_sym_SEMI, - STATE(6911), 3, + ACTIONS(9388), 1, + anon_sym_LPAREN, + STATE(7130), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307120] = 5, + [317025] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9206), 1, + ACTIONS(9390), 1, anon_sym_SEMI, - STATE(6912), 3, + STATE(7131), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307138] = 5, + [317043] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9208), 1, - anon_sym_RPAREN, - STATE(6913), 3, + ACTIONS(9392), 1, + anon_sym_SEMI, + STATE(7132), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307156] = 5, + [317061] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9210), 1, + ACTIONS(9394), 1, sym_bit_string_base, - STATE(6914), 3, + STATE(7133), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307174] = 5, + [317079] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6560), 1, - anon_sym_RBRACK, - STATE(6915), 3, + ACTIONS(9396), 1, + anon_sym_SEMI, + STATE(7134), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307192] = 5, + [317097] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9212), 1, + ACTIONS(9398), 1, sym_MAP, - STATE(6916), 3, + STATE(7135), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307210] = 5, + [317115] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9214), 1, + ACTIONS(9400), 1, sym_MAP, - STATE(6917), 3, + STATE(7136), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307228] = 5, + [317133] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9216), 1, - sym_bit_string_value, - STATE(6918), 3, + ACTIONS(9402), 1, + anon_sym_SEMI, + STATE(7137), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307246] = 5, + [317151] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9218), 1, + ACTIONS(9404), 1, sym_MAP, - STATE(6919), 3, + STATE(7138), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307264] = 5, + [317169] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9220), 1, - anon_sym_RBRACK, - STATE(6920), 3, + ACTIONS(7546), 1, + anon_sym_SEMI, + STATE(7139), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307282] = 5, + [317187] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9222), 1, - sym_GENERATE, - STATE(6921), 3, + ACTIONS(9406), 1, + anon_sym_SEMI, + STATE(7140), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307300] = 5, + [317205] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9224), 1, - anon_sym_RPAREN, - STATE(6922), 3, + ACTIONS(9408), 1, + anon_sym_SEMI, + STATE(7141), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307318] = 5, + [317223] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7552), 1, + ACTIONS(9410), 1, anon_sym_SEMI, - STATE(6923), 3, + STATE(7142), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307336] = 5, + [317241] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9226), 1, + ACTIONS(9412), 1, anon_sym_SEMI, - STATE(6924), 3, + STATE(7143), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307354] = 5, + [317259] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9228), 1, - sym_bit_string_value, - STATE(6925), 3, + ACTIONS(9414), 1, + anon_sym_SEMI, + STATE(7144), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307372] = 5, + [317277] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9230), 1, + ACTIONS(9416), 1, sym_bit_string_base, - STATE(6926), 3, + STATE(7145), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307390] = 5, + [317295] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9232), 1, + ACTIONS(9418), 1, anon_sym_SEMI, - STATE(6927), 3, + STATE(7146), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307408] = 5, + [317313] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9234), 1, + ACTIONS(9420), 1, sym_MAP, - STATE(6928), 3, + STATE(7147), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307426] = 5, + [317331] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9236), 1, + ACTIONS(9422), 1, sym_MAP, - STATE(6929), 3, + STATE(7148), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307444] = 5, + [317349] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9238), 1, - anon_sym_COLON, - STATE(6930), 3, + ACTIONS(9424), 1, + anon_sym_SEMI, + STATE(7149), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307462] = 5, + [317367] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9240), 1, + ACTIONS(9426), 1, sym_MAP, - STATE(6931), 3, + STATE(7150), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307480] = 5, + [317385] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9242), 1, - anon_sym_RPAREN, - STATE(6932), 3, + ACTIONS(9428), 1, + anon_sym_SEMI, + STATE(7151), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307498] = 5, + [317403] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9244), 1, - sym_bit_string_value, - STATE(6933), 3, + ACTIONS(9430), 1, + anon_sym_SEMI, + STATE(7152), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307516] = 5, + [317421] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9246), 1, - anon_sym_RPAREN, - STATE(6934), 3, + ACTIONS(9432), 1, + anon_sym_RBRACK, + STATE(7153), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307534] = 5, + [317439] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9248), 1, + ACTIONS(7681), 1, anon_sym_SEMI, - STATE(6935), 3, + STATE(7154), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307552] = 5, + [317457] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9250), 1, - anon_sym_RBRACK, - STATE(6936), 3, + ACTIONS(9434), 1, + anon_sym_GT_GT, + STATE(7155), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307570] = 5, + [317475] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9252), 1, - anon_sym_SEMI, - STATE(6937), 3, + ACTIONS(9436), 1, + anon_sym_GT_GT, + STATE(7156), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307588] = 5, + [317493] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9254), 1, + ACTIONS(9438), 1, sym_bit_string_base, - STATE(6938), 3, + STATE(7157), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307606] = 5, + [317511] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9256), 1, - sym_GENERATE, - STATE(6939), 3, + ACTIONS(9440), 1, + anon_sym_GT_GT, + STATE(7158), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307624] = 5, + [317529] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9258), 1, + ACTIONS(9442), 1, sym_MAP, - STATE(6940), 3, + STATE(7159), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307642] = 5, + [317547] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9260), 1, + ACTIONS(9444), 1, sym_MAP, - STATE(6941), 3, + STATE(7160), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307660] = 5, + [317565] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9262), 1, + ACTIONS(6037), 1, anon_sym_SEMI, - STATE(6942), 3, + STATE(7161), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307678] = 5, + [317583] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9264), 1, + ACTIONS(9446), 1, sym_MAP, - STATE(6943), 3, + STATE(7162), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307696] = 5, + [317601] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9266), 1, - sym_IN, - STATE(6944), 3, + ACTIONS(7685), 1, + anon_sym_SEMI, + STATE(7163), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307714] = 5, + [317619] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9268), 1, + ACTIONS(9448), 1, anon_sym_SEMI, - STATE(6945), 3, + STATE(7164), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307732] = 5, + [317637] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9270), 1, - anon_sym_DOT, - STATE(6946), 3, + ACTIONS(9450), 1, + anon_sym_SEMI, + STATE(7165), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307750] = 5, + [317655] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9272), 1, + ACTIONS(9452), 1, anon_sym_SEMI, - STATE(6947), 3, + STATE(7166), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307768] = 5, + [317673] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9274), 1, + ACTIONS(9454), 1, anon_sym_SEMI, - STATE(6948), 3, + STATE(7167), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307786] = 5, + [317691] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9276), 1, + ACTIONS(9456), 1, anon_sym_SEMI, - STATE(6949), 3, + STATE(7168), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307804] = 5, + [317709] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9278), 1, + ACTIONS(9458), 1, sym_bit_string_base, - STATE(6950), 3, + STATE(7169), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307822] = 5, + [317727] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9280), 1, + ACTIONS(9460), 1, anon_sym_RPAREN, - STATE(6951), 3, + STATE(7170), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307840] = 5, + [317745] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9282), 1, + ACTIONS(9462), 1, sym_MAP, - STATE(6952), 3, + STATE(7171), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307858] = 5, + [317763] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9284), 1, + ACTIONS(9464), 1, sym_MAP, - STATE(6953), 3, + STATE(7172), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307876] = 5, + [317781] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9286), 1, + ACTIONS(9466), 1, anon_sym_SEMI, - STATE(6954), 3, + STATE(7173), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307894] = 5, + [317799] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9288), 1, + ACTIONS(9468), 1, sym_MAP, - STATE(6955), 3, + STATE(7174), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307912] = 5, + [317817] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9290), 1, - anon_sym_RBRACK, - STATE(6956), 3, + ACTIONS(9470), 1, + anon_sym_SEMI, + STATE(7175), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307930] = 5, + [317835] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9292), 1, + ACTIONS(6031), 1, anon_sym_SEMI, - STATE(6957), 3, + STATE(7176), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307948] = 5, + [317853] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9294), 1, + ACTIONS(7714), 1, anon_sym_SEMI, - STATE(6958), 3, + STATE(7177), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307966] = 5, + [317871] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9296), 1, - anon_sym_SEMI, - STATE(6959), 3, + ACTIONS(9472), 1, + sym_bit_string_value, + STATE(7178), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [307984] = 5, + [317889] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9298), 1, + ACTIONS(7732), 1, anon_sym_SEMI, - STATE(6960), 3, + STATE(7179), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308002] = 5, + [317907] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9300), 1, + ACTIONS(9474), 1, anon_sym_SEMI, - STATE(6961), 3, + STATE(7180), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308020] = 5, + [317925] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9302), 1, + ACTIONS(9476), 1, sym_bit_string_base, - STATE(6962), 3, + STATE(7181), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308038] = 5, + [317943] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6538), 1, - anon_sym_RBRACK, - STATE(6963), 3, + ACTIONS(9478), 1, + anon_sym_SEMI, + STATE(7182), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308056] = 5, + [317961] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9304), 1, + ACTIONS(9480), 1, sym_MAP, - STATE(6964), 3, + STATE(7183), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308074] = 5, + [317979] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9306), 1, + ACTIONS(9482), 1, sym_MAP, - STATE(6965), 3, + STATE(7184), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308092] = 5, + [317997] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9308), 1, + ACTIONS(9484), 1, anon_sym_SEMI, - STATE(6966), 3, + STATE(7185), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308110] = 5, + [318015] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9310), 1, + ACTIONS(9486), 1, sym_MAP, - STATE(6967), 3, + STATE(7186), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308128] = 5, + [318033] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9312), 1, + ACTIONS(9488), 1, anon_sym_SEMI, - STATE(6968), 3, + STATE(7187), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308146] = 5, + [318051] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9314), 1, + ACTIONS(9490), 1, anon_sym_SEMI, - STATE(6969), 3, + STATE(7188), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308164] = 5, + [318069] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9316), 1, - anon_sym_SEMI, - STATE(6970), 3, + ACTIONS(9492), 1, + anon_sym_RBRACK, + STATE(7189), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308182] = 5, + [318087] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9318), 1, - anon_sym_SEMI, - STATE(6971), 3, + ACTIONS(9494), 1, + anon_sym_RPAREN, + STATE(7190), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308200] = 5, + [318105] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9320), 1, + ACTIONS(9496), 1, anon_sym_SEMI, - STATE(6972), 3, + STATE(7191), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308218] = 5, + [318123] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9322), 1, + ACTIONS(9498), 1, anon_sym_SEMI, - STATE(6973), 3, + STATE(7192), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308236] = 5, + [318141] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9324), 1, + ACTIONS(9500), 1, sym_bit_string_base, - STATE(6974), 3, + STATE(7193), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308254] = 5, + [318159] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9326), 1, - sym_MAP, - STATE(6975), 3, + ACTIONS(9502), 1, + anon_sym_SEMI, + STATE(7194), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308272] = 5, + [318177] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9328), 1, + ACTIONS(9504), 1, sym_MAP, - STATE(6976), 3, + STATE(7195), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308290] = 5, + [318195] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9330), 1, + ACTIONS(9506), 1, sym_MAP, - STATE(6977), 3, + STATE(7196), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308308] = 5, + [318213] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9332), 1, + ACTIONS(9508), 1, anon_sym_SEMI, - STATE(6978), 3, + STATE(7197), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308326] = 5, + [318231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9334), 1, + ACTIONS(9510), 1, sym_MAP, - STATE(6979), 3, + STATE(7198), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308344] = 5, + [318249] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7050), 1, + ACTIONS(9512), 1, anon_sym_SEMI, - STATE(6980), 3, + STATE(7199), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308362] = 5, + [318267] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9336), 1, + ACTIONS(9514), 1, anon_sym_SEMI, - STATE(6981), 3, + STATE(7200), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308380] = 5, + [318285] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9338), 1, - anon_sym_RBRACK, - STATE(6982), 3, + ACTIONS(9516), 1, + anon_sym_SEMI, + STATE(7201), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308398] = 5, + [318303] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9340), 1, - anon_sym_SEMI, - STATE(6983), 3, + ACTIONS(9518), 1, + anon_sym_GT_GT, + STATE(7202), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308416] = 5, + [318321] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9342), 1, + ACTIONS(9520), 1, anon_sym_SEMI, - STATE(6984), 3, + STATE(7203), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308434] = 5, + [318339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9344), 1, - anon_sym_SEMI, - STATE(6985), 3, + ACTIONS(9522), 1, + anon_sym_GT_GT, + STATE(7204), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308452] = 5, + [318357] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9346), 1, + ACTIONS(9524), 1, sym_bit_string_base, - STATE(6986), 3, + STATE(7205), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308470] = 5, + [318375] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9348), 1, - anon_sym_RBRACK, - STATE(6987), 3, + ACTIONS(6093), 1, + anon_sym_SEMI, + STATE(7206), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308488] = 5, + [318393] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9350), 1, + ACTIONS(9526), 1, sym_MAP, - STATE(6988), 3, + STATE(7207), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308506] = 5, + [318411] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9352), 1, + ACTIONS(9528), 1, sym_MAP, - STATE(6989), 3, + STATE(7208), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308524] = 5, + [318429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9354), 1, - anon_sym_SEMI, - STATE(6990), 3, + ACTIONS(9530), 1, + anon_sym_RBRACK, + STATE(7209), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308542] = 5, + [318447] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9356), 1, + ACTIONS(9532), 1, sym_MAP, - STATE(6991), 3, + STATE(7210), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308560] = 5, + [318465] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9358), 1, - anon_sym_GT_GT, - STATE(6992), 3, + ACTIONS(9534), 1, + anon_sym_SEMI, + STATE(7211), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308578] = 5, + [318483] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9360), 1, + ACTIONS(9536), 1, anon_sym_GT_GT, - STATE(6993), 3, + STATE(7212), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308596] = 5, + [318501] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7470), 1, + ACTIONS(9538), 1, anon_sym_SEMI, - STATE(6994), 3, + STATE(7213), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308614] = 5, + [318519] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9362), 1, - anon_sym_RPAREN, - STATE(6995), 3, + ACTIONS(9540), 1, + anon_sym_SEMI, + STATE(7214), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308632] = 5, + [318537] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9364), 1, + ACTIONS(9542), 1, anon_sym_SEMI, - STATE(6996), 3, + STATE(7215), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308650] = 5, + [318555] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9366), 1, + ACTIONS(9544), 1, anon_sym_SEMI, - STATE(6997), 3, + STATE(7216), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308668] = 5, + [318573] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9368), 1, + ACTIONS(9546), 1, sym_bit_string_base, - STATE(6998), 3, + STATE(7217), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308686] = 5, + [318591] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9370), 1, - anon_sym_SEMI, - STATE(6999), 3, + ACTIONS(9548), 1, + sym__directive_newline, + STATE(7218), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308704] = 5, + [318609] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9372), 1, + ACTIONS(9550), 1, sym_MAP, - STATE(7000), 3, + STATE(7219), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308722] = 5, + [318627] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9374), 1, + ACTIONS(9552), 1, sym_MAP, - STATE(7001), 3, + STATE(7220), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308740] = 5, + [318645] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9376), 1, + ACTIONS(8324), 1, anon_sym_SEMI, - STATE(7002), 3, + STATE(7221), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308758] = 5, + [318663] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9378), 1, + ACTIONS(9554), 1, sym_MAP, - STATE(7003), 3, + STATE(7222), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308776] = 5, + [318681] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6546), 1, - anon_sym_RBRACK, - STATE(7004), 3, + ACTIONS(9556), 1, + anon_sym_SEMI, + STATE(7223), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308794] = 5, + [318699] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9380), 1, + ACTIONS(9558), 1, anon_sym_SEMI, - STATE(7005), 3, + STATE(7224), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308812] = 5, + [318717] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9382), 1, + ACTIONS(9560), 1, anon_sym_SEMI, - STATE(7006), 3, + STATE(7225), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308830] = 5, + [318735] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9384), 1, - anon_sym_GT_GT, - STATE(7007), 3, + ACTIONS(7414), 1, + anon_sym_SEMI, + STATE(7226), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308848] = 5, + [318753] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9386), 1, + ACTIONS(5737), 1, anon_sym_SEMI, - STATE(7008), 3, + STATE(7227), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308866] = 5, + [318771] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6498), 1, + ACTIONS(794), 1, anon_sym_SEMI, - STATE(7009), 3, + STATE(7228), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308884] = 5, + [318789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9388), 1, + ACTIONS(9562), 1, sym_bit_string_base, - STATE(7010), 3, + STATE(7229), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308902] = 5, + [318807] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9390), 1, - anon_sym_RPAREN, - STATE(7011), 3, + ACTIONS(9564), 1, + anon_sym_GT_GT, + STATE(7230), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308920] = 5, + [318825] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9392), 1, + ACTIONS(9566), 1, sym_MAP, - STATE(7012), 3, + STATE(7231), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308938] = 5, + [318843] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9394), 1, + ACTIONS(9568), 1, sym_MAP, - STATE(7013), 3, + STATE(7232), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308956] = 5, + [318861] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9396), 1, + ACTIONS(5662), 1, anon_sym_SEMI, - STATE(7014), 3, + STATE(7233), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308974] = 5, + [318879] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9398), 1, + ACTIONS(9570), 1, sym_MAP, - STATE(7015), 3, + STATE(7234), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [308992] = 5, + [318897] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9400), 1, - anon_sym_RPAREN, - STATE(7016), 3, + ACTIONS(5648), 1, + anon_sym_SEMI, + STATE(7235), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309010] = 5, + [318915] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9402), 1, + ACTIONS(9572), 1, anon_sym_SEMI, - STATE(7017), 3, + STATE(7236), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309028] = 5, + [318933] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9404), 1, - anon_sym_COLON, - STATE(7018), 3, + ACTIONS(9574), 1, + anon_sym_SEMI, + STATE(7237), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309046] = 5, + [318951] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9406), 1, - anon_sym_COLON, - STATE(7019), 3, + ACTIONS(9576), 1, + sym__directive_newline, + STATE(7238), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309064] = 5, + [318969] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9408), 1, + ACTIONS(9578), 1, anon_sym_SEMI, - STATE(7020), 3, + STATE(7239), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309082] = 5, + [318987] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9410), 1, - anon_sym_SEMI, - STATE(7021), 3, + ACTIONS(9580), 1, + anon_sym_RPAREN, + STATE(7240), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309100] = 5, + [319005] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9412), 1, + ACTIONS(9582), 1, sym_bit_string_base, - STATE(7022), 3, + STATE(7241), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309118] = 5, + [319023] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7444), 1, - anon_sym_SEMI, - STATE(7023), 3, + ACTIONS(9584), 1, + sym_THEN, + STATE(7242), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309136] = 5, + [319041] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9414), 1, + ACTIONS(9586), 1, sym_MAP, - STATE(7024), 3, + STATE(7243), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309154] = 5, + [319059] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9416), 1, + ACTIONS(9588), 1, sym_MAP, - STATE(7025), 3, + STATE(7244), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309172] = 5, + [319077] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9418), 1, + ACTIONS(6222), 1, anon_sym_SEMI, - STATE(7026), 3, + STATE(7245), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309190] = 5, + [319095] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9420), 1, + ACTIONS(9590), 1, sym_MAP, - STATE(7027), 3, + STATE(7246), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309208] = 5, + [319113] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9422), 1, - anon_sym_SEMI, - STATE(7028), 3, + ACTIONS(9592), 1, + anon_sym_GT_GT, + STATE(7247), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309226] = 5, + [319131] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9424), 1, - anon_sym_DOT, - STATE(7029), 3, + ACTIONS(9594), 1, + anon_sym_SEMI, + STATE(7248), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309244] = 5, + [319149] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9426), 1, - anon_sym_COLON, - STATE(7030), 3, + ACTIONS(9596), 1, + anon_sym_SEMI, + STATE(7249), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309262] = 5, + [319167] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9428), 1, - anon_sym_COLON, - STATE(7031), 3, + ACTIONS(9598), 1, + sym__directive_newline, + STATE(7250), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309280] = 5, + [319185] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9430), 1, + ACTIONS(9600), 1, anon_sym_SEMI, - STATE(7032), 3, + STATE(7251), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309298] = 5, + [319203] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9432), 1, + ACTIONS(9602), 1, anon_sym_SEMI, - STATE(7033), 3, + STATE(7252), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309316] = 5, + [319221] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9434), 1, + ACTIONS(9604), 1, sym_bit_string_base, - STATE(7034), 3, + STATE(7253), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309334] = 5, + [319239] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9436), 1, - anon_sym_COLON, - STATE(7035), 3, + ACTIONS(7480), 1, + anon_sym_SEMI, + STATE(7254), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309352] = 5, + [319257] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9438), 1, + ACTIONS(9606), 1, sym_MAP, - STATE(7036), 3, + STATE(7255), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309370] = 5, + [319275] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9440), 1, + ACTIONS(9608), 1, sym_MAP, - STATE(7037), 3, + STATE(7256), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309388] = 5, + [319293] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9442), 1, - anon_sym_SEMI, - STATE(7038), 3, + ACTIONS(9610), 1, + anon_sym_GT_GT, + STATE(7257), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309406] = 5, + [319311] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9444), 1, + ACTIONS(9612), 1, sym_MAP, - STATE(7039), 3, + STATE(7258), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309424] = 5, + [319329] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9446), 1, + ACTIONS(9614), 1, anon_sym_SEMI, - STATE(7040), 3, + STATE(7259), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309442] = 5, + [319347] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9448), 1, - anon_sym_DOT, - STATE(7041), 3, + ACTIONS(9616), 1, + anon_sym_SEMI, + STATE(7260), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309460] = 5, + [319365] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7353), 1, - anon_sym_SEMI, - STATE(7042), 3, + ACTIONS(9618), 1, + anon_sym_RPAREN, + STATE(7261), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309478] = 5, + [319383] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9450), 1, - anon_sym_SEMI, - STATE(7043), 3, + ACTIONS(9620), 1, + anon_sym_RBRACK, + STATE(7262), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309496] = 5, + [319401] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9452), 1, - anon_sym_SEMI, - STATE(7044), 3, + ACTIONS(9622), 1, + anon_sym_RBRACK, + STATE(7263), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309514] = 5, + [319419] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9454), 1, + ACTIONS(9624), 1, anon_sym_SEMI, - STATE(7045), 3, + STATE(7264), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309532] = 5, + [319437] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9456), 1, + ACTIONS(9626), 1, sym_bit_string_base, - STATE(7046), 3, + STATE(7265), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309550] = 5, + [319455] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9458), 1, - anon_sym_SEMI, - STATE(7047), 3, + ACTIONS(9628), 1, + sym_THEN, + STATE(7266), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309568] = 5, + [319473] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9460), 1, + ACTIONS(9630), 1, sym_MAP, - STATE(7048), 3, + STATE(7267), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309586] = 5, + [319491] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9462), 1, + ACTIONS(9632), 1, sym_MAP, - STATE(7049), 3, + STATE(7268), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309604] = 5, + [319509] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9464), 1, + ACTIONS(9634), 1, anon_sym_SEMI, - STATE(7050), 3, + STATE(7269), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309622] = 5, + [319527] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9466), 1, + ACTIONS(9636), 1, sym_MAP, - STATE(7051), 3, + STATE(7270), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309640] = 5, + [319545] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9468), 1, - anon_sym_GT_GT, - STATE(7052), 3, + ACTIONS(9638), 1, + anon_sym_SEMI, + STATE(7271), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309658] = 5, + [319563] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9470), 1, + ACTIONS(7232), 1, anon_sym_SEMI, - STATE(7053), 3, + STATE(7272), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309676] = 5, + [319581] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9472), 1, - anon_sym_GT_GT, - STATE(7054), 3, + ACTIONS(9640), 1, + anon_sym_SEMI, + STATE(7273), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309694] = 5, + [319599] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9474), 1, - anon_sym_SEMI, - STATE(7055), 3, + ACTIONS(9642), 1, + anon_sym_RPAREN, + STATE(7274), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309712] = 5, + [319617] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9476), 1, - anon_sym_SEMI, - STATE(7056), 3, + ACTIONS(9644), 1, + sym_bit_string_value, + STATE(7275), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309730] = 5, + [319635] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9478), 1, - anon_sym_SEMI, - STATE(7057), 3, + ACTIONS(9646), 1, + anon_sym_RPAREN, + STATE(7276), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309748] = 5, + [319653] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9480), 1, + ACTIONS(9648), 1, sym_bit_string_base, - STATE(7058), 3, + STATE(7277), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309766] = 5, + [319671] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9482), 1, - anon_sym_RBRACK, - STATE(7059), 3, + ACTIONS(9650), 1, + anon_sym_RPAREN, + STATE(7278), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309784] = 5, + [319689] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9484), 1, + ACTIONS(9652), 1, sym_MAP, - STATE(7060), 3, + STATE(7279), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309802] = 5, + [319707] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9486), 1, + ACTIONS(9654), 1, sym_MAP, - STATE(7061), 3, + STATE(7280), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309820] = 5, + [319725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9488), 1, - anon_sym_GT_GT, - STATE(7062), 3, + ACTIONS(9656), 1, + anon_sym_RBRACK, + STATE(7281), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309838] = 5, + [319743] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9490), 1, + ACTIONS(9658), 1, sym_MAP, - STATE(7063), 3, + STATE(7282), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309856] = 5, + [319761] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9492), 1, - anon_sym_GT_GT, - STATE(7064), 3, + ACTIONS(9660), 1, + anon_sym_SEMI, + STATE(7283), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309874] = 5, + [319779] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9494), 1, - anon_sym_GT_GT, - STATE(7065), 3, + ACTIONS(9662), 1, + sym_bit_string_value, + STATE(7284), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309892] = 5, + [319797] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5958), 1, - anon_sym_SEMI, - STATE(7066), 3, + ACTIONS(9664), 1, + sym__directive_newline, + STATE(7285), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309910] = 5, + [319815] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9496), 1, - anon_sym_COLON, - STATE(7067), 3, + ACTIONS(9666), 1, + anon_sym_LPAREN, + STATE(7286), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309928] = 5, + [319833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7264), 1, - anon_sym_SEMI, - STATE(7068), 3, + ACTIONS(9668), 1, + anon_sym_COLON, + STATE(7287), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309946] = 5, + [319851] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9498), 1, - anon_sym_SEMI, - STATE(7069), 3, + ACTIONS(6541), 1, + sym_RETURN, + STATE(7288), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309964] = 5, + [319869] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9500), 1, + ACTIONS(9670), 1, sym_bit_string_base, - STATE(7070), 3, + STATE(7289), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [309982] = 5, + [319887] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9502), 1, - anon_sym_SEMI, - STATE(7071), 3, + ACTIONS(9672), 1, + ts_builtin_sym_end, + STATE(7290), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310000] = 5, + [319905] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9504), 1, + ACTIONS(9674), 1, sym_MAP, - STATE(7072), 3, + STATE(7291), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310018] = 5, + [319923] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9506), 1, + ACTIONS(9676), 1, sym_MAP, - STATE(7073), 3, + STATE(7292), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310036] = 5, + [319941] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9508), 1, + ACTIONS(9678), 1, anon_sym_SEMI, - STATE(7074), 3, + STATE(7293), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310054] = 5, + [319959] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9510), 1, + ACTIONS(9680), 1, sym_MAP, - STATE(7075), 3, + STATE(7294), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310072] = 5, + [319977] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9512), 1, - anon_sym_SEMI, - STATE(7076), 3, + ACTIONS(9682), 1, + anon_sym_RBRACK, + STATE(7295), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310090] = 5, + [319995] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9514), 1, - anon_sym_SEMI, - STATE(7077), 3, + ACTIONS(9684), 1, + anon_sym_RBRACK, + STATE(7296), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310108] = 5, + [320013] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9516), 1, - anon_sym_RPAREN, - STATE(7078), 3, + ACTIONS(9686), 1, + anon_sym_SEMI, + STATE(7297), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310126] = 5, + [320031] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9518), 1, + ACTIONS(9688), 1, anon_sym_SEMI, - STATE(7079), 3, + STATE(7298), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310144] = 5, + [320049] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9520), 1, - anon_sym_SEMI, - STATE(7080), 3, + ACTIONS(9690), 1, + sym_box, + STATE(7299), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310162] = 5, + [320067] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9522), 1, + ACTIONS(9692), 1, anon_sym_SEMI, - STATE(7081), 3, + STATE(7300), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310180] = 5, + [320085] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9524), 1, + ACTIONS(9694), 1, sym_bit_string_base, - STATE(7082), 3, + STATE(7301), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310198] = 5, + [320103] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9526), 1, - anon_sym_RPAREN, - STATE(7083), 3, + ACTIONS(9696), 1, + anon_sym_SEMI, + STATE(7302), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310216] = 5, + [320121] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9528), 1, + ACTIONS(9698), 1, sym_MAP, - STATE(7084), 3, + STATE(7303), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310234] = 5, + [320139] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9530), 1, + ACTIONS(9700), 1, sym_MAP, - STATE(7085), 3, + STATE(7304), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310252] = 5, + [320157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9532), 1, + ACTIONS(9702), 1, anon_sym_SEMI, - STATE(7086), 3, + STATE(7305), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310270] = 5, + [320175] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9534), 1, + ACTIONS(9704), 1, sym_MAP, - STATE(7087), 3, + STATE(7306), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310288] = 5, + [320193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5950), 1, + ACTIONS(9706), 1, anon_sym_SEMI, - STATE(7088), 3, + STATE(7307), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310306] = 5, + [320211] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9536), 1, - sym_LOOP, - STATE(7089), 3, + ACTIONS(9708), 1, + anon_sym_SEMI, + STATE(7308), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310324] = 5, + [320229] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7202), 1, - anon_sym_SEMI, - STATE(7090), 3, + ACTIONS(9710), 1, + anon_sym_RPAREN, + STATE(7309), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310342] = 5, + [320247] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9538), 1, - anon_sym_RBRACK, - STATE(7091), 3, + ACTIONS(9712), 1, + anon_sym_SEMI, + STATE(7310), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310360] = 5, + [320265] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7198), 1, + ACTIONS(9714), 1, anon_sym_SEMI, - STATE(7092), 3, + STATE(7311), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310378] = 5, + [320283] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9540), 1, + ACTIONS(9716), 1, anon_sym_SEMI, - STATE(7093), 3, + STATE(7312), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310396] = 5, + [320301] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9542), 1, + ACTIONS(9718), 1, sym_bit_string_base, - STATE(7094), 3, + STATE(7313), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310414] = 5, + [320319] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9544), 1, - anon_sym_SEMI, - STATE(7095), 3, + ACTIONS(9720), 1, + sym_bit_string_value, + STATE(7314), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310432] = 5, + [320337] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9546), 1, + ACTIONS(9722), 1, sym_MAP, - STATE(7096), 3, + STATE(7315), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310450] = 5, + [320355] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9548), 1, + ACTIONS(9724), 1, sym_MAP, - STATE(7097), 3, + STATE(7316), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310468] = 5, + [320373] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9550), 1, + ACTIONS(9726), 1, anon_sym_SEMI, - STATE(7098), 3, + STATE(7317), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310486] = 5, + [320391] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9552), 1, + ACTIONS(9728), 1, sym_MAP, - STATE(7099), 3, + STATE(7318), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310504] = 5, + [320409] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9554), 1, - anon_sym_RBRACK, - STATE(7100), 3, + ACTIONS(9730), 1, + anon_sym_SEMI, + STATE(7319), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310522] = 5, + [320427] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9556), 1, + ACTIONS(9732), 1, anon_sym_SEMI, - STATE(7101), 3, + STATE(7320), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310540] = 5, + [320445] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9558), 1, - anon_sym_RBRACK, - STATE(7102), 3, + ACTIONS(9734), 1, + anon_sym_SEMI, + STATE(7321), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310558] = 5, + [320463] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9560), 1, + ACTIONS(9736), 1, anon_sym_SEMI, - STATE(7103), 3, + STATE(7322), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310576] = 5, + [320481] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9562), 1, - anon_sym_RPAREN, - STATE(7104), 3, + ACTIONS(9738), 1, + anon_sym_SEMI, + STATE(7323), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310594] = 5, + [320499] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9564), 1, - anon_sym_RPAREN, - STATE(7105), 3, + ACTIONS(9740), 1, + anon_sym_SEMI, + STATE(7324), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310612] = 5, + [320517] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9566), 1, + ACTIONS(9742), 1, sym_bit_string_base, - STATE(7106), 3, + STATE(7325), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310630] = 5, + [320535] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9568), 1, + ACTIONS(9744), 1, anon_sym_SEMI, - STATE(7107), 3, + STATE(7326), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310648] = 5, + [320553] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9570), 1, + ACTIONS(9746), 1, sym_MAP, - STATE(7108), 3, + STATE(7327), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310666] = 5, + [320571] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9572), 1, + ACTIONS(9748), 1, sym_MAP, - STATE(7109), 3, + STATE(7328), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310684] = 5, + [320589] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9574), 1, - anon_sym_SEMI, - STATE(7110), 3, + ACTIONS(9750), 1, + sym_box, + STATE(7329), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310702] = 5, + [320607] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9576), 1, + ACTIONS(9752), 1, sym_MAP, - STATE(7111), 3, + STATE(7330), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310720] = 5, + [320625] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9578), 1, + ACTIONS(9754), 1, anon_sym_SEMI, - STATE(7112), 3, + STATE(7331), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310738] = 5, + [320643] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9580), 1, + ACTIONS(9756), 1, anon_sym_SEMI, - STATE(7113), 3, + STATE(7332), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310756] = 5, + [320661] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9582), 1, + ACTIONS(9758), 1, anon_sym_SEMI, - STATE(7114), 3, + STATE(7333), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310774] = 5, + [320679] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9584), 1, + ACTIONS(9760), 1, anon_sym_SEMI, - STATE(7115), 3, + STATE(7334), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310792] = 5, + [320697] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9586), 1, - anon_sym_SEMI, - STATE(7116), 3, + ACTIONS(9762), 1, + sym_box, + STATE(7335), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310810] = 5, + [320715] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9588), 1, + ACTIONS(9764), 1, anon_sym_SEMI, - STATE(7117), 3, + STATE(7336), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310828] = 5, + [320733] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9590), 1, + ACTIONS(9766), 1, sym_bit_string_base, - STATE(7118), 3, + STATE(7337), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310846] = 5, + [320751] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6512), 1, - anon_sym_RBRACK, - STATE(7119), 3, + ACTIONS(9768), 1, + sym_OF, + STATE(7338), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310864] = 5, + [320769] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9592), 1, + ACTIONS(9770), 1, sym_MAP, - STATE(7120), 3, + STATE(7339), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310882] = 5, + [320787] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9594), 1, + ACTIONS(9772), 1, sym_MAP, - STATE(7121), 3, + STATE(7340), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310900] = 5, + [320805] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9596), 1, + ACTIONS(9774), 1, anon_sym_SEMI, - STATE(7122), 3, + STATE(7341), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310918] = 5, + [320823] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9598), 1, + ACTIONS(9776), 1, sym_MAP, - STATE(7123), 3, + STATE(7342), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310936] = 5, + [320841] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9600), 1, + ACTIONS(9778), 1, anon_sym_SEMI, - STATE(7124), 3, + STATE(7343), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310954] = 5, + [320859] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9602), 1, - anon_sym_COLON, - STATE(7125), 3, + ACTIONS(9780), 1, + anon_sym_SEMI, + STATE(7344), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310972] = 5, + [320877] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9604), 1, - anon_sym_GT_GT, - STATE(7126), 3, + ACTIONS(9782), 1, + anon_sym_SEMI, + STATE(7345), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [310990] = 5, + [320895] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9606), 1, - anon_sym_GT_GT, - STATE(7127), 3, + ACTIONS(9784), 1, + anon_sym_RBRACK, + STATE(7346), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311008] = 5, + [320913] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9608), 1, - anon_sym_GT_GT, - STATE(7128), 3, + ACTIONS(9786), 1, + anon_sym_SEMI, + STATE(7347), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311026] = 5, + [320931] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6702), 1, - anon_sym_RBRACK, - STATE(7129), 3, + ACTIONS(7067), 1, + anon_sym_SEMI, + STATE(7348), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311044] = 5, + [320949] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9610), 1, + ACTIONS(9788), 1, sym_bit_string_base, - STATE(7130), 3, + STATE(7349), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311062] = 5, + [320967] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9612), 1, - anon_sym_COLON, - STATE(7131), 3, + ACTIONS(9790), 1, + anon_sym_RPAREN, + STATE(7350), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311080] = 5, + [320985] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9614), 1, + ACTIONS(9792), 1, sym_MAP, - STATE(7132), 3, + STATE(7351), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311098] = 5, + [321003] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9616), 1, + ACTIONS(9794), 1, sym_MAP, - STATE(7133), 3, + STATE(7352), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311116] = 5, + [321021] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9618), 1, + ACTIONS(9796), 1, anon_sym_SEMI, - STATE(7134), 3, + STATE(7353), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311134] = 5, + [321039] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9620), 1, + ACTIONS(9798), 1, sym_MAP, - STATE(7135), 3, + STATE(7354), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311152] = 5, + [321057] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6526), 1, - anon_sym_RBRACK, - STATE(7136), 3, + ACTIONS(9800), 1, + anon_sym_SEMI, + STATE(7355), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311170] = 5, + [321075] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9622), 1, - sym_RECORD, - STATE(7137), 3, + ACTIONS(9802), 1, + anon_sym_SEMI, + STATE(7356), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311188] = 5, + [321093] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9624), 1, + ACTIONS(9804), 1, anon_sym_SEMI, - STATE(7138), 3, + STATE(7357), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311206] = 5, + [321111] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9626), 1, - anon_sym_COLON, - STATE(7139), 3, + ACTIONS(9806), 1, + anon_sym_SEMI, + STATE(7358), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311224] = 5, + [321129] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9628), 1, + ACTIONS(9808), 1, anon_sym_SEMI, - STATE(7140), 3, + STATE(7359), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311242] = 5, + [321147] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9630), 1, + ACTIONS(9810), 1, anon_sym_SEMI, - STATE(7141), 3, + STATE(7360), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311260] = 5, + [321165] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9632), 1, + ACTIONS(6727), 1, anon_sym_SEMI, - STATE(7142), 3, + STATE(7361), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311278] = 5, + [321183] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9634), 1, + ACTIONS(9812), 1, sym_MAP, - STATE(7143), 3, + STATE(7362), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311296] = 5, + [321201] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9636), 1, + ACTIONS(9814), 1, sym_MAP, - STATE(7144), 3, + STATE(7363), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311314] = 5, + [321219] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9638), 1, + ACTIONS(9816), 1, anon_sym_SEMI, - STATE(7145), 3, + STATE(7364), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311332] = 5, + [321237] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9640), 1, + ACTIONS(9818), 1, sym_MAP, - STATE(7146), 3, + STATE(7365), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311350] = 5, + [321255] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9642), 1, - anon_sym_LPAREN, - STATE(7147), 3, + ACTIONS(9820), 1, + anon_sym_SEMI, + STATE(7366), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311368] = 5, + [321273] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5889), 1, - sym_RETURN, - STATE(7148), 3, + ACTIONS(9822), 1, + anon_sym_SEMI, + STATE(7367), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311386] = 5, + [321291] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9644), 1, + ACTIONS(9824), 1, anon_sym_SEMI, - STATE(7149), 3, + STATE(7368), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311404] = 5, + [321309] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9646), 1, + ACTIONS(7162), 1, anon_sym_SEMI, - STATE(7150), 3, + STATE(7369), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311422] = 5, + [321327] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6964), 1, + ACTIONS(9826), 1, anon_sym_SEMI, - STATE(7151), 3, + STATE(7370), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311440] = 5, + [321345] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5775), 1, + ACTIONS(7379), 1, anon_sym_SEMI, - STATE(7152), 3, + STATE(7371), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311458] = 5, + [321363] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9648), 1, - anon_sym_LPAREN, - STATE(7153), 3, + ACTIONS(9828), 1, + anon_sym_SEMI, + STATE(7372), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311476] = 5, + [321381] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9650), 1, + ACTIONS(9830), 1, sym_MAP, - STATE(7154), 3, + STATE(7373), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311494] = 5, + [321399] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9652), 1, + ACTIONS(9832), 1, sym_MAP, - STATE(7155), 3, + STATE(7374), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311512] = 5, + [321417] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(796), 1, + ACTIONS(9834), 1, anon_sym_SEMI, - STATE(7156), 3, + STATE(7375), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311530] = 5, + [321435] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9654), 1, + ACTIONS(9836), 1, sym_MAP, - STATE(7157), 3, + STATE(7376), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311548] = 5, + [321453] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9656), 1, - sym_NEW, - STATE(7158), 3, + ACTIONS(9838), 1, + anon_sym_SEMI, + STATE(7377), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311566] = 5, + [321471] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9658), 1, - anon_sym_LPAREN, - STATE(7159), 3, + ACTIONS(9840), 1, + anon_sym_SEMI, + STATE(7378), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311584] = 5, + [321489] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5645), 1, + ACTIONS(9842), 1, anon_sym_SEMI, - STATE(7160), 3, + STATE(7379), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311602] = 5, + [321507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6791), 1, + ACTIONS(7537), 1, anon_sym_SEMI, - STATE(7161), 3, + STATE(7380), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311620] = 5, + [321525] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5610), 1, + ACTIONS(9844), 1, anon_sym_SEMI, - STATE(7162), 3, + STATE(7381), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311638] = 5, + [321543] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9660), 1, + ACTIONS(9846), 1, anon_sym_SEMI, - STATE(7163), 3, + STATE(7382), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311656] = 5, + [321561] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9662), 1, + ACTIONS(9848), 1, anon_sym_SEMI, - STATE(7164), 3, + STATE(7383), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311674] = 5, + [321579] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9664), 1, + ACTIONS(9850), 1, sym_MAP, - STATE(7165), 3, + STATE(7384), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311692] = 5, + [321597] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9666), 1, + ACTIONS(9852), 1, sym_MAP, - STATE(7166), 3, + STATE(7385), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311710] = 5, + [321615] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9668), 1, + ACTIONS(9854), 1, anon_sym_SEMI, - STATE(7167), 3, + STATE(7386), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311728] = 5, + [321633] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9670), 1, + ACTIONS(9856), 1, sym_MAP, - STATE(7168), 3, + STATE(7387), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311746] = 5, + [321651] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9672), 1, - anon_sym_RPAREN, - STATE(7169), 3, + ACTIONS(9858), 1, + anon_sym_SEMI, + STATE(7388), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311764] = 5, + [321669] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9674), 1, - sym_MAP, - STATE(7170), 3, + ACTIONS(9860), 1, + anon_sym_SEMI, + STATE(7389), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311782] = 5, + [321687] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6084), 1, + ACTIONS(9862), 1, anon_sym_SEMI, - STATE(7171), 3, + STATE(7390), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311800] = 5, + [321705] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9676), 1, - anon_sym_RPAREN, - STATE(7172), 3, + ACTIONS(9864), 1, + anon_sym_SEMI, + STATE(7391), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311818] = 5, + [321723] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9678), 1, + ACTIONS(9866), 1, anon_sym_SEMI, - STATE(7173), 3, + STATE(7392), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311836] = 5, + [321741] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9680), 1, + ACTIONS(9868), 1, anon_sym_SEMI, - STATE(7174), 3, + STATE(7393), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311854] = 5, + [321759] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9682), 1, - anon_sym_SEMI, - STATE(7175), 3, + ACTIONS(9870), 1, + anon_sym_RBRACK, + STATE(7394), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311872] = 5, + [321777] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9684), 1, + ACTIONS(9872), 1, sym_MAP, - STATE(7176), 3, + STATE(7395), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311890] = 5, + [321795] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9686), 1, + ACTIONS(9874), 1, sym_MAP, - STATE(7177), 3, + STATE(7396), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311908] = 5, + [321813] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9688), 1, - anon_sym_SEMI, - STATE(7178), 3, + ACTIONS(9876), 1, + anon_sym_GT_GT, + STATE(7397), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311926] = 5, + [321831] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9690), 1, + ACTIONS(9878), 1, sym_MAP, - STATE(7179), 3, + STATE(7398), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311944] = 5, + [321849] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6811), 1, - anon_sym_SEMI, - STATE(7180), 3, + ACTIONS(9880), 1, + anon_sym_GT_GT, + STATE(7399), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311962] = 5, + [321867] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9692), 1, - anon_sym_RPAREN, - STATE(7181), 3, + ACTIONS(9882), 1, + anon_sym_GT_GT, + STATE(7400), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311980] = 5, + [321885] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9694), 1, + ACTIONS(6081), 1, anon_sym_SEMI, - STATE(7182), 3, + STATE(7401), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [311998] = 5, + [321903] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9696), 1, - anon_sym_SEMI, - STATE(7183), 3, + ACTIONS(9884), 1, + sym_MAP, + STATE(7402), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312016] = 5, + [321921] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9698), 1, - anon_sym_RPAREN, - STATE(7184), 3, + ACTIONS(7695), 1, + anon_sym_SEMI, + STATE(7403), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312034] = 5, + [321939] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9700), 1, - sym_bit_string_value, - STATE(7185), 3, + ACTIONS(9886), 1, + anon_sym_SEMI, + STATE(7404), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312052] = 5, + [321957] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9702), 1, - sym_bit_string_value, - STATE(7186), 3, + ACTIONS(9888), 1, + sym_MAP, + STATE(7405), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312070] = 5, + [321975] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9704), 1, + ACTIONS(9890), 1, sym_MAP, - STATE(7187), 3, + STATE(7406), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312088] = 5, + [321993] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9706), 1, + ACTIONS(9892), 1, sym_MAP, - STATE(7188), 3, + STATE(7407), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312106] = 5, + [322011] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9708), 1, - sym_BLOCK, - STATE(7189), 3, + ACTIONS(9894), 1, + anon_sym_SEMI, + STATE(7408), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312124] = 5, + [322029] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9710), 1, + ACTIONS(9896), 1, sym_MAP, - STATE(7190), 3, + STATE(7409), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312142] = 5, + [322047] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9712), 1, + ACTIONS(9898), 1, anon_sym_SEMI, - STATE(7191), 3, + STATE(7410), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312160] = 5, + [322065] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9714), 1, + ACTIONS(9900), 1, anon_sym_SEMI, - STATE(7192), 3, + STATE(7411), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312178] = 5, + [322083] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9716), 1, - anon_sym_RPAREN, - STATE(7193), 3, + ACTIONS(9902), 1, + anon_sym_SEMI, + STATE(7412), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312196] = 5, + [322101] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9718), 1, - anon_sym_SEMI, - STATE(7194), 3, + ACTIONS(9904), 1, + anon_sym_GT_GT, + STATE(7413), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312214] = 5, + [322119] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6850), 1, + ACTIONS(9906), 1, anon_sym_SEMI, - STATE(7195), 3, + STATE(7414), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312232] = 5, + [322137] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9720), 1, + ACTIONS(9908), 1, anon_sym_SEMI, - STATE(7196), 3, + STATE(7415), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312250] = 5, + [322155] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9722), 1, - anon_sym_LPAREN, - STATE(7197), 3, + ACTIONS(6025), 1, + anon_sym_SEMI, + STATE(7416), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312268] = 5, + [322173] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9724), 1, + ACTIONS(9910), 1, sym_MAP, - STATE(7198), 3, + STATE(7417), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312286] = 5, + [322191] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9726), 1, + ACTIONS(9912), 1, sym_MAP, - STATE(7199), 3, + STATE(7418), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312304] = 5, + [322209] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9728), 1, - anon_sym_RPAREN, - STATE(7200), 3, + ACTIONS(7768), 1, + anon_sym_SEMI, + STATE(7419), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312322] = 5, + [322227] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9730), 1, + ACTIONS(9914), 1, sym_MAP, - STATE(7201), 3, + STATE(7420), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312340] = 5, + [322245] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9732), 1, - sym_bit_string_value, - STATE(7202), 3, + ACTIONS(7790), 1, + anon_sym_SEMI, + STATE(7421), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312358] = 5, + [322263] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9734), 1, - anon_sym_RBRACK, - STATE(7203), 3, + ACTIONS(9916), 1, + anon_sym_SEMI, + STATE(7422), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312376] = 5, + [322281] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9736), 1, - anon_sym_RBRACK, - STATE(7204), 3, + ACTIONS(9918), 1, + anon_sym_SEMI, + STATE(7423), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312394] = 5, + [322299] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9738), 1, + ACTIONS(9920), 1, anon_sym_SEMI, - STATE(7205), 3, + STATE(7424), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312412] = 5, + [322317] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9740), 1, - sym_bit_string_value, - STATE(7206), 3, + ACTIONS(9922), 1, + anon_sym_SEMI, + STATE(7425), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312430] = 5, + [322335] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9742), 1, - anon_sym_GT_GT, - STATE(7207), 3, + ACTIONS(9924), 1, + anon_sym_SEMI, + STATE(7426), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312448] = 5, + [322353] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9744), 1, - anon_sym_COLON, - STATE(7208), 3, + ACTIONS(9926), 1, + sym_RETURN, + STATE(7427), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312466] = 5, + [322371] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9746), 1, + ACTIONS(9928), 1, sym_MAP, - STATE(7209), 3, + STATE(7428), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312484] = 5, + [322389] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9748), 1, + ACTIONS(9930), 1, sym_MAP, - STATE(7210), 3, + STATE(7429), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312502] = 5, + [322407] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9750), 1, - anon_sym_GT_GT, - STATE(7211), 3, + ACTIONS(9932), 1, + anon_sym_RPAREN, + STATE(7430), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312520] = 5, + [322425] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9752), 1, + ACTIONS(9934), 1, sym_MAP, - STATE(7212), 3, + STATE(7431), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312538] = 5, + [322443] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9754), 1, - anon_sym_SEMI, - STATE(7213), 3, + ACTIONS(9936), 1, + anon_sym_RPAREN, + STATE(7432), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312556] = 5, + [322461] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9756), 1, - anon_sym_GT_GT, - STATE(7214), 3, + ACTIONS(7829), 1, + anon_sym_SEMI, + STATE(7433), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312574] = 5, + [322479] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6098), 1, - sym_END, - STATE(7215), 3, + ACTIONS(9938), 1, + anon_sym_SEMI, + STATE(7434), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312592] = 5, + [322497] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9758), 1, - anon_sym_LPAREN, - STATE(7216), 3, + ACTIONS(9940), 1, + anon_sym_SEMI, + STATE(7435), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312610] = 5, + [322515] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9760), 1, - anon_sym_SEMI, - STATE(7217), 3, + ACTIONS(9942), 1, + anon_sym_RPAREN, + STATE(7436), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312628] = 5, + [322533] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6156), 1, - anon_sym_SEMI, - STATE(7218), 3, + ACTIONS(9944), 1, + anon_sym_RPAREN, + STATE(7437), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312646] = 5, + [322551] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9762), 1, - anon_sym_SEMI, - STATE(7219), 3, + ACTIONS(9946), 1, + anon_sym_GT_GT, + STATE(7438), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312664] = 5, + [322569] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9764), 1, + ACTIONS(9948), 1, sym_MAP, - STATE(7220), 3, + STATE(7439), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312682] = 5, + [322587] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9766), 1, + ACTIONS(9950), 1, sym_MAP, - STATE(7221), 3, + STATE(7440), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312700] = 5, + [322605] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9768), 1, + ACTIONS(9952), 1, anon_sym_SEMI, - STATE(7222), 3, + STATE(7441), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312718] = 5, + [322623] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9770), 1, + ACTIONS(9954), 1, sym_MAP, - STATE(7223), 3, + STATE(7442), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312736] = 5, + [322641] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9772), 1, - sym_IS, - STATE(7224), 3, + ACTIONS(9956), 1, + anon_sym_SEMI, + STATE(7443), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312754] = 5, + [322659] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9774), 1, - sym_box, - STATE(7225), 3, + ACTIONS(9958), 1, + anon_sym_SEMI, + STATE(7444), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312772] = 5, + [322677] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9776), 1, - anon_sym_SEMI, - STATE(7226), 3, + ACTIONS(9960), 1, + anon_sym_DOT, + STATE(7445), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312790] = 5, + [322695] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9778), 1, - anon_sym_SEMI, - STATE(7227), 3, + ACTIONS(9962), 1, + sym_bit_string_value, + STATE(7446), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312808] = 5, + [322713] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9780), 1, - anon_sym_RPAREN, - STATE(7228), 3, + ACTIONS(9964), 1, + anon_sym_SEMI, + STATE(7447), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312826] = 5, + [322731] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9782), 1, + ACTIONS(9966), 1, anon_sym_SEMI, - STATE(7229), 3, + STATE(7448), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312844] = 5, + [322749] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6894), 1, - anon_sym_SEMI, - STATE(7230), 3, + ACTIONS(9968), 1, + anon_sym_RBRACK, + STATE(7449), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312862] = 5, + [322767] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9784), 1, + ACTIONS(9970), 1, sym_MAP, - STATE(7231), 3, + STATE(7450), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312880] = 5, + [322785] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9786), 1, + ACTIONS(9972), 1, sym_MAP, - STATE(7232), 3, + STATE(7451), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312898] = 5, + [322803] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9788), 1, - anon_sym_SEMI, - STATE(7233), 3, + ACTIONS(9974), 1, + anon_sym_RBRACK, + STATE(7452), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312916] = 5, + [322821] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9790), 1, + ACTIONS(9976), 1, sym_MAP, - STATE(7234), 3, + STATE(7453), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312934] = 5, + [322839] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9792), 1, + ACTIONS(9978), 1, anon_sym_SEMI, - STATE(7235), 3, + STATE(7454), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312952] = 5, + [322857] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9794), 1, - anon_sym_RPAREN, - STATE(7236), 3, + ACTIONS(9980), 1, + anon_sym_SEMI, + STATE(7455), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312970] = 5, + [322875] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9796), 1, - anon_sym_RPAREN, - STATE(7237), 3, + ACTIONS(790), 1, + anon_sym_SEMI, + STATE(7456), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [312988] = 5, + [322893] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9798), 1, + ACTIONS(9982), 1, sym_bit_string_value, - STATE(7238), 3, + STATE(7457), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313006] = 5, + [322911] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9800), 1, + ACTIONS(9984), 1, anon_sym_SEMI, - STATE(7239), 3, + STATE(7458), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313024] = 5, + [322929] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9802), 1, + ACTIONS(9986), 1, anon_sym_SEMI, - STATE(7240), 3, + STATE(7459), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313042] = 5, + [322947] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9804), 1, + ACTIONS(9988), 1, anon_sym_SEMI, - STATE(7241), 3, + STATE(7460), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313060] = 5, + [322965] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9806), 1, + ACTIONS(9990), 1, sym_MAP, - STATE(7242), 3, + STATE(7461), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313078] = 5, + [322983] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9808), 1, + ACTIONS(9992), 1, sym_MAP, - STATE(7243), 3, + STATE(7462), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313096] = 5, + [323001] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9810), 1, + ACTIONS(9994), 1, anon_sym_SEMI, - STATE(7244), 3, + STATE(7463), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313114] = 5, + [323019] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9812), 1, + ACTIONS(9996), 1, sym_MAP, - STATE(7245), 3, + STATE(7464), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313132] = 5, + [323037] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9814), 1, + ACTIONS(7544), 1, anon_sym_SEMI, - STATE(7246), 3, + STATE(7465), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313150] = 5, + [323055] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9816), 1, + ACTIONS(5805), 1, anon_sym_SEMI, - STATE(7247), 3, + STATE(7466), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313168] = 5, + [323073] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6220), 1, - anon_sym_RBRACK, - STATE(7248), 3, + ACTIONS(9998), 1, + anon_sym_RPAREN, + STATE(7467), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313186] = 5, + [323091] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9818), 1, - anon_sym_GT_GT, - STATE(7249), 3, + ACTIONS(10000), 1, + sym_OF, + STATE(7468), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313204] = 5, + [323109] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9820), 1, + ACTIONS(5650), 1, anon_sym_SEMI, - STATE(7250), 3, + STATE(7469), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313222] = 5, + [323127] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9822), 1, + ACTIONS(5634), 1, anon_sym_SEMI, - STATE(7251), 3, + STATE(7470), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313240] = 5, + [323145] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9824), 1, - anon_sym_SEMI, - STATE(7252), 3, + ACTIONS(10002), 1, + anon_sym_COLON, + STATE(7471), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313258] = 5, + [323163] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9826), 1, + ACTIONS(10004), 1, sym_MAP, - STATE(7253), 3, + STATE(7472), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313276] = 5, + [323181] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9828), 1, + ACTIONS(10006), 1, sym_MAP, - STATE(7254), 3, + STATE(7473), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313294] = 5, + [323199] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9830), 1, + ACTIONS(10008), 1, anon_sym_SEMI, - STATE(7255), 3, + STATE(7474), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313312] = 5, + [323217] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9832), 1, + ACTIONS(10010), 1, sym_MAP, - STATE(7256), 3, + STATE(7475), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313330] = 5, + [323235] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9834), 1, - sym__directive_newline, - STATE(7257), 3, + ACTIONS(10012), 1, + anon_sym_SEMI, + STATE(7476), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313348] = 5, + [323253] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9836), 1, + ACTIONS(10014), 1, anon_sym_SEMI, - STATE(7258), 3, + STATE(7477), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313366] = 5, + [323271] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9838), 1, - anon_sym_GT_GT, - STATE(7259), 3, + ACTIONS(10016), 1, + anon_sym_SEMI, + STATE(7478), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313384] = 5, + [323289] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9840), 1, - sym__directive_newline, - STATE(7260), 3, + ACTIONS(6621), 1, + sym_RETURN, + STATE(7479), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313402] = 5, + [323307] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9842), 1, - anon_sym_SEMI, - STATE(7261), 3, + ACTIONS(10018), 1, + sym_RETURN, + STATE(7480), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313420] = 5, + [323325] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9844), 1, - anon_sym_SEMI, - STATE(7262), 3, + ACTIONS(10020), 1, + anon_sym_RPAREN, + STATE(7481), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313438] = 5, + [323343] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9846), 1, - sym_THEN, - STATE(7263), 3, + ACTIONS(10022), 1, + anon_sym_RPAREN, + STATE(7482), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313456] = 5, + [323361] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9848), 1, + ACTIONS(10024), 1, sym_MAP, - STATE(7264), 3, + STATE(7483), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313474] = 5, + [323379] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9850), 1, + ACTIONS(10026), 1, sym_MAP, - STATE(7265), 3, + STATE(7484), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313492] = 5, + [323397] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9852), 1, + ACTIONS(10028), 1, anon_sym_SEMI, - STATE(7266), 3, + STATE(7485), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313510] = 5, + [323415] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9854), 1, + ACTIONS(10030), 1, sym_MAP, - STATE(7267), 3, + STATE(7486), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313528] = 5, + [323433] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9856), 1, - sym__directive_newline, - STATE(7268), 3, + ACTIONS(6113), 1, + anon_sym_SEMI, + STATE(7487), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313546] = 5, + [323451] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9858), 1, - anon_sym_SEMI, - STATE(7269), 3, + ACTIONS(10032), 1, + anon_sym_COLON, + STATE(7488), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313564] = 5, + [323469] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9860), 1, - sym_box, - STATE(7270), 3, + ACTIONS(10034), 1, + anon_sym_RPAREN, + STATE(7489), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313582] = 5, + [323487] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9862), 1, - sym_THEN, - STATE(7271), 3, + ACTIONS(10036), 1, + sym_IS, + STATE(7490), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313600] = 5, + [323505] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9864), 1, - sym_box, - STATE(7272), 3, + ACTIONS(10038), 1, + anon_sym_SEMI, + STATE(7491), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313618] = 5, + [323523] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9866), 1, - sym_OF, - STATE(7273), 3, + ACTIONS(10040), 1, + anon_sym_SEMI, + STATE(7492), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313636] = 5, + [323541] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9868), 1, - anon_sym_SEMI, - STATE(7274), 3, + ACTIONS(10042), 1, + sym_string_literal, + STATE(7493), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313654] = 5, + [323559] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9870), 1, + ACTIONS(10044), 1, sym_MAP, - STATE(7275), 3, + STATE(7494), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313672] = 5, + [323577] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9872), 1, + ACTIONS(10046), 1, sym_MAP, - STATE(7276), 3, + STATE(7495), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313690] = 5, + [323595] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9874), 1, - anon_sym_SEMI, - STATE(7277), 3, + ACTIONS(10042), 1, + anon_sym_RPAREN, + STATE(7496), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313708] = 5, + [323613] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9876), 1, + ACTIONS(10048), 1, sym_MAP, - STATE(7278), 3, + STATE(7497), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313726] = 5, + [323631] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9878), 1, - anon_sym_RPAREN, - STATE(7279), 3, + ACTIONS(10050), 1, + anon_sym_SEMI, + STATE(7498), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313744] = 5, + [323649] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9880), 1, - anon_sym_LPAREN, - STATE(7280), 3, + ACTIONS(6974), 1, + anon_sym_SEMI, + STATE(7499), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313762] = 5, + [323667] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9882), 1, - ts_builtin_sym_end, - STATE(7281), 3, + ACTIONS(10052), 1, + anon_sym_RPAREN, + STATE(7500), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313780] = 5, + [323685] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9884), 1, - anon_sym_SEMI, - STATE(7282), 3, + ACTIONS(10054), 1, + anon_sym_COLON, + STATE(7501), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313798] = 5, + [323703] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9886), 1, - anon_sym_RBRACK, - STATE(7283), 3, + ACTIONS(10056), 1, + anon_sym_SEMI, + STATE(7502), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313816] = 5, + [323721] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9888), 1, + ACTIONS(10058), 1, anon_sym_SEMI, - STATE(7284), 3, + STATE(7503), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313834] = 5, + [323739] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6954), 1, - anon_sym_SEMI, - STATE(7285), 3, + ACTIONS(10060), 1, + anon_sym_RBRACK, + STATE(7504), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313852] = 5, + [323757] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9890), 1, + ACTIONS(10062), 1, sym_MAP, - STATE(7286), 3, + STATE(7505), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313870] = 5, + [323775] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9892), 1, + ACTIONS(10064), 1, sym_MAP, - STATE(7287), 3, + STATE(7506), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313888] = 5, + [323793] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9894), 1, - anon_sym_SEMI, - STATE(7288), 3, + ACTIONS(10066), 1, + anon_sym_RPAREN, + STATE(7507), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313906] = 5, + [323811] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9896), 1, + ACTIONS(10068), 1, sym_MAP, - STATE(7289), 3, + STATE(7508), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313924] = 5, + [323829] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9898), 1, - anon_sym_SEMI, - STATE(7290), 3, + ACTIONS(10070), 1, + anon_sym_RBRACK, + STATE(7509), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313942] = 5, + [323847] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9900), 1, - anon_sym_SEMI, - STATE(7291), 3, + ACTIONS(10072), 1, + anon_sym_RBRACK, + STATE(7510), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313960] = 5, + [323865] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6055), 1, + ACTIONS(10074), 1, anon_sym_SEMI, - STATE(7292), 3, + STATE(7511), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313978] = 5, + [323883] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9902), 1, - anon_sym_SEMI, - STATE(7293), 3, + ACTIONS(10076), 1, + anon_sym_GT_GT, + STATE(7512), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [313996] = 5, + [323901] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9904), 1, + ACTIONS(10078), 1, anon_sym_SEMI, - STATE(7294), 3, + STATE(7513), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314014] = 5, + [323919] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9906), 1, + ACTIONS(10080), 1, anon_sym_SEMI, - STATE(7295), 3, + STATE(7514), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314032] = 5, + [323937] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6739), 1, - anon_sym_SEMI, - STATE(7296), 3, + ACTIONS(6704), 1, + sym_RETURN, + STATE(7515), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314050] = 5, + [323955] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9908), 1, + ACTIONS(10082), 1, sym_MAP, - STATE(7297), 3, + STATE(7516), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314068] = 5, + [323973] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9910), 1, + ACTIONS(10084), 1, sym_MAP, - STATE(7298), 3, + STATE(7517), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314086] = 5, + [323991] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9912), 1, + ACTIONS(7168), 1, anon_sym_SEMI, - STATE(7299), 3, + STATE(7518), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314104] = 5, + [324009] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9914), 1, + ACTIONS(10086), 1, sym_MAP, - STATE(7300), 3, + STATE(7519), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314122] = 5, + [324027] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6500), 1, - anon_sym_RBRACK, - STATE(7301), 3, + ACTIONS(10088), 1, + anon_sym_SEMI, + STATE(7520), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314140] = 5, + [324045] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9916), 1, - anon_sym_SEMI, - STATE(7302), 3, + ACTIONS(10090), 1, + anon_sym_RPAREN, + STATE(7521), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314158] = 5, + [324063] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9918), 1, - anon_sym_SEMI, - STATE(7303), 3, + ACTIONS(10092), 1, + sym_bit_string_value, + STATE(7522), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314176] = 5, + [324081] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9920), 1, - anon_sym_SEMI, - STATE(7304), 3, + ACTIONS(10094), 1, + anon_sym_GT_GT, + STATE(7523), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314194] = 5, + [324099] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6876), 1, - anon_sym_SEMI, - STATE(7305), 3, + ACTIONS(10096), 1, + anon_sym_GT_GT, + STATE(7524), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314212] = 5, + [324117] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9922), 1, + ACTIONS(10098), 1, anon_sym_SEMI, - STATE(7306), 3, + STATE(7525), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314230] = 5, + [324135] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9924), 1, + ACTIONS(10100), 1, anon_sym_SEMI, - STATE(7307), 3, + STATE(7526), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314248] = 5, + [324153] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9926), 1, + ACTIONS(10102), 1, sym_MAP, - STATE(7308), 3, + STATE(7527), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314266] = 5, + [324171] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9928), 1, + ACTIONS(10104), 1, sym_MAP, - STATE(7309), 3, + STATE(7528), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314284] = 5, + [324189] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9930), 1, + ACTIONS(10106), 1, anon_sym_SEMI, - STATE(7310), 3, + STATE(7529), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314302] = 5, + [324207] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9932), 1, + ACTIONS(10108), 1, sym_MAP, - STATE(7311), 3, + STATE(7530), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314320] = 5, + [324225] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9934), 1, - anon_sym_SEMI, - STATE(7312), 3, + ACTIONS(10110), 1, + sym_bit_string_value, + STATE(7531), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314338] = 5, + [324243] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9936), 1, - anon_sym_SEMI, - STATE(7313), 3, + ACTIONS(10112), 1, + anon_sym_GT_GT, + STATE(7532), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314356] = 5, + [324261] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9938), 1, - sym_MAP, - STATE(7314), 3, + ACTIONS(10114), 1, + anon_sym_COLON, + STATE(7533), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314374] = 5, + [324279] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9940), 1, - sym_MAP, - STATE(7315), 3, + ACTIONS(10116), 1, + anon_sym_GT_GT, + STATE(7534), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314392] = 5, + [324297] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9942), 1, + ACTIONS(10118), 1, anon_sym_SEMI, - STATE(7316), 3, + STATE(7535), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314410] = 5, + [324315] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7060), 1, - anon_sym_SEMI, - STATE(7317), 3, + ACTIONS(10120), 1, + anon_sym_RBRACK, + STATE(7536), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314428] = 5, + [324333] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9944), 1, - anon_sym_RPAREN, - STATE(7318), 3, + ACTIONS(10122), 1, + anon_sym_GT_GT, + STATE(7537), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314446] = 5, + [324351] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9946), 1, + ACTIONS(10124), 1, sym_MAP, - STATE(7319), 3, + STATE(7538), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314464] = 5, + [324369] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9948), 1, + ACTIONS(10126), 1, sym_MAP, - STATE(7320), 3, + STATE(7539), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314482] = 5, + [324387] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9950), 1, + ACTIONS(10128), 1, anon_sym_SEMI, - STATE(7321), 3, + STATE(7540), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314500] = 5, + [324405] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9952), 1, + ACTIONS(10130), 1, sym_MAP, - STATE(7322), 3, + STATE(7541), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314518] = 5, + [324423] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9954), 1, - anon_sym_SEMI, - STATE(7323), 3, + ACTIONS(10132), 1, + anon_sym_RPAREN, + STATE(7542), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314536] = 5, + [324441] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9956), 1, - anon_sym_SEMI, - STATE(7324), 3, + ACTIONS(10134), 1, + anon_sym_RPAREN, + STATE(7543), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314554] = 5, + [324459] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9958), 1, - anon_sym_SEMI, - STATE(7325), 3, + ACTIONS(10136), 1, + anon_sym_RBRACK, + STATE(7544), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314572] = 5, + [324477] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9960), 1, - anon_sym_SEMI, - STATE(7326), 3, + ACTIONS(10138), 1, + anon_sym_RBRACK, + STATE(7545), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314590] = 5, + [324495] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9962), 1, - anon_sym_SEMI, - STATE(7327), 3, + ACTIONS(10140), 1, + sym_bit_string_value, + STATE(7546), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314608] = 5, + [324513] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9964), 1, + ACTIONS(10142), 1, anon_sym_SEMI, - STATE(7328), 3, + STATE(7547), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314626] = 5, + [324531] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9966), 1, + ACTIONS(10144), 1, anon_sym_SEMI, - STATE(7329), 3, + STATE(7548), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314644] = 5, + [324549] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9968), 1, + ACTIONS(10146), 1, sym_MAP, - STATE(7330), 3, + STATE(7549), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314662] = 5, + [324567] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9970), 1, + ACTIONS(10148), 1, sym_MAP, - STATE(7331), 3, + STATE(7550), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314680] = 5, + [324585] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9972), 1, + ACTIONS(10150), 1, anon_sym_SEMI, - STATE(7332), 3, + STATE(7551), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314698] = 5, + [324603] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9974), 1, + ACTIONS(10152), 1, sym_MAP, - STATE(7333), 3, + STATE(7552), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314716] = 5, + [324621] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9976), 1, - anon_sym_RPAREN, - STATE(7334), 3, + ACTIONS(10154), 1, + sym_BLOCK, + STATE(7553), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314734] = 5, + [324639] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9978), 1, + ACTIONS(10156), 1, anon_sym_SEMI, - STATE(7335), 3, + STATE(7554), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314752] = 5, + [324657] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9980), 1, - anon_sym_GT_GT, - STATE(7336), 3, + ACTIONS(10158), 1, + anon_sym_LPAREN, + STATE(7555), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314770] = 5, + [324675] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9982), 1, - anon_sym_RBRACK, - STATE(7337), 3, + ACTIONS(10160), 1, + anon_sym_SEMI, + STATE(7556), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314788] = 5, + [324693] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9984), 1, - anon_sym_GT_GT, - STATE(7338), 3, + ACTIONS(10162), 1, + anon_sym_RBRACK, + STATE(7557), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314806] = 5, + [324711] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9986), 1, - anon_sym_GT_GT, - STATE(7339), 3, + ACTIONS(10164), 1, + anon_sym_SEMI, + STATE(7558), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314824] = 5, + [324729] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9988), 1, - sym_OF, - STATE(7340), 3, + ACTIONS(10166), 1, + sym_RETURN, + STATE(7559), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314842] = 5, + [324747] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9990), 1, + ACTIONS(10168), 1, sym_MAP, - STATE(7341), 3, + STATE(7560), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314860] = 5, + [324765] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9992), 1, + ACTIONS(10170), 1, sym_MAP, - STATE(7342), 3, + STATE(7561), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314878] = 5, + [324783] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9994), 1, - anon_sym_GT_GT, - STATE(7343), 3, + ACTIONS(10172), 1, + anon_sym_RBRACK, + STATE(7562), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314896] = 5, + [324801] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9996), 1, + ACTIONS(10174), 1, sym_MAP, - STATE(7344), 3, + STATE(7563), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314914] = 5, + [324819] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9998), 1, - anon_sym_COLON, - STATE(7345), 3, + ACTIONS(10176), 1, + anon_sym_SEMI, + STATE(7564), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314932] = 5, + [324837] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6044), 1, - anon_sym_SEMI, - STATE(7346), 3, + ACTIONS(10178), 1, + sym_END, + STATE(7565), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314950] = 5, + [324855] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10000), 1, + ACTIONS(10180), 1, anon_sym_SEMI, - STATE(7347), 3, + STATE(7566), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314968] = 5, + [324873] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10002), 1, - anon_sym_SEMI, - STATE(7348), 3, + ACTIONS(10182), 1, + anon_sym_GT_GT, + STATE(7567), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [314986] = 5, + [324891] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7126), 1, + ACTIONS(10184), 1, anon_sym_SEMI, - STATE(7349), 3, + STATE(7568), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315004] = 5, + [324909] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10004), 1, - anon_sym_SEMI, - STATE(7350), 3, + ACTIONS(10186), 1, + anon_sym_GT_GT, + STATE(7569), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315022] = 5, + [324927] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10006), 1, - anon_sym_SEMI, - STATE(7351), 3, + ACTIONS(10188), 1, + anon_sym_GT_GT, + STATE(7570), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315040] = 5, + [324945] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10008), 1, + ACTIONS(10190), 1, sym_MAP, - STATE(7352), 3, + STATE(7571), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315058] = 5, + [324963] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10010), 1, + ACTIONS(10192), 1, sym_MAP, - STATE(7353), 3, + STATE(7572), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315076] = 5, + [324981] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10012), 1, - anon_sym_SEMI, - STATE(7354), 3, + ACTIONS(10194), 1, + anon_sym_COLON, + STATE(7573), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315094] = 5, + [324999] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10014), 1, + ACTIONS(10196), 1, sym_MAP, - STATE(7355), 3, + STATE(7574), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315112] = 5, + [325017] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10016), 1, - anon_sym_COLON, - STATE(7356), 3, + ACTIONS(10198), 1, + anon_sym_RPAREN, + STATE(7575), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315130] = 5, + [325035] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10018), 1, - anon_sym_GT_GT, - STATE(7357), 3, + ACTIONS(10200), 1, + anon_sym_RPAREN, + STATE(7576), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315148] = 5, + [325053] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10020), 1, - anon_sym_RBRACK, - STATE(7358), 3, + ACTIONS(10202), 1, + sym_bit_string_value, + STATE(7577), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315166] = 5, + [325071] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10022), 1, + ACTIONS(10204), 1, anon_sym_SEMI, - STATE(7359), 3, + STATE(7578), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315184] = 5, + [325089] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10024), 1, - anon_sym_SEMI, - STATE(7360), 3, + ACTIONS(10206), 1, + anon_sym_RPAREN, + STATE(7579), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315202] = 5, + [325107] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10026), 1, - anon_sym_SEMI, - STATE(7361), 3, + ACTIONS(6019), 1, + sym_IS, + STATE(7580), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315220] = 5, + [325125] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10028), 1, - anon_sym_SEMI, - STATE(7362), 3, + ACTIONS(10208), 1, + anon_sym_RBRACK, + STATE(7581), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315238] = 5, + [325143] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10030), 1, + ACTIONS(10210), 1, sym_MAP, - STATE(7363), 3, + STATE(7582), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315256] = 5, + [325161] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10032), 1, + ACTIONS(10212), 1, sym_MAP, - STATE(7364), 3, + STATE(7583), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315274] = 5, + [325179] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10034), 1, + ACTIONS(10214), 1, anon_sym_SEMI, - STATE(7365), 3, + STATE(7584), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315292] = 5, + [325197] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10036), 1, + ACTIONS(10216), 1, sym_MAP, - STATE(7366), 3, + STATE(7585), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315310] = 5, + [325215] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7144), 1, - anon_sym_SEMI, - STATE(7367), 3, + ACTIONS(10218), 1, + anon_sym_RPAREN, + STATE(7586), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315328] = 5, + [325233] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7152), 1, + ACTIONS(10220), 1, anon_sym_SEMI, - STATE(7368), 3, + STATE(7587), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315346] = 5, + [325251] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10038), 1, + ACTIONS(10222), 1, anon_sym_RPAREN, - STATE(7369), 3, + STATE(7588), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315364] = 5, + [325269] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10040), 1, - anon_sym_RBRACK, - STATE(7370), 3, + ACTIONS(10224), 1, + anon_sym_RPAREN, + STATE(7589), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315382] = 5, + [325287] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10042), 1, - anon_sym_SEMI, - STATE(7371), 3, + ACTIONS(10226), 1, + sym_END, + STATE(7590), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315400] = 5, + [325305] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10044), 1, - anon_sym_SEMI, - STATE(7372), 3, + ACTIONS(10228), 1, + anon_sym_RPAREN, + STATE(7591), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315418] = 5, + [325323] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10046), 1, - anon_sym_RBRACK, - STATE(7373), 3, + ACTIONS(10230), 1, + anon_sym_RPAREN, + STATE(7592), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315436] = 5, + [325341] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10048), 1, + ACTIONS(10232), 1, sym_MAP, - STATE(7374), 3, + STATE(7593), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315454] = 5, + [325359] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10050), 1, + ACTIONS(10234), 1, anon_sym_SEMI, - STATE(7375), 3, + STATE(7594), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315472] = 5, + [325377] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10052), 1, - anon_sym_GT_GT, - STATE(7376), 3, + ACTIONS(5934), 1, + anon_sym_SEMI, + STATE(7595), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315490] = 5, + [325395] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10054), 1, + ACTIONS(10236), 1, anon_sym_SEMI, - STATE(7377), 3, + STATE(7596), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315508] = 5, + [325413] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10056), 1, + ACTIONS(10238), 1, anon_sym_SEMI, - STATE(7378), 3, + STATE(7597), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315526] = 5, + [325431] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10058), 1, - anon_sym_GT_GT, - STATE(7379), 3, + ACTIONS(10240), 1, + anon_sym_COLON, + STATE(7598), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315544] = 5, + [325449] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10060), 1, + ACTIONS(10242), 1, sym_MAP, - STATE(7380), 3, + STATE(7599), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315562] = 5, + [325467] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10062), 1, - sym_RETURN, - STATE(7381), 3, + ACTIONS(10244), 1, + anon_sym_SEMI, + STATE(7600), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315580] = 5, + [325485] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10064), 1, - anon_sym_RPAREN, - STATE(7382), 3, + ACTIONS(10246), 1, + anon_sym_SEMI, + STATE(7601), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315598] = 5, + [325503] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10066), 1, - anon_sym_RPAREN, - STATE(7383), 3, + ACTIONS(10248), 1, + anon_sym_SEMI, + STATE(7602), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315616] = 5, + [325521] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7277), 1, + ACTIONS(7423), 1, anon_sym_SEMI, - STATE(7384), 3, + STATE(7603), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315634] = 5, + [325539] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10068), 1, - anon_sym_SEMI, - STATE(7385), 3, + ACTIONS(10250), 1, + sym_CASE, + STATE(7604), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315652] = 5, + [325557] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10070), 1, + ACTIONS(10252), 1, sym_MAP, - STATE(7386), 3, + STATE(7605), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315670] = 5, + [325575] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10072), 1, - anon_sym_SEMI, - STATE(7387), 3, + ACTIONS(6939), 1, + anon_sym_COLON, + STATE(7606), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315688] = 5, + [325593] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10074), 1, - anon_sym_SEMI, - STATE(7388), 3, + ACTIONS(10254), 1, + anon_sym_RPAREN, + STATE(7607), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315706] = 5, + [325611] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10076), 1, + ACTIONS(10256), 1, sym_MAP, - STATE(7389), 3, + STATE(7608), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315724] = 5, + [325629] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10078), 1, - anon_sym_GT_GT, - STATE(7390), 3, + ACTIONS(10258), 1, + anon_sym_COLON, + STATE(7609), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315742] = 5, + [325647] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10080), 1, + ACTIONS(10260), 1, anon_sym_RPAREN, - STATE(7391), 3, + STATE(7610), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315760] = 5, + [325665] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10082), 1, + ACTIONS(10262), 1, sym_MAP, - STATE(7392), 3, + STATE(7611), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315778] = 5, + [325683] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10084), 1, - anon_sym_RPAREN, - STATE(7393), 3, + ACTIONS(10264), 1, + anon_sym_COLON, + STATE(7612), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315796] = 5, + [325701] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10086), 1, - anon_sym_COLON, - STATE(7394), 3, + ACTIONS(10266), 1, + sym_AFTER, + STATE(7613), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315814] = 5, + [325719] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10088), 1, - anon_sym_RBRACK, - STATE(7395), 3, + ACTIONS(10268), 1, + anon_sym_RPAREN, + STATE(7614), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315832] = 5, + [325737] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10090), 1, - anon_sym_SEMI, - STATE(7396), 3, + ACTIONS(7061), 1, + anon_sym_COLON, + STATE(7615), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315850] = 5, + [325755] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7283), 1, + ACTIONS(10270), 1, anon_sym_COLON, - STATE(7397), 3, + STATE(7616), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315868] = 5, + [325773] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10092), 1, - anon_sym_SEMI, - STATE(7398), 3, + ACTIONS(10272), 1, + anon_sym_COLON, + STATE(7617), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315886] = 5, + [325791] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10094), 1, - anon_sym_COLON, - STATE(7399), 3, + ACTIONS(10274), 1, + anon_sym_SEMI, + STATE(7618), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315904] = 5, + [325809] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6494), 1, - anon_sym_RBRACK, - STATE(7400), 3, + ACTIONS(10276), 1, + sym_IS, + STATE(7619), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315922] = 5, + [325827] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10096), 1, + ACTIONS(10278), 1, anon_sym_COLON, - STATE(7401), 3, + STATE(7620), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315940] = 5, + [325845] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10098), 1, - sym_AFTER, - STATE(7402), 3, + ACTIONS(10280), 1, + anon_sym_COLON, + STATE(7621), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315958] = 5, + [325863] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10100), 1, - anon_sym_SEMI, - STATE(7403), 3, + ACTIONS(10282), 1, + anon_sym_COLON, + STATE(7622), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315976] = 5, + [325881] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7287), 1, - anon_sym_COLON, - STATE(7404), 3, + ACTIONS(10284), 1, + sym_OF, + STATE(7623), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [315994] = 5, + [325899] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10102), 1, - anon_sym_GT_GT, - STATE(7405), 3, + ACTIONS(7697), 1, + sym_RETURN, + STATE(7624), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316012] = 5, + [325917] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10104), 1, - anon_sym_SEMI, - STATE(7406), 3, + ACTIONS(10286), 1, + sym_OF, + STATE(7625), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316030] = 5, + [325935] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10106), 1, - anon_sym_SEMI, - STATE(7407), 3, + ACTIONS(10288), 1, + anon_sym_COLON, + STATE(7626), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316048] = 5, + [325953] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10108), 1, - anon_sym_SEMI, - STATE(7408), 3, + ACTIONS(2378), 1, + sym_OF, + STATE(7627), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316066] = 5, + [325971] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10110), 1, + ACTIONS(10290), 1, anon_sym_RPAREN, - STATE(7409), 3, + STATE(7628), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316084] = 5, + [325989] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10112), 1, - anon_sym_COLON, - STATE(7410), 3, + ACTIONS(10292), 1, + sym_bit_string_value, + STATE(7629), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316102] = 5, + [326007] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6731), 1, - anon_sym_RBRACK, - STATE(7411), 3, + ACTIONS(10294), 1, + sym_bit_string_base, + STATE(7630), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316120] = 5, + [326025] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10114), 1, - sym_OF, - STATE(7412), 3, + ACTIONS(10296), 1, + anon_sym_RBRACK, + STATE(7631), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316138] = 5, + [326043] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10116), 1, - anon_sym_SEMI, - STATE(7413), 3, + ACTIONS(10298), 1, + anon_sym_RBRACK, + STATE(7632), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316156] = 5, + [326061] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10118), 1, + ACTIONS(10300), 1, sym_OF, - STATE(7414), 3, + STATE(7633), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316174] = 5, + [326079] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10120), 1, - anon_sym_COLON, - STATE(7415), 3, + ACTIONS(10302), 1, + anon_sym_RBRACK, + STATE(7634), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316192] = 5, + [326097] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2430), 1, - sym_OF, - STATE(7416), 3, + ACTIONS(10304), 1, + anon_sym_GT_GT, + STATE(7635), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316210] = 5, + [326115] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10122), 1, - anon_sym_RPAREN, - STATE(7417), 3, + ACTIONS(10306), 1, + sym__block_comment_end, + STATE(7636), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316228] = 5, + [326133] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10124), 1, - sym_bit_string_value, - STATE(7418), 3, + ACTIONS(10308), 1, + anon_sym_GT_GT, + STATE(7637), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316246] = 5, + [326151] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6747), 1, - anon_sym_GT_GT, - STATE(7419), 3, + ACTIONS(10310), 1, + anon_sym_RPAREN, + STATE(7638), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316264] = 5, + [326169] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10126), 1, + ACTIONS(10312), 1, sym_FUNCTION, - STATE(7420), 3, + STATE(7639), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316282] = 5, + [326187] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10128), 1, - sym_bit_string_base, - STATE(7421), 3, + ACTIONS(10314), 1, + sym__directive_newline, + STATE(7640), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316300] = 5, + [326205] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10130), 1, - anon_sym_RPAREN, - STATE(7422), 3, + ACTIONS(10316), 1, + anon_sym_GT_GT, + STATE(7641), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316318] = 5, + [326223] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10132), 1, - anon_sym_RPAREN, - STATE(7423), 3, + ACTIONS(10318), 1, + anon_sym_GT_GT, + STATE(7642), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316336] = 5, + [326241] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10134), 1, + ACTIONS(10320), 1, anon_sym_COLON, - STATE(7424), 3, + STATE(7643), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316354] = 5, + [326259] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10136), 1, + ACTIONS(10322), 1, anon_sym_COLON, - STATE(7425), 3, + STATE(7644), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316372] = 5, + [326277] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10138), 1, + ACTIONS(10324), 1, sym_AFTER, - STATE(7426), 3, + STATE(7645), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316390] = 5, + [326295] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10140), 1, + ACTIONS(10326), 1, anon_sym_COLON, - STATE(7427), 3, + STATE(7646), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316408] = 5, + [326313] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10142), 1, - sym_bit_string_value, - STATE(7428), 3, + ACTIONS(10328), 1, + anon_sym_GT_GT, + STATE(7647), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316426] = 5, + [326331] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10144), 1, - anon_sym_RBRACK, - STATE(7429), 3, + ACTIONS(10330), 1, + sym__directive_newline, + STATE(7648), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316444] = 5, + [326349] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10146), 1, - sym_bit_string_value, - STATE(7430), 3, + ACTIONS(10332), 1, + anon_sym_RBRACK, + STATE(7649), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316462] = 5, + [326367] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10148), 1, - anon_sym_SEMI, - STATE(7431), 3, + ACTIONS(10334), 1, + anon_sym_GT_GT, + STATE(7650), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316480] = 5, + [326385] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10150), 1, - anon_sym_RBRACK, - STATE(7432), 3, + ACTIONS(10336), 1, + anon_sym_RPAREN, + STATE(7651), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316498] = 5, + [326403] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10152), 1, + ACTIONS(10338), 1, anon_sym_COLON, - STATE(7433), 3, + STATE(7652), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316516] = 5, + [326421] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10154), 1, + ACTIONS(10340), 1, sym_IS, - STATE(7434), 3, + STATE(7653), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316534] = 5, + [326439] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10156), 1, + ACTIONS(10342), 1, anon_sym_COLON, - STATE(7435), 3, + STATE(7654), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316552] = 5, + [326457] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10158), 1, + ACTIONS(10344), 1, anon_sym_RPAREN, - STATE(7436), 3, + STATE(7655), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316570] = 5, + [326475] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10160), 1, + ACTIONS(10346), 1, anon_sym_GT_GT, - STATE(7437), 3, + STATE(7656), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316588] = 5, + [326493] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10162), 1, - sym_OF, - STATE(7438), 3, + ACTIONS(10348), 1, + sym_string_literal, + STATE(7657), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316606] = 5, + [326511] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10164), 1, - anon_sym_GT_GT, - STATE(7439), 3, + ACTIONS(10350), 1, + sym_RETURN, + STATE(7658), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316624] = 5, + [326529] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10166), 1, + ACTIONS(10352), 1, anon_sym_LPAREN, - STATE(7440), 3, + STATE(7659), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316642] = 5, + [326547] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10168), 1, + ACTIONS(10354), 1, anon_sym_LPAREN, - STATE(7441), 3, + STATE(7660), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316660] = 5, + [326565] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10170), 1, + ACTIONS(10356), 1, sym_NEW, - STATE(7442), 3, + STATE(7661), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316678] = 5, + [326583] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10172), 1, + ACTIONS(10358), 1, anon_sym_LPAREN, - STATE(7443), 3, + STATE(7662), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316696] = 5, + [326601] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10174), 1, - anon_sym_GT_GT, - STATE(7444), 3, + ACTIONS(10360), 1, + anon_sym_RBRACK, + STATE(7663), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316714] = 5, + [326619] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6476), 1, - anon_sym_RBRACK, - STATE(7445), 3, + ACTIONS(10362), 1, + anon_sym_SEMI, + STATE(7664), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316732] = 5, + [326637] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10176), 1, - anon_sym_RPAREN, - STATE(7446), 3, + ACTIONS(10364), 1, + sym_string_literal, + STATE(7665), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316750] = 5, + [326655] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10178), 1, - anon_sym_RPAREN, - STATE(7447), 3, + ACTIONS(10366), 1, + sym_IS, + STATE(7666), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316768] = 5, + [326673] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10180), 1, - anon_sym_RPAREN, - STATE(7448), 3, + ACTIONS(10368), 1, + anon_sym_RBRACK, + STATE(7667), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316786] = 5, + [326691] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10182), 1, - sym__block_comment_end, - STATE(7449), 3, + ACTIONS(10370), 1, + anon_sym_SEMI, + STATE(7668), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316804] = 5, + [326709] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6466), 1, + ACTIONS(10372), 1, anon_sym_RBRACK, - STATE(7450), 3, + STATE(7669), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316822] = 5, + [326727] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10184), 1, - anon_sym_RBRACK, - STATE(7451), 3, + ACTIONS(10374), 1, + anon_sym_COLON, + STATE(7670), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316840] = 5, + [326745] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10186), 1, + ACTIONS(10376), 1, anon_sym_SEMI, - STATE(7452), 3, + STATE(7671), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316858] = 5, + [326763] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10188), 1, + ACTIONS(10378), 1, anon_sym_COLON, - STATE(7453), 3, + STATE(7672), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316876] = 5, + [326781] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10190), 1, + ACTIONS(10380), 1, anon_sym_COLON, - STATE(7454), 3, + STATE(7673), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316894] = 5, + [326799] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10192), 1, + ACTIONS(10382), 1, anon_sym_COLON, - STATE(7455), 3, + STATE(7674), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316912] = 5, + [326817] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10194), 1, + ACTIONS(10384), 1, anon_sym_COLON, - STATE(7456), 3, + STATE(7675), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316930] = 5, + [326835] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10196), 1, - anon_sym_GT_GT, - STATE(7457), 3, + ACTIONS(10386), 1, + anon_sym_RBRACK, + STATE(7676), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316948] = 5, + [326853] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10198), 1, + ACTIONS(10388), 1, anon_sym_GT_GT, - STATE(7458), 3, + STATE(7677), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316966] = 5, + [326871] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10200), 1, - sym__directive_newline, - STATE(7459), 3, + ACTIONS(10390), 1, + anon_sym_SEMI, + STATE(7678), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [316984] = 5, + [326889] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10202), 1, + ACTIONS(10392), 1, sym__directive_newline, - STATE(7460), 3, + STATE(7679), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317002] = 5, + [326907] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10204), 1, - anon_sym_RBRACK, - STATE(7461), 3, + ACTIONS(10394), 1, + anon_sym_GT_GT, + STATE(7680), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317020] = 5, + [326925] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10206), 1, + ACTIONS(10396), 1, sym_IS, - STATE(7462), 3, + STATE(7681), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317038] = 5, + [326943] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10208), 1, + ACTIONS(10398), 1, sym_IS, - STATE(7463), 3, + STATE(7682), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317056] = 5, + [326961] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10210), 1, - anon_sym_SEMI, - STATE(7464), 3, + ACTIONS(10400), 1, + anon_sym_GT_GT, + STATE(7683), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317074] = 5, + [326979] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10212), 1, - sym_string_literal, - STATE(7465), 3, + ACTIONS(10402), 1, + sym_bit_string_value, + STATE(7684), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317092] = 5, + [326997] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10214), 1, + ACTIONS(10404), 1, anon_sym_SEMI, - STATE(7466), 3, + STATE(7685), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317110] = 5, + [327015] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10216), 1, - anon_sym_GT_GT, - STATE(7467), 3, + ACTIONS(10406), 1, + anon_sym_RBRACK, + STATE(7686), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317128] = 5, + [327033] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10218), 1, - anon_sym_GT_GT, - STATE(7468), 3, + ACTIONS(10408), 1, + anon_sym_RPAREN, + STATE(7687), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317146] = 5, + [327051] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10220), 1, - anon_sym_GT_GT, - STATE(7469), 3, + ACTIONS(10410), 1, + anon_sym_RPAREN, + STATE(7688), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317164] = 5, + [327069] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10222), 1, + ACTIONS(10412), 1, anon_sym_SEMI, - STATE(7470), 3, + STATE(7689), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317182] = 5, + [327087] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10224), 1, - sym_string_literal, - STATE(7471), 3, + ACTIONS(10414), 1, + anon_sym_RPAREN, + STATE(7690), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317200] = 5, + [327105] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10226), 1, - anon_sym_GT_GT, - STATE(7472), 3, + ACTIONS(10416), 1, + sym_bit_string_value, + STATE(7691), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317218] = 5, + [327123] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10228), 1, - anon_sym_GT_GT, - STATE(7473), 3, + ACTIONS(10418), 1, + anon_sym_RBRACK, + STATE(7692), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317236] = 5, + [327141] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10230), 1, + ACTIONS(10420), 1, anon_sym_SEMI, - STATE(7474), 3, + STATE(7693), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317254] = 5, + [327159] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10232), 1, + ACTIONS(10422), 1, anon_sym_SEMI, - STATE(7475), 3, + STATE(7694), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317272] = 5, + [327177] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10234), 1, - anon_sym_GT_GT, - STATE(7476), 3, + ACTIONS(8860), 1, + sym_string_literal, + STATE(7695), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317290] = 5, + [327195] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6462), 1, + ACTIONS(10424), 1, anon_sym_RBRACK, - STATE(7477), 3, + STATE(7696), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317308] = 5, + [327213] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7321), 1, - anon_sym_SEMI, - STATE(7478), 3, + ACTIONS(10426), 1, + anon_sym_RBRACK, + STATE(7697), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317326] = 5, + [327231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10236), 1, - anon_sym_RBRACK, - STATE(7479), 3, + ACTIONS(10428), 1, + anon_sym_RPAREN, + STATE(7698), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317344] = 5, + [327249] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5796), 1, + ACTIONS(7228), 1, anon_sym_SEMI, - STATE(7480), 3, + STATE(7699), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317362] = 5, + [327267] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10238), 1, - anon_sym_SEMI, - STATE(7481), 3, + ACTIONS(10430), 1, + anon_sym_GT_GT, + STATE(7700), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317380] = 5, + [327285] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(794), 1, + ACTIONS(7206), 1, anon_sym_SEMI, - STATE(7482), 3, + STATE(7701), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317398] = 5, + [327303] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10240), 1, - anon_sym_RPAREN, - STATE(7483), 3, + ACTIONS(10432), 1, + anon_sym_GT_GT, + STATE(7702), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317416] = 5, + [327321] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10242), 1, + ACTIONS(10434), 1, anon_sym_RPAREN, - STATE(7484), 3, + STATE(7703), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317434] = 5, + [327339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5624), 1, + ACTIONS(6189), 1, anon_sym_SEMI, - STATE(7485), 3, + STATE(7704), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317452] = 5, + [327357] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5622), 1, - anon_sym_SEMI, - STATE(7486), 3, + ACTIONS(10436), 1, + anon_sym_GT_GT, + STATE(7705), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317470] = 5, + [327375] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10244), 1, + ACTIONS(10438), 1, anon_sym_RBRACK, - STATE(7487), 3, + STATE(7706), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317488] = 5, + [327393] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10246), 1, - anon_sym_SEMI, - STATE(7488), 3, + ACTIONS(10440), 1, + anon_sym_RBRACK, + STATE(7707), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317506] = 5, + [327411] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10248), 1, + ACTIONS(10442), 1, anon_sym_COLON, - STATE(7489), 3, + STATE(7708), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317524] = 5, + [327429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10250), 1, + ACTIONS(10444), 1, anon_sym_COLON, - STATE(7490), 3, + STATE(7709), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317542] = 5, + [327447] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10252), 1, + ACTIONS(10446), 1, sym_AFTER, - STATE(7491), 3, + STATE(7710), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317560] = 5, + [327465] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10254), 1, + ACTIONS(10448), 1, anon_sym_COLON, - STATE(7492), 3, + STATE(7711), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317578] = 5, + [327483] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10256), 1, + ACTIONS(10450), 1, anon_sym_GT_GT, - STATE(7493), 3, + STATE(7712), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317596] = 5, + [327501] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10258), 1, - sym__directive_newline, - STATE(7494), 3, + ACTIONS(10452), 1, + anon_sym_COLON, + STATE(7713), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317614] = 5, + [327519] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7521), 1, - anon_sym_SEMI, - STATE(7495), 3, + ACTIONS(10454), 1, + anon_sym_RPAREN, + STATE(7714), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317632] = 5, + [327537] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10260), 1, - anon_sym_RBRACK, - STATE(7496), 3, + ACTIONS(10456), 1, + sym_OF, + STATE(7715), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317650] = 5, + [327555] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10262), 1, + ACTIONS(10458), 1, anon_sym_RBRACK, - STATE(7497), 3, + STATE(7716), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317668] = 5, + [327573] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10264), 1, + ACTIONS(10460), 1, anon_sym_COLON, - STATE(7498), 3, + STATE(7717), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317686] = 5, + [327591] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10266), 1, + ACTIONS(10462), 1, sym_IS, - STATE(7499), 3, + STATE(7718), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317704] = 5, + [327609] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10268), 1, + ACTIONS(10464), 1, anon_sym_COLON, - STATE(7500), 3, + STATE(7719), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317722] = 5, + [327627] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10270), 1, - sym_IS, - STATE(7501), 3, + ACTIONS(10466), 1, + anon_sym_GT_GT, + STATE(7720), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317740] = 5, + [327645] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10272), 1, + ACTIONS(10468), 1, anon_sym_GT_GT, - STATE(7502), 3, + STATE(7721), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317758] = 5, + [327663] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10274), 1, - anon_sym_GT_GT, - STATE(7503), 3, + ACTIONS(10470), 1, + anon_sym_RBRACK, + STATE(7722), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317776] = 5, + [327681] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10276), 1, + ACTIONS(10472), 1, anon_sym_SEMI, - STATE(7504), 3, + STATE(7723), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317794] = 5, + [327699] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10278), 1, + ACTIONS(10474), 1, anon_sym_LPAREN, - STATE(7505), 3, + STATE(7724), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317812] = 5, + [327717] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10280), 1, + ACTIONS(10476), 1, sym_NEW, - STATE(7506), 3, + STATE(7725), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317830] = 5, + [327735] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10282), 1, + ACTIONS(10478), 1, anon_sym_LPAREN, - STATE(7507), 3, + STATE(7726), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317848] = 5, + [327753] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10284), 1, - anon_sym_GT_GT, - STATE(7508), 3, + ACTIONS(10480), 1, + anon_sym_RBRACK, + STATE(7727), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317866] = 5, + [327771] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10286), 1, - sym_bit_string_value, - STATE(7509), 3, + ACTIONS(10482), 1, + anon_sym_RBRACK, + STATE(7728), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317884] = 5, + [327789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10288), 1, + ACTIONS(10484), 1, anon_sym_SEMI, - STATE(7510), 3, + STATE(7729), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317902] = 5, + [327807] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6448), 1, + ACTIONS(10486), 1, anon_sym_RBRACK, - STATE(7511), 3, + STATE(7730), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317920] = 5, + [327825] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10290), 1, - anon_sym_RPAREN, - STATE(7512), 3, + ACTIONS(10488), 1, + anon_sym_GT_GT, + STATE(7731), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317938] = 5, + [327843] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10292), 1, - anon_sym_RPAREN, - STATE(7513), 3, + ACTIONS(10490), 1, + ts_builtin_sym_end, + STATE(7732), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317956] = 5, + [327861] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10294), 1, - anon_sym_RPAREN, - STATE(7514), 3, + ACTIONS(10492), 1, + anon_sym_GT_GT, + STATE(7733), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317974] = 5, + [327879] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10296), 1, - anon_sym_RPAREN, - STATE(7515), 3, + ACTIONS(10494), 1, + anon_sym_GT_GT, + STATE(7734), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [317992] = 5, + [327897] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10298), 1, - anon_sym_SEMI, - STATE(7516), 3, + ACTIONS(10496), 1, + sym_END, + STATE(7735), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318010] = 5, + [327915] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10300), 1, + ACTIONS(10498), 1, anon_sym_COLON, - STATE(7517), 3, + STATE(7736), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318028] = 5, + [327933] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10302), 1, + ACTIONS(10500), 1, anon_sym_COLON, - STATE(7518), 3, + STATE(7737), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318046] = 5, + [327951] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10304), 1, + ACTIONS(10502), 1, anon_sym_COLON, - STATE(7519), 3, + STATE(7738), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318064] = 5, + [327969] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10306), 1, + ACTIONS(10504), 1, anon_sym_COLON, - STATE(7520), 3, + STATE(7739), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318082] = 5, + [327987] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10308), 1, + ACTIONS(10506), 1, anon_sym_SEMI, - STATE(7521), 3, + STATE(7740), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318100] = 5, + [328005] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6417), 1, + ACTIONS(10508), 1, anon_sym_RBRACK, - STATE(7522), 3, + STATE(7741), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318118] = 5, + [328023] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10310), 1, - anon_sym_COLON, - STATE(7523), 3, + ACTIONS(10510), 1, + ts_builtin_sym_end, + STATE(7742), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318136] = 5, + [328041] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10312), 1, - anon_sym_RBRACK, - STATE(7524), 3, + ACTIONS(10512), 1, + sym_bit_string_value, + STATE(7743), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318154] = 5, + [328059] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10314), 1, - anon_sym_RBRACK, - STATE(7525), 3, + ACTIONS(10514), 1, + anon_sym_RPAREN, + STATE(7744), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318172] = 5, + [328077] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10316), 1, + ACTIONS(10516), 1, sym_IS, - STATE(7526), 3, + STATE(7745), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318190] = 5, + [328095] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10318), 1, + ACTIONS(10518), 1, sym_IS, - STATE(7527), 3, + STATE(7746), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318208] = 5, + [328113] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10320), 1, - anon_sym_GT_GT, - STATE(7528), 3, + ACTIONS(10520), 1, + anon_sym_SEMI, + STATE(7747), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318226] = 5, + [328131] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10322), 1, + ACTIONS(10522), 1, anon_sym_SEMI, - STATE(7529), 3, + STATE(7748), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318244] = 5, + [328149] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10324), 1, - ts_builtin_sym_end, - STATE(7530), 3, + ACTIONS(10524), 1, + anon_sym_SEMI, + STATE(7749), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318262] = 5, + [328167] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10326), 1, - anon_sym_GT_GT, - STATE(7531), 3, + ACTIONS(10526), 1, + anon_sym_RPAREN, + STATE(7750), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318280] = 5, + [328185] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10328), 1, - anon_sym_GT_GT, - STATE(7532), 3, + ACTIONS(10528), 1, + sym_bit_string_value, + STATE(7751), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318298] = 5, + [328203] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6518), 1, - sym_RETURN, - STATE(7533), 3, + ACTIONS(10530), 1, + anon_sym_RPAREN, + STATE(7752), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318316] = 5, + [328221] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10330), 1, - anon_sym_RPAREN, - STATE(7534), 3, + ACTIONS(10532), 1, + anon_sym_SEMI, + STATE(7753), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318334] = 5, + [328239] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10332), 1, - anon_sym_GT_GT, - STATE(7535), 3, + ACTIONS(10534), 1, + anon_sym_RBRACK, + STATE(7754), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318352] = 5, + [328257] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10334), 1, - anon_sym_GT_GT, - STATE(7536), 3, + ACTIONS(10536), 1, + anon_sym_RBRACK, + STATE(7755), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318370] = 5, + [328275] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10336), 1, + ACTIONS(10538), 1, anon_sym_SEMI, - STATE(7537), 3, + STATE(7756), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318388] = 5, + [328293] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6413), 1, - anon_sym_RBRACK, - STATE(7538), 3, + ACTIONS(10540), 1, + anon_sym_RPAREN, + STATE(7757), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318406] = 5, + [328311] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10338), 1, + ACTIONS(10542), 1, anon_sym_GT_GT, - STATE(7539), 3, + STATE(7758), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318424] = 5, + [328329] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10340), 1, - ts_builtin_sym_end, - STATE(7540), 3, + ACTIONS(10544), 1, + anon_sym_GT_GT, + STATE(7759), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318442] = 5, + [328347] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10342), 1, - anon_sym_RPAREN, - STATE(7541), 3, + ACTIONS(10546), 1, + anon_sym_GT_GT, + STATE(7760), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318460] = 5, + [328365] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6201), 1, - anon_sym_SEMI, - STATE(7542), 3, + ACTIONS(10548), 1, + anon_sym_RBRACK, + STATE(7761), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318478] = 5, + [328383] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10344), 1, - anon_sym_RPAREN, - STATE(7543), 3, + ACTIONS(10550), 1, + anon_sym_RBRACK, + STATE(7762), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318496] = 5, + [328401] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10346), 1, - anon_sym_GT_GT, - STATE(7544), 3, + ACTIONS(5865), 1, + anon_sym_SEMI, + STATE(7763), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318514] = 5, + [328419] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10348), 1, - anon_sym_RBRACK, - STATE(7545), 3, + ACTIONS(10552), 1, + anon_sym_RPAREN, + STATE(7764), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318532] = 5, + [328437] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10350), 1, - anon_sym_SEMI, - STATE(7546), 3, + ACTIONS(10554), 1, + anon_sym_RPAREN, + STATE(7765), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318550] = 5, + [328455] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10352), 1, - anon_sym_RBRACK, - STATE(7547), 3, + ACTIONS(10556), 1, + anon_sym_GT_GT, + STATE(7766), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318568] = 5, + [328473] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10354), 1, - anon_sym_SEMI, - STATE(7548), 3, + ACTIONS(10558), 1, + anon_sym_GT_GT, + STATE(7767), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318586] = 5, + [328491] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10356), 1, + ACTIONS(10560), 1, anon_sym_COLON, - STATE(7549), 3, + STATE(7768), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318604] = 5, + [328509] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10358), 1, + ACTIONS(10562), 1, anon_sym_COLON, - STATE(7550), 3, + STATE(7769), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318622] = 5, + [328527] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10360), 1, + ACTIONS(10564), 1, sym_AFTER, - STATE(7551), 3, + STATE(7770), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318640] = 5, + [328545] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10362), 1, + ACTIONS(10566), 1, anon_sym_COLON, - STATE(7552), 3, + STATE(7771), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318658] = 5, + [328563] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10364), 1, - anon_sym_RBRACK, - STATE(7553), 3, + ACTIONS(10568), 1, + anon_sym_GT_GT, + STATE(7772), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318676] = 5, + [328581] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10366), 1, - anon_sym_SEMI, - STATE(7554), 3, + ACTIONS(10570), 1, + sym_VARIABLE, + STATE(7773), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318694] = 5, + [328599] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10368), 1, - anon_sym_SEMI, - STATE(7555), 3, + ACTIONS(10572), 1, + anon_sym_RBRACK, + STATE(7774), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318712] = 5, + [328617] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10370), 1, + ACTIONS(7120), 1, anon_sym_SEMI, - STATE(7556), 3, + STATE(7775), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318730] = 5, + [328635] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10372), 1, + ACTIONS(10574), 1, anon_sym_RBRACK, - STATE(7557), 3, + STATE(7776), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318748] = 5, + [328653] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10374), 1, + ACTIONS(10576), 1, anon_sym_COLON, - STATE(7558), 3, + STATE(7777), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318766] = 5, + [328671] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10376), 1, + ACTIONS(10578), 1, sym_IS, - STATE(7559), 3, + STATE(7778), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318784] = 5, + [328689] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10378), 1, + ACTIONS(10580), 1, anon_sym_COLON, - STATE(7560), 3, + STATE(7779), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318802] = 5, + [328707] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10380), 1, - anon_sym_SEMI, - STATE(7561), 3, + ACTIONS(10582), 1, + anon_sym_RBRACK, + STATE(7780), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318820] = 5, + [328725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10382), 1, - anon_sym_GT_GT, - STATE(7562), 3, + ACTIONS(10584), 1, + anon_sym_RBRACK, + STATE(7781), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318838] = 5, + [328743] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10384), 1, - sym_string_literal, - STATE(7563), 3, + ACTIONS(10586), 1, + anon_sym_RBRACK, + STATE(7782), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318856] = 5, + [328761] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10384), 1, - anon_sym_RPAREN, - STATE(7564), 3, + ACTIONS(10588), 1, + sym_PROTECTED, + STATE(7783), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318874] = 5, + [328779] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10386), 1, + ACTIONS(10590), 1, sym_NEW, - STATE(7565), 3, + STATE(7784), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318892] = 5, + [328797] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10388), 1, - anon_sym_GT_GT, - STATE(7566), 3, + ACTIONS(10592), 1, + sym_FUNCTION, + STATE(7785), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318910] = 5, + [328815] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10390), 1, - anon_sym_SEMI, - STATE(7567), 3, + ACTIONS(10594), 1, + anon_sym_EQ_GT, + STATE(7786), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318928] = 5, + [328833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7297), 1, - anon_sym_SEMI, - STATE(7568), 3, + ACTIONS(10596), 1, + anon_sym_GT_GT, + STATE(7787), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318946] = 5, + [328851] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10392), 1, + ACTIONS(10598), 1, anon_sym_GT_GT, - STATE(7569), 3, + STATE(7788), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318964] = 5, + [328869] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5844), 1, - anon_sym_SEMI, - STATE(7570), 3, + ACTIONS(10600), 1, + anon_sym_GT_GT, + STATE(7789), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [318982] = 5, + [328887] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10394), 1, + ACTIONS(10602), 1, anon_sym_COLON, - STATE(7571), 3, + STATE(7790), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319000] = 5, + [328905] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10396), 1, + ACTIONS(10604), 1, anon_sym_COLON, - STATE(7572), 3, + STATE(7791), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319018] = 5, + [328923] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10398), 1, + ACTIONS(10606), 1, anon_sym_COLON, - STATE(7573), 3, + STATE(7792), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319036] = 5, + [328941] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10400), 1, + ACTIONS(10608), 1, anon_sym_COLON, - STATE(7574), 3, + STATE(7793), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319054] = 5, + [328959] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10402), 1, - sym_VARIABLE, - STATE(7575), 3, + ACTIONS(10610), 1, + sym_RECORD, + STATE(7794), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319072] = 5, + [328977] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6399), 1, + ACTIONS(10612), 1, anon_sym_RBRACK, - STATE(7576), 3, + STATE(7795), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319090] = 5, + [328995] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10404), 1, - anon_sym_RPAREN, - STATE(7577), 3, + ACTIONS(10614), 1, + sym_FUNCTION, + STATE(7796), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319108] = 5, + [329013] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10406), 1, - anon_sym_SEMI, - STATE(7578), 3, + ACTIONS(10616), 1, + anon_sym_COLON, + STATE(7797), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319126] = 5, + [329031] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10408), 1, - anon_sym_RPAREN, - STATE(7579), 3, + ACTIONS(10618), 1, + sym_bit_string_value, + STATE(7798), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319144] = 5, + [329049] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10410), 1, + ACTIONS(10620), 1, sym_IS, - STATE(7580), 3, + STATE(7799), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319162] = 5, + [329067] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10412), 1, + ACTIONS(10622), 1, sym_IS, - STATE(7581), 3, + STATE(7800), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319180] = 5, + [329085] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10414), 1, + ACTIONS(10624), 1, anon_sym_SEMI, - STATE(7582), 3, + STATE(7801), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319198] = 5, + [329103] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10416), 1, + ACTIONS(10626), 1, anon_sym_RPAREN, - STATE(7583), 3, + STATE(7802), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319216] = 5, + [329121] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10418), 1, - sym_bit_string_value, - STATE(7584), 3, + ACTIONS(10628), 1, + anon_sym_RPAREN, + STATE(7803), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319234] = 5, + [329139] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10420), 1, + ACTIONS(10630), 1, sym_bit_string_value, - STATE(7585), 3, + STATE(7804), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319252] = 5, + [329157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10422), 1, + ACTIONS(10632), 1, anon_sym_RPAREN, - STATE(7586), 3, + STATE(7805), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319270] = 5, + [329175] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10424), 1, - sym_FUNCTION, - STATE(7587), 3, + ACTIONS(6171), 1, + anon_sym_SEMI, + STATE(7806), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319288] = 5, + [329193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10426), 1, - anon_sym_RBRACK, - STATE(7588), 3, + ACTIONS(10634), 1, + anon_sym_SEMI, + STATE(7807), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319306] = 5, + [329211] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10428), 1, + ACTIONS(10636), 1, anon_sym_RBRACK, - STATE(7589), 3, + STATE(7808), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319324] = 5, + [329229] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10430), 1, - anon_sym_RPAREN, - STATE(7590), 3, + ACTIONS(10638), 1, + anon_sym_RBRACK, + STATE(7809), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319342] = 5, + [329247] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10432), 1, - anon_sym_GT_GT, - STATE(7591), 3, + ACTIONS(10640), 1, + sym_IS, + STATE(7810), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319360] = 5, + [329265] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10434), 1, - anon_sym_GT_GT, - STATE(7592), 3, + ACTIONS(10642), 1, + anon_sym_RPAREN, + STATE(7811), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319378] = 5, + [329283] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10436), 1, + ACTIONS(10644), 1, anon_sym_COLON, - STATE(7593), 3, + STATE(7812), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319396] = 5, + [329301] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10438), 1, + ACTIONS(10646), 1, anon_sym_COLON, - STATE(7594), 3, + STATE(7813), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319414] = 5, + [329319] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10440), 1, + ACTIONS(10648), 1, anon_sym_COLON, - STATE(7595), 3, + STATE(7814), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319432] = 5, + [329337] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10442), 1, + ACTIONS(10650), 1, anon_sym_GT_GT, - STATE(7596), 3, + STATE(7815), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319450] = 5, + [329355] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6367), 1, - anon_sym_RBRACK, - STATE(7597), 3, + ACTIONS(10652), 1, + anon_sym_GT_GT, + STATE(7816), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319468] = 5, + [329373] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6381), 1, - anon_sym_RBRACK, - STATE(7598), 3, + ACTIONS(6434), 1, + anon_sym_GT_GT, + STATE(7817), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319486] = 5, + [329391] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10444), 1, - sym_bit_string_value, - STATE(7599), 3, + ACTIONS(10654), 1, + anon_sym_GT_GT, + STATE(7818), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319504] = 5, + [329409] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10446), 1, + ACTIONS(10656), 1, sym_IS, - STATE(7600), 3, + STATE(7819), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319522] = 5, + [329427] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10448), 1, + ACTIONS(10658), 1, anon_sym_COLON, - STATE(7601), 3, + STATE(7820), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319540] = 5, + [329445] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10450), 1, - anon_sym_RPAREN, - STATE(7602), 3, + ACTIONS(10660), 1, + anon_sym_GT_GT, + STATE(7821), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319558] = 5, + [329463] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10452), 1, + ACTIONS(10662), 1, sym_NEW, - STATE(7603), 3, + STATE(7822), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319576] = 5, + [329481] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10454), 1, - anon_sym_RPAREN, - STATE(7604), 3, + ACTIONS(10664), 1, + anon_sym_RBRACK, + STATE(7823), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319594] = 5, + [329499] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10456), 1, - anon_sym_SEMI, - STATE(7605), 3, + ACTIONS(10666), 1, + anon_sym_RBRACK, + STATE(7824), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319612] = 5, + [329517] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10458), 1, - anon_sym_SEMI, - STATE(7606), 3, + ACTIONS(10668), 1, + anon_sym_GT_GT, + STATE(7825), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319630] = 5, + [329535] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10460), 1, - anon_sym_GT_GT, - STATE(7607), 3, + ACTIONS(10670), 1, + anon_sym_RPAREN, + STATE(7826), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319648] = 5, + [329553] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10462), 1, + ACTIONS(10672), 1, + sym_NEW, + STATE(7827), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [329571] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(10674), 1, anon_sym_COLON, - STATE(7608), 3, + STATE(7828), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319666] = 5, + [329589] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10464), 1, + ACTIONS(10676), 1, anon_sym_COLON, - STATE(7609), 3, + STATE(7829), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319684] = 5, + [329607] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10466), 1, + ACTIONS(10678), 1, anon_sym_COLON, - STATE(7610), 3, + STATE(7830), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319702] = 5, + [329625] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10468), 1, + ACTIONS(10680), 1, anon_sym_COLON, - STATE(7611), 3, + STATE(7831), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319720] = 5, + [329643] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10470), 1, - sym_IS, - STATE(7612), 3, + ACTIONS(10682), 1, + anon_sym_GT_GT, + STATE(7832), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319738] = 5, + [329661] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10472), 1, + ACTIONS(10684), 1, sym_IS, - STATE(7613), 3, + STATE(7833), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319756] = 5, + [329679] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10474), 1, + ACTIONS(10686), 1, sym_IS, - STATE(7614), 3, + STATE(7834), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319774] = 5, + [329697] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10476), 1, - anon_sym_SEMI, - STATE(7615), 3, + ACTIONS(10688), 1, + anon_sym_RPAREN, + STATE(7835), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319792] = 5, + [329715] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5877), 1, - sym_RETURN, - STATE(7616), 3, + ACTIONS(10690), 1, + anon_sym_GT_GT, + STATE(7836), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319810] = 5, + [329733] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10478), 1, + ACTIONS(10692), 1, anon_sym_GT_GT, - STATE(7617), 3, + STATE(7837), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319828] = 5, + [329751] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7476), 1, + ACTIONS(10694), 1, anon_sym_SEMI, - STATE(7618), 3, + STATE(7838), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319846] = 5, + [329769] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10480), 1, + ACTIONS(10696), 1, anon_sym_GT_GT, - STATE(7619), 3, + STATE(7839), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319864] = 5, + [329787] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10482), 1, - anon_sym_RBRACK, - STATE(7620), 3, + ACTIONS(10698), 1, + anon_sym_GT_GT, + STATE(7840), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319882] = 5, + [329805] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10484), 1, + ACTIONS(10700), 1, anon_sym_RBRACK, - STATE(7621), 3, + STATE(7841), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319900] = 5, + [329823] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10486), 1, + ACTIONS(10702), 1, anon_sym_COLON, - STATE(7622), 3, + STATE(7842), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319918] = 5, + [329841] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10488), 1, + ACTIONS(10704), 1, anon_sym_COLON, - STATE(7623), 3, + STATE(7843), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319936] = 5, + [329859] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10490), 1, + ACTIONS(10706), 1, anon_sym_COLON, - STATE(7624), 3, + STATE(7844), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319954] = 5, + [329877] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10492), 1, + ACTIONS(10708), 1, anon_sym_RBRACK, - STATE(7625), 3, + STATE(7845), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319972] = 5, + [329895] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10494), 1, + ACTIONS(10710), 1, sym_IS, - STATE(7626), 3, + STATE(7846), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [319990] = 5, + [329913] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10496), 1, + ACTIONS(10712), 1, anon_sym_COLON, - STATE(7627), 3, + STATE(7847), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320008] = 5, + [329931] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10498), 1, + ACTIONS(10714), 1, sym_NEW, - STATE(7628), 3, + STATE(7848), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320026] = 5, + [329949] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10500), 1, - anon_sym_RPAREN, - STATE(7629), 3, + ACTIONS(10716), 1, + anon_sym_SEMI, + STATE(7849), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320044] = 5, + [329967] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10502), 1, + ACTIONS(10718), 1, anon_sym_COLON, - STATE(7630), 3, + STATE(7850), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320062] = 5, + [329985] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10504), 1, + ACTIONS(10720), 1, anon_sym_COLON, - STATE(7631), 3, + STATE(7851), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320080] = 5, + [330003] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10506), 1, + ACTIONS(10722), 1, anon_sym_COLON, - STATE(7632), 3, + STATE(7852), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320098] = 5, + [330021] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10508), 1, + ACTIONS(10724), 1, anon_sym_COLON, - STATE(7633), 3, + STATE(7853), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320116] = 5, + [330039] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10510), 1, + ACTIONS(10726), 1, sym_IS, - STATE(7634), 3, + STATE(7854), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320134] = 5, + [330057] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10512), 1, + ACTIONS(10728), 1, sym_IS, - STATE(7635), 3, + STATE(7855), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320152] = 5, + [330075] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10514), 1, - sym_bit_string_value, - STATE(7636), 3, + ACTIONS(10730), 1, + anon_sym_SEMI, + STATE(7856), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320170] = 5, + [330093] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10516), 1, + ACTIONS(10732), 1, + anon_sym_SEMI, + STATE(7857), 3, + sym__tool_directive, + sym_line_comment, + sym_block_comment, + [330111] = 5, + ACTIONS(3), 1, + sym__grave_accent, + ACTIONS(5), 1, + sym__line_comment_start, + ACTIONS(7), 1, + sym__block_comment_start, + ACTIONS(10734), 1, anon_sym_RBRACK, - STATE(7637), 3, + STATE(7858), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320188] = 5, + [330129] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10518), 1, - anon_sym_SEMI, - STATE(7638), 3, + ACTIONS(10736), 1, + anon_sym_COLON, + STATE(7859), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320206] = 5, + [330147] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10520), 1, - anon_sym_COLON, - STATE(7639), 3, + ACTIONS(10738), 1, + sym_NEW, + STATE(7860), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320224] = 5, + [330165] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10522), 1, + ACTIONS(10740), 1, sym_NEW, - STATE(7640), 3, + STATE(7861), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320242] = 5, + [330183] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10524), 1, + ACTIONS(10742), 1, anon_sym_COLON, - STATE(7641), 3, + STATE(7862), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320260] = 5, + [330201] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10526), 1, + ACTIONS(10744), 1, anon_sym_COLON, - STATE(7642), 3, + STATE(7863), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320278] = 5, + [330219] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10528), 1, + ACTIONS(10746), 1, anon_sym_COLON, - STATE(7643), 3, + STATE(7864), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320296] = 5, + [330237] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10530), 1, + ACTIONS(10748), 1, anon_sym_COLON, - STATE(7644), 3, + STATE(7865), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320314] = 5, + [330255] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10532), 1, + ACTIONS(10750), 1, sym_IS, - STATE(7645), 3, + STATE(7866), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320332] = 5, + [330273] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10534), 1, + ACTIONS(10752), 1, sym_IS, - STATE(7646), 3, + STATE(7867), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320350] = 5, + [330291] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10536), 1, - anon_sym_GT_GT, - STATE(7647), 3, + ACTIONS(10754), 1, + anon_sym_SEMI, + STATE(7868), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320368] = 5, + [330309] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10538), 1, + ACTIONS(10756), 1, anon_sym_COLON, - STATE(7648), 3, + STATE(7869), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320386] = 5, + [330327] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10540), 1, + ACTIONS(10758), 1, anon_sym_COLON, - STATE(7649), 3, + STATE(7870), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320404] = 5, + [330345] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10542), 1, + ACTIONS(10760), 1, anon_sym_COLON, - STATE(7650), 3, + STATE(7871), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320422] = 5, + [330363] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10544), 1, + ACTIONS(10762), 1, sym_IS, - STATE(7651), 3, + STATE(7872), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320440] = 5, + [330381] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10546), 1, + ACTIONS(10764), 1, anon_sym_COLON, - STATE(7652), 3, + STATE(7873), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320458] = 5, + [330399] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10548), 1, + ACTIONS(10766), 1, anon_sym_COLON, - STATE(7653), 3, + STATE(7874), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320476] = 5, + [330417] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10550), 1, + ACTIONS(10768), 1, anon_sym_COLON, - STATE(7654), 3, + STATE(7875), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320494] = 5, + [330435] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10552), 1, + ACTIONS(10770), 1, anon_sym_COLON, - STATE(7655), 3, + STATE(7876), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320512] = 5, + [330453] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10554), 1, + ACTIONS(10772), 1, anon_sym_COLON, - STATE(7656), 3, + STATE(7877), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320530] = 5, + [330471] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10556), 1, + ACTIONS(10774), 1, anon_sym_COLON, - STATE(7657), 3, + STATE(7878), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320548] = 5, + [330489] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10558), 1, + ACTIONS(10776), 1, anon_sym_COLON, - STATE(7658), 3, + STATE(7879), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320566] = 5, + [330507] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10560), 1, + ACTIONS(10778), 1, anon_sym_COLON, - STATE(7659), 3, + STATE(7880), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320584] = 5, + [330525] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10562), 1, + ACTIONS(10780), 1, anon_sym_COLON, - STATE(7660), 3, + STATE(7881), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320602] = 5, + [330543] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10564), 1, + ACTIONS(10782), 1, anon_sym_COLON, - STATE(7661), 3, + STATE(7882), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320620] = 5, + [330561] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10566), 1, + ACTIONS(10784), 1, anon_sym_COLON, - STATE(7662), 3, + STATE(7883), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320638] = 5, + [330579] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10568), 1, + ACTIONS(10786), 1, anon_sym_COLON, - STATE(7663), 3, + STATE(7884), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320656] = 5, + [330597] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10570), 1, + ACTIONS(10788), 1, anon_sym_COLON, - STATE(7664), 3, + STATE(7885), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320674] = 5, + [330615] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10572), 1, + ACTIONS(10790), 1, anon_sym_COLON, - STATE(7665), 3, + STATE(7886), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320692] = 5, + [330633] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10574), 1, + ACTIONS(10792), 1, anon_sym_COLON, - STATE(7666), 3, + STATE(7887), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320710] = 5, + [330651] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10576), 1, + ACTIONS(10794), 1, anon_sym_COLON, - STATE(7667), 3, + STATE(7888), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320728] = 5, + [330669] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10578), 1, + ACTIONS(10796), 1, anon_sym_COLON, - STATE(7668), 3, + STATE(7889), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320746] = 5, + [330687] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10580), 1, + ACTIONS(10798), 1, anon_sym_COLON, - STATE(7669), 3, + STATE(7890), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320764] = 5, + [330705] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10582), 1, + ACTIONS(10800), 1, anon_sym_COLON, - STATE(7670), 3, + STATE(7891), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320782] = 5, + [330723] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10584), 1, + ACTIONS(10802), 1, anon_sym_COLON, - STATE(7671), 3, + STATE(7892), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320800] = 5, + [330741] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10586), 1, + ACTIONS(10804), 1, anon_sym_COLON, - STATE(7672), 3, + STATE(7893), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320818] = 5, + [330759] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10588), 1, + ACTIONS(10806), 1, anon_sym_COLON, - STATE(7673), 3, + STATE(7894), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320836] = 5, + [330777] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10590), 1, + ACTIONS(10808), 1, anon_sym_COLON, - STATE(7674), 3, + STATE(7895), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320854] = 5, + [330795] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10592), 1, + ACTIONS(10810), 1, anon_sym_COLON, - STATE(7675), 3, + STATE(7896), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320872] = 5, + [330813] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10594), 1, + ACTIONS(10812), 1, anon_sym_COLON, - STATE(7676), 3, + STATE(7897), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320890] = 5, + [330831] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10596), 1, + ACTIONS(10814), 1, anon_sym_COLON, - STATE(7677), 3, + STATE(7898), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320908] = 5, + [330849] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10598), 1, + ACTIONS(10816), 1, anon_sym_COLON, - STATE(7678), 3, + STATE(7899), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320926] = 5, + [330867] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10600), 1, + ACTIONS(10818), 1, anon_sym_COLON, - STATE(7679), 3, + STATE(7900), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320944] = 5, + [330885] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10602), 1, + ACTIONS(10820), 1, anon_sym_COLON, - STATE(7680), 3, + STATE(7901), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320962] = 5, + [330903] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10604), 1, + ACTIONS(10822), 1, anon_sym_COLON, - STATE(7681), 3, + STATE(7902), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320980] = 5, + [330921] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10606), 1, + ACTIONS(10824), 1, anon_sym_COLON, - STATE(7682), 3, + STATE(7903), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [320998] = 5, + [330939] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10608), 1, + ACTIONS(10826), 1, anon_sym_COLON, - STATE(7683), 3, + STATE(7904), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321016] = 5, + [330957] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10610), 1, + ACTIONS(10828), 1, anon_sym_COLON, - STATE(7684), 3, + STATE(7905), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321034] = 5, + [330975] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10612), 1, + ACTIONS(10830), 1, anon_sym_COLON, - STATE(7685), 3, + STATE(7906), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321052] = 5, + [330993] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10614), 1, + ACTIONS(10832), 1, anon_sym_COLON, - STATE(7686), 3, + STATE(7907), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321070] = 5, + [331011] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10616), 1, + ACTIONS(10834), 1, anon_sym_COLON, - STATE(7687), 3, + STATE(7908), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321088] = 5, + [331029] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10618), 1, + ACTIONS(10836), 1, anon_sym_COLON, - STATE(7688), 3, + STATE(7909), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321106] = 5, + [331047] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10620), 1, + ACTIONS(10838), 1, anon_sym_COLON, - STATE(7689), 3, + STATE(7910), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321124] = 5, + [331065] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10622), 1, + ACTIONS(10840), 1, anon_sym_COLON, - STATE(7690), 3, + STATE(7911), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321142] = 5, + [331083] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10624), 1, + ACTIONS(10842), 1, anon_sym_COLON, - STATE(7691), 3, + STATE(7912), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321160] = 5, + [331101] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10626), 1, + ACTIONS(10844), 1, anon_sym_COLON, - STATE(7692), 3, + STATE(7913), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321178] = 5, + [331119] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10628), 1, + ACTIONS(10846), 1, anon_sym_COLON, - STATE(7693), 3, + STATE(7914), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321196] = 5, + [331137] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10630), 1, + ACTIONS(10848), 1, anon_sym_COLON, - STATE(7694), 3, + STATE(7915), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321214] = 5, + [331155] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10632), 1, + ACTIONS(10850), 1, anon_sym_COLON, - STATE(7695), 3, + STATE(7916), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321232] = 5, + [331173] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10634), 1, + ACTIONS(10852), 1, anon_sym_COLON, - STATE(7696), 3, + STATE(7917), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321250] = 5, + [331191] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10636), 1, + ACTIONS(10854), 1, anon_sym_COLON, - STATE(7697), 3, + STATE(7918), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321268] = 5, + [331209] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10638), 1, + ACTIONS(10856), 1, anon_sym_COLON, - STATE(7698), 3, + STATE(7919), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321286] = 5, + [331227] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10640), 1, + ACTIONS(10858), 1, anon_sym_COLON, - STATE(7699), 3, + STATE(7920), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321304] = 5, + [331245] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10642), 1, + ACTIONS(10860), 1, anon_sym_COLON, - STATE(7700), 3, + STATE(7921), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321322] = 5, + [331263] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10644), 1, + ACTIONS(10862), 1, anon_sym_COLON, - STATE(7701), 3, + STATE(7922), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321340] = 5, + [331281] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10646), 1, + ACTIONS(10864), 1, anon_sym_COLON, - STATE(7702), 3, + STATE(7923), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321358] = 5, + [331299] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10648), 1, + ACTIONS(10866), 1, anon_sym_COLON, - STATE(7703), 3, + STATE(7924), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321376] = 5, + [331317] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10650), 1, + ACTIONS(10868), 1, anon_sym_COLON, - STATE(7704), 3, + STATE(7925), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321394] = 5, + [331335] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10652), 1, + ACTIONS(10870), 1, anon_sym_COLON, - STATE(7705), 3, + STATE(7926), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321412] = 5, + [331353] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10654), 1, + ACTIONS(10872), 1, anon_sym_COLON, - STATE(7706), 3, + STATE(7927), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321430] = 5, + [331371] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10656), 1, + ACTIONS(10874), 1, anon_sym_COLON, - STATE(7707), 3, + STATE(7928), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321448] = 5, + [331389] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10658), 1, + ACTIONS(10876), 1, anon_sym_COLON, - STATE(7708), 3, + STATE(7929), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321466] = 5, + [331407] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10660), 1, + ACTIONS(10878), 1, anon_sym_COLON, - STATE(7709), 3, + STATE(7930), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321484] = 5, + [331425] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10662), 1, + ACTIONS(10880), 1, anon_sym_COLON, - STATE(7710), 3, + STATE(7931), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321502] = 5, + [331443] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10664), 1, + ACTIONS(10882), 1, anon_sym_COLON, - STATE(7711), 3, + STATE(7932), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321520] = 5, + [331461] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10666), 1, + ACTIONS(10884), 1, anon_sym_COLON, - STATE(7712), 3, + STATE(7933), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321538] = 5, + [331479] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10668), 1, + ACTIONS(10886), 1, anon_sym_COLON, - STATE(7713), 3, + STATE(7934), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321556] = 5, + [331497] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10670), 1, + ACTIONS(10888), 1, anon_sym_COLON, - STATE(7714), 3, + STATE(7935), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321574] = 5, + [331515] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10672), 1, + ACTIONS(10890), 1, anon_sym_COLON, - STATE(7715), 3, + STATE(7936), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321592] = 5, + [331533] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10674), 1, + ACTIONS(10892), 1, anon_sym_COLON, - STATE(7716), 3, + STATE(7937), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321610] = 5, + [331551] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10676), 1, + ACTIONS(10894), 1, anon_sym_COLON, - STATE(7717), 3, + STATE(7938), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321628] = 5, + [331569] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10678), 1, + ACTIONS(10896), 1, anon_sym_COLON, - STATE(7718), 3, + STATE(7939), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321646] = 5, + [331587] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10680), 1, + ACTIONS(10898), 1, anon_sym_COLON, - STATE(7719), 3, + STATE(7940), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321664] = 5, + [331605] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10682), 1, + ACTIONS(10900), 1, anon_sym_COLON, - STATE(7720), 3, + STATE(7941), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321682] = 5, + [331623] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10684), 1, + ACTIONS(10902), 1, anon_sym_COLON, - STATE(7721), 3, + STATE(7942), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321700] = 5, + [331641] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10686), 1, + ACTIONS(10904), 1, anon_sym_COLON, - STATE(7722), 3, + STATE(7943), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321718] = 5, + [331659] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10688), 1, + ACTIONS(10906), 1, anon_sym_COLON, - STATE(7723), 3, + STATE(7944), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321736] = 5, + [331677] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10690), 1, + ACTIONS(10908), 1, anon_sym_COLON, - STATE(7724), 3, + STATE(7945), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321754] = 5, + [331695] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10692), 1, + ACTIONS(10910), 1, anon_sym_COLON, - STATE(7725), 3, + STATE(7946), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321772] = 5, + [331713] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10694), 1, + ACTIONS(10912), 1, anon_sym_COLON, - STATE(7726), 3, + STATE(7947), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321790] = 5, + [331731] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10696), 1, + ACTIONS(10914), 1, anon_sym_COLON, - STATE(7727), 3, + STATE(7948), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321808] = 5, + [331749] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10698), 1, + ACTIONS(10916), 1, anon_sym_COLON, - STATE(7728), 3, + STATE(7949), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321826] = 5, + [331767] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10700), 1, + ACTIONS(10918), 1, anon_sym_COLON, - STATE(7729), 3, + STATE(7950), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321844] = 5, + [331785] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10702), 1, + ACTIONS(10920), 1, anon_sym_COLON, - STATE(7730), 3, + STATE(7951), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321862] = 5, + [331803] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10704), 1, + ACTIONS(10922), 1, anon_sym_COLON, - STATE(7731), 3, + STATE(7952), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321880] = 5, + [331821] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10706), 1, + ACTIONS(10924), 1, anon_sym_COLON, - STATE(7732), 3, + STATE(7953), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321898] = 5, + [331839] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10708), 1, + ACTIONS(10926), 1, anon_sym_COLON, - STATE(7733), 3, + STATE(7954), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321916] = 5, + [331857] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10710), 1, + ACTIONS(10928), 1, anon_sym_COLON, - STATE(7734), 3, + STATE(7955), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321934] = 5, + [331875] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10712), 1, + ACTIONS(10930), 1, anon_sym_COLON, - STATE(7735), 3, + STATE(7956), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321952] = 5, + [331893] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10714), 1, + ACTIONS(10932), 1, anon_sym_COLON, - STATE(7736), 3, + STATE(7957), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321970] = 5, + [331911] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10716), 1, + ACTIONS(10934), 1, anon_sym_COLON, - STATE(7737), 3, + STATE(7958), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [321988] = 5, + [331929] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10718), 1, + ACTIONS(10936), 1, anon_sym_COLON, - STATE(7738), 3, + STATE(7959), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322006] = 5, + [331947] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10720), 1, + ACTIONS(10938), 1, anon_sym_COLON, - STATE(7739), 3, + STATE(7960), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322024] = 5, + [331965] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10722), 1, + ACTIONS(10940), 1, anon_sym_COLON, - STATE(7740), 3, + STATE(7961), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322042] = 5, + [331983] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10724), 1, + ACTIONS(10942), 1, anon_sym_COLON, - STATE(7741), 3, + STATE(7962), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322060] = 5, + [332001] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10726), 1, + ACTIONS(10944), 1, anon_sym_COLON, - STATE(7742), 3, + STATE(7963), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322078] = 5, + [332019] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10728), 1, + ACTIONS(10946), 1, anon_sym_COLON, - STATE(7743), 3, + STATE(7964), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322096] = 5, + [332037] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10730), 1, + ACTIONS(10948), 1, anon_sym_COLON, - STATE(7744), 3, + STATE(7965), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322114] = 5, + [332055] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10732), 1, + ACTIONS(10950), 1, anon_sym_COLON, - STATE(7745), 3, + STATE(7966), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322132] = 5, + [332073] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10734), 1, + ACTIONS(10952), 1, anon_sym_COLON, - STATE(7746), 3, + STATE(7967), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322150] = 5, + [332091] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10736), 1, + ACTIONS(10954), 1, anon_sym_COLON, - STATE(7747), 3, + STATE(7968), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322168] = 5, + [332109] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10738), 1, + ACTIONS(10956), 1, anon_sym_COLON, - STATE(7748), 3, + STATE(7969), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322186] = 5, + [332127] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10740), 1, + ACTIONS(10958), 1, anon_sym_COLON, - STATE(7749), 3, + STATE(7970), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322204] = 5, + [332145] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10742), 1, + ACTIONS(10960), 1, anon_sym_COLON, - STATE(7750), 3, + STATE(7971), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322222] = 5, + [332163] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10744), 1, + ACTIONS(10962), 1, anon_sym_COLON, - STATE(7751), 3, + STATE(7972), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322240] = 5, + [332181] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10746), 1, + ACTIONS(10964), 1, anon_sym_COLON, - STATE(7752), 3, + STATE(7973), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322258] = 5, + [332199] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10748), 1, + ACTIONS(10966), 1, anon_sym_COLON, - STATE(7753), 3, + STATE(7974), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322276] = 5, + [332217] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10750), 1, + ACTIONS(10968), 1, anon_sym_COLON, - STATE(7754), 3, + STATE(7975), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322294] = 5, + [332235] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10752), 1, + ACTIONS(10970), 1, anon_sym_COLON, - STATE(7755), 3, + STATE(7976), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322312] = 5, + [332253] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10754), 1, + ACTIONS(10972), 1, anon_sym_COLON, - STATE(7756), 3, + STATE(7977), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322330] = 5, + [332271] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10756), 1, + ACTIONS(10974), 1, anon_sym_COLON, - STATE(7757), 3, + STATE(7978), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322348] = 5, + [332289] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10758), 1, + ACTIONS(10976), 1, anon_sym_COLON, - STATE(7758), 3, + STATE(7979), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322366] = 5, + [332307] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10760), 1, + ACTIONS(10978), 1, anon_sym_COLON, - STATE(7759), 3, + STATE(7980), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322384] = 5, + [332325] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10762), 1, + ACTIONS(10980), 1, anon_sym_COLON, - STATE(7760), 3, + STATE(7981), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322402] = 5, + [332343] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10764), 1, + ACTIONS(10982), 1, anon_sym_COLON, - STATE(7761), 3, + STATE(7982), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322420] = 5, + [332361] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10766), 1, + ACTIONS(10984), 1, anon_sym_COLON, - STATE(7762), 3, + STATE(7983), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322438] = 5, + [332379] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10768), 1, + ACTIONS(10986), 1, anon_sym_COLON, - STATE(7763), 3, + STATE(7984), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322456] = 5, + [332397] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10770), 1, + ACTIONS(10988), 1, anon_sym_COLON, - STATE(7764), 3, + STATE(7985), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322474] = 5, + [332415] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10772), 1, + ACTIONS(10990), 1, anon_sym_COLON, - STATE(7765), 3, + STATE(7986), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322492] = 5, + [332433] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10774), 1, + ACTIONS(10992), 1, anon_sym_COLON, - STATE(7766), 3, + STATE(7987), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322510] = 5, + [332451] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10776), 1, + ACTIONS(10994), 1, anon_sym_COLON, - STATE(7767), 3, + STATE(7988), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322528] = 5, + [332469] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10778), 1, + ACTIONS(10996), 1, anon_sym_COLON, - STATE(7768), 3, + STATE(7989), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322546] = 5, + [332487] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10780), 1, + ACTIONS(10998), 1, anon_sym_COLON, - STATE(7769), 3, + STATE(7990), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322564] = 5, + [332505] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10782), 1, + ACTIONS(11000), 1, anon_sym_COLON, - STATE(7770), 3, + STATE(7991), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322582] = 5, + [332523] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10784), 1, + ACTIONS(11002), 1, anon_sym_COLON, - STATE(7771), 3, + STATE(7992), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322600] = 5, + [332541] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10786), 1, + ACTIONS(11004), 1, anon_sym_COLON, - STATE(7772), 3, + STATE(7993), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322618] = 5, + [332559] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10788), 1, + ACTIONS(11006), 1, anon_sym_COLON, - STATE(7773), 3, + STATE(7994), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322636] = 5, + [332577] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10790), 1, + ACTIONS(11008), 1, anon_sym_COLON, - STATE(7774), 3, + STATE(7995), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322654] = 5, + [332595] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10792), 1, + ACTIONS(11010), 1, anon_sym_COLON, - STATE(7775), 3, + STATE(7996), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322672] = 5, + [332613] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10794), 1, + ACTIONS(11012), 1, anon_sym_COLON, - STATE(7776), 3, + STATE(7997), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322690] = 5, + [332631] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10796), 1, + ACTIONS(11014), 1, anon_sym_COLON, - STATE(7777), 3, + STATE(7998), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322708] = 5, + [332649] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10798), 1, + ACTIONS(11016), 1, anon_sym_COLON, - STATE(7778), 3, + STATE(7999), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322726] = 5, + [332667] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10800), 1, + ACTIONS(11018), 1, anon_sym_COLON, - STATE(7779), 3, + STATE(8000), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322744] = 5, + [332685] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10802), 1, + ACTIONS(11020), 1, anon_sym_COLON, - STATE(7780), 3, + STATE(8001), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322762] = 5, + [332703] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6135), 1, - sym_IS, - STATE(7781), 3, + ACTIONS(7315), 1, + sym_END, + STATE(8002), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322780] = 5, + [332721] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10804), 1, - anon_sym_SEMI, - STATE(7782), 3, + ACTIONS(11022), 1, + anon_sym_RBRACK, + STATE(8003), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322798] = 5, + [332739] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10806), 1, - anon_sym_SEMI, - STATE(7783), 3, + ACTIONS(11024), 1, + anon_sym_GT_GT, + STATE(8004), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322816] = 5, + [332757] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10808), 1, + ACTIONS(11026), 1, anon_sym_SEMI, - STATE(7784), 3, + STATE(8005), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322834] = 5, + [332775] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10810), 1, - sym_bit_string_value, - STATE(7785), 3, + ACTIONS(11028), 1, + anon_sym_RPAREN, + STATE(8006), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322852] = 5, + [332793] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10812), 1, - anon_sym_RBRACK, - STATE(7786), 3, + ACTIONS(11030), 1, + anon_sym_SEMI, + STATE(8007), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322870] = 5, + [332811] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10814), 1, - anon_sym_COLON, - STATE(7787), 3, + ACTIONS(11032), 1, + anon_sym_GT_GT, + STATE(8008), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322888] = 5, + [332829] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10816), 1, - anon_sym_GT_GT, - STATE(7788), 3, + ACTIONS(11034), 1, + sym_END, + STATE(8009), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322906] = 5, + [332847] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10818), 1, + ACTIONS(11036), 1, anon_sym_SEMI, - STATE(7789), 3, + STATE(8010), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322924] = 5, + [332865] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6345), 1, - anon_sym_RBRACK, - STATE(7790), 3, + ACTIONS(11038), 1, + anon_sym_SEMI, + STATE(8011), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322942] = 5, + [332883] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10820), 1, - sym_bit_string_value, - STATE(7791), 3, + ACTIONS(11040), 1, + anon_sym_SEMI, + STATE(8012), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322960] = 5, + [332901] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10822), 1, - anon_sym_RBRACK, - STATE(7792), 3, + ACTIONS(11042), 1, + anon_sym_SEMI, + STATE(8013), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322978] = 5, + [332919] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10824), 1, - anon_sym_RPAREN, - STATE(7793), 3, + ACTIONS(11044), 1, + anon_sym_RBRACK, + STATE(8014), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [322996] = 5, + [332937] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5628), 1, - anon_sym_SEMI, - STATE(7794), 3, + ACTIONS(11046), 1, + anon_sym_RPAREN, + STATE(8015), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323014] = 5, + [332955] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10826), 1, + ACTIONS(11048), 1, anon_sym_SEMI, - STATE(7795), 3, + STATE(8016), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323032] = 5, + [332973] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10828), 1, - anon_sym_SEMI, - STATE(7796), 3, + ACTIONS(6073), 1, + sym_IS, + STATE(8017), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323050] = 5, + [332991] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10830), 1, - anon_sym_SEMI, - STATE(7797), 3, + ACTIONS(11050), 1, + anon_sym_RPAREN, + STATE(8018), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323068] = 5, + [333009] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10832), 1, - sym_comment_content, - STATE(7798), 3, + ACTIONS(11052), 1, + anon_sym_SEMI, + STATE(8019), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323086] = 5, + [333027] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10834), 1, - anon_sym_RPAREN, - STATE(7799), 3, + ACTIONS(11054), 1, + sym_IS, + STATE(8020), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323104] = 5, + [333045] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10836), 1, + ACTIONS(11056), 1, sym_bit_string_value, - STATE(7800), 3, + STATE(8021), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323122] = 5, + [333063] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10838), 1, + ACTIONS(11058), 1, anon_sym_LPAREN, - STATE(7801), 3, + STATE(8022), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323140] = 5, + [333081] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10840), 1, + ACTIONS(11060), 1, anon_sym_LPAREN, - STATE(7802), 3, + STATE(8023), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323158] = 5, + [333099] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10842), 1, + ACTIONS(11062), 1, anon_sym_LPAREN, - STATE(7803), 3, + STATE(8024), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323176] = 5, + [333117] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10844), 1, - anon_sym_RPAREN, - STATE(7804), 3, + ACTIONS(11064), 1, + sym_bit_string_value, + STATE(8025), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323194] = 5, + [333135] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10846), 1, + ACTIONS(11066), 1, anon_sym_SEMI, - STATE(7805), 3, + STATE(8026), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323212] = 5, + [333153] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10848), 1, - anon_sym_RBRACK, - STATE(7806), 3, + ACTIONS(7792), 1, + anon_sym_COLON, + STATE(8027), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323230] = 5, + [333171] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10850), 1, + ACTIONS(11068), 1, anon_sym_LPAREN, - STATE(7807), 3, + STATE(8028), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323248] = 5, + [333189] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10852), 1, - anon_sym_RPAREN, - STATE(7808), 3, + ACTIONS(11070), 1, + anon_sym_SEMI, + STATE(8029), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323266] = 5, + [333207] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10854), 1, - anon_sym_RPAREN, - STATE(7809), 3, + ACTIONS(11072), 1, + anon_sym_SEMI, + STATE(8030), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323284] = 5, + [333225] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10856), 1, - sym_GENERATE, - STATE(7810), 3, + ACTIONS(11074), 1, + anon_sym_SEMI, + STATE(8031), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323302] = 5, + [333243] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10858), 1, - anon_sym_RBRACK, - STATE(7811), 3, + ACTIONS(11076), 1, + sym_bit_string_value, + STATE(8032), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323320] = 5, + [333261] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10860), 1, - sym_END, - STATE(7812), 3, + ACTIONS(11078), 1, + sym_bit_string_value, + STATE(8033), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323338] = 5, + [333279] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10862), 1, + ACTIONS(11080), 1, anon_sym_SEMI, - STATE(7813), 3, + STATE(8034), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323356] = 5, + [333297] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10864), 1, + ACTIONS(11082), 1, anon_sym_SEMI, - STATE(7814), 3, + STATE(8035), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323374] = 5, + [333315] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6322), 1, - anon_sym_RBRACK, - STATE(7815), 3, + ACTIONS(11084), 1, + anon_sym_SEMI, + STATE(8036), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323392] = 5, + [333333] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10866), 1, + ACTIONS(11086), 1, anon_sym_SEMI, - STATE(7816), 3, + STATE(8037), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323410] = 5, + [333351] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10868), 1, - anon_sym_GT_GT, - STATE(7817), 3, + ACTIONS(11088), 1, + sym_GENERATE, + STATE(8038), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323428] = 5, + [333369] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10870), 1, - anon_sym_GT_GT, - STATE(7818), 3, + ACTIONS(11090), 1, + anon_sym_SEMI, + STATE(8039), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323446] = 5, + [333387] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10872), 1, + ACTIONS(11092), 1, anon_sym_SEMI, - STATE(7819), 3, + STATE(8040), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323464] = 5, + [333405] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10874), 1, - sym_IS, - STATE(7820), 3, + ACTIONS(11094), 1, + anon_sym_SEMI, + STATE(8041), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323482] = 5, + [333423] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10876), 1, - anon_sym_GT_GT, - STATE(7821), 3, + ACTIONS(7639), 1, + anon_sym_SEMI, + STATE(8042), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323500] = 5, + [333441] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10878), 1, - anon_sym_SEMI, - STATE(7822), 3, + ACTIONS(7404), 1, + sym_RETURN, + STATE(8043), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323518] = 5, + [333459] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6326), 1, + ACTIONS(11096), 1, anon_sym_RBRACK, - STATE(7823), 3, + STATE(8044), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323536] = 5, + [333477] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10880), 1, - anon_sym_SEMI, - STATE(7824), 3, + ACTIONS(11098), 1, + anon_sym_RPAREN, + STATE(8045), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323554] = 5, + [333495] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10882), 1, - anon_sym_SEMI, - STATE(7825), 3, + ACTIONS(11100), 1, + sym_RETURN, + STATE(8046), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323572] = 5, + [333513] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10884), 1, - anon_sym_GT_GT, - STATE(7826), 3, + ACTIONS(11102), 1, + anon_sym_RBRACK, + STATE(8047), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323590] = 5, + [333531] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6874), 1, - sym_END, - STATE(7827), 3, + ACTIONS(11104), 1, + sym_NEW, + STATE(8048), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323608] = 5, + [333549] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10886), 1, + ACTIONS(11106), 1, anon_sym_RPAREN, - STATE(7828), 3, + STATE(8049), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323626] = 5, + [333567] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10888), 1, - anon_sym_RPAREN, - STATE(7829), 3, + ACTIONS(11108), 1, + anon_sym_GT_GT, + STATE(8050), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323644] = 5, + [333585] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10890), 1, - anon_sym_SEMI, - STATE(7830), 3, + ACTIONS(11110), 1, + anon_sym_GT_GT, + STATE(8051), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323662] = 5, + [333603] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10892), 1, - anon_sym_SEMI, - STATE(7831), 3, + ACTIONS(11112), 1, + sym_comment_content, + STATE(8052), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323680] = 5, + [333621] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10894), 1, - anon_sym_SEMI, - STATE(7832), 3, + ACTIONS(11114), 1, + anon_sym_GT_GT, + STATE(8053), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323698] = 5, + [333639] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10896), 1, - anon_sym_SEMI, - STATE(7833), 3, + ACTIONS(11116), 1, + anon_sym_RBRACK, + STATE(8054), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323716] = 5, + [333657] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10898), 1, + ACTIONS(11118), 1, anon_sym_LPAREN, - STATE(7834), 3, + STATE(8055), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323734] = 5, + [333675] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10900), 1, + ACTIONS(11120), 1, anon_sym_LPAREN, - STATE(7835), 3, + STATE(8056), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323752] = 5, + [333693] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10902), 1, + ACTIONS(11122), 1, anon_sym_LPAREN, - STATE(7836), 3, + STATE(8057), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323770] = 5, + [333711] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10904), 1, - sym_bit_string_value, - STATE(7837), 3, + ACTIONS(11124), 1, + anon_sym_RPAREN, + STATE(8058), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323788] = 5, + [333729] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10906), 1, - anon_sym_SEMI, - STATE(7838), 3, + ACTIONS(11126), 1, + anon_sym_RPAREN, + STATE(8059), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323806] = 5, + [333747] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10908), 1, - anon_sym_GT_GT, - STATE(7839), 3, + ACTIONS(11128), 1, + anon_sym_RPAREN, + STATE(8060), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323824] = 5, + [333765] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10910), 1, + ACTIONS(11130), 1, anon_sym_LPAREN, - STATE(7840), 3, + STATE(8061), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323842] = 5, + [333783] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10912), 1, - anon_sym_GT_GT, - STATE(7841), 3, + ACTIONS(11132), 1, + sym_bit_string_value, + STATE(8062), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323860] = 5, + [333801] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10914), 1, + ACTIONS(11134), 1, anon_sym_SEMI, - STATE(7842), 3, + STATE(8063), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323878] = 5, + [333819] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10916), 1, - anon_sym_SEMI, - STATE(7843), 3, + ACTIONS(11136), 1, + anon_sym_RBRACK, + STATE(8064), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323896] = 5, + [333837] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7657), 1, - anon_sym_SEMI, - STATE(7844), 3, + ACTIONS(11138), 1, + anon_sym_RPAREN, + STATE(8065), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323914] = 5, + [333855] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6815), 1, - sym_RETURN, - STATE(7845), 3, + ACTIONS(11140), 1, + anon_sym_GT_GT, + STATE(8066), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323932] = 5, + [333873] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10918), 1, - anon_sym_RBRACK, - STATE(7846), 3, + ACTIONS(11142), 1, + sym_BODY, + STATE(8067), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323950] = 5, + [333891] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6312), 1, - sym_RETURN, - STATE(7847), 3, + ACTIONS(11144), 1, + anon_sym_SEMI, + STATE(8068), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323968] = 5, + [333909] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10920), 1, - sym_NEW, - STATE(7848), 3, + ACTIONS(11146), 1, + anon_sym_SEMI, + STATE(8069), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [323986] = 5, + [333927] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10922), 1, - anon_sym_RBRACK, - STATE(7849), 3, + ACTIONS(11148), 1, + anon_sym_SEMI, + STATE(8070), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324004] = 5, + [333945] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10924), 1, - sym_bit_string_value, - STATE(7850), 3, + ACTIONS(11150), 1, + anon_sym_SEMI, + STATE(8071), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324022] = 5, + [333963] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5881), 1, - anon_sym_SEMI, - STATE(7851), 3, + ACTIONS(11152), 1, + anon_sym_GT_GT, + STATE(8072), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324040] = 5, + [333981] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10926), 1, - anon_sym_RBRACK, - STATE(7852), 3, + ACTIONS(11154), 1, + anon_sym_SEMI, + STATE(8073), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324058] = 5, + [333999] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10928), 1, + ACTIONS(11156), 1, anon_sym_SEMI, - STATE(7853), 3, + STATE(8074), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324076] = 5, + [334017] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6308), 1, - anon_sym_RBRACK, - STATE(7854), 3, + ACTIONS(11158), 1, + sym_bit_string_value, + STATE(8075), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324094] = 5, + [334035] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10930), 1, - anon_sym_GT_GT, - STATE(7855), 3, + ACTIONS(7825), 1, + anon_sym_SEMI, + STATE(8076), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324112] = 5, + [334053] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10932), 1, + ACTIONS(11160), 1, anon_sym_SEMI, - STATE(7856), 3, + STATE(8077), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324130] = 5, + [334071] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10934), 1, + ACTIONS(11162), 1, anon_sym_GT_GT, - STATE(7857), 3, + STATE(8078), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324148] = 5, + [334089] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10936), 1, - anon_sym_RPAREN, - STATE(7858), 3, + ACTIONS(7494), 1, + anon_sym_SEMI, + STATE(8079), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324166] = 5, + [334107] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10938), 1, + ACTIONS(11164), 1, sym_comment_content, - STATE(7859), 3, + STATE(8080), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324184] = 5, + [334125] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10940), 1, - sym_BODY, - STATE(7860), 3, + ACTIONS(11166), 1, + anon_sym_SEMI, + STATE(8081), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324202] = 5, + [334143] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10942), 1, + ACTIONS(11168), 1, anon_sym_SEMI, - STATE(7861), 3, + STATE(8082), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324220] = 5, + [334161] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10944), 1, + ACTIONS(11170), 1, anon_sym_LPAREN, - STATE(7862), 3, + STATE(8083), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324238] = 5, + [334179] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10946), 1, + ACTIONS(11172), 1, anon_sym_LPAREN, - STATE(7863), 3, + STATE(8084), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324256] = 5, + [334197] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10948), 1, + ACTIONS(11174), 1, anon_sym_SEMI, - STATE(7864), 3, + STATE(8085), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324274] = 5, + [334215] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10950), 1, - anon_sym_GT_GT, - STATE(7865), 3, + ACTIONS(11176), 1, + anon_sym_RBRACK, + STATE(8086), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324292] = 5, + [334233] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10952), 1, + ACTIONS(11178), 1, anon_sym_LPAREN, - STATE(7866), 3, + STATE(8087), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324310] = 5, + [334251] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10954), 1, + ACTIONS(11180), 1, anon_sym_SEMI, - STATE(7867), 3, + STATE(8088), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324328] = 5, + [334269] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10956), 1, + ACTIONS(11182), 1, anon_sym_SEMI, - STATE(7868), 3, + STATE(8089), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324346] = 5, + [334287] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10958), 1, + ACTIONS(11184), 1, anon_sym_SEMI, - STATE(7869), 3, + STATE(8090), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324364] = 5, + [334305] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10960), 1, + ACTIONS(6515), 1, anon_sym_SEMI, - STATE(7870), 3, + STATE(8091), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324382] = 5, + [334323] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10962), 1, + ACTIONS(11186), 1, anon_sym_SEMI, - STATE(7871), 3, + STATE(8092), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324400] = 5, + [334341] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10964), 1, - anon_sym_SEMI, - STATE(7872), 3, + ACTIONS(11188), 1, + anon_sym_RBRACK, + STATE(8093), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324418] = 5, + [334359] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7776), 1, + ACTIONS(11190), 1, anon_sym_SEMI, - STATE(7873), 3, + STATE(8094), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324436] = 5, + [334377] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10966), 1, + ACTIONS(11192), 1, anon_sym_SEMI, - STATE(7874), 3, + STATE(8095), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324454] = 5, + [334395] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10968), 1, + ACTIONS(11194), 1, anon_sym_GT_GT, - STATE(7875), 3, + STATE(8096), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324472] = 5, + [334413] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10970), 1, - anon_sym_SEMI, - STATE(7876), 3, + ACTIONS(11196), 1, + anon_sym_RBRACK, + STATE(8097), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324490] = 5, + [334431] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10972), 1, + ACTIONS(11198), 1, anon_sym_SEMI, - STATE(7877), 3, + STATE(8098), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324508] = 5, + [334449] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10974), 1, + ACTIONS(11200), 1, anon_sym_SEMI, - STATE(7878), 3, + STATE(8099), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324526] = 5, + [334467] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6269), 1, + ACTIONS(11202), 1, anon_sym_SEMI, - STATE(7879), 3, + STATE(8100), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324544] = 5, + [334485] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10976), 1, + ACTIONS(11204), 1, anon_sym_SEMI, - STATE(7880), 3, + STATE(8101), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324562] = 5, + [334503] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10978), 1, - anon_sym_RPAREN, - STATE(7881), 3, + ACTIONS(7441), 1, + anon_sym_SEMI, + STATE(8102), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324580] = 5, + [334521] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10980), 1, + ACTIONS(11206), 1, anon_sym_LPAREN, - STATE(7882), 3, + STATE(8103), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324598] = 5, + [334539] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10982), 1, + ACTIONS(11208), 1, anon_sym_LPAREN, - STATE(7883), 3, + STATE(8104), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324616] = 5, + [334557] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10984), 1, + ACTIONS(11210), 1, anon_sym_LPAREN, - STATE(7884), 3, + STATE(8105), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324634] = 5, + [334575] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10986), 1, + ACTIONS(11212), 1, anon_sym_SEMI, - STATE(7885), 3, + STATE(8106), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324652] = 5, + [334593] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10988), 1, - anon_sym_SEMI, - STATE(7886), 3, + ACTIONS(11214), 1, + anon_sym_GT_GT, + STATE(8107), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324670] = 5, + [334611] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10990), 1, - anon_sym_SEMI, - STATE(7887), 3, + ACTIONS(11216), 1, + anon_sym_RPAREN, + STATE(8108), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324688] = 5, + [334629] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10992), 1, - anon_sym_RPAREN, - STATE(7888), 3, + ACTIONS(11218), 1, + anon_sym_SEMI, + STATE(8109), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324706] = 5, + [334647] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10994), 1, - anon_sym_SEMI, - STATE(7889), 3, + ACTIONS(11220), 1, + sym_PROTECTED, + STATE(8110), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324724] = 5, + [334665] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10996), 1, + ACTIONS(11222), 1, anon_sym_SEMI, - STATE(7890), 3, + STATE(8111), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324742] = 5, + [334683] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10998), 1, + ACTIONS(11224), 1, anon_sym_SEMI, - STATE(7891), 3, + STATE(8112), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324760] = 5, + [334701] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11000), 1, + ACTIONS(11226), 1, anon_sym_SEMI, - STATE(7892), 3, + STATE(8113), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324778] = 5, + [334719] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7782), 1, + ACTIONS(11228), 1, anon_sym_SEMI, - STATE(7893), 3, + STATE(8114), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324796] = 5, + [334737] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11002), 1, + ACTIONS(11230), 1, anon_sym_SEMI, - STATE(7894), 3, + STATE(8115), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324814] = 5, + [334755] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11004), 1, - sym_bit_string_value, - STATE(7895), 3, + ACTIONS(11232), 1, + anon_sym_SEMI, + STATE(8116), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324832] = 5, + [334773] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11006), 1, - anon_sym_RPAREN, - STATE(7896), 3, + ACTIONS(11234), 1, + anon_sym_COLON, + STATE(8117), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324850] = 5, + [334791] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11008), 1, + ACTIONS(11236), 1, anon_sym_LPAREN, - STATE(7897), 3, + STATE(8118), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324868] = 5, + [334809] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11010), 1, + ACTIONS(11238), 1, anon_sym_LPAREN, - STATE(7898), 3, + STATE(8119), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324886] = 5, + [334827] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11012), 1, - anon_sym_SEMI, - STATE(7899), 3, + ACTIONS(11240), 1, + sym_VIEW, + STATE(8120), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324904] = 5, + [334845] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11014), 1, + ACTIONS(11242), 1, anon_sym_SEMI, - STATE(7900), 3, + STATE(8121), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324922] = 5, + [334863] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11016), 1, - anon_sym_SEMI, - STATE(7901), 3, + ACTIONS(11244), 1, + anon_sym_DOT, + STATE(8122), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324940] = 5, + [334881] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11018), 1, - sym_PROTECTED, - STATE(7902), 3, + ACTIONS(11246), 1, + anon_sym_DOT, + STATE(8123), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324958] = 5, + [334899] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11020), 1, - anon_sym_SEMI, - STATE(7903), 3, + ACTIONS(11248), 1, + anon_sym_GT_GT, + STATE(8124), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324976] = 5, + [334917] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11022), 1, - anon_sym_SEMI, - STATE(7904), 3, + ACTIONS(11250), 1, + anon_sym_GT_GT, + STATE(8125), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [324994] = 5, + [334935] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11024), 1, - anon_sym_SEMI, - STATE(7905), 3, + ACTIONS(11252), 1, + anon_sym_RBRACK, + STATE(8126), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325012] = 5, + [334953] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11026), 1, + ACTIONS(11254), 1, anon_sym_SEMI, - STATE(7906), 3, + STATE(8127), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325030] = 5, + [334971] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11028), 1, + ACTIONS(11256), 1, anon_sym_LPAREN, - STATE(7907), 3, + STATE(8128), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325048] = 5, + [334989] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11030), 1, + ACTIONS(11258), 1, anon_sym_SEMI, - STATE(7908), 3, + STATE(8129), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325066] = 5, + [335007] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11032), 1, - anon_sym_SEMI, - STATE(7909), 3, + ACTIONS(11260), 1, + anon_sym_RBRACK, + STATE(8130), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325084] = 5, + [335025] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11034), 1, - anon_sym_COLON, - STATE(7910), 3, + ACTIONS(11262), 1, + anon_sym_SEMI, + STATE(8131), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325102] = 5, + [335043] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11036), 1, - sym_VIEW, - STATE(7911), 3, + ACTIONS(11264), 1, + anon_sym_SEMI, + STATE(8132), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325120] = 5, + [335061] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11038), 1, + ACTIONS(11266), 1, anon_sym_SEMI, - STATE(7912), 3, + STATE(8133), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325138] = 5, + [335079] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11040), 1, - anon_sym_DOT, - STATE(7913), 3, + ACTIONS(5574), 1, + sym_VUNIT, + STATE(8134), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325156] = 5, + [335097] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11042), 1, - anon_sym_DOT, - STATE(7914), 3, + ACTIONS(7210), 1, + sym_END, + STATE(8135), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325174] = 5, + [335115] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11044), 1, - sym_bit_string_value, - STATE(7915), 3, + ACTIONS(11268), 1, + anon_sym_SEMI, + STATE(8136), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325192] = 5, + [335133] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11046), 1, - anon_sym_RPAREN, - STATE(7916), 3, + ACTIONS(11270), 1, + anon_sym_SEMI, + STATE(8137), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325210] = 5, + [335151] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11048), 1, - anon_sym_RBRACK, - STATE(7917), 3, + ACTIONS(11272), 1, + anon_sym_SEMI, + STATE(8138), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325228] = 5, + [335169] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11050), 1, - anon_sym_SEMI, - STATE(7918), 3, + ACTIONS(11274), 1, + anon_sym_RPAREN, + STATE(8139), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325246] = 5, + [335187] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11052), 1, - sym_bit_string_value, - STATE(7919), 3, + ACTIONS(4196), 1, + sym_END, + STATE(8140), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325264] = 5, + [335205] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11054), 1, - anon_sym_EQ, - STATE(7920), 3, + ACTIONS(11276), 1, + anon_sym_COLON, + STATE(8141), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325282] = 5, + [335223] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11056), 1, - anon_sym_SEMI, - STATE(7921), 3, + ACTIONS(11278), 1, + anon_sym_RPAREN, + STATE(8142), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325300] = 5, + [335241] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11058), 1, + ACTIONS(11280), 1, anon_sym_SEMI, - STATE(7922), 3, + STATE(8143), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325318] = 5, + [335259] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11060), 1, + ACTIONS(11282), 1, anon_sym_SEMI, - STATE(7923), 3, + STATE(8144), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325336] = 5, + [335277] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11062), 1, + ACTIONS(11284), 1, anon_sym_RPAREN, - STATE(7924), 3, + STATE(8145), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325354] = 5, + [335295] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6890), 1, - sym_END, - STATE(7925), 3, + ACTIONS(11286), 1, + anon_sym_SEMI, + STATE(8146), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325372] = 5, + [335313] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11064), 1, + ACTIONS(11288), 1, anon_sym_SEMI, - STATE(7926), 3, + STATE(8147), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325390] = 5, + [335331] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11066), 1, - anon_sym_RBRACK, - STATE(7927), 3, + ACTIONS(11290), 1, + sym_bit_string_value, + STATE(8148), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325408] = 5, + [335349] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11068), 1, - anon_sym_SEMI, - STATE(7928), 3, + ACTIONS(11292), 1, + anon_sym_EQ, + STATE(8149), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325426] = 5, + [335367] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6294), 1, - anon_sym_RBRACK, - STATE(7929), 3, + ACTIONS(11294), 1, + sym_RETURN, + STATE(8150), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325444] = 5, + [335385] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(4156), 1, - sym_END, - STATE(7930), 3, + ACTIONS(11296), 1, + sym_FOR, + STATE(8151), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325462] = 5, + [335403] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11070), 1, - anon_sym_COLON, - STATE(7931), 3, + ACTIONS(11298), 1, + sym_OF, + STATE(8152), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325480] = 5, + [335421] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11072), 1, - anon_sym_RBRACK, - STATE(7932), 3, + ACTIONS(11300), 1, + sym_box, + STATE(8153), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325498] = 5, + [335439] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11074), 1, - anon_sym_SEMI, - STATE(7933), 3, + ACTIONS(11302), 1, + sym_box, + STATE(8154), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325516] = 5, + [335457] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11076), 1, - anon_sym_SEMI, - STATE(7934), 3, + ACTIONS(11304), 1, + sym_box, + STATE(8155), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325534] = 5, + [335475] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11078), 1, - anon_sym_RPAREN, - STATE(7935), 3, + ACTIONS(6009), 1, + anon_sym_SEMI, + STATE(8156), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325552] = 5, + [335493] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11080), 1, - anon_sym_SEMI, - STATE(7936), 3, + ACTIONS(11306), 1, + sym_IS, + STATE(8157), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325570] = 5, + [335511] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11082), 1, - anon_sym_SEMI, - STATE(7937), 3, + ACTIONS(11308), 1, + sym_bit_string_value, + STATE(8158), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325588] = 5, + [335529] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11084), 1, - anon_sym_GT_GT, - STATE(7938), 3, + ACTIONS(11310), 1, + sym_bit_string_value, + STATE(8159), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325606] = 5, + [335547] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11086), 1, - anon_sym_GT_GT, - STATE(7939), 3, + ACTIONS(11312), 1, + anon_sym_COLON, + STATE(8160), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325624] = 5, + [335565] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11088), 1, - sym_RETURN, - STATE(7940), 3, + ACTIONS(11314), 1, + anon_sym_SEMI, + STATE(8161), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325642] = 5, + [335583] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11090), 1, - anon_sym_GT_GT, - STATE(7941), 3, + ACTIONS(11316), 1, + sym_bit_string_value, + STATE(8162), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325660] = 5, + [335601] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11092), 1, - sym_OF, - STATE(7942), 3, + ACTIONS(11318), 1, + anon_sym_SEMI, + STATE(8163), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325678] = 5, + [335619] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11094), 1, - sym_box, - STATE(7943), 3, + ACTIONS(11320), 1, + anon_sym_SEMI, + STATE(8164), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325696] = 5, + [335637] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11096), 1, - sym_box, - STATE(7944), 3, + ACTIONS(11322), 1, + anon_sym_RPAREN, + STATE(8165), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325714] = 5, + [335655] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11098), 1, - sym_box, - STATE(7945), 3, + ACTIONS(11324), 1, + anon_sym_RBRACK, + STATE(8166), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325732] = 5, + [335673] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11100), 1, - anon_sym_GT_GT, - STATE(7946), 3, + ACTIONS(5952), 1, + anon_sym_SEMI, + STATE(8167), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325750] = 5, + [335691] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6290), 1, + ACTIONS(11326), 1, anon_sym_RBRACK, - STATE(7947), 3, + STATE(8168), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325768] = 5, + [335709] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11102), 1, - anon_sym_GT_GT, - STATE(7948), 3, + ACTIONS(11328), 1, + anon_sym_SEMI, + STATE(8169), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325786] = 5, + [335727] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11104), 1, - anon_sym_RPAREN, - STATE(7949), 3, + ACTIONS(11330), 1, + anon_sym_SEMI, + STATE(8170), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325804] = 5, + [335745] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11106), 1, - anon_sym_RPAREN, - STATE(7950), 3, + ACTIONS(11332), 1, + anon_sym_SEMI, + STATE(8171), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325822] = 5, + [335763] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11108), 1, + ACTIONS(11334), 1, anon_sym_SEMI, - STATE(7951), 3, + STATE(8172), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325840] = 5, + [335781] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11110), 1, + ACTIONS(11336), 1, anon_sym_SEMI, - STATE(7952), 3, + STATE(8173), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325858] = 5, + [335799] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11112), 1, - sym_bit_string_value, - STATE(7953), 3, + ACTIONS(11338), 1, + anon_sym_SEMI, + STATE(8174), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325876] = 5, + [335817] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11114), 1, - anon_sym_GT_GT, - STATE(7954), 3, + ACTIONS(11340), 1, + anon_sym_SEMI, + STATE(8175), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325894] = 5, + [335835] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5869), 1, + ACTIONS(11342), 1, anon_sym_SEMI, - STATE(7955), 3, + STATE(8176), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325912] = 5, + [335853] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11116), 1, - anon_sym_RBRACK, - STATE(7956), 3, + ACTIONS(11344), 1, + anon_sym_SEMI, + STATE(8177), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325930] = 5, + [335871] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11118), 1, + ACTIONS(11346), 1, anon_sym_SEMI, - STATE(7957), 3, + STATE(8178), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325948] = 5, + [335889] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11120), 1, - anon_sym_SEMI, - STATE(7958), 3, + ACTIONS(11348), 1, + sym_OF, + STATE(8179), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325966] = 5, + [335907] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11122), 1, - anon_sym_SEMI, - STATE(7959), 3, + ACTIONS(11350), 1, + sym_box, + STATE(8180), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [325984] = 5, + [335925] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11124), 1, - anon_sym_SEMI, - STATE(7960), 3, + ACTIONS(11352), 1, + anon_sym_RPAREN, + STATE(8181), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326002] = 5, + [335943] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11126), 1, - anon_sym_SEMI, - STATE(7961), 3, + ACTIONS(11354), 1, + sym_BODY, + STATE(8182), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326020] = 5, + [335961] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11128), 1, + ACTIONS(11356), 1, anon_sym_SEMI, - STATE(7962), 3, + STATE(8183), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326038] = 5, + [335979] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11130), 1, + ACTIONS(11358), 1, anon_sym_SEMI, - STATE(7963), 3, + STATE(8184), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326056] = 5, + [335997] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11132), 1, + ACTIONS(11360), 1, anon_sym_SEMI, - STATE(7964), 3, + STATE(8185), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326074] = 5, + [336015] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11134), 1, + ACTIONS(11362), 1, anon_sym_SEMI, - STATE(7965), 3, + STATE(8186), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326092] = 5, + [336033] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11136), 1, + ACTIONS(11364), 1, anon_sym_SEMI, - STATE(7966), 3, + STATE(8187), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326110] = 5, + [336051] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11138), 1, - sym_OF, - STATE(7967), 3, + ACTIONS(11366), 1, + anon_sym_GT_GT, + STATE(8188), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326128] = 5, + [336069] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11140), 1, - sym_box, - STATE(7968), 3, + ACTIONS(11368), 1, + anon_sym_SEMI, + STATE(8189), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326146] = 5, + [336087] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11142), 1, - anon_sym_SEMI, - STATE(7969), 3, + ACTIONS(11370), 1, + anon_sym_GT_GT, + STATE(8190), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326164] = 5, + [336105] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11144), 1, - sym_BODY, - STATE(7970), 3, + ACTIONS(11372), 1, + sym_UNITS, + STATE(8191), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326182] = 5, + [336123] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11146), 1, - anon_sym_SEMI, - STATE(7971), 3, + ACTIONS(11374), 1, + anon_sym_GT_GT, + STATE(8192), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326200] = 5, + [336141] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11148), 1, + ACTIONS(11376), 1, anon_sym_SEMI, - STATE(7972), 3, + STATE(8193), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326218] = 5, + [336159] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11150), 1, - anon_sym_SEMI, - STATE(7973), 3, + ACTIONS(8092), 1, + anon_sym_COMMA, + STATE(8194), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326236] = 5, + [336177] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11152), 1, - anon_sym_SEMI, - STATE(7974), 3, + ACTIONS(11378), 1, + anon_sym_RBRACK, + STATE(8195), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326254] = 5, + [336195] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11154), 1, - anon_sym_SEMI, - STATE(7975), 3, + ACTIONS(11380), 1, + anon_sym_RBRACK, + STATE(8196), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326272] = 5, + [336213] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11156), 1, - anon_sym_RBRACK, - STATE(7976), 3, + ACTIONS(11382), 1, + anon_sym_SEMI, + STATE(8197), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326290] = 5, + [336231] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11158), 1, - anon_sym_SEMI, - STATE(7977), 3, + ACTIONS(11384), 1, + anon_sym_RPAREN, + STATE(8198), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326308] = 5, + [336249] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11160), 1, - sym_UNITS, - STATE(7978), 3, + ACTIONS(11386), 1, + anon_sym_RPAREN, + STATE(8199), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326326] = 5, + [336267] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11162), 1, + ACTIONS(11388), 1, sym_bit_string_value, - STATE(7979), 3, + STATE(8200), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326344] = 5, + [336285] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11164), 1, - anon_sym_SEMI, - STATE(7980), 3, + ACTIONS(11390), 1, + anon_sym_RPAREN, + STATE(8201), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326362] = 5, + [336303] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8008), 1, - anon_sym_COMMA, - STATE(7981), 3, + ACTIONS(11392), 1, + anon_sym_SEMI, + STATE(8202), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326380] = 5, + [336321] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11166), 1, - anon_sym_RPAREN, - STATE(7982), 3, + ACTIONS(11394), 1, + anon_sym_GT_GT, + STATE(8203), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326398] = 5, + [336339] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11168), 1, - sym_END, - STATE(7983), 3, + ACTIONS(11396), 1, + anon_sym_GT_GT, + STATE(8204), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326416] = 5, + [336357] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11170), 1, + ACTIONS(11398), 1, anon_sym_SEMI, - STATE(7984), 3, + STATE(8205), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326434] = 5, + [336375] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11172), 1, + ACTIONS(6915), 1, sym_END, - STATE(7985), 3, + STATE(8206), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326452] = 5, + [336393] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11174), 1, - anon_sym_RPAREN, - STATE(7986), 3, + ACTIONS(11400), 1, + anon_sym_SEMI, + STATE(8207), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326470] = 5, + [336411] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11176), 1, + ACTIONS(11402), 1, anon_sym_SEMI, - STATE(7987), 3, + STATE(8208), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326488] = 5, + [336429] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11178), 1, - anon_sym_SEMI, - STATE(7988), 3, + ACTIONS(11404), 1, + anon_sym_GT_GT, + STATE(8209), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326506] = 5, + [336447] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7307), 1, - sym_END, - STATE(7989), 3, + ACTIONS(11406), 1, + sym_bit_string_value, + STATE(8210), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326524] = 5, + [336465] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5911), 1, - anon_sym_SEMI, - STATE(7990), 3, + ACTIONS(11408), 1, + anon_sym_RBRACK, + STATE(8211), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326542] = 5, + [336483] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11180), 1, - anon_sym_SEMI, - STATE(7991), 3, + ACTIONS(7833), 1, + sym_END, + STATE(8212), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326560] = 5, + [336501] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11182), 1, - anon_sym_RBRACK, - STATE(7992), 3, + ACTIONS(11410), 1, + anon_sym_SEMI, + STATE(8213), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326578] = 5, + [336519] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11184), 1, + ACTIONS(11412), 1, anon_sym_SEMI, - STATE(7993), 3, + STATE(8214), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326596] = 5, + [336537] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11186), 1, + ACTIONS(11414), 1, anon_sym_SEMI, - STATE(7994), 3, + STATE(8215), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326614] = 5, + [336555] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5863), 1, - anon_sym_SEMI, - STATE(7995), 3, + ACTIONS(11416), 1, + anon_sym_RBRACK, + STATE(8216), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326632] = 5, + [336573] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11188), 1, - anon_sym_SEMI, - STATE(7996), 3, + ACTIONS(11418), 1, + anon_sym_RPAREN, + STATE(8217), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326650] = 5, + [336591] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11190), 1, + ACTIONS(11420), 1, anon_sym_RPAREN, - STATE(7997), 3, + STATE(8218), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326668] = 5, + [336609] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11192), 1, - anon_sym_RPAREN, - STATE(7998), 3, + ACTIONS(11422), 1, + anon_sym_SEMI, + STATE(8219), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326686] = 5, + [336627] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11194), 1, + ACTIONS(11424), 1, anon_sym_RBRACK, - STATE(7999), 3, + STATE(8220), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326704] = 5, + [336645] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11196), 1, - anon_sym_GT_GT, - STATE(8000), 3, + ACTIONS(11426), 1, + anon_sym_RBRACK, + STATE(8221), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326722] = 5, + [336663] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11198), 1, + ACTIONS(11428), 1, anon_sym_SEMI, - STATE(8001), 3, + STATE(8222), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326740] = 5, + [336681] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11200), 1, + ACTIONS(11430), 1, anon_sym_SEMI, - STATE(8002), 3, + STATE(8223), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326758] = 5, + [336699] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11202), 1, - sym_box, - STATE(8003), 3, + ACTIONS(11432), 1, + anon_sym_SEMI, + STATE(8224), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326776] = 5, + [336717] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11204), 1, + ACTIONS(11434), 1, anon_sym_SEMI, - STATE(8004), 3, + STATE(8225), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326794] = 5, + [336735] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11206), 1, + ACTIONS(11436), 1, anon_sym_SEMI, - STATE(8005), 3, + STATE(8226), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326812] = 5, + [336753] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11208), 1, + ACTIONS(11438), 1, anon_sym_SEMI, - STATE(8006), 3, + STATE(8227), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326830] = 5, + [336771] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11210), 1, - anon_sym_RPAREN, - STATE(8007), 3, + ACTIONS(11440), 1, + anon_sym_GT_GT, + STATE(8228), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326848] = 5, + [336789] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11212), 1, + ACTIONS(11442), 1, anon_sym_GT_GT, - STATE(8008), 3, + STATE(8229), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326866] = 5, + [336807] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11214), 1, + ACTIONS(11444), 1, anon_sym_SEMI, - STATE(8009), 3, + STATE(8230), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326884] = 5, + [336825] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11216), 1, + ACTIONS(11446), 1, anon_sym_SEMI, - STATE(8010), 3, + STATE(8231), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326902] = 5, + [336843] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11218), 1, - anon_sym_SEMI, - STATE(8011), 3, + ACTIONS(11448), 1, + anon_sym_GT_GT, + STATE(8232), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326920] = 5, + [336861] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11220), 1, + ACTIONS(11450), 1, anon_sym_SEMI, - STATE(8012), 3, + STATE(8233), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326938] = 5, + [336879] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11222), 1, + ACTIONS(11452), 1, anon_sym_SEMI, - STATE(8013), 3, + STATE(8234), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326956] = 5, + [336897] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11224), 1, + ACTIONS(11454), 1, sym_bit_string_value, - STATE(8014), 3, + STATE(8235), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326974] = 5, + [336915] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11226), 1, + ACTIONS(11456), 1, anon_sym_SEMI, - STATE(8015), 3, + STATE(8236), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [326992] = 5, + [336933] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6277), 1, + ACTIONS(11458), 1, anon_sym_RBRACK, - STATE(8016), 3, + STATE(8237), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327010] = 5, + [336951] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11228), 1, - anon_sym_RPAREN, - STATE(8017), 3, + ACTIONS(11460), 1, + sym_bit_string_value, + STATE(8238), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327028] = 5, + [336969] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11230), 1, + ACTIONS(11462), 1, anon_sym_SEMI, - STATE(8018), 3, + STATE(8239), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327046] = 5, + [336987] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11232), 1, + ACTIONS(11464), 1, anon_sym_SEMI, - STATE(8019), 3, + STATE(8240), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327064] = 5, + [337005] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7880), 1, + ACTIONS(7958), 1, sym_END, - STATE(8020), 3, + STATE(8241), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327082] = 5, + [337023] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11234), 1, + ACTIONS(11466), 1, anon_sym_SEMI, - STATE(8021), 3, + STATE(8242), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327100] = 5, + [337041] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11236), 1, - anon_sym_SEMI, - STATE(8022), 3, + ACTIONS(11468), 1, + sym_MAP, + STATE(8243), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327118] = 5, + [337059] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11238), 1, - sym_MAP, - STATE(8023), 3, + ACTIONS(11470), 1, + anon_sym_RPAREN, + STATE(8244), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327136] = 5, + [337077] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11240), 1, + ACTIONS(11472), 1, anon_sym_RPAREN, - STATE(8024), 3, + STATE(8245), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327154] = 5, + [337095] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11242), 1, - sym_bit_string_value, - STATE(8025), 3, + ACTIONS(11474), 1, + sym_box, + STATE(8246), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327172] = 5, + [337113] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8268), 1, - anon_sym_SEMI, - STATE(8026), 3, + ACTIONS(11476), 1, + sym_bit_string_value, + STATE(8247), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327190] = 5, + [337131] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11244), 1, - sym_bit_string_value, - STATE(8027), 3, + ACTIONS(11478), 1, + anon_sym_RPAREN, + STATE(8248), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327208] = 5, + [337149] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11246), 1, - anon_sym_RPAREN, - STATE(8028), 3, + ACTIONS(11480), 1, + sym_bit_string_value, + STATE(8249), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327226] = 5, + [337167] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11248), 1, - sym_bit_string_value, - STATE(8029), 3, + ACTIONS(8060), 1, + anon_sym_COMMA, + STATE(8250), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327244] = 5, + [337185] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7976), 1, - anon_sym_COMMA, - STATE(8030), 3, + ACTIONS(11482), 1, + anon_sym_SEMI, + STATE(8251), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327262] = 5, + [337203] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11250), 1, + ACTIONS(11484), 1, anon_sym_SEMI, - STATE(8031), 3, + STATE(8252), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327280] = 5, + [337221] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11252), 1, + ACTIONS(11486), 1, anon_sym_SEMI, - STATE(8032), 3, + STATE(8253), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327298] = 5, + [337239] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11254), 1, + ACTIONS(11488), 1, anon_sym_SEMI, - STATE(8033), 3, + STATE(8254), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327316] = 5, + [337257] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11256), 1, + ACTIONS(11490), 1, anon_sym_SEMI, - STATE(8034), 3, + STATE(8255), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327334] = 5, + [337275] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11258), 1, - anon_sym_SEMI, - STATE(8035), 3, + ACTIONS(11492), 1, + anon_sym_RPAREN, + STATE(8256), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327352] = 5, + [337293] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11260), 1, - anon_sym_RPAREN, - STATE(8036), 3, + ACTIONS(11494), 1, + anon_sym_RBRACK, + STATE(8257), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327370] = 5, + [337311] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11262), 1, - anon_sym_SEMI, - STATE(8037), 3, + ACTIONS(11496), 1, + anon_sym_GT_GT, + STATE(8258), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327388] = 5, + [337329] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11264), 1, + ACTIONS(11498), 1, anon_sym_SEMI, - STATE(8038), 3, + STATE(8259), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327406] = 5, + [337347] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7878), 1, + ACTIONS(7956), 1, sym_END, - STATE(8039), 3, + STATE(8260), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327424] = 5, + [337365] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11266), 1, + ACTIONS(11500), 1, anon_sym_SEMI, - STATE(8040), 3, + STATE(8261), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327442] = 5, + [337383] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11268), 1, - anon_sym_RPAREN, - STATE(8041), 3, + ACTIONS(11502), 1, + anon_sym_GT_GT, + STATE(8262), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327460] = 5, + [337401] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11270), 1, + ACTIONS(11504), 1, sym_VARIABLE, - STATE(8042), 3, + STATE(8263), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327478] = 5, + [337419] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11272), 1, + ACTIONS(11506), 1, anon_sym_SEMI, - STATE(8043), 3, + STATE(8264), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327496] = 5, + [337437] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11274), 1, + ACTIONS(11508), 1, sym_OF, - STATE(8044), 3, + STATE(8265), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327514] = 5, + [337455] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11276), 1, + ACTIONS(11510), 1, anon_sym_RBRACK, - STATE(8045), 3, + STATE(8266), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327532] = 5, + [337473] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11278), 1, + ACTIONS(11512), 1, sym_OF, - STATE(8046), 3, + STATE(8267), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327550] = 5, + [337491] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11280), 1, + ACTIONS(11514), 1, anon_sym_RPAREN, - STATE(8047), 3, + STATE(8268), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327568] = 5, + [337509] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7930), 1, + ACTIONS(8004), 1, anon_sym_DOT, - STATE(8048), 3, + STATE(8269), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327586] = 5, + [337527] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11282), 1, + ACTIONS(11516), 1, sym_VARIABLE, - STATE(8049), 3, + STATE(8270), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327604] = 5, + [337545] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11284), 1, + ACTIONS(11518), 1, anon_sym_SEMI, - STATE(8050), 3, + STATE(8271), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327622] = 5, + [337563] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11286), 1, + ACTIONS(11520), 1, sym_OF, - STATE(8051), 3, + STATE(8272), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327640] = 5, + [337581] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6261), 1, - anon_sym_RBRACK, - STATE(8052), 3, + ACTIONS(11522), 1, + anon_sym_GT_GT, + STATE(8273), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327658] = 5, + [337599] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11288), 1, + ACTIONS(11524), 1, sym_OF, - STATE(8053), 3, + STATE(8274), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327676] = 5, + [337617] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11290), 1, + ACTIONS(11526), 1, anon_sym_RBRACK, - STATE(8054), 3, + STATE(8275), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327694] = 5, + [337635] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11292), 1, - anon_sym_GT_GT, - STATE(8055), 3, + ACTIONS(11528), 1, + anon_sym_RBRACK, + STATE(8276), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327712] = 5, + [337653] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11294), 1, + ACTIONS(11530), 1, sym_VARIABLE, - STATE(8056), 3, + STATE(8277), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327730] = 5, + [337671] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7874), 1, + ACTIONS(7954), 1, sym_END, - STATE(8057), 3, + STATE(8278), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327748] = 5, + [337689] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11296), 1, + ACTIONS(11532), 1, sym_OF, - STATE(8058), 3, + STATE(8279), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327766] = 5, + [337707] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11298), 1, + ACTIONS(11534), 1, anon_sym_GT_GT, - STATE(8059), 3, + STATE(8280), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327784] = 5, + [337725] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11300), 1, + ACTIONS(11536), 1, sym_OF, - STATE(8060), 3, + STATE(8281), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327802] = 5, + [337743] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11302), 1, + ACTIONS(11538), 1, anon_sym_GT_GT, - STATE(8061), 3, + STATE(8282), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327820] = 5, + [337761] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11304), 1, + ACTIONS(11540), 1, anon_sym_SEMI, - STATE(8062), 3, + STATE(8283), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327838] = 5, + [337779] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11306), 1, + ACTIONS(11542), 1, sym_VARIABLE, - STATE(8063), 3, + STATE(8284), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327856] = 5, + [337797] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11308), 1, - anon_sym_GT_GT, - STATE(8064), 3, + ACTIONS(6245), 1, + sym_IS, + STATE(8285), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327874] = 5, + [337815] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11310), 1, + ACTIONS(11544), 1, sym_OF, - STATE(8065), 3, + STATE(8286), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327892] = 5, + [337833] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6257), 1, - anon_sym_RBRACK, - STATE(8066), 3, + ACTIONS(11546), 1, + anon_sym_GT_GT, + STATE(8287), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327910] = 5, + [337851] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11312), 1, + ACTIONS(11548), 1, anon_sym_SEMI, - STATE(8067), 3, + STATE(8288), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327928] = 5, + [337869] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11314), 1, + ACTIONS(11550), 1, sym_VARIABLE, - STATE(8068), 3, + STATE(8289), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327946] = 5, + [337887] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11316), 1, - anon_sym_GT_GT, - STATE(8069), 3, + ACTIONS(11552), 1, + anon_sym_RBRACK, + STATE(8290), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327964] = 5, + [337905] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11318), 1, + ACTIONS(11554), 1, sym_OF, - STATE(8070), 3, + STATE(8291), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [327982] = 5, + [337923] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11320), 1, - anon_sym_RPAREN, - STATE(8071), 3, + ACTIONS(11556), 1, + anon_sym_RBRACK, + STATE(8292), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328000] = 5, + [337941] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11322), 1, + ACTIONS(11558), 1, anon_sym_RPAREN, - STATE(8072), 3, + STATE(8293), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328018] = 5, + [337959] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11324), 1, + ACTIONS(11560), 1, sym_VARIABLE, - STATE(8073), 3, + STATE(8294), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328036] = 5, + [337977] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11326), 1, + ACTIONS(11562), 1, anon_sym_RPAREN, - STATE(8074), 3, + STATE(8295), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328054] = 5, + [337995] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11328), 1, + ACTIONS(11564), 1, sym_OF, - STATE(8075), 3, + STATE(8296), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328072] = 5, + [338013] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11330), 1, + ACTIONS(11566), 1, anon_sym_RPAREN, - STATE(8076), 3, + STATE(8297), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328090] = 5, + [338031] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11332), 1, + ACTIONS(11568), 1, anon_sym_SEMI, - STATE(8077), 3, + STATE(8298), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328108] = 5, + [338049] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11334), 1, + ACTIONS(11570), 1, sym_OF, - STATE(8078), 3, + STATE(8299), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328126] = 5, + [338067] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11336), 1, - sym_bit_string_value, - STATE(8079), 3, + ACTIONS(11572), 1, + anon_sym_RPAREN, + STATE(8300), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328144] = 5, + [338085] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11338), 1, - anon_sym_GT_GT, - STATE(8080), 3, + ACTIONS(11574), 1, + sym_bit_string_value, + STATE(8301), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328162] = 5, + [338103] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11340), 1, - anon_sym_RBRACK, - STATE(8081), 3, + ACTIONS(11576), 1, + sym_bit_string_value, + STATE(8302), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328180] = 5, + [338121] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8112), 1, + ACTIONS(8260), 1, anon_sym_SEMI, - STATE(8082), 3, + STATE(8303), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328198] = 5, + [338139] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11342), 1, - anon_sym_RBRACK, - STATE(8083), 3, + ACTIONS(11578), 1, + anon_sym_SEMI, + STATE(8304), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328216] = 5, + [338157] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11344), 1, + ACTIONS(11580), 1, sym_bit_string_value, - STATE(8084), 3, + STATE(8305), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328234] = 5, + [338175] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6005), 1, - anon_sym_SEMI, - STATE(8085), 3, + ACTIONS(11582), 1, + sym_bit_string_value, + STATE(8306), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328252] = 5, + [338193] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(9256), 1, - sym_LOOP, - STATE(8086), 3, + ACTIONS(6228), 1, + anon_sym_SEMI, + STATE(8307), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328270] = 5, + [338211] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11346), 1, - sym_bit_string_value, - STATE(8087), 3, + ACTIONS(8628), 1, + sym_LOOP, + STATE(8308), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328288] = 5, + [338229] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8272), 1, + ACTIONS(8138), 1, anon_sym_SEMI, - STATE(8088), 3, + STATE(8309), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328306] = 5, + [338247] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8294), 1, + ACTIONS(8392), 1, anon_sym_SEMI, - STATE(8089), 3, + STATE(8310), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328324] = 5, + [338265] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7960), 1, + ACTIONS(8244), 1, anon_sym_SEMI, - STATE(8090), 3, + STATE(8311), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328342] = 5, + [338283] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7226), 1, + ACTIONS(7888), 1, sym_IS, - STATE(8091), 3, + STATE(8312), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328360] = 5, + [338301] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6080), 1, - sym_IS, - STATE(8092), 3, + ACTIONS(8230), 1, + anon_sym_SEMI, + STATE(8313), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328378] = 5, + [338319] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(10856), 1, - sym_LOOP, - STATE(8093), 3, + ACTIONS(11584), 1, + anon_sym_RPAREN, + STATE(8314), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328396] = 5, + [338337] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(8032), 1, - anon_sym_SEMI, - STATE(8094), 3, + ACTIONS(11088), 1, + sym_LOOP, + STATE(8315), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328414] = 5, + [338355] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5515), 1, + ACTIONS(11586), 1, anon_sym_SEMI, - STATE(8095), 3, + STATE(8316), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328432] = 5, + [338373] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3700), 1, + ACTIONS(8122), 1, anon_sym_SEMI, - STATE(8096), 3, + STATE(8317), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328450] = 5, + [338391] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11348), 1, - anon_sym_RPAREN, - STATE(8097), 3, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(8318), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328468] = 5, + [338409] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11350), 1, - anon_sym_RPAREN, - STATE(8098), 3, + ACTIONS(8104), 1, + anon_sym_SEMI, + STATE(8319), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328486] = 5, + [338427] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11352), 1, - anon_sym_RBRACK, - STATE(8099), 3, + ACTIONS(3724), 1, + anon_sym_SEMI, + STATE(8320), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328504] = 5, + [338445] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11354), 1, + ACTIONS(11588), 1, anon_sym_RBRACK, - STATE(8100), 3, + STATE(8321), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328522] = 5, + [338463] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7984), 1, + ACTIONS(8070), 1, anon_sym_SEMI, - STATE(8101), 3, + STATE(8322), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328540] = 5, + [338481] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11356), 1, - sym_bit_string_value, - STATE(8102), 3, + ACTIONS(8068), 1, + anon_sym_SEMI, + STATE(8323), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328558] = 5, + [338499] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11358), 1, - anon_sym_GT_GT, - STATE(8103), 3, + ACTIONS(11590), 1, + anon_sym_RPAREN, + STATE(8324), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328576] = 5, + [338517] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11360), 1, - anon_sym_GT_GT, - STATE(8104), 3, + ACTIONS(8038), 1, + anon_sym_SEMI, + STATE(8325), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328594] = 5, + [338535] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11362), 1, - anon_sym_GT_GT, - STATE(8105), 3, + ACTIONS(8034), 1, + anon_sym_SEMI, + STATE(8326), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328612] = 5, + [338553] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11364), 1, - anon_sym_RPAREN, - STATE(8106), 3, + ACTIONS(2470), 1, + sym_OF, + STATE(8327), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328630] = 5, + [338571] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6237), 1, + ACTIONS(11592), 1, anon_sym_RBRACK, - STATE(8107), 3, + STATE(8328), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328648] = 5, + [338589] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(7934), 1, + ACTIONS(8008), 1, anon_sym_SEMI, - STATE(8108), 3, + STATE(8329), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328666] = 5, + [338607] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11366), 1, - sym_bit_string_value, - STATE(8109), 3, + ACTIONS(11594), 1, + anon_sym_GT_GT, + STATE(8330), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328684] = 5, + [338625] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11368), 1, - anon_sym_RPAREN, - STATE(8110), 3, + ACTIONS(11596), 1, + anon_sym_GT_GT, + STATE(8331), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328702] = 5, + [338643] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2568), 1, + ACTIONS(2528), 1, sym_OF, - STATE(8111), 3, + STATE(8332), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328720] = 5, + [338661] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11370), 1, - anon_sym_RPAREN, - STATE(8112), 3, + ACTIONS(11598), 1, + anon_sym_GT_GT, + STATE(8333), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328738] = 5, + [338679] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11372), 1, - sym_bit_string_value, - STATE(8113), 3, + ACTIONS(11600), 1, + anon_sym_RBRACK, + STATE(8334), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328756] = 5, + [338697] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6934), 1, + ACTIONS(7697), 1, anon_sym_SEMI, - STATE(8114), 3, + STATE(8335), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328774] = 5, + [338715] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(6815), 1, + ACTIONS(7404), 1, anon_sym_SEMI, - STATE(8115), 3, + STATE(8336), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328792] = 5, + [338733] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11374), 1, - sym_bit_string_value, - STATE(8116), 3, + ACTIONS(11602), 1, + anon_sym_RPAREN, + STATE(8337), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328810] = 5, + [338751] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5777), 1, - sym_IS, - STATE(8117), 3, + ACTIONS(3720), 1, + sym_GENERATE, + STATE(8338), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328828] = 5, + [338769] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 1, - sym_IS, - STATE(8118), 3, + ACTIONS(11604), 1, + anon_sym_RPAREN, + STATE(8339), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328846] = 5, + [338787] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 1, - sym_GENERATE, - STATE(8119), 3, + ACTIONS(11606), 1, + sym_bit_string_value, + STATE(8340), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328864] = 5, + [338805] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(3704), 1, + ACTIONS(2882), 1, sym_GENERATE, - STATE(8120), 3, + STATE(8341), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328882] = 5, + [338823] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11376), 1, - anon_sym_RBRACK, - STATE(8121), 3, + ACTIONS(2882), 1, + sym_IS, + STATE(8342), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328900] = 5, + [338841] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2793), 1, - sym_LOOP, - STATE(8122), 3, + ACTIONS(2528), 1, + sym_IN, + STATE(8343), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328918] = 5, + [338859] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(5995), 1, - anon_sym_SEMI, - STATE(8123), 3, + ACTIONS(2882), 1, + sym_LOOP, + STATE(8344), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328936] = 5, + [338877] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2568), 1, - sym_IN, - STATE(8124), 3, + ACTIONS(11608), 1, + sym_bit_string_value, + STATE(8345), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328954] = 5, + [338895] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(2408), 1, - sym_OF, - STATE(8125), 3, + ACTIONS(11610), 1, + sym_AFTER, + STATE(8346), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328972] = 5, + [338913] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11378), 1, + ACTIONS(11612), 1, anon_sym_RBRACK, - STATE(8126), 3, + STATE(8347), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [328990] = 5, + [338931] = 5, ACTIONS(3), 1, sym__grave_accent, ACTIONS(5), 1, sym__line_comment_start, ACTIONS(7), 1, sym__block_comment_start, - ACTIONS(11380), 1, - anon_sym_GT_GT, - STATE(8127), 3, + ACTIONS(11614), 1, + anon_sym_RBRACK, + STATE(8348), 3, sym__tool_directive, sym_line_comment, sym_block_comment, - [329008] = 1, - ACTIONS(11382), 1, + [338949] = 1, + ACTIONS(11616), 1, ts_builtin_sym_end, - [329012] = 1, - ACTIONS(11384), 1, + [338953] = 1, + ACTIONS(11618), 1, ts_builtin_sym_end, - [329016] = 1, - ACTIONS(11386), 1, + [338957] = 1, + ACTIONS(11620), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(366)] = 0, - [SMALL_STATE(367)] = 127, - [SMALL_STATE(368)] = 254, - [SMALL_STATE(369)] = 381, - [SMALL_STATE(370)] = 510, - [SMALL_STATE(371)] = 639, - [SMALL_STATE(372)] = 768, - [SMALL_STATE(373)] = 895, - [SMALL_STATE(374)] = 1024, - [SMALL_STATE(375)] = 1151, - [SMALL_STATE(376)] = 1280, - [SMALL_STATE(377)] = 1407, - [SMALL_STATE(378)] = 1534, - [SMALL_STATE(379)] = 1661, - [SMALL_STATE(380)] = 1790, - [SMALL_STATE(381)] = 1917, - [SMALL_STATE(382)] = 2044, - [SMALL_STATE(383)] = 2173, - [SMALL_STATE(384)] = 2300, - [SMALL_STATE(385)] = 2427, - [SMALL_STATE(386)] = 2554, - [SMALL_STATE(387)] = 2683, - [SMALL_STATE(388)] = 2812, - [SMALL_STATE(389)] = 2941, - [SMALL_STATE(390)] = 3068, - [SMALL_STATE(391)] = 3197, - [SMALL_STATE(392)] = 3324, - [SMALL_STATE(393)] = 3448, - [SMALL_STATE(394)] = 3572, - [SMALL_STATE(395)] = 3696, - [SMALL_STATE(396)] = 3836, - [SMALL_STATE(397)] = 3960, - [SMALL_STATE(398)] = 4084, - [SMALL_STATE(399)] = 4208, - [SMALL_STATE(400)] = 4348, - [SMALL_STATE(401)] = 4488, - [SMALL_STATE(402)] = 4612, - [SMALL_STATE(403)] = 4734, - [SMALL_STATE(404)] = 4858, - [SMALL_STATE(405)] = 4982, - [SMALL_STATE(406)] = 5106, - [SMALL_STATE(407)] = 5230, - [SMALL_STATE(408)] = 5354, - [SMALL_STATE(409)] = 5494, - [SMALL_STATE(410)] = 5618, - [SMALL_STATE(411)] = 5742, - [SMALL_STATE(412)] = 5866, - [SMALL_STATE(413)] = 5990, - [SMALL_STATE(414)] = 6111, - [SMALL_STATE(415)] = 6232, - [SMALL_STATE(416)] = 6353, - [SMALL_STATE(417)] = 6474, - [SMALL_STATE(418)] = 6595, - [SMALL_STATE(419)] = 6716, - [SMALL_STATE(420)] = 6837, - [SMALL_STATE(421)] = 6958, - [SMALL_STATE(422)] = 7077, - [SMALL_STATE(423)] = 7196, - [SMALL_STATE(424)] = 7315, - [SMALL_STATE(425)] = 7436, - [SMALL_STATE(426)] = 7557, - [SMALL_STATE(427)] = 7678, - [SMALL_STATE(428)] = 7799, - [SMALL_STATE(429)] = 7920, - [SMALL_STATE(430)] = 8041, - [SMALL_STATE(431)] = 8162, - [SMALL_STATE(432)] = 8283, - [SMALL_STATE(433)] = 8404, - [SMALL_STATE(434)] = 8525, - [SMALL_STATE(435)] = 8646, - [SMALL_STATE(436)] = 8767, - [SMALL_STATE(437)] = 8886, - [SMALL_STATE(438)] = 9005, - [SMALL_STATE(439)] = 9124, - [SMALL_STATE(440)] = 9243, - [SMALL_STATE(441)] = 9364, - [SMALL_STATE(442)] = 9485, - [SMALL_STATE(443)] = 9606, - [SMALL_STATE(444)] = 9727, - [SMALL_STATE(445)] = 9848, - [SMALL_STATE(446)] = 9969, - [SMALL_STATE(447)] = 10090, - [SMALL_STATE(448)] = 10211, - [SMALL_STATE(449)] = 10332, - [SMALL_STATE(450)] = 10451, - [SMALL_STATE(451)] = 10570, - [SMALL_STATE(452)] = 10691, - [SMALL_STATE(453)] = 10812, - [SMALL_STATE(454)] = 10931, - [SMALL_STATE(455)] = 11052, - [SMALL_STATE(456)] = 11173, - [SMALL_STATE(457)] = 11294, - [SMALL_STATE(458)] = 11415, - [SMALL_STATE(459)] = 11536, - [SMALL_STATE(460)] = 11657, - [SMALL_STATE(461)] = 11778, - [SMALL_STATE(462)] = 11899, - [SMALL_STATE(463)] = 12018, - [SMALL_STATE(464)] = 12137, - [SMALL_STATE(465)] = 12258, - [SMALL_STATE(466)] = 12379, - [SMALL_STATE(467)] = 12500, - [SMALL_STATE(468)] = 12621, - [SMALL_STATE(469)] = 12742, - [SMALL_STATE(470)] = 12863, - [SMALL_STATE(471)] = 12984, - [SMALL_STATE(472)] = 13103, - [SMALL_STATE(473)] = 13222, - [SMALL_STATE(474)] = 13341, - [SMALL_STATE(475)] = 13460, - [SMALL_STATE(476)] = 13579, - [SMALL_STATE(477)] = 13700, - [SMALL_STATE(478)] = 13819, - [SMALL_STATE(479)] = 13940, - [SMALL_STATE(480)] = 14061, - [SMALL_STATE(481)] = 14182, - [SMALL_STATE(482)] = 14303, - [SMALL_STATE(483)] = 14424, - [SMALL_STATE(484)] = 14545, - [SMALL_STATE(485)] = 14666, - [SMALL_STATE(486)] = 14787, - [SMALL_STATE(487)] = 14908, - [SMALL_STATE(488)] = 15027, - [SMALL_STATE(489)] = 15148, - [SMALL_STATE(490)] = 15267, - [SMALL_STATE(491)] = 15388, - [SMALL_STATE(492)] = 15509, - [SMALL_STATE(493)] = 15630, - [SMALL_STATE(494)] = 15751, - [SMALL_STATE(495)] = 15872, - [SMALL_STATE(496)] = 15993, - [SMALL_STATE(497)] = 16114, - [SMALL_STATE(498)] = 16235, - [SMALL_STATE(499)] = 16354, - [SMALL_STATE(500)] = 16475, - [SMALL_STATE(501)] = 16596, - [SMALL_STATE(502)] = 16715, - [SMALL_STATE(503)] = 16834, - [SMALL_STATE(504)] = 16953, - [SMALL_STATE(505)] = 17074, - [SMALL_STATE(506)] = 17195, - [SMALL_STATE(507)] = 17316, - [SMALL_STATE(508)] = 17437, - [SMALL_STATE(509)] = 17558, - [SMALL_STATE(510)] = 17681, - [SMALL_STATE(511)] = 17802, - [SMALL_STATE(512)] = 17921, - [SMALL_STATE(513)] = 18040, - [SMALL_STATE(514)] = 18161, - [SMALL_STATE(515)] = 18282, - [SMALL_STATE(516)] = 18403, - [SMALL_STATE(517)] = 18524, - [SMALL_STATE(518)] = 18645, - [SMALL_STATE(519)] = 18766, - [SMALL_STATE(520)] = 18887, - [SMALL_STATE(521)] = 19008, - [SMALL_STATE(522)] = 19129, - [SMALL_STATE(523)] = 19250, - [SMALL_STATE(524)] = 19371, - [SMALL_STATE(525)] = 19492, - [SMALL_STATE(526)] = 19613, - [SMALL_STATE(527)] = 19734, - [SMALL_STATE(528)] = 19855, - [SMALL_STATE(529)] = 19976, - [SMALL_STATE(530)] = 20095, - [SMALL_STATE(531)] = 20214, - [SMALL_STATE(532)] = 20333, - [SMALL_STATE(533)] = 20454, - [SMALL_STATE(534)] = 20575, - [SMALL_STATE(535)] = 20694, - [SMALL_STATE(536)] = 20815, - [SMALL_STATE(537)] = 20934, - [SMALL_STATE(538)] = 21053, - [SMALL_STATE(539)] = 21174, - [SMALL_STATE(540)] = 21293, - [SMALL_STATE(541)] = 21412, - [SMALL_STATE(542)] = 21533, - [SMALL_STATE(543)] = 21654, - [SMALL_STATE(544)] = 21775, - [SMALL_STATE(545)] = 21896, - [SMALL_STATE(546)] = 22017, - [SMALL_STATE(547)] = 22138, - [SMALL_STATE(548)] = 22259, - [SMALL_STATE(549)] = 22378, - [SMALL_STATE(550)] = 22497, - [SMALL_STATE(551)] = 22618, - [SMALL_STATE(552)] = 22739, - [SMALL_STATE(553)] = 22860, - [SMALL_STATE(554)] = 22981, - [SMALL_STATE(555)] = 23102, - [SMALL_STATE(556)] = 23223, - [SMALL_STATE(557)] = 23344, - [SMALL_STATE(558)] = 23467, - [SMALL_STATE(559)] = 23588, - [SMALL_STATE(560)] = 23709, - [SMALL_STATE(561)] = 23830, - [SMALL_STATE(562)] = 23951, - [SMALL_STATE(563)] = 24072, - [SMALL_STATE(564)] = 24191, - [SMALL_STATE(565)] = 24312, - [SMALL_STATE(566)] = 24433, - [SMALL_STATE(567)] = 24554, - [SMALL_STATE(568)] = 24675, - [SMALL_STATE(569)] = 24796, - [SMALL_STATE(570)] = 24915, - [SMALL_STATE(571)] = 25034, - [SMALL_STATE(572)] = 25155, - [SMALL_STATE(573)] = 25274, - [SMALL_STATE(574)] = 25393, - [SMALL_STATE(575)] = 25514, - [SMALL_STATE(576)] = 25635, - [SMALL_STATE(577)] = 25756, - [SMALL_STATE(578)] = 25877, - [SMALL_STATE(579)] = 25998, - [SMALL_STATE(580)] = 26119, - [SMALL_STATE(581)] = 26242, - [SMALL_STATE(582)] = 26361, - [SMALL_STATE(583)] = 26480, - [SMALL_STATE(584)] = 26601, - [SMALL_STATE(585)] = 26722, - [SMALL_STATE(586)] = 26843, - [SMALL_STATE(587)] = 26964, - [SMALL_STATE(588)] = 27085, - [SMALL_STATE(589)] = 27208, - [SMALL_STATE(590)] = 27329, - [SMALL_STATE(591)] = 27450, - [SMALL_STATE(592)] = 27569, - [SMALL_STATE(593)] = 27690, - [SMALL_STATE(594)] = 27811, - [SMALL_STATE(595)] = 27932, - [SMALL_STATE(596)] = 28053, - [SMALL_STATE(597)] = 28174, - [SMALL_STATE(598)] = 28295, - [SMALL_STATE(599)] = 28416, - [SMALL_STATE(600)] = 28537, - [SMALL_STATE(601)] = 28660, - [SMALL_STATE(602)] = 28781, - [SMALL_STATE(603)] = 28902, - [SMALL_STATE(604)] = 29023, - [SMALL_STATE(605)] = 29144, - [SMALL_STATE(606)] = 29263, - [SMALL_STATE(607)] = 29384, - [SMALL_STATE(608)] = 29505, - [SMALL_STATE(609)] = 29626, - [SMALL_STATE(610)] = 29745, - [SMALL_STATE(611)] = 29864, - [SMALL_STATE(612)] = 29985, - [SMALL_STATE(613)] = 30106, - [SMALL_STATE(614)] = 30227, - [SMALL_STATE(615)] = 30348, - [SMALL_STATE(616)] = 30469, - [SMALL_STATE(617)] = 30592, - [SMALL_STATE(618)] = 30713, - [SMALL_STATE(619)] = 30834, - [SMALL_STATE(620)] = 30955, - [SMALL_STATE(621)] = 31076, - [SMALL_STATE(622)] = 31197, - [SMALL_STATE(623)] = 31318, - [SMALL_STATE(624)] = 31439, - [SMALL_STATE(625)] = 31562, - [SMALL_STATE(626)] = 31683, - [SMALL_STATE(627)] = 31802, - [SMALL_STATE(628)] = 31923, - [SMALL_STATE(629)] = 32042, - [SMALL_STATE(630)] = 32161, - [SMALL_STATE(631)] = 32282, - [SMALL_STATE(632)] = 32403, - [SMALL_STATE(633)] = 32524, - [SMALL_STATE(634)] = 32645, - [SMALL_STATE(635)] = 32766, - [SMALL_STATE(636)] = 32887, - [SMALL_STATE(637)] = 33008, - [SMALL_STATE(638)] = 33129, - [SMALL_STATE(639)] = 33250, - [SMALL_STATE(640)] = 33371, - [SMALL_STATE(641)] = 33492, - [SMALL_STATE(642)] = 33613, - [SMALL_STATE(643)] = 33734, - [SMALL_STATE(644)] = 33853, - [SMALL_STATE(645)] = 33974, - [SMALL_STATE(646)] = 34095, - [SMALL_STATE(647)] = 34214, - [SMALL_STATE(648)] = 34337, - [SMALL_STATE(649)] = 34458, - [SMALL_STATE(650)] = 34579, - [SMALL_STATE(651)] = 34700, - [SMALL_STATE(652)] = 34821, - [SMALL_STATE(653)] = 34942, - [SMALL_STATE(654)] = 35063, - [SMALL_STATE(655)] = 35184, - [SMALL_STATE(656)] = 35305, - [SMALL_STATE(657)] = 35426, - [SMALL_STATE(658)] = 35547, - [SMALL_STATE(659)] = 35668, - [SMALL_STATE(660)] = 35789, - [SMALL_STATE(661)] = 35910, - [SMALL_STATE(662)] = 36031, - [SMALL_STATE(663)] = 36150, - [SMALL_STATE(664)] = 36273, - [SMALL_STATE(665)] = 36394, - [SMALL_STATE(666)] = 36515, - [SMALL_STATE(667)] = 36636, - [SMALL_STATE(668)] = 36757, - [SMALL_STATE(669)] = 36878, - [SMALL_STATE(670)] = 36999, - [SMALL_STATE(671)] = 37120, - [SMALL_STATE(672)] = 37241, - [SMALL_STATE(673)] = 37360, - [SMALL_STATE(674)] = 37481, - [SMALL_STATE(675)] = 37602, - [SMALL_STATE(676)] = 37723, - [SMALL_STATE(677)] = 37842, - [SMALL_STATE(678)] = 37961, - [SMALL_STATE(679)] = 38082, - [SMALL_STATE(680)] = 38203, - [SMALL_STATE(681)] = 38324, - [SMALL_STATE(682)] = 38447, - [SMALL_STATE(683)] = 38568, - [SMALL_STATE(684)] = 38689, - [SMALL_STATE(685)] = 38810, - [SMALL_STATE(686)] = 38931, - [SMALL_STATE(687)] = 39052, - [SMALL_STATE(688)] = 39173, - [SMALL_STATE(689)] = 39294, - [SMALL_STATE(690)] = 39415, - [SMALL_STATE(691)] = 39536, - [SMALL_STATE(692)] = 39657, - [SMALL_STATE(693)] = 39778, - [SMALL_STATE(694)] = 39899, - [SMALL_STATE(695)] = 40020, - [SMALL_STATE(696)] = 40141, - [SMALL_STATE(697)] = 40262, - [SMALL_STATE(698)] = 40383, - [SMALL_STATE(699)] = 40502, - [SMALL_STATE(700)] = 40621, - [SMALL_STATE(701)] = 40740, - [SMALL_STATE(702)] = 40859, - [SMALL_STATE(703)] = 40980, - [SMALL_STATE(704)] = 41101, - [SMALL_STATE(705)] = 41222, - [SMALL_STATE(706)] = 41343, - [SMALL_STATE(707)] = 41464, - [SMALL_STATE(708)] = 41585, - [SMALL_STATE(709)] = 41706, - [SMALL_STATE(710)] = 41827, - [SMALL_STATE(711)] = 41948, - [SMALL_STATE(712)] = 42069, - [SMALL_STATE(713)] = 42190, - [SMALL_STATE(714)] = 42311, - [SMALL_STATE(715)] = 42432, - [SMALL_STATE(716)] = 42553, - [SMALL_STATE(717)] = 42674, - [SMALL_STATE(718)] = 42795, - [SMALL_STATE(719)] = 42916, - [SMALL_STATE(720)] = 43037, - [SMALL_STATE(721)] = 43158, - [SMALL_STATE(722)] = 43292, - [SMALL_STATE(723)] = 43426, - [SMALL_STATE(724)] = 43560, - [SMALL_STATE(725)] = 43652, - [SMALL_STATE(726)] = 43746, - [SMALL_STATE(727)] = 43840, - [SMALL_STATE(728)] = 43974, - [SMALL_STATE(729)] = 44067, - [SMALL_STATE(730)] = 44158, - [SMALL_STATE(731)] = 44251, - [SMALL_STATE(732)] = 44343, - [SMALL_STATE(733)] = 44435, - [SMALL_STATE(734)] = 44527, - [SMALL_STATE(735)] = 44617, - [SMALL_STATE(736)] = 44707, - [SMALL_STATE(737)] = 44799, - [SMALL_STATE(738)] = 44890, - [SMALL_STATE(739)] = 44981, - [SMALL_STATE(740)] = 45074, - [SMALL_STATE(741)] = 45199, - [SMALL_STATE(742)] = 45290, - [SMALL_STATE(743)] = 45379, - [SMALL_STATE(744)] = 45468, - [SMALL_STATE(745)] = 45559, - [SMALL_STATE(746)] = 45684, - [SMALL_STATE(747)] = 45809, - [SMALL_STATE(748)] = 45898, - [SMALL_STATE(749)] = 45989, - [SMALL_STATE(750)] = 46080, - [SMALL_STATE(751)] = 46168, - [SMALL_STATE(752)] = 46258, - [SMALL_STATE(753)] = 46348, - [SMALL_STATE(754)] = 46438, - [SMALL_STATE(755)] = 46526, - [SMALL_STATE(756)] = 46616, - [SMALL_STATE(757)] = 46735, - [SMALL_STATE(758)] = 46854, - [SMALL_STATE(759)] = 46973, - [SMALL_STATE(760)] = 47092, - [SMALL_STATE(761)] = 47181, - [SMALL_STATE(762)] = 47268, - [SMALL_STATE(763)] = 47355, - [SMALL_STATE(764)] = 47474, - [SMALL_STATE(765)] = 47563, - [SMALL_STATE(766)] = 47652, - [SMALL_STATE(767)] = 47739, - [SMALL_STATE(768)] = 47828, - [SMALL_STATE(769)] = 47917, - [SMALL_STATE(770)] = 48006, - [SMALL_STATE(771)] = 48095, - [SMALL_STATE(772)] = 48182, - [SMALL_STATE(773)] = 48271, - [SMALL_STATE(774)] = 48390, - [SMALL_STATE(775)] = 48479, - [SMALL_STATE(776)] = 48598, - [SMALL_STATE(777)] = 48685, - [SMALL_STATE(778)] = 48772, - [SMALL_STATE(779)] = 48859, - [SMALL_STATE(780)] = 48948, - [SMALL_STATE(781)] = 49036, - [SMALL_STATE(782)] = 49122, - [SMALL_STATE(783)] = 49208, - [SMALL_STATE(784)] = 49296, - [SMALL_STATE(785)] = 49384, - [SMALL_STATE(786)] = 49472, - [SMALL_STATE(787)] = 49590, - [SMALL_STATE(788)] = 49678, - [SMALL_STATE(789)] = 49766, - [SMALL_STATE(790)] = 49854, - [SMALL_STATE(791)] = 49940, - [SMALL_STATE(792)] = 50026, - [SMALL_STATE(793)] = 50114, - [SMALL_STATE(794)] = 50200, - [SMALL_STATE(795)] = 50288, - [SMALL_STATE(796)] = 50376, - [SMALL_STATE(797)] = 50495, - [SMALL_STATE(798)] = 50608, - [SMALL_STATE(799)] = 50721, - [SMALL_STATE(800)] = 50806, - [SMALL_STATE(801)] = 50925, - [SMALL_STATE(802)] = 51012, - [SMALL_STATE(803)] = 51125, - [SMALL_STATE(804)] = 51210, - [SMALL_STATE(805)] = 51295, - [SMALL_STATE(806)] = 51408, - [SMALL_STATE(807)] = 51495, - [SMALL_STATE(808)] = 51608, - [SMALL_STATE(809)] = 51695, - [SMALL_STATE(810)] = 51782, - [SMALL_STATE(811)] = 51895, - [SMALL_STATE(812)] = 52008, - [SMALL_STATE(813)] = 52121, - [SMALL_STATE(814)] = 52234, - [SMALL_STATE(815)] = 52347, - [SMALL_STATE(816)] = 52420, - [SMALL_STATE(817)] = 52539, - [SMALL_STATE(818)] = 52652, - [SMALL_STATE(819)] = 52763, - [SMALL_STATE(820)] = 52876, - [SMALL_STATE(821)] = 52961, - [SMALL_STATE(822)] = 53074, - [SMALL_STATE(823)] = 53187, - [SMALL_STATE(824)] = 53274, - [SMALL_STATE(825)] = 53359, - [SMALL_STATE(826)] = 53444, - [SMALL_STATE(827)] = 53531, - [SMALL_STATE(828)] = 53618, - [SMALL_STATE(829)] = 53705, - [SMALL_STATE(830)] = 53824, - [SMALL_STATE(831)] = 53937, - [SMALL_STATE(832)] = 54056, - [SMALL_STATE(833)] = 54143, - [SMALL_STATE(834)] = 54256, - [SMALL_STATE(835)] = 54341, - [SMALL_STATE(836)] = 54460, - [SMALL_STATE(837)] = 54573, - [SMALL_STATE(838)] = 54660, - [SMALL_STATE(839)] = 54744, - [SMALL_STATE(840)] = 54816, - [SMALL_STATE(841)] = 54882, - [SMALL_STATE(842)] = 54948, - [SMALL_STATE(843)] = 55014, - [SMALL_STATE(844)] = 55080, - [SMALL_STATE(845)] = 55164, - [SMALL_STATE(846)] = 55230, - [SMALL_STATE(847)] = 55296, - [SMALL_STATE(848)] = 55382, - [SMALL_STATE(849)] = 55448, - [SMALL_STATE(850)] = 55520, - [SMALL_STATE(851)] = 55606, - [SMALL_STATE(852)] = 55672, - [SMALL_STATE(853)] = 55756, - [SMALL_STATE(854)] = 55822, - [SMALL_STATE(855)] = 55888, - [SMALL_STATE(856)] = 55954, - [SMALL_STATE(857)] = 56040, - [SMALL_STATE(858)] = 56106, - [SMALL_STATE(859)] = 56172, - [SMALL_STATE(860)] = 56256, - [SMALL_STATE(861)] = 56322, - [SMALL_STATE(862)] = 56388, - [SMALL_STATE(863)] = 56454, - [SMALL_STATE(864)] = 56520, - [SMALL_STATE(865)] = 56606, - [SMALL_STATE(866)] = 56692, - [SMALL_STATE(867)] = 56758, - [SMALL_STATE(868)] = 56824, - [SMALL_STATE(869)] = 56908, - [SMALL_STATE(870)] = 56974, - [SMALL_STATE(871)] = 57060, - [SMALL_STATE(872)] = 57146, - [SMALL_STATE(873)] = 57212, - [SMALL_STATE(874)] = 57278, - [SMALL_STATE(875)] = 57344, - [SMALL_STATE(876)] = 57410, - [SMALL_STATE(877)] = 57496, - [SMALL_STATE(878)] = 57582, - [SMALL_STATE(879)] = 57668, - [SMALL_STATE(880)] = 57754, - [SMALL_STATE(881)] = 57840, - [SMALL_STATE(882)] = 57952, - [SMALL_STATE(883)] = 58018, - [SMALL_STATE(884)] = 58102, - [SMALL_STATE(885)] = 58168, - [SMALL_STATE(886)] = 58234, - [SMALL_STATE(887)] = 58299, - [SMALL_STATE(888)] = 58364, - [SMALL_STATE(889)] = 58435, - [SMALL_STATE(890)] = 58500, - [SMALL_STATE(891)] = 58565, - [SMALL_STATE(892)] = 58630, - [SMALL_STATE(893)] = 58695, - [SMALL_STATE(894)] = 58772, - [SMALL_STATE(895)] = 58861, - [SMALL_STATE(896)] = 58926, - [SMALL_STATE(897)] = 59013, - [SMALL_STATE(898)] = 59078, - [SMALL_STATE(899)] = 59163, - [SMALL_STATE(900)] = 59228, - [SMALL_STATE(901)] = 59293, - [SMALL_STATE(902)] = 59358, - [SMALL_STATE(903)] = 59441, - [SMALL_STATE(904)] = 59506, - [SMALL_STATE(905)] = 59571, - [SMALL_STATE(906)] = 59636, - [SMALL_STATE(907)] = 59701, - [SMALL_STATE(908)] = 59766, - [SMALL_STATE(909)] = 59831, - [SMALL_STATE(910)] = 59896, - [SMALL_STATE(911)] = 59961, - [SMALL_STATE(912)] = 60026, - [SMALL_STATE(913)] = 60091, - [SMALL_STATE(914)] = 60156, - [SMALL_STATE(915)] = 60231, - [SMALL_STATE(916)] = 60302, - [SMALL_STATE(917)] = 60383, - [SMALL_STATE(918)] = 60448, - [SMALL_STATE(919)] = 60513, - [SMALL_STATE(920)] = 60578, - [SMALL_STATE(921)] = 60653, - [SMALL_STATE(922)] = 60734, - [SMALL_STATE(923)] = 60799, - [SMALL_STATE(924)] = 60864, - [SMALL_STATE(925)] = 60929, - [SMALL_STATE(926)] = 60994, - [SMALL_STATE(927)] = 61064, - [SMALL_STATE(928)] = 61134, - [SMALL_STATE(929)] = 61198, - [SMALL_STATE(930)] = 61262, - [SMALL_STATE(931)] = 61326, - [SMALL_STATE(932)] = 61432, - [SMALL_STATE(933)] = 61496, - [SMALL_STATE(934)] = 61560, - [SMALL_STATE(935)] = 61624, - [SMALL_STATE(936)] = 61694, - [SMALL_STATE(937)] = 61758, - [SMALL_STATE(938)] = 61822, - [SMALL_STATE(939)] = 61928, - [SMALL_STATE(940)] = 61992, - [SMALL_STATE(941)] = 62056, - [SMALL_STATE(942)] = 62120, - [SMALL_STATE(943)] = 62190, - [SMALL_STATE(944)] = 62254, - [SMALL_STATE(945)] = 62318, - [SMALL_STATE(946)] = 62382, - [SMALL_STATE(947)] = 62446, - [SMALL_STATE(948)] = 62510, - [SMALL_STATE(949)] = 62574, - [SMALL_STATE(950)] = 62638, - [SMALL_STATE(951)] = 62702, - [SMALL_STATE(952)] = 62766, - [SMALL_STATE(953)] = 62830, - [SMALL_STATE(954)] = 62894, - [SMALL_STATE(955)] = 62958, - [SMALL_STATE(956)] = 63028, - [SMALL_STATE(957)] = 63092, - [SMALL_STATE(958)] = 63156, - [SMALL_STATE(959)] = 63220, - [SMALL_STATE(960)] = 63326, - [SMALL_STATE(961)] = 63390, - [SMALL_STATE(962)] = 63454, - [SMALL_STATE(963)] = 63518, - [SMALL_STATE(964)] = 63582, - [SMALL_STATE(965)] = 63646, - [SMALL_STATE(966)] = 63710, - [SMALL_STATE(967)] = 63774, - [SMALL_STATE(968)] = 63838, - [SMALL_STATE(969)] = 63902, - [SMALL_STATE(970)] = 63966, - [SMALL_STATE(971)] = 64030, - [SMALL_STATE(972)] = 64094, - [SMALL_STATE(973)] = 64158, - [SMALL_STATE(974)] = 64222, - [SMALL_STATE(975)] = 64286, - [SMALL_STATE(976)] = 64350, - [SMALL_STATE(977)] = 64414, - [SMALL_STATE(978)] = 64478, - [SMALL_STATE(979)] = 64542, - [SMALL_STATE(980)] = 64606, - [SMALL_STATE(981)] = 64670, - [SMALL_STATE(982)] = 64734, - [SMALL_STATE(983)] = 64840, - [SMALL_STATE(984)] = 64904, - [SMALL_STATE(985)] = 64968, - [SMALL_STATE(986)] = 65032, - [SMALL_STATE(987)] = 65096, - [SMALL_STATE(988)] = 65202, - [SMALL_STATE(989)] = 65266, - [SMALL_STATE(990)] = 65330, - [SMALL_STATE(991)] = 65434, - [SMALL_STATE(992)] = 65541, - [SMALL_STATE(993)] = 65604, - [SMALL_STATE(994)] = 65667, - [SMALL_STATE(995)] = 65730, - [SMALL_STATE(996)] = 65793, - [SMALL_STATE(997)] = 65856, - [SMALL_STATE(998)] = 65929, - [SMALL_STATE(999)] = 66014, - [SMALL_STATE(1000)] = 66097, - [SMALL_STATE(1001)] = 66178, - [SMALL_STATE(1002)] = 66257, - [SMALL_STATE(1003)] = 66344, - [SMALL_STATE(1004)] = 66419, - [SMALL_STATE(1005)] = 66482, - [SMALL_STATE(1006)] = 66569, - [SMALL_STATE(1007)] = 66632, - [SMALL_STATE(1008)] = 66695, - [SMALL_STATE(1009)] = 66764, - [SMALL_STATE(1010)] = 66827, - [SMALL_STATE(1011)] = 66890, - [SMALL_STATE(1012)] = 66953, - [SMALL_STATE(1013)] = 67016, - [SMALL_STATE(1014)] = 67079, - [SMALL_STATE(1015)] = 67148, - [SMALL_STATE(1016)] = 67211, - [SMALL_STATE(1017)] = 67274, - [SMALL_STATE(1018)] = 67337, - [SMALL_STATE(1019)] = 67400, - [SMALL_STATE(1020)] = 67463, - [SMALL_STATE(1021)] = 67526, - [SMALL_STATE(1022)] = 67597, - [SMALL_STATE(1023)] = 67660, - [SMALL_STATE(1024)] = 67723, - [SMALL_STATE(1025)] = 67786, - [SMALL_STATE(1026)] = 67849, - [SMALL_STATE(1027)] = 67912, - [SMALL_STATE(1028)] = 68017, - [SMALL_STATE(1029)] = 68080, - [SMALL_STATE(1030)] = 68143, - [SMALL_STATE(1031)] = 68206, - [SMALL_STATE(1032)] = 68269, - [SMALL_STATE(1033)] = 68376, - [SMALL_STATE(1034)] = 68439, - [SMALL_STATE(1035)] = 68502, - [SMALL_STATE(1036)] = 68565, - [SMALL_STATE(1037)] = 68628, - [SMALL_STATE(1038)] = 68697, - [SMALL_STATE(1039)] = 68760, - [SMALL_STATE(1040)] = 68823, - [SMALL_STATE(1041)] = 68898, - [SMALL_STATE(1042)] = 68961, - [SMALL_STATE(1043)] = 69024, - [SMALL_STATE(1044)] = 69087, - [SMALL_STATE(1045)] = 69166, - [SMALL_STATE(1046)] = 69239, - [SMALL_STATE(1047)] = 69302, - [SMALL_STATE(1048)] = 69365, - [SMALL_STATE(1049)] = 69472, - [SMALL_STATE(1050)] = 69535, - [SMALL_STATE(1051)] = 69598, - [SMALL_STATE(1052)] = 69661, - [SMALL_STATE(1053)] = 69724, - [SMALL_STATE(1054)] = 69803, - [SMALL_STATE(1055)] = 69866, - [SMALL_STATE(1056)] = 69953, - [SMALL_STATE(1057)] = 70016, - [SMALL_STATE(1058)] = 70079, - [SMALL_STATE(1059)] = 70142, - [SMALL_STATE(1060)] = 70205, - [SMALL_STATE(1061)] = 70268, - [SMALL_STATE(1062)] = 70331, - [SMALL_STATE(1063)] = 70394, - [SMALL_STATE(1064)] = 70457, - [SMALL_STATE(1065)] = 70520, - [SMALL_STATE(1066)] = 70593, - [SMALL_STATE(1067)] = 70656, - [SMALL_STATE(1068)] = 70719, - [SMALL_STATE(1069)] = 70804, - [SMALL_STATE(1070)] = 70867, - [SMALL_STATE(1071)] = 70930, - [SMALL_STATE(1072)] = 70993, - [SMALL_STATE(1073)] = 71056, - [SMALL_STATE(1074)] = 71119, - [SMALL_STATE(1075)] = 71182, - [SMALL_STATE(1076)] = 71245, - [SMALL_STATE(1077)] = 71308, - [SMALL_STATE(1078)] = 71371, - [SMALL_STATE(1079)] = 71434, - [SMALL_STATE(1080)] = 71497, - [SMALL_STATE(1081)] = 71580, - [SMALL_STATE(1082)] = 71643, - [SMALL_STATE(1083)] = 71716, - [SMALL_STATE(1084)] = 71797, - [SMALL_STATE(1085)] = 71860, - [SMALL_STATE(1086)] = 71923, - [SMALL_STATE(1087)] = 71986, - [SMALL_STATE(1088)] = 72049, - [SMALL_STATE(1089)] = 72118, - [SMALL_STATE(1090)] = 72187, - [SMALL_STATE(1091)] = 72250, - [SMALL_STATE(1092)] = 72313, - [SMALL_STATE(1093)] = 72376, - [SMALL_STATE(1094)] = 72439, - [SMALL_STATE(1095)] = 72502, - [SMALL_STATE(1096)] = 72565, - [SMALL_STATE(1097)] = 72628, - [SMALL_STATE(1098)] = 72691, - [SMALL_STATE(1099)] = 72754, - [SMALL_STATE(1100)] = 72833, - [SMALL_STATE(1101)] = 72896, - [SMALL_STATE(1102)] = 72959, - [SMALL_STATE(1103)] = 73022, - [SMALL_STATE(1104)] = 73085, - [SMALL_STATE(1105)] = 73180, - [SMALL_STATE(1106)] = 73243, - [SMALL_STATE(1107)] = 73305, - [SMALL_STATE(1108)] = 73385, - [SMALL_STATE(1109)] = 73447, - [SMALL_STATE(1110)] = 73511, - [SMALL_STATE(1111)] = 73583, - [SMALL_STATE(1112)] = 73661, - [SMALL_STATE(1113)] = 73733, - [SMALL_STATE(1114)] = 73811, - [SMALL_STATE(1115)] = 73873, - [SMALL_STATE(1116)] = 73947, - [SMALL_STATE(1117)] = 74009, - [SMALL_STATE(1118)] = 74071, - [SMALL_STATE(1119)] = 74179, - [SMALL_STATE(1120)] = 74241, - [SMALL_STATE(1121)] = 74303, - [SMALL_STATE(1122)] = 74365, - [SMALL_STATE(1123)] = 74473, - [SMALL_STATE(1124)] = 74535, - [SMALL_STATE(1125)] = 74597, - [SMALL_STATE(1126)] = 74705, - [SMALL_STATE(1127)] = 74767, - [SMALL_STATE(1128)] = 74829, - [SMALL_STATE(1129)] = 74891, - [SMALL_STATE(1130)] = 74959, - [SMALL_STATE(1131)] = 75067, - [SMALL_STATE(1132)] = 75135, - [SMALL_STATE(1133)] = 75197, - [SMALL_STATE(1134)] = 75259, - [SMALL_STATE(1135)] = 75321, - [SMALL_STATE(1136)] = 75383, - [SMALL_STATE(1137)] = 75445, - [SMALL_STATE(1138)] = 75553, - [SMALL_STATE(1139)] = 75625, - [SMALL_STATE(1140)] = 75703, - [SMALL_STATE(1141)] = 75765, - [SMALL_STATE(1142)] = 75827, - [SMALL_STATE(1143)] = 75889, - [SMALL_STATE(1144)] = 75951, - [SMALL_STATE(1145)] = 76013, - [SMALL_STATE(1146)] = 76075, - [SMALL_STATE(1147)] = 76137, - [SMALL_STATE(1148)] = 76199, - [SMALL_STATE(1149)] = 76261, - [SMALL_STATE(1150)] = 76369, - [SMALL_STATE(1151)] = 76431, - [SMALL_STATE(1152)] = 76493, - [SMALL_STATE(1153)] = 76555, - [SMALL_STATE(1154)] = 76663, - [SMALL_STATE(1155)] = 76755, - [SMALL_STATE(1156)] = 76817, - [SMALL_STATE(1157)] = 76925, - [SMALL_STATE(1158)] = 76997, - [SMALL_STATE(1159)] = 77059, - [SMALL_STATE(1160)] = 77137, - [SMALL_STATE(1161)] = 77211, - [SMALL_STATE(1162)] = 77297, - [SMALL_STATE(1163)] = 77359, - [SMALL_STATE(1164)] = 77421, - [SMALL_STATE(1165)] = 77505, - [SMALL_STATE(1166)] = 77567, - [SMALL_STATE(1167)] = 77675, - [SMALL_STATE(1168)] = 77737, - [SMALL_STATE(1169)] = 77799, - [SMALL_STATE(1170)] = 77861, - [SMALL_STATE(1171)] = 77943, - [SMALL_STATE(1172)] = 78023, - [SMALL_STATE(1173)] = 78085, - [SMALL_STATE(1174)] = 78147, - [SMALL_STATE(1175)] = 78209, - [SMALL_STATE(1176)] = 78271, - [SMALL_STATE(1177)] = 78357, - [SMALL_STATE(1178)] = 78419, - [SMALL_STATE(1179)] = 78481, - [SMALL_STATE(1180)] = 78543, - [SMALL_STATE(1181)] = 78605, - [SMALL_STATE(1182)] = 78667, - [SMALL_STATE(1183)] = 78729, - [SMALL_STATE(1184)] = 78791, - [SMALL_STATE(1185)] = 78859, - [SMALL_STATE(1186)] = 78921, - [SMALL_STATE(1187)] = 78983, - [SMALL_STATE(1188)] = 79045, - [SMALL_STATE(1189)] = 79107, - [SMALL_STATE(1190)] = 79191, - [SMALL_STATE(1191)] = 79253, - [SMALL_STATE(1192)] = 79361, - [SMALL_STATE(1193)] = 79469, - [SMALL_STATE(1194)] = 79577, - [SMALL_STATE(1195)] = 79659, - [SMALL_STATE(1196)] = 79727, - [SMALL_STATE(1197)] = 79801, - [SMALL_STATE(1198)] = 79879, - [SMALL_STATE(1199)] = 79951, - [SMALL_STATE(1200)] = 80029, - [SMALL_STATE(1201)] = 80109, - [SMALL_STATE(1202)] = 80181, - [SMALL_STATE(1203)] = 80289, - [SMALL_STATE(1204)] = 80351, - [SMALL_STATE(1205)] = 80413, - [SMALL_STATE(1206)] = 80475, - [SMALL_STATE(1207)] = 80583, - [SMALL_STATE(1208)] = 80651, - [SMALL_STATE(1209)] = 80713, - [SMALL_STATE(1210)] = 80795, - [SMALL_STATE(1211)] = 80879, - [SMALL_STATE(1212)] = 80947, - [SMALL_STATE(1213)] = 81015, - [SMALL_STATE(1214)] = 81123, - [SMALL_STATE(1215)] = 81209, - [SMALL_STATE(1216)] = 81271, - [SMALL_STATE(1217)] = 81333, - [SMALL_STATE(1218)] = 81394, - [SMALL_STATE(1219)] = 81455, - [SMALL_STATE(1220)] = 81516, - [SMALL_STATE(1221)] = 81577, - [SMALL_STATE(1222)] = 81638, - [SMALL_STATE(1223)] = 81699, - [SMALL_STATE(1224)] = 81760, - [SMALL_STATE(1225)] = 81821, - [SMALL_STATE(1226)] = 81882, - [SMALL_STATE(1227)] = 81943, - [SMALL_STATE(1228)] = 82004, - [SMALL_STATE(1229)] = 82065, - [SMALL_STATE(1230)] = 82126, - [SMALL_STATE(1231)] = 82187, - [SMALL_STATE(1232)] = 82248, - [SMALL_STATE(1233)] = 82309, - [SMALL_STATE(1234)] = 82370, - [SMALL_STATE(1235)] = 82431, - [SMALL_STATE(1236)] = 82492, - [SMALL_STATE(1237)] = 82553, - [SMALL_STATE(1238)] = 82614, - [SMALL_STATE(1239)] = 82675, - [SMALL_STATE(1240)] = 82742, - [SMALL_STATE(1241)] = 82803, - [SMALL_STATE(1242)] = 82864, - [SMALL_STATE(1243)] = 82925, - [SMALL_STATE(1244)] = 82986, - [SMALL_STATE(1245)] = 83047, - [SMALL_STATE(1246)] = 83108, - [SMALL_STATE(1247)] = 83169, - [SMALL_STATE(1248)] = 83270, - [SMALL_STATE(1249)] = 83331, - [SMALL_STATE(1250)] = 83392, - [SMALL_STATE(1251)] = 83453, - [SMALL_STATE(1252)] = 83514, - [SMALL_STATE(1253)] = 83575, - [SMALL_STATE(1254)] = 83636, - [SMALL_STATE(1255)] = 83697, - [SMALL_STATE(1256)] = 83768, - [SMALL_STATE(1257)] = 83829, - [SMALL_STATE(1258)] = 83890, - [SMALL_STATE(1259)] = 83967, - [SMALL_STATE(1260)] = 84028, - [SMALL_STATE(1261)] = 84095, - [SMALL_STATE(1262)] = 84156, - [SMALL_STATE(1263)] = 84217, - [SMALL_STATE(1264)] = 84278, - [SMALL_STATE(1265)] = 84339, - [SMALL_STATE(1266)] = 84400, - [SMALL_STATE(1267)] = 84461, - [SMALL_STATE(1268)] = 84522, - [SMALL_STATE(1269)] = 84593, - [SMALL_STATE(1270)] = 84670, - [SMALL_STATE(1271)] = 84731, - [SMALL_STATE(1272)] = 84804, - [SMALL_STATE(1273)] = 84871, - [SMALL_STATE(1274)] = 84932, - [SMALL_STATE(1275)] = 84993, - [SMALL_STATE(1276)] = 85060, - [SMALL_STATE(1277)] = 85121, - [SMALL_STATE(1278)] = 85188, - [SMALL_STATE(1279)] = 85249, - [SMALL_STATE(1280)] = 85310, - [SMALL_STATE(1281)] = 85371, - [SMALL_STATE(1282)] = 85432, - [SMALL_STATE(1283)] = 85493, - [SMALL_STATE(1284)] = 85554, - [SMALL_STATE(1285)] = 85615, - [SMALL_STATE(1286)] = 85676, - [SMALL_STATE(1287)] = 85737, - [SMALL_STATE(1288)] = 85802, - [SMALL_STATE(1289)] = 85863, - [SMALL_STATE(1290)] = 85924, - [SMALL_STATE(1291)] = 85991, - [SMALL_STATE(1292)] = 86052, - [SMALL_STATE(1293)] = 86113, - [SMALL_STATE(1294)] = 86174, - [SMALL_STATE(1295)] = 86235, - [SMALL_STATE(1296)] = 86296, - [SMALL_STATE(1297)] = 86357, - [SMALL_STATE(1298)] = 86418, - [SMALL_STATE(1299)] = 86479, - [SMALL_STATE(1300)] = 86540, - [SMALL_STATE(1301)] = 86601, - [SMALL_STATE(1302)] = 86668, - [SMALL_STATE(1303)] = 86729, - [SMALL_STATE(1304)] = 86790, - [SMALL_STATE(1305)] = 86851, - [SMALL_STATE(1306)] = 86912, - [SMALL_STATE(1307)] = 86973, - [SMALL_STATE(1308)] = 87034, - [SMALL_STATE(1309)] = 87095, - [SMALL_STATE(1310)] = 87156, - [SMALL_STATE(1311)] = 87217, - [SMALL_STATE(1312)] = 87278, - [SMALL_STATE(1313)] = 87339, - [SMALL_STATE(1314)] = 87400, - [SMALL_STATE(1315)] = 87461, - [SMALL_STATE(1316)] = 87522, - [SMALL_STATE(1317)] = 87583, - [SMALL_STATE(1318)] = 87644, - [SMALL_STATE(1319)] = 87705, - [SMALL_STATE(1320)] = 87766, - [SMALL_STATE(1321)] = 87827, - [SMALL_STATE(1322)] = 87888, - [SMALL_STATE(1323)] = 87949, - [SMALL_STATE(1324)] = 88010, - [SMALL_STATE(1325)] = 88071, - [SMALL_STATE(1326)] = 88156, - [SMALL_STATE(1327)] = 88217, - [SMALL_STATE(1328)] = 88278, - [SMALL_STATE(1329)] = 88339, - [SMALL_STATE(1330)] = 88400, - [SMALL_STATE(1331)] = 88467, - [SMALL_STATE(1332)] = 88528, - [SMALL_STATE(1333)] = 88589, - [SMALL_STATE(1334)] = 88650, - [SMALL_STATE(1335)] = 88717, - [SMALL_STATE(1336)] = 88778, - [SMALL_STATE(1337)] = 88839, - [SMALL_STATE(1338)] = 88900, - [SMALL_STATE(1339)] = 88961, - [SMALL_STATE(1340)] = 89022, - [SMALL_STATE(1341)] = 89121, - [SMALL_STATE(1342)] = 89182, - [SMALL_STATE(1343)] = 89243, - [SMALL_STATE(1344)] = 89304, - [SMALL_STATE(1345)] = 89365, - [SMALL_STATE(1346)] = 89426, - [SMALL_STATE(1347)] = 89499, - [SMALL_STATE(1348)] = 89576, - [SMALL_STATE(1349)] = 89655, - [SMALL_STATE(1350)] = 89738, - [SMALL_STATE(1351)] = 89819, - [SMALL_STATE(1352)] = 89880, - [SMALL_STATE(1353)] = 89963, - [SMALL_STATE(1354)] = 90024, - [SMALL_STATE(1355)] = 90105, - [SMALL_STATE(1356)] = 90176, - [SMALL_STATE(1357)] = 90237, - [SMALL_STATE(1358)] = 90316, - [SMALL_STATE(1359)] = 90377, - [SMALL_STATE(1360)] = 90438, - [SMALL_STATE(1361)] = 90499, - [SMALL_STATE(1362)] = 90560, - [SMALL_STATE(1363)] = 90621, - [SMALL_STATE(1364)] = 90682, - [SMALL_STATE(1365)] = 90743, - [SMALL_STATE(1366)] = 90804, - [SMALL_STATE(1367)] = 90865, - [SMALL_STATE(1368)] = 90926, - [SMALL_STATE(1369)] = 90987, - [SMALL_STATE(1370)] = 91072, - [SMALL_STATE(1371)] = 91133, - [SMALL_STATE(1372)] = 91194, - [SMALL_STATE(1373)] = 91255, - [SMALL_STATE(1374)] = 91316, - [SMALL_STATE(1375)] = 91377, - [SMALL_STATE(1376)] = 91438, - [SMALL_STATE(1377)] = 91531, - [SMALL_STATE(1378)] = 91592, - [SMALL_STATE(1379)] = 91653, - [SMALL_STATE(1380)] = 91720, - [SMALL_STATE(1381)] = 91781, - [SMALL_STATE(1382)] = 91842, - [SMALL_STATE(1383)] = 91903, - [SMALL_STATE(1384)] = 91964, - [SMALL_STATE(1385)] = 92025, - [SMALL_STATE(1386)] = 92096, - [SMALL_STATE(1387)] = 92157, - [SMALL_STATE(1388)] = 92234, - [SMALL_STATE(1389)] = 92294, - [SMALL_STATE(1390)] = 92396, - [SMALL_STATE(1391)] = 92486, - [SMALL_STATE(1392)] = 92546, - [SMALL_STATE(1393)] = 92606, - [SMALL_STATE(1394)] = 92672, - [SMALL_STATE(1395)] = 92756, - [SMALL_STATE(1396)] = 92840, - [SMALL_STATE(1397)] = 92900, - [SMALL_STATE(1398)] = 92960, - [SMALL_STATE(1399)] = 93020, - [SMALL_STATE(1400)] = 93080, - [SMALL_STATE(1401)] = 93146, - [SMALL_STATE(1402)] = 93212, - [SMALL_STATE(1403)] = 93272, - [SMALL_STATE(1404)] = 93374, - [SMALL_STATE(1405)] = 93434, - [SMALL_STATE(1406)] = 93536, - [SMALL_STATE(1407)] = 93614, - [SMALL_STATE(1408)] = 93674, - [SMALL_STATE(1409)] = 93754, - [SMALL_STATE(1410)] = 93814, - [SMALL_STATE(1411)] = 93874, - [SMALL_STATE(1412)] = 93956, - [SMALL_STATE(1413)] = 94036, - [SMALL_STATE(1414)] = 94114, - [SMALL_STATE(1415)] = 94216, - [SMALL_STATE(1416)] = 94276, - [SMALL_STATE(1417)] = 94362, - [SMALL_STATE(1418)] = 94422, - [SMALL_STATE(1419)] = 94482, - [SMALL_STATE(1420)] = 94548, - [SMALL_STATE(1421)] = 94638, - [SMALL_STATE(1422)] = 94698, - [SMALL_STATE(1423)] = 94800, - [SMALL_STATE(1424)] = 94890, - [SMALL_STATE(1425)] = 94950, - [SMALL_STATE(1426)] = 95010, - [SMALL_STATE(1427)] = 95070, - [SMALL_STATE(1428)] = 95130, - [SMALL_STATE(1429)] = 95232, - [SMALL_STATE(1430)] = 95292, - [SMALL_STATE(1431)] = 95358, - [SMALL_STATE(1432)] = 95418, - [SMALL_STATE(1433)] = 95502, - [SMALL_STATE(1434)] = 95604, - [SMALL_STATE(1435)] = 95670, - [SMALL_STATE(1436)] = 95740, - [SMALL_STATE(1437)] = 95816, - [SMALL_STATE(1438)] = 95888, - [SMALL_STATE(1439)] = 95958, - [SMALL_STATE(1440)] = 96034, - [SMALL_STATE(1441)] = 96094, - [SMALL_STATE(1442)] = 96160, - [SMALL_STATE(1443)] = 96220, - [SMALL_STATE(1444)] = 96296, - [SMALL_STATE(1445)] = 96368, - [SMALL_STATE(1446)] = 96458, - [SMALL_STATE(1447)] = 96560, - [SMALL_STATE(1448)] = 96620, - [SMALL_STATE(1449)] = 96692, - [SMALL_STATE(1450)] = 96752, - [SMALL_STATE(1451)] = 96854, - [SMALL_STATE(1452)] = 96914, - [SMALL_STATE(1453)] = 96974, - [SMALL_STATE(1454)] = 97058, - [SMALL_STATE(1455)] = 97118, - [SMALL_STATE(1456)] = 97220, - [SMALL_STATE(1457)] = 97304, - [SMALL_STATE(1458)] = 97406, - [SMALL_STATE(1459)] = 97466, - [SMALL_STATE(1460)] = 97568, - [SMALL_STATE(1461)] = 97638, - [SMALL_STATE(1462)] = 97698, - [SMALL_STATE(1463)] = 97758, - [SMALL_STATE(1464)] = 97836, - [SMALL_STATE(1465)] = 97916, - [SMALL_STATE(1466)] = 97998, - [SMALL_STATE(1467)] = 98058, - [SMALL_STATE(1468)] = 98118, - [SMALL_STATE(1469)] = 98178, - [SMALL_STATE(1470)] = 98248, - [SMALL_STATE(1471)] = 98324, - [SMALL_STATE(1472)] = 98394, - [SMALL_STATE(1473)] = 98514, - [SMALL_STATE(1474)] = 98584, - [SMALL_STATE(1475)] = 98644, - [SMALL_STATE(1476)] = 98720, - [SMALL_STATE(1477)] = 98780, - [SMALL_STATE(1478)] = 98840, - [SMALL_STATE(1479)] = 98900, - [SMALL_STATE(1480)] = 98960, - [SMALL_STATE(1481)] = 99020, - [SMALL_STATE(1482)] = 99086, - [SMALL_STATE(1483)] = 99146, - [SMALL_STATE(1484)] = 99206, - [SMALL_STATE(1485)] = 99266, - [SMALL_STATE(1486)] = 99368, - [SMALL_STATE(1487)] = 99428, - [SMALL_STATE(1488)] = 99488, - [SMALL_STATE(1489)] = 99548, - [SMALL_STATE(1490)] = 99650, - [SMALL_STATE(1491)] = 99716, - [SMALL_STATE(1492)] = 99776, - [SMALL_STATE(1493)] = 99836, - [SMALL_STATE(1494)] = 99896, - [SMALL_STATE(1495)] = 99996, - [SMALL_STATE(1496)] = 100056, - [SMALL_STATE(1497)] = 100116, - [SMALL_STATE(1498)] = 100200, - [SMALL_STATE(1499)] = 100260, - [SMALL_STATE(1500)] = 100326, - [SMALL_STATE(1501)] = 100402, - [SMALL_STATE(1502)] = 100462, - [SMALL_STATE(1503)] = 100522, - [SMALL_STATE(1504)] = 100582, - [SMALL_STATE(1505)] = 100642, - [SMALL_STATE(1506)] = 100702, - [SMALL_STATE(1507)] = 100762, - [SMALL_STATE(1508)] = 100822, - [SMALL_STATE(1509)] = 100882, - [SMALL_STATE(1510)] = 100952, - [SMALL_STATE(1511)] = 101012, - [SMALL_STATE(1512)] = 101072, - [SMALL_STATE(1513)] = 101132, - [SMALL_STATE(1514)] = 101192, - [SMALL_STATE(1515)] = 101252, - [SMALL_STATE(1516)] = 101354, - [SMALL_STATE(1517)] = 101414, - [SMALL_STATE(1518)] = 101474, - [SMALL_STATE(1519)] = 101534, - [SMALL_STATE(1520)] = 101594, - [SMALL_STATE(1521)] = 101654, - [SMALL_STATE(1522)] = 101714, - [SMALL_STATE(1523)] = 101774, - [SMALL_STATE(1524)] = 101834, - [SMALL_STATE(1525)] = 101894, - [SMALL_STATE(1526)] = 101954, - [SMALL_STATE(1527)] = 102014, - [SMALL_STATE(1528)] = 102074, - [SMALL_STATE(1529)] = 102134, - [SMALL_STATE(1530)] = 102194, - [SMALL_STATE(1531)] = 102264, - [SMALL_STATE(1532)] = 102324, - [SMALL_STATE(1533)] = 102384, - [SMALL_STATE(1534)] = 102444, - [SMALL_STATE(1535)] = 102504, - [SMALL_STATE(1536)] = 102586, - [SMALL_STATE(1537)] = 102646, - [SMALL_STATE(1538)] = 102706, - [SMALL_STATE(1539)] = 102778, - [SMALL_STATE(1540)] = 102858, - [SMALL_STATE(1541)] = 102918, - [SMALL_STATE(1542)] = 102978, - [SMALL_STATE(1543)] = 103056, - [SMALL_STATE(1544)] = 103116, - [SMALL_STATE(1545)] = 103192, - [SMALL_STATE(1546)] = 103262, - [SMALL_STATE(1547)] = 103338, - [SMALL_STATE(1548)] = 103398, - [SMALL_STATE(1549)] = 103458, - [SMALL_STATE(1550)] = 103530, - [SMALL_STATE(1551)] = 103614, - [SMALL_STATE(1552)] = 103674, - [SMALL_STATE(1553)] = 103734, - [SMALL_STATE(1554)] = 103836, - [SMALL_STATE(1555)] = 103938, - [SMALL_STATE(1556)] = 103998, - [SMALL_STATE(1557)] = 104080, - [SMALL_STATE(1558)] = 104140, - [SMALL_STATE(1559)] = 104200, - [SMALL_STATE(1560)] = 104260, - [SMALL_STATE(1561)] = 104320, - [SMALL_STATE(1562)] = 104400, - [SMALL_STATE(1563)] = 104460, - [SMALL_STATE(1564)] = 104538, - [SMALL_STATE(1565)] = 104598, - [SMALL_STATE(1566)] = 104658, - [SMALL_STATE(1567)] = 104718, - [SMALL_STATE(1568)] = 104816, - [SMALL_STATE(1569)] = 104876, - [SMALL_STATE(1570)] = 104936, - [SMALL_STATE(1571)] = 104996, - [SMALL_STATE(1572)] = 105056, - [SMALL_STATE(1573)] = 105116, - [SMALL_STATE(1574)] = 105176, - [SMALL_STATE(1575)] = 105236, - [SMALL_STATE(1576)] = 105296, - [SMALL_STATE(1577)] = 105356, - [SMALL_STATE(1578)] = 105416, - [SMALL_STATE(1579)] = 105476, - [SMALL_STATE(1580)] = 105536, - [SMALL_STATE(1581)] = 105596, - [SMALL_STATE(1582)] = 105656, - [SMALL_STATE(1583)] = 105716, - [SMALL_STATE(1584)] = 105776, - [SMALL_STATE(1585)] = 105836, - [SMALL_STATE(1586)] = 105896, - [SMALL_STATE(1587)] = 105956, - [SMALL_STATE(1588)] = 106016, - [SMALL_STATE(1589)] = 106076, - [SMALL_STATE(1590)] = 106136, - [SMALL_STATE(1591)] = 106238, - [SMALL_STATE(1592)] = 106298, - [SMALL_STATE(1593)] = 106358, - [SMALL_STATE(1594)] = 106418, - [SMALL_STATE(1595)] = 106478, - [SMALL_STATE(1596)] = 106554, - [SMALL_STATE(1597)] = 106614, - [SMALL_STATE(1598)] = 106674, - [SMALL_STATE(1599)] = 106734, - [SMALL_STATE(1600)] = 106794, - [SMALL_STATE(1601)] = 106854, - [SMALL_STATE(1602)] = 106914, - [SMALL_STATE(1603)] = 107016, - [SMALL_STATE(1604)] = 107076, - [SMALL_STATE(1605)] = 107136, - [SMALL_STATE(1606)] = 107196, - [SMALL_STATE(1607)] = 107256, - [SMALL_STATE(1608)] = 107316, - [SMALL_STATE(1609)] = 107436, - [SMALL_STATE(1610)] = 107502, - [SMALL_STATE(1611)] = 107562, - [SMALL_STATE(1612)] = 107622, - [SMALL_STATE(1613)] = 107682, - [SMALL_STATE(1614)] = 107752, - [SMALL_STATE(1615)] = 107812, - [SMALL_STATE(1616)] = 107872, - [SMALL_STATE(1617)] = 107932, - [SMALL_STATE(1618)] = 107992, - [SMALL_STATE(1619)] = 108052, - [SMALL_STATE(1620)] = 108112, - [SMALL_STATE(1621)] = 108172, - [SMALL_STATE(1622)] = 108256, - [SMALL_STATE(1623)] = 108338, - [SMALL_STATE(1624)] = 108440, - [SMALL_STATE(1625)] = 108500, - [SMALL_STATE(1626)] = 108560, - [SMALL_STATE(1627)] = 108620, - [SMALL_STATE(1628)] = 108722, - [SMALL_STATE(1629)] = 108782, - [SMALL_STATE(1630)] = 108902, - [SMALL_STATE(1631)] = 108962, - [SMALL_STATE(1632)] = 109038, - [SMALL_STATE(1633)] = 109098, - [SMALL_STATE(1634)] = 109158, - [SMALL_STATE(1635)] = 109217, - [SMALL_STATE(1636)] = 109276, - [SMALL_STATE(1637)] = 109357, - [SMALL_STATE(1638)] = 109416, - [SMALL_STATE(1639)] = 109475, - [SMALL_STATE(1640)] = 109534, - [SMALL_STATE(1641)] = 109591, - [SMALL_STATE(1642)] = 109650, - [SMALL_STATE(1643)] = 109709, - [SMALL_STATE(1644)] = 109788, - [SMALL_STATE(1645)] = 109847, - [SMALL_STATE(1646)] = 109916, - [SMALL_STATE(1647)] = 109975, - [SMALL_STATE(1648)] = 110032, - [SMALL_STATE(1649)] = 110091, - [SMALL_STATE(1650)] = 110188, - [SMALL_STATE(1651)] = 110263, - [SMALL_STATE(1652)] = 110320, - [SMALL_STATE(1653)] = 110397, - [SMALL_STATE(1654)] = 110456, - [SMALL_STATE(1655)] = 110515, - [SMALL_STATE(1656)] = 110590, - [SMALL_STATE(1657)] = 110649, - [SMALL_STATE(1658)] = 110708, - [SMALL_STATE(1659)] = 110767, - [SMALL_STATE(1660)] = 110826, - [SMALL_STATE(1661)] = 110895, - [SMALL_STATE(1662)] = 110956, - [SMALL_STATE(1663)] = 111031, - [SMALL_STATE(1664)] = 111100, - [SMALL_STATE(1665)] = 111159, - [SMALL_STATE(1666)] = 111216, - [SMALL_STATE(1667)] = 111275, - [SMALL_STATE(1668)] = 111334, - [SMALL_STATE(1669)] = 111403, - [SMALL_STATE(1670)] = 111484, - [SMALL_STATE(1671)] = 111563, - [SMALL_STATE(1672)] = 111622, - [SMALL_STATE(1673)] = 111681, - [SMALL_STATE(1674)] = 111740, - [SMALL_STATE(1675)] = 111799, - [SMALL_STATE(1676)] = 111864, - [SMALL_STATE(1677)] = 111923, - [SMALL_STATE(1678)] = 111982, - [SMALL_STATE(1679)] = 112041, - [SMALL_STATE(1680)] = 112124, - [SMALL_STATE(1681)] = 112207, - [SMALL_STATE(1682)] = 112266, - [SMALL_STATE(1683)] = 112325, - [SMALL_STATE(1684)] = 112384, - [SMALL_STATE(1685)] = 112443, - [SMALL_STATE(1686)] = 112502, - [SMALL_STATE(1687)] = 112579, - [SMALL_STATE(1688)] = 112654, - [SMALL_STATE(1689)] = 112713, - [SMALL_STATE(1690)] = 112772, - [SMALL_STATE(1691)] = 112831, - [SMALL_STATE(1692)] = 112890, - [SMALL_STATE(1693)] = 112949, - [SMALL_STATE(1694)] = 113020, - [SMALL_STATE(1695)] = 113079, - [SMALL_STATE(1696)] = 113138, - [SMALL_STATE(1697)] = 113197, - [SMALL_STATE(1698)] = 113256, - [SMALL_STATE(1699)] = 113315, - [SMALL_STATE(1700)] = 113374, - [SMALL_STATE(1701)] = 113433, - [SMALL_STATE(1702)] = 113492, - [SMALL_STATE(1703)] = 113551, - [SMALL_STATE(1704)] = 113610, - [SMALL_STATE(1705)] = 113669, - [SMALL_STATE(1706)] = 113728, - [SMALL_STATE(1707)] = 113787, - [SMALL_STATE(1708)] = 113870, - [SMALL_STATE(1709)] = 113929, - [SMALL_STATE(1710)] = 113988, - [SMALL_STATE(1711)] = 114071, - [SMALL_STATE(1712)] = 114130, - [SMALL_STATE(1713)] = 114189, - [SMALL_STATE(1714)] = 114248, - [SMALL_STATE(1715)] = 114307, - [SMALL_STATE(1716)] = 114366, - [SMALL_STATE(1717)] = 114425, - [SMALL_STATE(1718)] = 114484, - [SMALL_STATE(1719)] = 114543, - [SMALL_STATE(1720)] = 114602, - [SMALL_STATE(1721)] = 114661, - [SMALL_STATE(1722)] = 114720, - [SMALL_STATE(1723)] = 114779, - [SMALL_STATE(1724)] = 114838, - [SMALL_STATE(1725)] = 114897, - [SMALL_STATE(1726)] = 114956, - [SMALL_STATE(1727)] = 115015, - [SMALL_STATE(1728)] = 115074, - [SMALL_STATE(1729)] = 115133, - [SMALL_STATE(1730)] = 115192, - [SMALL_STATE(1731)] = 115251, - [SMALL_STATE(1732)] = 115310, - [SMALL_STATE(1733)] = 115375, - [SMALL_STATE(1734)] = 115434, - [SMALL_STATE(1735)] = 115499, - [SMALL_STATE(1736)] = 115558, - [SMALL_STATE(1737)] = 115617, - [SMALL_STATE(1738)] = 115686, - [SMALL_STATE(1739)] = 115751, - [SMALL_STATE(1740)] = 115810, - [SMALL_STATE(1741)] = 115869, - [SMALL_STATE(1742)] = 115928, - [SMALL_STATE(1743)] = 115987, - [SMALL_STATE(1744)] = 116086, - [SMALL_STATE(1745)] = 116161, - [SMALL_STATE(1746)] = 116220, - [SMALL_STATE(1747)] = 116279, - [SMALL_STATE(1748)] = 116350, - [SMALL_STATE(1749)] = 116409, - [SMALL_STATE(1750)] = 116468, - [SMALL_STATE(1751)] = 116543, - [SMALL_STATE(1752)] = 116602, - [SMALL_STATE(1753)] = 116683, - [SMALL_STATE(1754)] = 116762, - [SMALL_STATE(1755)] = 116839, - [SMALL_STATE(1756)] = 116898, - [SMALL_STATE(1757)] = 116957, - [SMALL_STATE(1758)] = 117016, - [SMALL_STATE(1759)] = 117075, - [SMALL_STATE(1760)] = 117134, - [SMALL_STATE(1761)] = 117193, - [SMALL_STATE(1762)] = 117258, - [SMALL_STATE(1763)] = 117317, - [SMALL_STATE(1764)] = 117416, - [SMALL_STATE(1765)] = 117475, - [SMALL_STATE(1766)] = 117574, - [SMALL_STATE(1767)] = 117633, - [SMALL_STATE(1768)] = 117692, - [SMALL_STATE(1769)] = 117753, - [SMALL_STATE(1770)] = 117812, - [SMALL_STATE(1771)] = 117871, - [SMALL_STATE(1772)] = 117954, - [SMALL_STATE(1773)] = 118025, - [SMALL_STATE(1774)] = 118100, - [SMALL_STATE(1775)] = 118177, - [SMALL_STATE(1776)] = 118236, - [SMALL_STATE(1777)] = 118295, - [SMALL_STATE(1778)] = 118354, - [SMALL_STATE(1779)] = 118413, - [SMALL_STATE(1780)] = 118492, - [SMALL_STATE(1781)] = 118573, - [SMALL_STATE(1782)] = 118642, - [SMALL_STATE(1783)] = 118711, - [SMALL_STATE(1784)] = 118786, - [SMALL_STATE(1785)] = 118845, - [SMALL_STATE(1786)] = 118904, - [SMALL_STATE(1787)] = 118963, - [SMALL_STATE(1788)] = 119026, - [SMALL_STATE(1789)] = 119085, - [SMALL_STATE(1790)] = 119144, - [SMALL_STATE(1791)] = 119209, - [SMALL_STATE(1792)] = 119268, - [SMALL_STATE(1793)] = 119337, - [SMALL_STATE(1794)] = 119420, - [SMALL_STATE(1795)] = 119479, - [SMALL_STATE(1796)] = 119538, - [SMALL_STATE(1797)] = 119597, - [SMALL_STATE(1798)] = 119656, - [SMALL_STATE(1799)] = 119715, - [SMALL_STATE(1800)] = 119796, - [SMALL_STATE(1801)] = 119855, - [SMALL_STATE(1802)] = 119924, - [SMALL_STATE(1803)] = 119999, - [SMALL_STATE(1804)] = 120068, - [SMALL_STATE(1805)] = 120149, - [SMALL_STATE(1806)] = 120228, - [SMALL_STATE(1807)] = 120305, - [SMALL_STATE(1808)] = 120380, - [SMALL_STATE(1809)] = 120479, - [SMALL_STATE(1810)] = 120578, - [SMALL_STATE(1811)] = 120649, - [SMALL_STATE(1812)] = 120708, - [SMALL_STATE(1813)] = 120767, - [SMALL_STATE(1814)] = 120826, - [SMALL_STATE(1815)] = 120885, - [SMALL_STATE(1816)] = 120944, - [SMALL_STATE(1817)] = 121003, - [SMALL_STATE(1818)] = 121062, - [SMALL_STATE(1819)] = 121121, - [SMALL_STATE(1820)] = 121178, - [SMALL_STATE(1821)] = 121241, - [SMALL_STATE(1822)] = 121320, - [SMALL_STATE(1823)] = 121397, - [SMALL_STATE(1824)] = 121456, - [SMALL_STATE(1825)] = 121515, - [SMALL_STATE(1826)] = 121574, - [SMALL_STATE(1827)] = 121657, - [SMALL_STATE(1828)] = 121716, - [SMALL_STATE(1829)] = 121781, - [SMALL_STATE(1830)] = 121840, - [SMALL_STATE(1831)] = 121905, - [SMALL_STATE(1832)] = 121964, - [SMALL_STATE(1833)] = 122039, - [SMALL_STATE(1834)] = 122098, - [SMALL_STATE(1835)] = 122157, - [SMALL_STATE(1836)] = 122216, - [SMALL_STATE(1837)] = 122275, - [SMALL_STATE(1838)] = 122340, - [SMALL_STATE(1839)] = 122415, - [SMALL_STATE(1840)] = 122474, - [SMALL_STATE(1841)] = 122533, - [SMALL_STATE(1842)] = 122592, - [SMALL_STATE(1843)] = 122651, - [SMALL_STATE(1844)] = 122710, - [SMALL_STATE(1845)] = 122767, - [SMALL_STATE(1846)] = 122826, - [SMALL_STATE(1847)] = 122885, - [SMALL_STATE(1848)] = 122968, - [SMALL_STATE(1849)] = 123039, - [SMALL_STATE(1850)] = 123098, - [SMALL_STATE(1851)] = 123167, - [SMALL_STATE(1852)] = 123250, - [SMALL_STATE(1853)] = 123309, - [SMALL_STATE(1854)] = 123368, - [SMALL_STATE(1855)] = 123427, - [SMALL_STATE(1856)] = 123486, - [SMALL_STATE(1857)] = 123545, - [SMALL_STATE(1858)] = 123604, - [SMALL_STATE(1859)] = 123663, - [SMALL_STATE(1860)] = 123734, - [SMALL_STATE(1861)] = 123799, - [SMALL_STATE(1862)] = 123858, - [SMALL_STATE(1863)] = 123923, - [SMALL_STATE(1864)] = 123982, - [SMALL_STATE(1865)] = 124051, - [SMALL_STATE(1866)] = 124107, - [SMALL_STATE(1867)] = 124165, - [SMALL_STATE(1868)] = 124223, - [SMALL_STATE(1869)] = 124281, - [SMALL_STATE(1870)] = 124339, - [SMALL_STATE(1871)] = 124397, - [SMALL_STATE(1872)] = 124455, - [SMALL_STATE(1873)] = 124513, - [SMALL_STATE(1874)] = 124571, - [SMALL_STATE(1875)] = 124627, - [SMALL_STATE(1876)] = 124685, - [SMALL_STATE(1877)] = 124743, - [SMALL_STATE(1878)] = 124801, - [SMALL_STATE(1879)] = 124859, - [SMALL_STATE(1880)] = 124917, - [SMALL_STATE(1881)] = 124975, - [SMALL_STATE(1882)] = 125033, - [SMALL_STATE(1883)] = 125091, - [SMALL_STATE(1884)] = 125149, - [SMALL_STATE(1885)] = 125207, - [SMALL_STATE(1886)] = 125265, - [SMALL_STATE(1887)] = 125323, - [SMALL_STATE(1888)] = 125381, - [SMALL_STATE(1889)] = 125439, - [SMALL_STATE(1890)] = 125497, - [SMALL_STATE(1891)] = 125555, - [SMALL_STATE(1892)] = 125613, - [SMALL_STATE(1893)] = 125671, - [SMALL_STATE(1894)] = 125729, - [SMALL_STATE(1895)] = 125787, - [SMALL_STATE(1896)] = 125845, - [SMALL_STATE(1897)] = 125903, - [SMALL_STATE(1898)] = 125961, - [SMALL_STATE(1899)] = 126019, - [SMALL_STATE(1900)] = 126077, - [SMALL_STATE(1901)] = 126135, - [SMALL_STATE(1902)] = 126193, - [SMALL_STATE(1903)] = 126251, - [SMALL_STATE(1904)] = 126309, - [SMALL_STATE(1905)] = 126367, - [SMALL_STATE(1906)] = 126425, - [SMALL_STATE(1907)] = 126483, - [SMALL_STATE(1908)] = 126541, - [SMALL_STATE(1909)] = 126623, - [SMALL_STATE(1910)] = 126681, - [SMALL_STATE(1911)] = 126739, - [SMALL_STATE(1912)] = 126797, - [SMALL_STATE(1913)] = 126855, - [SMALL_STATE(1914)] = 126913, - [SMALL_STATE(1915)] = 126971, - [SMALL_STATE(1916)] = 127029, - [SMALL_STATE(1917)] = 127087, - [SMALL_STATE(1918)] = 127143, - [SMALL_STATE(1919)] = 127201, - [SMALL_STATE(1920)] = 127259, - [SMALL_STATE(1921)] = 127317, - [SMALL_STATE(1922)] = 127375, - [SMALL_STATE(1923)] = 127431, - [SMALL_STATE(1924)] = 127515, - [SMALL_STATE(1925)] = 127573, - [SMALL_STATE(1926)] = 127631, - [SMALL_STATE(1927)] = 127689, - [SMALL_STATE(1928)] = 127747, - [SMALL_STATE(1929)] = 127805, - [SMALL_STATE(1930)] = 127863, - [SMALL_STATE(1931)] = 127921, - [SMALL_STATE(1932)] = 127979, - [SMALL_STATE(1933)] = 128037, - [SMALL_STATE(1934)] = 128095, - [SMALL_STATE(1935)] = 128171, - [SMALL_STATE(1936)] = 128249, - [SMALL_STATE(1937)] = 128329, - [SMALL_STATE(1938)] = 128385, - [SMALL_STATE(1939)] = 128441, - [SMALL_STATE(1940)] = 128499, - [SMALL_STATE(1941)] = 128581, - [SMALL_STATE(1942)] = 128639, - [SMALL_STATE(1943)] = 128697, - [SMALL_STATE(1944)] = 128755, - [SMALL_STATE(1945)] = 128813, - [SMALL_STATE(1946)] = 128871, - [SMALL_STATE(1947)] = 128929, - [SMALL_STATE(1948)] = 128987, - [SMALL_STATE(1949)] = 129045, - [SMALL_STATE(1950)] = 129103, - [SMALL_STATE(1951)] = 129161, - [SMALL_STATE(1952)] = 129219, - [SMALL_STATE(1953)] = 129277, - [SMALL_STATE(1954)] = 129335, - [SMALL_STATE(1955)] = 129393, - [SMALL_STATE(1956)] = 129451, - [SMALL_STATE(1957)] = 129509, - [SMALL_STATE(1958)] = 129567, - [SMALL_STATE(1959)] = 129625, - [SMALL_STATE(1960)] = 129683, - [SMALL_STATE(1961)] = 129741, - [SMALL_STATE(1962)] = 129799, - [SMALL_STATE(1963)] = 129857, - [SMALL_STATE(1964)] = 129927, - [SMALL_STATE(1965)] = 130001, - [SMALL_STATE(1966)] = 130077, - [SMALL_STATE(1967)] = 130155, - [SMALL_STATE(1968)] = 130235, - [SMALL_STATE(1969)] = 130303, - [SMALL_STATE(1970)] = 130377, - [SMALL_STATE(1971)] = 130445, - [SMALL_STATE(1972)] = 130527, - [SMALL_STATE(1973)] = 130585, - [SMALL_STATE(1974)] = 130643, - [SMALL_STATE(1975)] = 130701, - [SMALL_STATE(1976)] = 130757, - [SMALL_STATE(1977)] = 130839, - [SMALL_STATE(1978)] = 130915, - [SMALL_STATE(1979)] = 130973, - [SMALL_STATE(1980)] = 131031, - [SMALL_STATE(1981)] = 131089, - [SMALL_STATE(1982)] = 131167, - [SMALL_STATE(1983)] = 131247, - [SMALL_STATE(1984)] = 131305, - [SMALL_STATE(1985)] = 131361, - [SMALL_STATE(1986)] = 131443, - [SMALL_STATE(1987)] = 131507, - [SMALL_STATE(1988)] = 131589, - [SMALL_STATE(1989)] = 131645, - [SMALL_STATE(1990)] = 131701, - [SMALL_STATE(1991)] = 131757, - [SMALL_STATE(1992)] = 131815, - [SMALL_STATE(1993)] = 131885, - [SMALL_STATE(1994)] = 131959, - [SMALL_STATE(1995)] = 132035, - [SMALL_STATE(1996)] = 132113, - [SMALL_STATE(1997)] = 132193, - [SMALL_STATE(1998)] = 132261, - [SMALL_STATE(1999)] = 132343, - [SMALL_STATE(2000)] = 132403, - [SMALL_STATE(2001)] = 132477, - [SMALL_STATE(2002)] = 132545, - [SMALL_STATE(2003)] = 132627, - [SMALL_STATE(2004)] = 132685, - [SMALL_STATE(2005)] = 132741, - [SMALL_STATE(2006)] = 132799, - [SMALL_STATE(2007)] = 132857, - [SMALL_STATE(2008)] = 132915, - [SMALL_STATE(2009)] = 132971, - [SMALL_STATE(2010)] = 133029, - [SMALL_STATE(2011)] = 133087, - [SMALL_STATE(2012)] = 133145, - [SMALL_STATE(2013)] = 133203, - [SMALL_STATE(2014)] = 133261, - [SMALL_STATE(2015)] = 133319, - [SMALL_STATE(2016)] = 133377, - [SMALL_STATE(2017)] = 133435, - [SMALL_STATE(2018)] = 133493, - [SMALL_STATE(2019)] = 133551, - [SMALL_STATE(2020)] = 133609, - [SMALL_STATE(2021)] = 133671, - [SMALL_STATE(2022)] = 133727, - [SMALL_STATE(2023)] = 133783, - [SMALL_STATE(2024)] = 133847, - [SMALL_STATE(2025)] = 133903, - [SMALL_STATE(2026)] = 133959, - [SMALL_STATE(2027)] = 134015, - [SMALL_STATE(2028)] = 134071, - [SMALL_STATE(2029)] = 134127, - [SMALL_STATE(2030)] = 134183, - [SMALL_STATE(2031)] = 134239, - [SMALL_STATE(2032)] = 134295, - [SMALL_STATE(2033)] = 134353, - [SMALL_STATE(2034)] = 134417, - [SMALL_STATE(2035)] = 134473, - [SMALL_STATE(2036)] = 134531, - [SMALL_STATE(2037)] = 134587, - [SMALL_STATE(2038)] = 134645, - [SMALL_STATE(2039)] = 134703, - [SMALL_STATE(2040)] = 134761, - [SMALL_STATE(2041)] = 134819, - [SMALL_STATE(2042)] = 134877, - [SMALL_STATE(2043)] = 134935, - [SMALL_STATE(2044)] = 134993, - [SMALL_STATE(2045)] = 135051, - [SMALL_STATE(2046)] = 135109, - [SMALL_STATE(2047)] = 135167, - [SMALL_STATE(2048)] = 135225, - [SMALL_STATE(2049)] = 135281, - [SMALL_STATE(2050)] = 135339, - [SMALL_STATE(2051)] = 135395, - [SMALL_STATE(2052)] = 135453, - [SMALL_STATE(2053)] = 135511, - [SMALL_STATE(2054)] = 135569, - [SMALL_STATE(2055)] = 135627, - [SMALL_STATE(2056)] = 135685, - [SMALL_STATE(2057)] = 135743, - [SMALL_STATE(2058)] = 135801, - [SMALL_STATE(2059)] = 135859, - [SMALL_STATE(2060)] = 135921, - [SMALL_STATE(2061)] = 135979, - [SMALL_STATE(2062)] = 136037, - [SMALL_STATE(2063)] = 136095, - [SMALL_STATE(2064)] = 136151, - [SMALL_STATE(2065)] = 136207, - [SMALL_STATE(2066)] = 136263, - [SMALL_STATE(2067)] = 136321, - [SMALL_STATE(2068)] = 136379, - [SMALL_STATE(2069)] = 136435, - [SMALL_STATE(2070)] = 136499, - [SMALL_STATE(2071)] = 136555, - [SMALL_STATE(2072)] = 136613, - [SMALL_STATE(2073)] = 136671, - [SMALL_STATE(2074)] = 136727, - [SMALL_STATE(2075)] = 136783, - [SMALL_STATE(2076)] = 136839, - [SMALL_STATE(2077)] = 136895, - [SMALL_STATE(2078)] = 136953, - [SMALL_STATE(2079)] = 137035, - [SMALL_STATE(2080)] = 137093, - [SMALL_STATE(2081)] = 137177, - [SMALL_STATE(2082)] = 137235, - [SMALL_STATE(2083)] = 137293, - [SMALL_STATE(2084)] = 137351, - [SMALL_STATE(2085)] = 137409, - [SMALL_STATE(2086)] = 137467, - [SMALL_STATE(2087)] = 137523, - [SMALL_STATE(2088)] = 137581, - [SMALL_STATE(2089)] = 137637, - [SMALL_STATE(2090)] = 137733, - [SMALL_STATE(2091)] = 137791, - [SMALL_STATE(2092)] = 137849, - [SMALL_STATE(2093)] = 137905, - [SMALL_STATE(2094)] = 137963, - [SMALL_STATE(2095)] = 138021, - [SMALL_STATE(2096)] = 138079, - [SMALL_STATE(2097)] = 138137, - [SMALL_STATE(2098)] = 138221, - [SMALL_STATE(2099)] = 138277, - [SMALL_STATE(2100)] = 138333, - [SMALL_STATE(2101)] = 138391, - [SMALL_STATE(2102)] = 138449, - [SMALL_STATE(2103)] = 138505, - [SMALL_STATE(2104)] = 138561, - [SMALL_STATE(2105)] = 138619, - [SMALL_STATE(2106)] = 138675, - [SMALL_STATE(2107)] = 138731, - [SMALL_STATE(2108)] = 138787, - [SMALL_STATE(2109)] = 138855, - [SMALL_STATE(2110)] = 138929, - [SMALL_STATE(2111)] = 138985, - [SMALL_STATE(2112)] = 139055, - [SMALL_STATE(2113)] = 139129, - [SMALL_STATE(2114)] = 139187, - [SMALL_STATE(2115)] = 139245, - [SMALL_STATE(2116)] = 139321, - [SMALL_STATE(2117)] = 139399, - [SMALL_STATE(2118)] = 139479, - [SMALL_STATE(2119)] = 139537, - [SMALL_STATE(2120)] = 139605, - [SMALL_STATE(2121)] = 139687, - [SMALL_STATE(2122)] = 139743, - [SMALL_STATE(2123)] = 139799, - [SMALL_STATE(2124)] = 139855, - [SMALL_STATE(2125)] = 139911, - [SMALL_STATE(2126)] = 139985, - [SMALL_STATE(2127)] = 140053, - [SMALL_STATE(2128)] = 140109, - [SMALL_STATE(2129)] = 140191, - [SMALL_STATE(2130)] = 140249, - [SMALL_STATE(2131)] = 140307, - [SMALL_STATE(2132)] = 140363, - [SMALL_STATE(2133)] = 140431, - [SMALL_STATE(2134)] = 140487, - [SMALL_STATE(2135)] = 140543, - [SMALL_STATE(2136)] = 140599, - [SMALL_STATE(2137)] = 140657, - [SMALL_STATE(2138)] = 140731, - [SMALL_STATE(2139)] = 140787, - [SMALL_STATE(2140)] = 140843, - [SMALL_STATE(2141)] = 140901, - [SMALL_STATE(2142)] = 140959, - [SMALL_STATE(2143)] = 141029, - [SMALL_STATE(2144)] = 141085, - [SMALL_STATE(2145)] = 141141, - [SMALL_STATE(2146)] = 141197, - [SMALL_STATE(2147)] = 141255, - [SMALL_STATE(2148)] = 141313, - [SMALL_STATE(2149)] = 141369, - [SMALL_STATE(2150)] = 141425, - [SMALL_STATE(2151)] = 141481, - [SMALL_STATE(2152)] = 141539, - [SMALL_STATE(2153)] = 141597, - [SMALL_STATE(2154)] = 141681, - [SMALL_STATE(2155)] = 141737, - [SMALL_STATE(2156)] = 141793, - [SMALL_STATE(2157)] = 141851, - [SMALL_STATE(2158)] = 141909, - [SMALL_STATE(2159)] = 141967, - [SMALL_STATE(2160)] = 142051, - [SMALL_STATE(2161)] = 142107, - [SMALL_STATE(2162)] = 142163, - [SMALL_STATE(2163)] = 142219, - [SMALL_STATE(2164)] = 142287, - [SMALL_STATE(2165)] = 142361, - [SMALL_STATE(2166)] = 142425, - [SMALL_STATE(2167)] = 142481, - [SMALL_STATE(2168)] = 142537, - [SMALL_STATE(2169)] = 142593, - [SMALL_STATE(2170)] = 142651, - [SMALL_STATE(2171)] = 142709, - [SMALL_STATE(2172)] = 142767, - [SMALL_STATE(2173)] = 142825, - [SMALL_STATE(2174)] = 142881, - [SMALL_STATE(2175)] = 142939, - [SMALL_STATE(2176)] = 142997, - [SMALL_STATE(2177)] = 143055, - [SMALL_STATE(2178)] = 143117, - [SMALL_STATE(2179)] = 143213, - [SMALL_STATE(2180)] = 143281, - [SMALL_STATE(2181)] = 143345, - [SMALL_STATE(2182)] = 143401, - [SMALL_STATE(2183)] = 143475, - [SMALL_STATE(2184)] = 143545, - [SMALL_STATE(2185)] = 143603, - [SMALL_STATE(2186)] = 143661, - [SMALL_STATE(2187)] = 143719, - [SMALL_STATE(2188)] = 143777, - [SMALL_STATE(2189)] = 143833, - [SMALL_STATE(2190)] = 143891, - [SMALL_STATE(2191)] = 143949, - [SMALL_STATE(2192)] = 144007, - [SMALL_STATE(2193)] = 144063, - [SMALL_STATE(2194)] = 144119, - [SMALL_STATE(2195)] = 144175, - [SMALL_STATE(2196)] = 144231, - [SMALL_STATE(2197)] = 144287, - [SMALL_STATE(2198)] = 144343, - [SMALL_STATE(2199)] = 144401, - [SMALL_STATE(2200)] = 144485, - [SMALL_STATE(2201)] = 144541, - [SMALL_STATE(2202)] = 144599, - [SMALL_STATE(2203)] = 144655, - [SMALL_STATE(2204)] = 144711, - [SMALL_STATE(2205)] = 144769, - [SMALL_STATE(2206)] = 144825, - [SMALL_STATE(2207)] = 144881, - [SMALL_STATE(2208)] = 144937, - [SMALL_STATE(2209)] = 144993, - [SMALL_STATE(2210)] = 145049, - [SMALL_STATE(2211)] = 145105, - [SMALL_STATE(2212)] = 145161, - [SMALL_STATE(2213)] = 145219, - [SMALL_STATE(2214)] = 145275, - [SMALL_STATE(2215)] = 145333, - [SMALL_STATE(2216)] = 145391, - [SMALL_STATE(2217)] = 145447, - [SMALL_STATE(2218)] = 145503, - [SMALL_STATE(2219)] = 145587, - [SMALL_STATE(2220)] = 145645, - [SMALL_STATE(2221)] = 145701, - [SMALL_STATE(2222)] = 145759, - [SMALL_STATE(2223)] = 145817, - [SMALL_STATE(2224)] = 145873, - [SMALL_STATE(2225)] = 145931, - [SMALL_STATE(2226)] = 146006, - [SMALL_STATE(2227)] = 146079, - [SMALL_STATE(2228)] = 146172, - [SMALL_STATE(2229)] = 146229, - [SMALL_STATE(2230)] = 146286, - [SMALL_STATE(2231)] = 146353, - [SMALL_STATE(2232)] = 146410, - [SMALL_STATE(2233)] = 146467, - [SMALL_STATE(2234)] = 146524, - [SMALL_STATE(2235)] = 146581, - [SMALL_STATE(2236)] = 146638, - [SMALL_STATE(2237)] = 146695, - [SMALL_STATE(2238)] = 146756, - [SMALL_STATE(2239)] = 146837, - [SMALL_STATE(2240)] = 146906, - [SMALL_STATE(2241)] = 146979, - [SMALL_STATE(2242)] = 147036, - [SMALL_STATE(2243)] = 147093, - [SMALL_STATE(2244)] = 147168, - [SMALL_STATE(2245)] = 147225, - [SMALL_STATE(2246)] = 147282, - [SMALL_STATE(2247)] = 147339, - [SMALL_STATE(2248)] = 147412, - [SMALL_STATE(2249)] = 147505, - [SMALL_STATE(2250)] = 147572, - [SMALL_STATE(2251)] = 147665, - [SMALL_STATE(2252)] = 147742, - [SMALL_STATE(2253)] = 147821, - [SMALL_STATE(2254)] = 147878, - [SMALL_STATE(2255)] = 147947, - [SMALL_STATE(2256)] = 148020, - [SMALL_STATE(2257)] = 148095, - [SMALL_STATE(2258)] = 148172, - [SMALL_STATE(2259)] = 148251, - [SMALL_STATE(2260)] = 148326, - [SMALL_STATE(2261)] = 148393, - [SMALL_STATE(2262)] = 148474, - [SMALL_STATE(2263)] = 148531, - [SMALL_STATE(2264)] = 148588, - [SMALL_STATE(2265)] = 148645, - [SMALL_STATE(2266)] = 148722, - [SMALL_STATE(2267)] = 148801, - [SMALL_STATE(2268)] = 148868, - [SMALL_STATE(2269)] = 148949, - [SMALL_STATE(2270)] = 149030, - [SMALL_STATE(2271)] = 149087, - [SMALL_STATE(2272)] = 149178, - [SMALL_STATE(2273)] = 149251, - [SMALL_STATE(2274)] = 149318, - [SMALL_STATE(2275)] = 149375, - [SMALL_STATE(2276)] = 149456, - [SMALL_STATE(2277)] = 149513, - [SMALL_STATE(2278)] = 149570, - [SMALL_STATE(2279)] = 149663, - [SMALL_STATE(2280)] = 149720, - [SMALL_STATE(2281)] = 149777, - [SMALL_STATE(2282)] = 149858, - [SMALL_STATE(2283)] = 149949, - [SMALL_STATE(2284)] = 150010, - [SMALL_STATE(2285)] = 150083, - [SMALL_STATE(2286)] = 150140, - [SMALL_STATE(2287)] = 150207, - [SMALL_STATE(2288)] = 150288, - [SMALL_STATE(2289)] = 150347, - [SMALL_STATE(2290)] = 150416, - [SMALL_STATE(2291)] = 150473, - [SMALL_STATE(2292)] = 150540, - [SMALL_STATE(2293)] = 150633, - [SMALL_STATE(2294)] = 150706, - [SMALL_STATE(2295)] = 150763, - [SMALL_STATE(2296)] = 150820, - [SMALL_STATE(2297)] = 150893, - [SMALL_STATE(2298)] = 150986, - [SMALL_STATE(2299)] = 151067, - [SMALL_STATE(2300)] = 151124, - [SMALL_STATE(2301)] = 151205, - [SMALL_STATE(2302)] = 151272, - [SMALL_STATE(2303)] = 151353, - [SMALL_STATE(2304)] = 151410, - [SMALL_STATE(2305)] = 151491, - [SMALL_STATE(2306)] = 151558, - [SMALL_STATE(2307)] = 151639, - [SMALL_STATE(2308)] = 151708, - [SMALL_STATE(2309)] = 151789, - [SMALL_STATE(2310)] = 151868, - [SMALL_STATE(2311)] = 151945, - [SMALL_STATE(2312)] = 152018, - [SMALL_STATE(2313)] = 152093, - [SMALL_STATE(2314)] = 152166, - [SMALL_STATE(2315)] = 152233, - [SMALL_STATE(2316)] = 152290, - [SMALL_STATE(2317)] = 152363, - [SMALL_STATE(2318)] = 152432, - [SMALL_STATE(2319)] = 152505, - [SMALL_STATE(2320)] = 152562, - [SMALL_STATE(2321)] = 152629, - [SMALL_STATE(2322)] = 152686, - [SMALL_STATE(2323)] = 152767, - [SMALL_STATE(2324)] = 152848, - [SMALL_STATE(2325)] = 152905, - [SMALL_STATE(2326)] = 152996, - [SMALL_STATE(2327)] = 153053, - [SMALL_STATE(2328)] = 153110, - [SMALL_STATE(2329)] = 153191, - [SMALL_STATE(2330)] = 153272, - [SMALL_STATE(2331)] = 153329, - [SMALL_STATE(2332)] = 153410, - [SMALL_STATE(2333)] = 153503, - [SMALL_STATE(2334)] = 153584, - [SMALL_STATE(2335)] = 153641, - [SMALL_STATE(2336)] = 153722, - [SMALL_STATE(2337)] = 153803, - [SMALL_STATE(2338)] = 153884, - [SMALL_STATE(2339)] = 153965, - [SMALL_STATE(2340)] = 154026, - [SMALL_STATE(2341)] = 154083, - [SMALL_STATE(2342)] = 154164, - [SMALL_STATE(2343)] = 154221, - [SMALL_STATE(2344)] = 154302, - [SMALL_STATE(2345)] = 154359, - [SMALL_STATE(2346)] = 154438, - [SMALL_STATE(2347)] = 154515, - [SMALL_STATE(2348)] = 154572, - [SMALL_STATE(2349)] = 154629, - [SMALL_STATE(2350)] = 154708, - [SMALL_STATE(2351)] = 154765, - [SMALL_STATE(2352)] = 154846, - [SMALL_STATE(2353)] = 154927, - [SMALL_STATE(2354)] = 155018, - [SMALL_STATE(2355)] = 155087, - [SMALL_STATE(2356)] = 155180, - [SMALL_STATE(2357)] = 155237, - [SMALL_STATE(2358)] = 155312, - [SMALL_STATE(2359)] = 155369, - [SMALL_STATE(2360)] = 155462, - [SMALL_STATE(2361)] = 155539, + [SMALL_STATE(367)] = 131, + [SMALL_STATE(368)] = 260, + [SMALL_STATE(369)] = 389, + [SMALL_STATE(370)] = 518, + [SMALL_STATE(371)] = 649, + [SMALL_STATE(372)] = 778, + [SMALL_STATE(373)] = 909, + [SMALL_STATE(374)] = 1040, + [SMALL_STATE(375)] = 1169, + [SMALL_STATE(376)] = 1298, + [SMALL_STATE(377)] = 1429, + [SMALL_STATE(378)] = 1558, + [SMALL_STATE(379)] = 1689, + [SMALL_STATE(380)] = 1820, + [SMALL_STATE(381)] = 1949, + [SMALL_STATE(382)] = 2078, + [SMALL_STATE(383)] = 2209, + [SMALL_STATE(384)] = 2340, + [SMALL_STATE(385)] = 2469, + [SMALL_STATE(386)] = 2600, + [SMALL_STATE(387)] = 2729, + [SMALL_STATE(388)] = 2858, + [SMALL_STATE(389)] = 2987, + [SMALL_STATE(390)] = 3118, + [SMALL_STATE(391)] = 3247, + [SMALL_STATE(392)] = 3376, + [SMALL_STATE(393)] = 3502, + [SMALL_STATE(394)] = 3628, + [SMALL_STATE(395)] = 3754, + [SMALL_STATE(396)] = 3880, + [SMALL_STATE(397)] = 4020, + [SMALL_STATE(398)] = 4146, + [SMALL_STATE(399)] = 4270, + [SMALL_STATE(400)] = 4410, + [SMALL_STATE(401)] = 4536, + [SMALL_STATE(402)] = 4662, + [SMALL_STATE(403)] = 4802, + [SMALL_STATE(404)] = 4928, + [SMALL_STATE(405)] = 5054, + [SMALL_STATE(406)] = 5180, + [SMALL_STATE(407)] = 5306, + [SMALL_STATE(408)] = 5432, + [SMALL_STATE(409)] = 5572, + [SMALL_STATE(410)] = 5698, + [SMALL_STATE(411)] = 5824, + [SMALL_STATE(412)] = 5950, + [SMALL_STATE(413)] = 6076, + [SMALL_STATE(414)] = 6197, + [SMALL_STATE(415)] = 6320, + [SMALL_STATE(416)] = 6443, + [SMALL_STATE(417)] = 6564, + [SMALL_STATE(418)] = 6685, + [SMALL_STATE(419)] = 6806, + [SMALL_STATE(420)] = 6927, + [SMALL_STATE(421)] = 7050, + [SMALL_STATE(422)] = 7171, + [SMALL_STATE(423)] = 7294, + [SMALL_STATE(424)] = 7417, + [SMALL_STATE(425)] = 7540, + [SMALL_STATE(426)] = 7661, + [SMALL_STATE(427)] = 7784, + [SMALL_STATE(428)] = 7905, + [SMALL_STATE(429)] = 8028, + [SMALL_STATE(430)] = 8151, + [SMALL_STATE(431)] = 8272, + [SMALL_STATE(432)] = 8393, + [SMALL_STATE(433)] = 8516, + [SMALL_STATE(434)] = 8639, + [SMALL_STATE(435)] = 8762, + [SMALL_STATE(436)] = 8883, + [SMALL_STATE(437)] = 9004, + [SMALL_STATE(438)] = 9127, + [SMALL_STATE(439)] = 9248, + [SMALL_STATE(440)] = 9371, + [SMALL_STATE(441)] = 9494, + [SMALL_STATE(442)] = 9617, + [SMALL_STATE(443)] = 9740, + [SMALL_STATE(444)] = 9863, + [SMALL_STATE(445)] = 9986, + [SMALL_STATE(446)] = 10111, + [SMALL_STATE(447)] = 10234, + [SMALL_STATE(448)] = 10357, + [SMALL_STATE(449)] = 10480, + [SMALL_STATE(450)] = 10603, + [SMALL_STATE(451)] = 10726, + [SMALL_STATE(452)] = 10849, + [SMALL_STATE(453)] = 10972, + [SMALL_STATE(454)] = 11095, + [SMALL_STATE(455)] = 11218, + [SMALL_STATE(456)] = 11341, + [SMALL_STATE(457)] = 11462, + [SMALL_STATE(458)] = 11583, + [SMALL_STATE(459)] = 11706, + [SMALL_STATE(460)] = 11829, + [SMALL_STATE(461)] = 11952, + [SMALL_STATE(462)] = 12075, + [SMALL_STATE(463)] = 12198, + [SMALL_STATE(464)] = 12321, + [SMALL_STATE(465)] = 12444, + [SMALL_STATE(466)] = 12567, + [SMALL_STATE(467)] = 12688, + [SMALL_STATE(468)] = 12811, + [SMALL_STATE(469)] = 12932, + [SMALL_STATE(470)] = 13053, + [SMALL_STATE(471)] = 13174, + [SMALL_STATE(472)] = 13297, + [SMALL_STATE(473)] = 13420, + [SMALL_STATE(474)] = 13543, + [SMALL_STATE(475)] = 13666, + [SMALL_STATE(476)] = 13789, + [SMALL_STATE(477)] = 13910, + [SMALL_STATE(478)] = 14033, + [SMALL_STATE(479)] = 14156, + [SMALL_STATE(480)] = 14279, + [SMALL_STATE(481)] = 14402, + [SMALL_STATE(482)] = 14525, + [SMALL_STATE(483)] = 14648, + [SMALL_STATE(484)] = 14769, + [SMALL_STATE(485)] = 14892, + [SMALL_STATE(486)] = 15015, + [SMALL_STATE(487)] = 15138, + [SMALL_STATE(488)] = 15261, + [SMALL_STATE(489)] = 15384, + [SMALL_STATE(490)] = 15507, + [SMALL_STATE(491)] = 15630, + [SMALL_STATE(492)] = 15751, + [SMALL_STATE(493)] = 15874, + [SMALL_STATE(494)] = 15997, + [SMALL_STATE(495)] = 16120, + [SMALL_STATE(496)] = 16243, + [SMALL_STATE(497)] = 16364, + [SMALL_STATE(498)] = 16487, + [SMALL_STATE(499)] = 16610, + [SMALL_STATE(500)] = 16733, + [SMALL_STATE(501)] = 16856, + [SMALL_STATE(502)] = 16977, + [SMALL_STATE(503)] = 17100, + [SMALL_STATE(504)] = 17223, + [SMALL_STATE(505)] = 17344, + [SMALL_STATE(506)] = 17467, + [SMALL_STATE(507)] = 17590, + [SMALL_STATE(508)] = 17711, + [SMALL_STATE(509)] = 17834, + [SMALL_STATE(510)] = 17957, + [SMALL_STATE(511)] = 18080, + [SMALL_STATE(512)] = 18201, + [SMALL_STATE(513)] = 18324, + [SMALL_STATE(514)] = 18447, + [SMALL_STATE(515)] = 18570, + [SMALL_STATE(516)] = 18693, + [SMALL_STATE(517)] = 18816, + [SMALL_STATE(518)] = 18939, + [SMALL_STATE(519)] = 19062, + [SMALL_STATE(520)] = 19185, + [SMALL_STATE(521)] = 19308, + [SMALL_STATE(522)] = 19431, + [SMALL_STATE(523)] = 19554, + [SMALL_STATE(524)] = 19677, + [SMALL_STATE(525)] = 19800, + [SMALL_STATE(526)] = 19923, + [SMALL_STATE(527)] = 20046, + [SMALL_STATE(528)] = 20169, + [SMALL_STATE(529)] = 20292, + [SMALL_STATE(530)] = 20415, + [SMALL_STATE(531)] = 20536, + [SMALL_STATE(532)] = 20659, + [SMALL_STATE(533)] = 20782, + [SMALL_STATE(534)] = 20905, + [SMALL_STATE(535)] = 21028, + [SMALL_STATE(536)] = 21151, + [SMALL_STATE(537)] = 21274, + [SMALL_STATE(538)] = 21397, + [SMALL_STATE(539)] = 21520, + [SMALL_STATE(540)] = 21643, + [SMALL_STATE(541)] = 21766, + [SMALL_STATE(542)] = 21889, + [SMALL_STATE(543)] = 22012, + [SMALL_STATE(544)] = 22135, + [SMALL_STATE(545)] = 22258, + [SMALL_STATE(546)] = 22381, + [SMALL_STATE(547)] = 22504, + [SMALL_STATE(548)] = 22627, + [SMALL_STATE(549)] = 22750, + [SMALL_STATE(550)] = 22873, + [SMALL_STATE(551)] = 22996, + [SMALL_STATE(552)] = 23119, + [SMALL_STATE(553)] = 23242, + [SMALL_STATE(554)] = 23365, + [SMALL_STATE(555)] = 23488, + [SMALL_STATE(556)] = 23611, + [SMALL_STATE(557)] = 23734, + [SMALL_STATE(558)] = 23857, + [SMALL_STATE(559)] = 23980, + [SMALL_STATE(560)] = 24103, + [SMALL_STATE(561)] = 24226, + [SMALL_STATE(562)] = 24349, + [SMALL_STATE(563)] = 24472, + [SMALL_STATE(564)] = 24595, + [SMALL_STATE(565)] = 24718, + [SMALL_STATE(566)] = 24841, + [SMALL_STATE(567)] = 24964, + [SMALL_STATE(568)] = 25087, + [SMALL_STATE(569)] = 25210, + [SMALL_STATE(570)] = 25333, + [SMALL_STATE(571)] = 25456, + [SMALL_STATE(572)] = 25579, + [SMALL_STATE(573)] = 25702, + [SMALL_STATE(574)] = 25825, + [SMALL_STATE(575)] = 25948, + [SMALL_STATE(576)] = 26071, + [SMALL_STATE(577)] = 26194, + [SMALL_STATE(578)] = 26317, + [SMALL_STATE(579)] = 26440, + [SMALL_STATE(580)] = 26563, + [SMALL_STATE(581)] = 26686, + [SMALL_STATE(582)] = 26809, + [SMALL_STATE(583)] = 26932, + [SMALL_STATE(584)] = 27055, + [SMALL_STATE(585)] = 27178, + [SMALL_STATE(586)] = 27301, + [SMALL_STATE(587)] = 27424, + [SMALL_STATE(588)] = 27547, + [SMALL_STATE(589)] = 27670, + [SMALL_STATE(590)] = 27793, + [SMALL_STATE(591)] = 27916, + [SMALL_STATE(592)] = 28039, + [SMALL_STATE(593)] = 28164, + [SMALL_STATE(594)] = 28285, + [SMALL_STATE(595)] = 28408, + [SMALL_STATE(596)] = 28531, + [SMALL_STATE(597)] = 28654, + [SMALL_STATE(598)] = 28777, + [SMALL_STATE(599)] = 28898, + [SMALL_STATE(600)] = 29019, + [SMALL_STATE(601)] = 29144, + [SMALL_STATE(602)] = 29267, + [SMALL_STATE(603)] = 29388, + [SMALL_STATE(604)] = 29511, + [SMALL_STATE(605)] = 29634, + [SMALL_STATE(606)] = 29757, + [SMALL_STATE(607)] = 29880, + [SMALL_STATE(608)] = 30003, + [SMALL_STATE(609)] = 30124, + [SMALL_STATE(610)] = 30247, + [SMALL_STATE(611)] = 30372, + [SMALL_STATE(612)] = 30495, + [SMALL_STATE(613)] = 30618, + [SMALL_STATE(614)] = 30741, + [SMALL_STATE(615)] = 30864, + [SMALL_STATE(616)] = 30987, + [SMALL_STATE(617)] = 31110, + [SMALL_STATE(618)] = 31233, + [SMALL_STATE(619)] = 31356, + [SMALL_STATE(620)] = 31477, + [SMALL_STATE(621)] = 31602, + [SMALL_STATE(622)] = 31723, + [SMALL_STATE(623)] = 31846, + [SMALL_STATE(624)] = 31969, + [SMALL_STATE(625)] = 32092, + [SMALL_STATE(626)] = 32215, + [SMALL_STATE(627)] = 32336, + [SMALL_STATE(628)] = 32457, + [SMALL_STATE(629)] = 32578, + [SMALL_STATE(630)] = 32699, + [SMALL_STATE(631)] = 32820, + [SMALL_STATE(632)] = 32945, + [SMALL_STATE(633)] = 33068, + [SMALL_STATE(634)] = 33189, + [SMALL_STATE(635)] = 33312, + [SMALL_STATE(636)] = 33435, + [SMALL_STATE(637)] = 33558, + [SMALL_STATE(638)] = 33681, + [SMALL_STATE(639)] = 33802, + [SMALL_STATE(640)] = 33925, + [SMALL_STATE(641)] = 34050, + [SMALL_STATE(642)] = 34173, + [SMALL_STATE(643)] = 34296, + [SMALL_STATE(644)] = 34419, + [SMALL_STATE(645)] = 34542, + [SMALL_STATE(646)] = 34665, + [SMALL_STATE(647)] = 34788, + [SMALL_STATE(648)] = 34911, + [SMALL_STATE(649)] = 35034, + [SMALL_STATE(650)] = 35157, + [SMALL_STATE(651)] = 35280, + [SMALL_STATE(652)] = 35405, + [SMALL_STATE(653)] = 35528, + [SMALL_STATE(654)] = 35651, + [SMALL_STATE(655)] = 35774, + [SMALL_STATE(656)] = 35897, + [SMALL_STATE(657)] = 36020, + [SMALL_STATE(658)] = 36143, + [SMALL_STATE(659)] = 36266, + [SMALL_STATE(660)] = 36389, + [SMALL_STATE(661)] = 36512, + [SMALL_STATE(662)] = 36635, + [SMALL_STATE(663)] = 36758, + [SMALL_STATE(664)] = 36881, + [SMALL_STATE(665)] = 37006, + [SMALL_STATE(666)] = 37129, + [SMALL_STATE(667)] = 37252, + [SMALL_STATE(668)] = 37373, + [SMALL_STATE(669)] = 37494, + [SMALL_STATE(670)] = 37615, + [SMALL_STATE(671)] = 37736, + [SMALL_STATE(672)] = 37859, + [SMALL_STATE(673)] = 37982, + [SMALL_STATE(674)] = 38105, + [SMALL_STATE(675)] = 38228, + [SMALL_STATE(676)] = 38349, + [SMALL_STATE(677)] = 38470, + [SMALL_STATE(678)] = 38593, + [SMALL_STATE(679)] = 38714, + [SMALL_STATE(680)] = 38837, + [SMALL_STATE(681)] = 38958, + [SMALL_STATE(682)] = 39081, + [SMALL_STATE(683)] = 39204, + [SMALL_STATE(684)] = 39325, + [SMALL_STATE(685)] = 39450, + [SMALL_STATE(686)] = 39573, + [SMALL_STATE(687)] = 39694, + [SMALL_STATE(688)] = 39815, + [SMALL_STATE(689)] = 39938, + [SMALL_STATE(690)] = 40059, + [SMALL_STATE(691)] = 40182, + [SMALL_STATE(692)] = 40305, + [SMALL_STATE(693)] = 40428, + [SMALL_STATE(694)] = 40551, + [SMALL_STATE(695)] = 40674, + [SMALL_STATE(696)] = 40797, + [SMALL_STATE(697)] = 40920, + [SMALL_STATE(698)] = 41043, + [SMALL_STATE(699)] = 41166, + [SMALL_STATE(700)] = 41289, + [SMALL_STATE(701)] = 41412, + [SMALL_STATE(702)] = 41533, + [SMALL_STATE(703)] = 41656, + [SMALL_STATE(704)] = 41779, + [SMALL_STATE(705)] = 41902, + [SMALL_STATE(706)] = 42023, + [SMALL_STATE(707)] = 42146, + [SMALL_STATE(708)] = 42269, + [SMALL_STATE(709)] = 42392, + [SMALL_STATE(710)] = 42515, + [SMALL_STATE(711)] = 42636, + [SMALL_STATE(712)] = 42757, + [SMALL_STATE(713)] = 42880, + [SMALL_STATE(714)] = 43001, + [SMALL_STATE(715)] = 43124, + [SMALL_STATE(716)] = 43247, + [SMALL_STATE(717)] = 43370, + [SMALL_STATE(718)] = 43493, + [SMALL_STATE(719)] = 43616, + [SMALL_STATE(720)] = 43737, + [SMALL_STATE(721)] = 43860, + [SMALL_STATE(722)] = 43994, + [SMALL_STATE(723)] = 44086, + [SMALL_STATE(724)] = 44220, + [SMALL_STATE(725)] = 44314, + [SMALL_STATE(726)] = 44408, + [SMALL_STATE(727)] = 44542, + [SMALL_STATE(728)] = 44676, + [SMALL_STATE(729)] = 44769, + [SMALL_STATE(730)] = 44862, + [SMALL_STATE(731)] = 44953, + [SMALL_STATE(732)] = 45045, + [SMALL_STATE(733)] = 45135, + [SMALL_STATE(734)] = 45227, + [SMALL_STATE(735)] = 45319, + [SMALL_STATE(736)] = 45411, + [SMALL_STATE(737)] = 45501, + [SMALL_STATE(738)] = 45590, + [SMALL_STATE(739)] = 45679, + [SMALL_STATE(740)] = 45804, + [SMALL_STATE(741)] = 45929, + [SMALL_STATE(742)] = 46022, + [SMALL_STATE(743)] = 46111, + [SMALL_STATE(744)] = 46202, + [SMALL_STATE(745)] = 46293, + [SMALL_STATE(746)] = 46384, + [SMALL_STATE(747)] = 46475, + [SMALL_STATE(748)] = 46566, + [SMALL_STATE(749)] = 46691, + [SMALL_STATE(750)] = 46782, + [SMALL_STATE(751)] = 46870, + [SMALL_STATE(752)] = 46960, + [SMALL_STATE(753)] = 47050, + [SMALL_STATE(754)] = 47140, + [SMALL_STATE(755)] = 47230, + [SMALL_STATE(756)] = 47318, + [SMALL_STATE(757)] = 47437, + [SMALL_STATE(758)] = 47524, + [SMALL_STATE(759)] = 47611, + [SMALL_STATE(760)] = 47700, + [SMALL_STATE(761)] = 47819, + [SMALL_STATE(762)] = 47908, + [SMALL_STATE(763)] = 47997, + [SMALL_STATE(764)] = 48084, + [SMALL_STATE(765)] = 48203, + [SMALL_STATE(766)] = 48290, + [SMALL_STATE(767)] = 48409, + [SMALL_STATE(768)] = 48496, + [SMALL_STATE(769)] = 48585, + [SMALL_STATE(770)] = 48674, + [SMALL_STATE(771)] = 48761, + [SMALL_STATE(772)] = 48880, + [SMALL_STATE(773)] = 48999, + [SMALL_STATE(774)] = 49118, + [SMALL_STATE(775)] = 49207, + [SMALL_STATE(776)] = 49296, + [SMALL_STATE(777)] = 49385, + [SMALL_STATE(778)] = 49474, + [SMALL_STATE(779)] = 49561, + [SMALL_STATE(780)] = 49650, + [SMALL_STATE(781)] = 49738, + [SMALL_STATE(782)] = 49824, + [SMALL_STATE(783)] = 49942, + [SMALL_STATE(784)] = 50030, + [SMALL_STATE(785)] = 50118, + [SMALL_STATE(786)] = 50206, + [SMALL_STATE(787)] = 50294, + [SMALL_STATE(788)] = 50380, + [SMALL_STATE(789)] = 50468, + [SMALL_STATE(790)] = 50554, + [SMALL_STATE(791)] = 50642, + [SMALL_STATE(792)] = 50730, + [SMALL_STATE(793)] = 50816, + [SMALL_STATE(794)] = 50902, + [SMALL_STATE(795)] = 50990, + [SMALL_STATE(796)] = 51078, + [SMALL_STATE(797)] = 51151, + [SMALL_STATE(798)] = 51264, + [SMALL_STATE(799)] = 51377, + [SMALL_STATE(800)] = 51462, + [SMALL_STATE(801)] = 51575, + [SMALL_STATE(802)] = 51662, + [SMALL_STATE(803)] = 51747, + [SMALL_STATE(804)] = 51834, + [SMALL_STATE(805)] = 51947, + [SMALL_STATE(806)] = 52060, + [SMALL_STATE(807)] = 52173, + [SMALL_STATE(808)] = 52286, + [SMALL_STATE(809)] = 52405, + [SMALL_STATE(810)] = 52516, + [SMALL_STATE(811)] = 52629, + [SMALL_STATE(812)] = 52748, + [SMALL_STATE(813)] = 52835, + [SMALL_STATE(814)] = 52922, + [SMALL_STATE(815)] = 53009, + [SMALL_STATE(816)] = 53094, + [SMALL_STATE(817)] = 53207, + [SMALL_STATE(818)] = 53294, + [SMALL_STATE(819)] = 53407, + [SMALL_STATE(820)] = 53494, + [SMALL_STATE(821)] = 53613, + [SMALL_STATE(822)] = 53700, + [SMALL_STATE(823)] = 53785, + [SMALL_STATE(824)] = 53898, + [SMALL_STATE(825)] = 53983, + [SMALL_STATE(826)] = 54070, + [SMALL_STATE(827)] = 54189, + [SMALL_STATE(828)] = 54302, + [SMALL_STATE(829)] = 54389, + [SMALL_STATE(830)] = 54502, + [SMALL_STATE(831)] = 54621, + [SMALL_STATE(832)] = 54734, + [SMALL_STATE(833)] = 54847, + [SMALL_STATE(834)] = 54960, + [SMALL_STATE(835)] = 55045, + [SMALL_STATE(836)] = 55164, + [SMALL_STATE(837)] = 55277, + [SMALL_STATE(838)] = 55362, + [SMALL_STATE(839)] = 55428, + [SMALL_STATE(840)] = 55494, + [SMALL_STATE(841)] = 55560, + [SMALL_STATE(842)] = 55632, + [SMALL_STATE(843)] = 55744, + [SMALL_STATE(844)] = 55830, + [SMALL_STATE(845)] = 55896, + [SMALL_STATE(846)] = 55982, + [SMALL_STATE(847)] = 56048, + [SMALL_STATE(848)] = 56114, + [SMALL_STATE(849)] = 56180, + [SMALL_STATE(850)] = 56264, + [SMALL_STATE(851)] = 56330, + [SMALL_STATE(852)] = 56416, + [SMALL_STATE(853)] = 56482, + [SMALL_STATE(854)] = 56548, + [SMALL_STATE(855)] = 56614, + [SMALL_STATE(856)] = 56686, + [SMALL_STATE(857)] = 56770, + [SMALL_STATE(858)] = 56836, + [SMALL_STATE(859)] = 56902, + [SMALL_STATE(860)] = 56988, + [SMALL_STATE(861)] = 57054, + [SMALL_STATE(862)] = 57138, + [SMALL_STATE(863)] = 57204, + [SMALL_STATE(864)] = 57290, + [SMALL_STATE(865)] = 57376, + [SMALL_STATE(866)] = 57462, + [SMALL_STATE(867)] = 57528, + [SMALL_STATE(868)] = 57614, + [SMALL_STATE(869)] = 57680, + [SMALL_STATE(870)] = 57746, + [SMALL_STATE(871)] = 57832, + [SMALL_STATE(872)] = 57918, + [SMALL_STATE(873)] = 57984, + [SMALL_STATE(874)] = 58070, + [SMALL_STATE(875)] = 58154, + [SMALL_STATE(876)] = 58220, + [SMALL_STATE(877)] = 58286, + [SMALL_STATE(878)] = 58352, + [SMALL_STATE(879)] = 58418, + [SMALL_STATE(880)] = 58502, + [SMALL_STATE(881)] = 58568, + [SMALL_STATE(882)] = 58634, + [SMALL_STATE(883)] = 58720, + [SMALL_STATE(884)] = 58804, + [SMALL_STATE(885)] = 58870, + [SMALL_STATE(886)] = 58936, + [SMALL_STATE(887)] = 59002, + [SMALL_STATE(888)] = 59068, + [SMALL_STATE(889)] = 59133, + [SMALL_STATE(890)] = 59214, + [SMALL_STATE(891)] = 59279, + [SMALL_STATE(892)] = 59344, + [SMALL_STATE(893)] = 59409, + [SMALL_STATE(894)] = 59474, + [SMALL_STATE(895)] = 59551, + [SMALL_STATE(896)] = 59616, + [SMALL_STATE(897)] = 59681, + [SMALL_STATE(898)] = 59746, + [SMALL_STATE(899)] = 59827, + [SMALL_STATE(900)] = 59902, + [SMALL_STATE(901)] = 59967, + [SMALL_STATE(902)] = 60032, + [SMALL_STATE(903)] = 60121, + [SMALL_STATE(904)] = 60186, + [SMALL_STATE(905)] = 60257, + [SMALL_STATE(906)] = 60344, + [SMALL_STATE(907)] = 60409, + [SMALL_STATE(908)] = 60474, + [SMALL_STATE(909)] = 60539, + [SMALL_STATE(910)] = 60604, + [SMALL_STATE(911)] = 60669, + [SMALL_STATE(912)] = 60754, + [SMALL_STATE(913)] = 60819, + [SMALL_STATE(914)] = 60884, + [SMALL_STATE(915)] = 60967, + [SMALL_STATE(916)] = 61032, + [SMALL_STATE(917)] = 61107, + [SMALL_STATE(918)] = 61172, + [SMALL_STATE(919)] = 61237, + [SMALL_STATE(920)] = 61302, + [SMALL_STATE(921)] = 61367, + [SMALL_STATE(922)] = 61432, + [SMALL_STATE(923)] = 61497, + [SMALL_STATE(924)] = 61562, + [SMALL_STATE(925)] = 61627, + [SMALL_STATE(926)] = 61692, + [SMALL_STATE(927)] = 61757, + [SMALL_STATE(928)] = 61828, + [SMALL_STATE(929)] = 61893, + [SMALL_STATE(930)] = 61958, + [SMALL_STATE(931)] = 62022, + [SMALL_STATE(932)] = 62086, + [SMALL_STATE(933)] = 62150, + [SMALL_STATE(934)] = 62214, + [SMALL_STATE(935)] = 62278, + [SMALL_STATE(936)] = 62342, + [SMALL_STATE(937)] = 62406, + [SMALL_STATE(938)] = 62476, + [SMALL_STATE(939)] = 62540, + [SMALL_STATE(940)] = 62646, + [SMALL_STATE(941)] = 62710, + [SMALL_STATE(942)] = 62774, + [SMALL_STATE(943)] = 62838, + [SMALL_STATE(944)] = 62902, + [SMALL_STATE(945)] = 62972, + [SMALL_STATE(946)] = 63036, + [SMALL_STATE(947)] = 63100, + [SMALL_STATE(948)] = 63206, + [SMALL_STATE(949)] = 63270, + [SMALL_STATE(950)] = 63334, + [SMALL_STATE(951)] = 63398, + [SMALL_STATE(952)] = 63504, + [SMALL_STATE(953)] = 63608, + [SMALL_STATE(954)] = 63672, + [SMALL_STATE(955)] = 63742, + [SMALL_STATE(956)] = 63806, + [SMALL_STATE(957)] = 63870, + [SMALL_STATE(958)] = 63934, + [SMALL_STATE(959)] = 63998, + [SMALL_STATE(960)] = 64062, + [SMALL_STATE(961)] = 64126, + [SMALL_STATE(962)] = 64190, + [SMALL_STATE(963)] = 64296, + [SMALL_STATE(964)] = 64360, + [SMALL_STATE(965)] = 64424, + [SMALL_STATE(966)] = 64488, + [SMALL_STATE(967)] = 64552, + [SMALL_STATE(968)] = 64616, + [SMALL_STATE(969)] = 64680, + [SMALL_STATE(970)] = 64744, + [SMALL_STATE(971)] = 64808, + [SMALL_STATE(972)] = 64878, + [SMALL_STATE(973)] = 64942, + [SMALL_STATE(974)] = 65006, + [SMALL_STATE(975)] = 65070, + [SMALL_STATE(976)] = 65134, + [SMALL_STATE(977)] = 65198, + [SMALL_STATE(978)] = 65262, + [SMALL_STATE(979)] = 65326, + [SMALL_STATE(980)] = 65396, + [SMALL_STATE(981)] = 65460, + [SMALL_STATE(982)] = 65524, + [SMALL_STATE(983)] = 65588, + [SMALL_STATE(984)] = 65652, + [SMALL_STATE(985)] = 65716, + [SMALL_STATE(986)] = 65780, + [SMALL_STATE(987)] = 65844, + [SMALL_STATE(988)] = 65908, + [SMALL_STATE(989)] = 65972, + [SMALL_STATE(990)] = 66036, + [SMALL_STATE(991)] = 66100, + [SMALL_STATE(992)] = 66164, + [SMALL_STATE(993)] = 66228, + [SMALL_STATE(994)] = 66292, + [SMALL_STATE(995)] = 66356, + [SMALL_STATE(996)] = 66420, + [SMALL_STATE(997)] = 66526, + [SMALL_STATE(998)] = 66590, + [SMALL_STATE(999)] = 66654, + [SMALL_STATE(1000)] = 66717, + [SMALL_STATE(1001)] = 66796, + [SMALL_STATE(1002)] = 66877, + [SMALL_STATE(1003)] = 66940, + [SMALL_STATE(1004)] = 67003, + [SMALL_STATE(1005)] = 67066, + [SMALL_STATE(1006)] = 67129, + [SMALL_STATE(1007)] = 67192, + [SMALL_STATE(1008)] = 67255, + [SMALL_STATE(1009)] = 67318, + [SMALL_STATE(1010)] = 67381, + [SMALL_STATE(1011)] = 67444, + [SMALL_STATE(1012)] = 67507, + [SMALL_STATE(1013)] = 67570, + [SMALL_STATE(1014)] = 67633, + [SMALL_STATE(1015)] = 67696, + [SMALL_STATE(1016)] = 67775, + [SMALL_STATE(1017)] = 67838, + [SMALL_STATE(1018)] = 67921, + [SMALL_STATE(1019)] = 67984, + [SMALL_STATE(1020)] = 68069, + [SMALL_STATE(1021)] = 68132, + [SMALL_STATE(1022)] = 68195, + [SMALL_STATE(1023)] = 68258, + [SMALL_STATE(1024)] = 68331, + [SMALL_STATE(1025)] = 68400, + [SMALL_STATE(1026)] = 68463, + [SMALL_STATE(1027)] = 68532, + [SMALL_STATE(1028)] = 68595, + [SMALL_STATE(1029)] = 68664, + [SMALL_STATE(1030)] = 68727, + [SMALL_STATE(1031)] = 68834, + [SMALL_STATE(1032)] = 68915, + [SMALL_STATE(1033)] = 69020, + [SMALL_STATE(1034)] = 69083, + [SMALL_STATE(1035)] = 69146, + [SMALL_STATE(1036)] = 69209, + [SMALL_STATE(1037)] = 69272, + [SMALL_STATE(1038)] = 69335, + [SMALL_STATE(1039)] = 69408, + [SMALL_STATE(1040)] = 69471, + [SMALL_STATE(1041)] = 69550, + [SMALL_STATE(1042)] = 69613, + [SMALL_STATE(1043)] = 69676, + [SMALL_STATE(1044)] = 69739, + [SMALL_STATE(1045)] = 69802, + [SMALL_STATE(1046)] = 69865, + [SMALL_STATE(1047)] = 69928, + [SMALL_STATE(1048)] = 69991, + [SMALL_STATE(1049)] = 70064, + [SMALL_STATE(1050)] = 70127, + [SMALL_STATE(1051)] = 70210, + [SMALL_STATE(1052)] = 70273, + [SMALL_STATE(1053)] = 70336, + [SMALL_STATE(1054)] = 70415, + [SMALL_STATE(1055)] = 70490, + [SMALL_STATE(1056)] = 70553, + [SMALL_STATE(1057)] = 70616, + [SMALL_STATE(1058)] = 70701, + [SMALL_STATE(1059)] = 70764, + [SMALL_STATE(1060)] = 70827, + [SMALL_STATE(1061)] = 70890, + [SMALL_STATE(1062)] = 70965, + [SMALL_STATE(1063)] = 71038, + [SMALL_STATE(1064)] = 71101, + [SMALL_STATE(1065)] = 71164, + [SMALL_STATE(1066)] = 71227, + [SMALL_STATE(1067)] = 71290, + [SMALL_STATE(1068)] = 71353, + [SMALL_STATE(1069)] = 71416, + [SMALL_STATE(1070)] = 71523, + [SMALL_STATE(1071)] = 71630, + [SMALL_STATE(1072)] = 71693, + [SMALL_STATE(1073)] = 71756, + [SMALL_STATE(1074)] = 71819, + [SMALL_STATE(1075)] = 71882, + [SMALL_STATE(1076)] = 71945, + [SMALL_STATE(1077)] = 72008, + [SMALL_STATE(1078)] = 72071, + [SMALL_STATE(1079)] = 72134, + [SMALL_STATE(1080)] = 72197, + [SMALL_STATE(1081)] = 72284, + [SMALL_STATE(1082)] = 72347, + [SMALL_STATE(1083)] = 72410, + [SMALL_STATE(1084)] = 72473, + [SMALL_STATE(1085)] = 72536, + [SMALL_STATE(1086)] = 72599, + [SMALL_STATE(1087)] = 72662, + [SMALL_STATE(1088)] = 72725, + [SMALL_STATE(1089)] = 72796, + [SMALL_STATE(1090)] = 72859, + [SMALL_STATE(1091)] = 72922, + [SMALL_STATE(1092)] = 72985, + [SMALL_STATE(1093)] = 73048, + [SMALL_STATE(1094)] = 73143, + [SMALL_STATE(1095)] = 73206, + [SMALL_STATE(1096)] = 73269, + [SMALL_STATE(1097)] = 73332, + [SMALL_STATE(1098)] = 73395, + [SMALL_STATE(1099)] = 73458, + [SMALL_STATE(1100)] = 73521, + [SMALL_STATE(1101)] = 73608, + [SMALL_STATE(1102)] = 73671, + [SMALL_STATE(1103)] = 73740, + [SMALL_STATE(1104)] = 73803, + [SMALL_STATE(1105)] = 73872, + [SMALL_STATE(1106)] = 73935, + [SMALL_STATE(1107)] = 73998, + [SMALL_STATE(1108)] = 74061, + [SMALL_STATE(1109)] = 74124, + [SMALL_STATE(1110)] = 74187, + [SMALL_STATE(1111)] = 74250, + [SMALL_STATE(1112)] = 74313, + [SMALL_STATE(1113)] = 74400, + [SMALL_STATE(1114)] = 74463, + [SMALL_STATE(1115)] = 74526, + [SMALL_STATE(1116)] = 74589, + [SMALL_STATE(1117)] = 74652, + [SMALL_STATE(1118)] = 74715, + [SMALL_STATE(1119)] = 74778, + [SMALL_STATE(1120)] = 74841, + [SMALL_STATE(1121)] = 74903, + [SMALL_STATE(1122)] = 74975, + [SMALL_STATE(1123)] = 75053, + [SMALL_STATE(1124)] = 75161, + [SMALL_STATE(1125)] = 75223, + [SMALL_STATE(1126)] = 75291, + [SMALL_STATE(1127)] = 75353, + [SMALL_STATE(1128)] = 75425, + [SMALL_STATE(1129)] = 75487, + [SMALL_STATE(1130)] = 75549, + [SMALL_STATE(1131)] = 75611, + [SMALL_STATE(1132)] = 75673, + [SMALL_STATE(1133)] = 75781, + [SMALL_STATE(1134)] = 75889, + [SMALL_STATE(1135)] = 75957, + [SMALL_STATE(1136)] = 76019, + [SMALL_STATE(1137)] = 76081, + [SMALL_STATE(1138)] = 76161, + [SMALL_STATE(1139)] = 76269, + [SMALL_STATE(1140)] = 76331, + [SMALL_STATE(1141)] = 76413, + [SMALL_STATE(1142)] = 76475, + [SMALL_STATE(1143)] = 76567, + [SMALL_STATE(1144)] = 76629, + [SMALL_STATE(1145)] = 76691, + [SMALL_STATE(1146)] = 76753, + [SMALL_STATE(1147)] = 76821, + [SMALL_STATE(1148)] = 76883, + [SMALL_STATE(1149)] = 76951, + [SMALL_STATE(1150)] = 77023, + [SMALL_STATE(1151)] = 77091, + [SMALL_STATE(1152)] = 77175, + [SMALL_STATE(1153)] = 77253, + [SMALL_STATE(1154)] = 77361, + [SMALL_STATE(1155)] = 77423, + [SMALL_STATE(1156)] = 77495, + [SMALL_STATE(1157)] = 77567, + [SMALL_STATE(1158)] = 77645, + [SMALL_STATE(1159)] = 77719, + [SMALL_STATE(1160)] = 77781, + [SMALL_STATE(1161)] = 77843, + [SMALL_STATE(1162)] = 77923, + [SMALL_STATE(1163)] = 78031, + [SMALL_STATE(1164)] = 78113, + [SMALL_STATE(1165)] = 78197, + [SMALL_STATE(1166)] = 78259, + [SMALL_STATE(1167)] = 78367, + [SMALL_STATE(1168)] = 78429, + [SMALL_STATE(1169)] = 78491, + [SMALL_STATE(1170)] = 78553, + [SMALL_STATE(1171)] = 78639, + [SMALL_STATE(1172)] = 78701, + [SMALL_STATE(1173)] = 78763, + [SMALL_STATE(1174)] = 78871, + [SMALL_STATE(1175)] = 78933, + [SMALL_STATE(1176)] = 78995, + [SMALL_STATE(1177)] = 79063, + [SMALL_STATE(1178)] = 79125, + [SMALL_STATE(1179)] = 79205, + [SMALL_STATE(1180)] = 79287, + [SMALL_STATE(1181)] = 79349, + [SMALL_STATE(1182)] = 79411, + [SMALL_STATE(1183)] = 79473, + [SMALL_STATE(1184)] = 79535, + [SMALL_STATE(1185)] = 79597, + [SMALL_STATE(1186)] = 79681, + [SMALL_STATE(1187)] = 79743, + [SMALL_STATE(1188)] = 79805, + [SMALL_STATE(1189)] = 79867, + [SMALL_STATE(1190)] = 79929, + [SMALL_STATE(1191)] = 79991, + [SMALL_STATE(1192)] = 80053, + [SMALL_STATE(1193)] = 80131, + [SMALL_STATE(1194)] = 80239, + [SMALL_STATE(1195)] = 80313, + [SMALL_STATE(1196)] = 80421, + [SMALL_STATE(1197)] = 80483, + [SMALL_STATE(1198)] = 80545, + [SMALL_STATE(1199)] = 80653, + [SMALL_STATE(1200)] = 80715, + [SMALL_STATE(1201)] = 80801, + [SMALL_STATE(1202)] = 80863, + [SMALL_STATE(1203)] = 80925, + [SMALL_STATE(1204)] = 80987, + [SMALL_STATE(1205)] = 81049, + [SMALL_STATE(1206)] = 81111, + [SMALL_STATE(1207)] = 81197, + [SMALL_STATE(1208)] = 81259, + [SMALL_STATE(1209)] = 81327, + [SMALL_STATE(1210)] = 81389, + [SMALL_STATE(1211)] = 81453, + [SMALL_STATE(1212)] = 81561, + [SMALL_STATE(1213)] = 81669, + [SMALL_STATE(1214)] = 81731, + [SMALL_STATE(1215)] = 81793, + [SMALL_STATE(1216)] = 81867, + [SMALL_STATE(1217)] = 81929, + [SMALL_STATE(1218)] = 81991, + [SMALL_STATE(1219)] = 82069, + [SMALL_STATE(1220)] = 82131, + [SMALL_STATE(1221)] = 82203, + [SMALL_STATE(1222)] = 82311, + [SMALL_STATE(1223)] = 82373, + [SMALL_STATE(1224)] = 82435, + [SMALL_STATE(1225)] = 82497, + [SMALL_STATE(1226)] = 82559, + [SMALL_STATE(1227)] = 82621, + [SMALL_STATE(1228)] = 82683, + [SMALL_STATE(1229)] = 82745, + [SMALL_STATE(1230)] = 82807, + [SMALL_STATE(1231)] = 82869, + [SMALL_STATE(1232)] = 82931, + [SMALL_STATE(1233)] = 83009, + [SMALL_STATE(1234)] = 83117, + [SMALL_STATE(1235)] = 83179, + [SMALL_STATE(1236)] = 83272, + [SMALL_STATE(1237)] = 83333, + [SMALL_STATE(1238)] = 83394, + [SMALL_STATE(1239)] = 83455, + [SMALL_STATE(1240)] = 83516, + [SMALL_STATE(1241)] = 83577, + [SMALL_STATE(1242)] = 83638, + [SMALL_STATE(1243)] = 83699, + [SMALL_STATE(1244)] = 83760, + [SMALL_STATE(1245)] = 83821, + [SMALL_STATE(1246)] = 83882, + [SMALL_STATE(1247)] = 83943, + [SMALL_STATE(1248)] = 84004, + [SMALL_STATE(1249)] = 84071, + [SMALL_STATE(1250)] = 84132, + [SMALL_STATE(1251)] = 84193, + [SMALL_STATE(1252)] = 84254, + [SMALL_STATE(1253)] = 84315, + [SMALL_STATE(1254)] = 84388, + [SMALL_STATE(1255)] = 84465, + [SMALL_STATE(1256)] = 84532, + [SMALL_STATE(1257)] = 84611, + [SMALL_STATE(1258)] = 84692, + [SMALL_STATE(1259)] = 84753, + [SMALL_STATE(1260)] = 84814, + [SMALL_STATE(1261)] = 84875, + [SMALL_STATE(1262)] = 84958, + [SMALL_STATE(1263)] = 85019, + [SMALL_STATE(1264)] = 85090, + [SMALL_STATE(1265)] = 85151, + [SMALL_STATE(1266)] = 85212, + [SMALL_STATE(1267)] = 85279, + [SMALL_STATE(1268)] = 85340, + [SMALL_STATE(1269)] = 85401, + [SMALL_STATE(1270)] = 85462, + [SMALL_STATE(1271)] = 85523, + [SMALL_STATE(1272)] = 85584, + [SMALL_STATE(1273)] = 85645, + [SMALL_STATE(1274)] = 85706, + [SMALL_STATE(1275)] = 85767, + [SMALL_STATE(1276)] = 85828, + [SMALL_STATE(1277)] = 85889, + [SMALL_STATE(1278)] = 85950, + [SMALL_STATE(1279)] = 86011, + [SMALL_STATE(1280)] = 86072, + [SMALL_STATE(1281)] = 86133, + [SMALL_STATE(1282)] = 86194, + [SMALL_STATE(1283)] = 86255, + [SMALL_STATE(1284)] = 86316, + [SMALL_STATE(1285)] = 86377, + [SMALL_STATE(1286)] = 86438, + [SMALL_STATE(1287)] = 86499, + [SMALL_STATE(1288)] = 86560, + [SMALL_STATE(1289)] = 86621, + [SMALL_STATE(1290)] = 86688, + [SMALL_STATE(1291)] = 86749, + [SMALL_STATE(1292)] = 86810, + [SMALL_STATE(1293)] = 86871, + [SMALL_STATE(1294)] = 86932, + [SMALL_STATE(1295)] = 86999, + [SMALL_STATE(1296)] = 87060, + [SMALL_STATE(1297)] = 87121, + [SMALL_STATE(1298)] = 87182, + [SMALL_STATE(1299)] = 87267, + [SMALL_STATE(1300)] = 87328, + [SMALL_STATE(1301)] = 87389, + [SMALL_STATE(1302)] = 87450, + [SMALL_STATE(1303)] = 87511, + [SMALL_STATE(1304)] = 87572, + [SMALL_STATE(1305)] = 87633, + [SMALL_STATE(1306)] = 87694, + [SMALL_STATE(1307)] = 87755, + [SMALL_STATE(1308)] = 87816, + [SMALL_STATE(1309)] = 87877, + [SMALL_STATE(1310)] = 87944, + [SMALL_STATE(1311)] = 88005, + [SMALL_STATE(1312)] = 88088, + [SMALL_STATE(1313)] = 88169, + [SMALL_STATE(1314)] = 88230, + [SMALL_STATE(1315)] = 88291, + [SMALL_STATE(1316)] = 88352, + [SMALL_STATE(1317)] = 88431, + [SMALL_STATE(1318)] = 88492, + [SMALL_STATE(1319)] = 88553, + [SMALL_STATE(1320)] = 88630, + [SMALL_STATE(1321)] = 88691, + [SMALL_STATE(1322)] = 88752, + [SMALL_STATE(1323)] = 88823, + [SMALL_STATE(1324)] = 88884, + [SMALL_STATE(1325)] = 88945, + [SMALL_STATE(1326)] = 89030, + [SMALL_STATE(1327)] = 89091, + [SMALL_STATE(1328)] = 89152, + [SMALL_STATE(1329)] = 89213, + [SMALL_STATE(1330)] = 89280, + [SMALL_STATE(1331)] = 89341, + [SMALL_STATE(1332)] = 89402, + [SMALL_STATE(1333)] = 89463, + [SMALL_STATE(1334)] = 89524, + [SMALL_STATE(1335)] = 89591, + [SMALL_STATE(1336)] = 89652, + [SMALL_STATE(1337)] = 89713, + [SMALL_STATE(1338)] = 89774, + [SMALL_STATE(1339)] = 89835, + [SMALL_STATE(1340)] = 89896, + [SMALL_STATE(1341)] = 89957, + [SMALL_STATE(1342)] = 90018, + [SMALL_STATE(1343)] = 90079, + [SMALL_STATE(1344)] = 90140, + [SMALL_STATE(1345)] = 90201, + [SMALL_STATE(1346)] = 90302, + [SMALL_STATE(1347)] = 90363, + [SMALL_STATE(1348)] = 90424, + [SMALL_STATE(1349)] = 90485, + [SMALL_STATE(1350)] = 90546, + [SMALL_STATE(1351)] = 90607, + [SMALL_STATE(1352)] = 90668, + [SMALL_STATE(1353)] = 90729, + [SMALL_STATE(1354)] = 90790, + [SMALL_STATE(1355)] = 90851, + [SMALL_STATE(1356)] = 90912, + [SMALL_STATE(1357)] = 90973, + [SMALL_STATE(1358)] = 91034, + [SMALL_STATE(1359)] = 91105, + [SMALL_STATE(1360)] = 91166, + [SMALL_STATE(1361)] = 91227, + [SMALL_STATE(1362)] = 91288, + [SMALL_STATE(1363)] = 91365, + [SMALL_STATE(1364)] = 91432, + [SMALL_STATE(1365)] = 91503, + [SMALL_STATE(1366)] = 91580, + [SMALL_STATE(1367)] = 91641, + [SMALL_STATE(1368)] = 91702, + [SMALL_STATE(1369)] = 91763, + [SMALL_STATE(1370)] = 91836, + [SMALL_STATE(1371)] = 91897, + [SMALL_STATE(1372)] = 91958, + [SMALL_STATE(1373)] = 92019, + [SMALL_STATE(1374)] = 92080, + [SMALL_STATE(1375)] = 92141, + [SMALL_STATE(1376)] = 92202, + [SMALL_STATE(1377)] = 92263, + [SMALL_STATE(1378)] = 92324, + [SMALL_STATE(1379)] = 92385, + [SMALL_STATE(1380)] = 92446, + [SMALL_STATE(1381)] = 92507, + [SMALL_STATE(1382)] = 92568, + [SMALL_STATE(1383)] = 92629, + [SMALL_STATE(1384)] = 92690, + [SMALL_STATE(1385)] = 92751, + [SMALL_STATE(1386)] = 92816, + [SMALL_STATE(1387)] = 92877, + [SMALL_STATE(1388)] = 92938, + [SMALL_STATE(1389)] = 92999, + [SMALL_STATE(1390)] = 93060, + [SMALL_STATE(1391)] = 93121, + [SMALL_STATE(1392)] = 93182, + [SMALL_STATE(1393)] = 93243, + [SMALL_STATE(1394)] = 93304, + [SMALL_STATE(1395)] = 93365, + [SMALL_STATE(1396)] = 93426, + [SMALL_STATE(1397)] = 93487, + [SMALL_STATE(1398)] = 93548, + [SMALL_STATE(1399)] = 93609, + [SMALL_STATE(1400)] = 93670, + [SMALL_STATE(1401)] = 93731, + [SMALL_STATE(1402)] = 93792, + [SMALL_STATE(1403)] = 93853, + [SMALL_STATE(1404)] = 93914, + [SMALL_STATE(1405)] = 93975, + [SMALL_STATE(1406)] = 94036, + [SMALL_STATE(1407)] = 94097, + [SMALL_STATE(1408)] = 94158, + [SMALL_STATE(1409)] = 94219, + [SMALL_STATE(1410)] = 94280, + [SMALL_STATE(1411)] = 94341, + [SMALL_STATE(1412)] = 94440, + [SMALL_STATE(1413)] = 94501, + [SMALL_STATE(1414)] = 94562, + [SMALL_STATE(1415)] = 94623, + [SMALL_STATE(1416)] = 94690, + [SMALL_STATE(1417)] = 94768, + [SMALL_STATE(1418)] = 94828, + [SMALL_STATE(1419)] = 94888, + [SMALL_STATE(1420)] = 94948, + [SMALL_STATE(1421)] = 95034, + [SMALL_STATE(1422)] = 95106, + [SMALL_STATE(1423)] = 95182, + [SMALL_STATE(1424)] = 95242, + [SMALL_STATE(1425)] = 95318, + [SMALL_STATE(1426)] = 95408, + [SMALL_STATE(1427)] = 95478, + [SMALL_STATE(1428)] = 95538, + [SMALL_STATE(1429)] = 95598, + [SMALL_STATE(1430)] = 95700, + [SMALL_STATE(1431)] = 95760, + [SMALL_STATE(1432)] = 95820, + [SMALL_STATE(1433)] = 95880, + [SMALL_STATE(1434)] = 95946, + [SMALL_STATE(1435)] = 96048, + [SMALL_STATE(1436)] = 96108, + [SMALL_STATE(1437)] = 96168, + [SMALL_STATE(1438)] = 96228, + [SMALL_STATE(1439)] = 96288, + [SMALL_STATE(1440)] = 96360, + [SMALL_STATE(1441)] = 96420, + [SMALL_STATE(1442)] = 96480, + [SMALL_STATE(1443)] = 96540, + [SMALL_STATE(1444)] = 96624, + [SMALL_STATE(1445)] = 96744, + [SMALL_STATE(1446)] = 96804, + [SMALL_STATE(1447)] = 96864, + [SMALL_STATE(1448)] = 96940, + [SMALL_STATE(1449)] = 97060, + [SMALL_STATE(1450)] = 97120, + [SMALL_STATE(1451)] = 97210, + [SMALL_STATE(1452)] = 97288, + [SMALL_STATE(1453)] = 97368, + [SMALL_STATE(1454)] = 97450, + [SMALL_STATE(1455)] = 97510, + [SMALL_STATE(1456)] = 97570, + [SMALL_STATE(1457)] = 97630, + [SMALL_STATE(1458)] = 97710, + [SMALL_STATE(1459)] = 97830, + [SMALL_STATE(1460)] = 97932, + [SMALL_STATE(1461)] = 98014, + [SMALL_STATE(1462)] = 98084, + [SMALL_STATE(1463)] = 98168, + [SMALL_STATE(1464)] = 98270, + [SMALL_STATE(1465)] = 98330, + [SMALL_STATE(1466)] = 98390, + [SMALL_STATE(1467)] = 98450, + [SMALL_STATE(1468)] = 98510, + [SMALL_STATE(1469)] = 98570, + [SMALL_STATE(1470)] = 98630, + [SMALL_STATE(1471)] = 98690, + [SMALL_STATE(1472)] = 98792, + [SMALL_STATE(1473)] = 98852, + [SMALL_STATE(1474)] = 98912, + [SMALL_STATE(1475)] = 98996, + [SMALL_STATE(1476)] = 99056, + [SMALL_STATE(1477)] = 99158, + [SMALL_STATE(1478)] = 99218, + [SMALL_STATE(1479)] = 99288, + [SMALL_STATE(1480)] = 99354, + [SMALL_STATE(1481)] = 99414, + [SMALL_STATE(1482)] = 99490, + [SMALL_STATE(1483)] = 99566, + [SMALL_STATE(1484)] = 99626, + [SMALL_STATE(1485)] = 99696, + [SMALL_STATE(1486)] = 99756, + [SMALL_STATE(1487)] = 99816, + [SMALL_STATE(1488)] = 99876, + [SMALL_STATE(1489)] = 99936, + [SMALL_STATE(1490)] = 100020, + [SMALL_STATE(1491)] = 100080, + [SMALL_STATE(1492)] = 100140, + [SMALL_STATE(1493)] = 100200, + [SMALL_STATE(1494)] = 100260, + [SMALL_STATE(1495)] = 100320, + [SMALL_STATE(1496)] = 100380, + [SMALL_STATE(1497)] = 100440, + [SMALL_STATE(1498)] = 100506, + [SMALL_STATE(1499)] = 100584, + [SMALL_STATE(1500)] = 100664, + [SMALL_STATE(1501)] = 100724, + [SMALL_STATE(1502)] = 100794, + [SMALL_STATE(1503)] = 100854, + [SMALL_STATE(1504)] = 100914, + [SMALL_STATE(1505)] = 100996, + [SMALL_STATE(1506)] = 101072, + [SMALL_STATE(1507)] = 101144, + [SMALL_STATE(1508)] = 101204, + [SMALL_STATE(1509)] = 101264, + [SMALL_STATE(1510)] = 101324, + [SMALL_STATE(1511)] = 101408, + [SMALL_STATE(1512)] = 101468, + [SMALL_STATE(1513)] = 101534, + [SMALL_STATE(1514)] = 101594, + [SMALL_STATE(1515)] = 101654, + [SMALL_STATE(1516)] = 101756, + [SMALL_STATE(1517)] = 101816, + [SMALL_STATE(1518)] = 101876, + [SMALL_STATE(1519)] = 101936, + [SMALL_STATE(1520)] = 101996, + [SMALL_STATE(1521)] = 102062, + [SMALL_STATE(1522)] = 102122, + [SMALL_STATE(1523)] = 102182, + [SMALL_STATE(1524)] = 102282, + [SMALL_STATE(1525)] = 102342, + [SMALL_STATE(1526)] = 102402, + [SMALL_STATE(1527)] = 102462, + [SMALL_STATE(1528)] = 102522, + [SMALL_STATE(1529)] = 102582, + [SMALL_STATE(1530)] = 102642, + [SMALL_STATE(1531)] = 102702, + [SMALL_STATE(1532)] = 102762, + [SMALL_STATE(1533)] = 102822, + [SMALL_STATE(1534)] = 102882, + [SMALL_STATE(1535)] = 102942, + [SMALL_STATE(1536)] = 103002, + [SMALL_STATE(1537)] = 103074, + [SMALL_STATE(1538)] = 103150, + [SMALL_STATE(1539)] = 103210, + [SMALL_STATE(1540)] = 103270, + [SMALL_STATE(1541)] = 103330, + [SMALL_STATE(1542)] = 103400, + [SMALL_STATE(1543)] = 103460, + [SMALL_STATE(1544)] = 103520, + [SMALL_STATE(1545)] = 103590, + [SMALL_STATE(1546)] = 103666, + [SMALL_STATE(1547)] = 103726, + [SMALL_STATE(1548)] = 103802, + [SMALL_STATE(1549)] = 103872, + [SMALL_STATE(1550)] = 103974, + [SMALL_STATE(1551)] = 104034, + [SMALL_STATE(1552)] = 104094, + [SMALL_STATE(1553)] = 104196, + [SMALL_STATE(1554)] = 104266, + [SMALL_STATE(1555)] = 104326, + [SMALL_STATE(1556)] = 104386, + [SMALL_STATE(1557)] = 104446, + [SMALL_STATE(1558)] = 104524, + [SMALL_STATE(1559)] = 104584, + [SMALL_STATE(1560)] = 104664, + [SMALL_STATE(1561)] = 104740, + [SMALL_STATE(1562)] = 104800, + [SMALL_STATE(1563)] = 104860, + [SMALL_STATE(1564)] = 104932, + [SMALL_STATE(1565)] = 104992, + [SMALL_STATE(1566)] = 105052, + [SMALL_STATE(1567)] = 105112, + [SMALL_STATE(1568)] = 105172, + [SMALL_STATE(1569)] = 105232, + [SMALL_STATE(1570)] = 105292, + [SMALL_STATE(1571)] = 105352, + [SMALL_STATE(1572)] = 105412, + [SMALL_STATE(1573)] = 105494, + [SMALL_STATE(1574)] = 105554, + [SMALL_STATE(1575)] = 105614, + [SMALL_STATE(1576)] = 105674, + [SMALL_STATE(1577)] = 105758, + [SMALL_STATE(1578)] = 105818, + [SMALL_STATE(1579)] = 105920, + [SMALL_STATE(1580)] = 105998, + [SMALL_STATE(1581)] = 106058, + [SMALL_STATE(1582)] = 106124, + [SMALL_STATE(1583)] = 106204, + [SMALL_STATE(1584)] = 106286, + [SMALL_STATE(1585)] = 106346, + [SMALL_STATE(1586)] = 106406, + [SMALL_STATE(1587)] = 106466, + [SMALL_STATE(1588)] = 106526, + [SMALL_STATE(1589)] = 106586, + [SMALL_STATE(1590)] = 106646, + [SMALL_STATE(1591)] = 106706, + [SMALL_STATE(1592)] = 106808, + [SMALL_STATE(1593)] = 106868, + [SMALL_STATE(1594)] = 106970, + [SMALL_STATE(1595)] = 107036, + [SMALL_STATE(1596)] = 107096, + [SMALL_STATE(1597)] = 107156, + [SMALL_STATE(1598)] = 107222, + [SMALL_STATE(1599)] = 107282, + [SMALL_STATE(1600)] = 107342, + [SMALL_STATE(1601)] = 107402, + [SMALL_STATE(1602)] = 107462, + [SMALL_STATE(1603)] = 107546, + [SMALL_STATE(1604)] = 107606, + [SMALL_STATE(1605)] = 107672, + [SMALL_STATE(1606)] = 107738, + [SMALL_STATE(1607)] = 107798, + [SMALL_STATE(1608)] = 107858, + [SMALL_STATE(1609)] = 107918, + [SMALL_STATE(1610)] = 107978, + [SMALL_STATE(1611)] = 108038, + [SMALL_STATE(1612)] = 108098, + [SMALL_STATE(1613)] = 108158, + [SMALL_STATE(1614)] = 108218, + [SMALL_STATE(1615)] = 108316, + [SMALL_STATE(1616)] = 108376, + [SMALL_STATE(1617)] = 108436, + [SMALL_STATE(1618)] = 108496, + [SMALL_STATE(1619)] = 108556, + [SMALL_STATE(1620)] = 108616, + [SMALL_STATE(1621)] = 108676, + [SMALL_STATE(1622)] = 108736, + [SMALL_STATE(1623)] = 108796, + [SMALL_STATE(1624)] = 108886, + [SMALL_STATE(1625)] = 108946, + [SMALL_STATE(1626)] = 109048, + [SMALL_STATE(1627)] = 109108, + [SMALL_STATE(1628)] = 109168, + [SMALL_STATE(1629)] = 109270, + [SMALL_STATE(1630)] = 109372, + [SMALL_STATE(1631)] = 109432, + [SMALL_STATE(1632)] = 109492, + [SMALL_STATE(1633)] = 109552, + [SMALL_STATE(1634)] = 109612, + [SMALL_STATE(1635)] = 109672, + [SMALL_STATE(1636)] = 109732, + [SMALL_STATE(1637)] = 109792, + [SMALL_STATE(1638)] = 109852, + [SMALL_STATE(1639)] = 109912, + [SMALL_STATE(1640)] = 109972, + [SMALL_STATE(1641)] = 110062, + [SMALL_STATE(1642)] = 110122, + [SMALL_STATE(1643)] = 110182, + [SMALL_STATE(1644)] = 110242, + [SMALL_STATE(1645)] = 110344, + [SMALL_STATE(1646)] = 110404, + [SMALL_STATE(1647)] = 110464, + [SMALL_STATE(1648)] = 110566, + [SMALL_STATE(1649)] = 110626, + [SMALL_STATE(1650)] = 110686, + [SMALL_STATE(1651)] = 110770, + [SMALL_STATE(1652)] = 110830, + [SMALL_STATE(1653)] = 110890, + [SMALL_STATE(1654)] = 110950, + [SMALL_STATE(1655)] = 111052, + [SMALL_STATE(1656)] = 111154, + [SMALL_STATE(1657)] = 111220, + [SMALL_STATE(1658)] = 111280, + [SMALL_STATE(1659)] = 111340, + [SMALL_STATE(1660)] = 111400, + [SMALL_STATE(1661)] = 111460, + [SMALL_STATE(1662)] = 111520, + [SMALL_STATE(1663)] = 111580, + [SMALL_STATE(1664)] = 111682, + [SMALL_STATE(1665)] = 111742, + [SMALL_STATE(1666)] = 111802, + [SMALL_STATE(1667)] = 111872, + [SMALL_STATE(1668)] = 111932, + [SMALL_STATE(1669)] = 111992, + [SMALL_STATE(1670)] = 112052, + [SMALL_STATE(1671)] = 112112, + [SMALL_STATE(1672)] = 112172, + [SMALL_STATE(1673)] = 112274, + [SMALL_STATE(1674)] = 112349, + [SMALL_STATE(1675)] = 112408, + [SMALL_STATE(1676)] = 112467, + [SMALL_STATE(1677)] = 112526, + [SMALL_STATE(1678)] = 112585, + [SMALL_STATE(1679)] = 112644, + [SMALL_STATE(1680)] = 112703, + [SMALL_STATE(1681)] = 112802, + [SMALL_STATE(1682)] = 112861, + [SMALL_STATE(1683)] = 112958, + [SMALL_STATE(1684)] = 113015, + [SMALL_STATE(1685)] = 113074, + [SMALL_STATE(1686)] = 113173, + [SMALL_STATE(1687)] = 113244, + [SMALL_STATE(1688)] = 113319, + [SMALL_STATE(1689)] = 113396, + [SMALL_STATE(1690)] = 113475, + [SMALL_STATE(1691)] = 113540, + [SMALL_STATE(1692)] = 113599, + [SMALL_STATE(1693)] = 113658, + [SMALL_STATE(1694)] = 113739, + [SMALL_STATE(1695)] = 113798, + [SMALL_STATE(1696)] = 113897, + [SMALL_STATE(1697)] = 113966, + [SMALL_STATE(1698)] = 114025, + [SMALL_STATE(1699)] = 114084, + [SMALL_STATE(1700)] = 114143, + [SMALL_STATE(1701)] = 114202, + [SMALL_STATE(1702)] = 114261, + [SMALL_STATE(1703)] = 114322, + [SMALL_STATE(1704)] = 114381, + [SMALL_STATE(1705)] = 114440, + [SMALL_STATE(1706)] = 114499, + [SMALL_STATE(1707)] = 114564, + [SMALL_STATE(1708)] = 114623, + [SMALL_STATE(1709)] = 114682, + [SMALL_STATE(1710)] = 114741, + [SMALL_STATE(1711)] = 114800, + [SMALL_STATE(1712)] = 114859, + [SMALL_STATE(1713)] = 114918, + [SMALL_STATE(1714)] = 114977, + [SMALL_STATE(1715)] = 115052, + [SMALL_STATE(1716)] = 115111, + [SMALL_STATE(1717)] = 115180, + [SMALL_STATE(1718)] = 115239, + [SMALL_STATE(1719)] = 115298, + [SMALL_STATE(1720)] = 115363, + [SMALL_STATE(1721)] = 115422, + [SMALL_STATE(1722)] = 115483, + [SMALL_STATE(1723)] = 115542, + [SMALL_STATE(1724)] = 115601, + [SMALL_STATE(1725)] = 115660, + [SMALL_STATE(1726)] = 115743, + [SMALL_STATE(1727)] = 115812, + [SMALL_STATE(1728)] = 115887, + [SMALL_STATE(1729)] = 115946, + [SMALL_STATE(1730)] = 116005, + [SMALL_STATE(1731)] = 116074, + [SMALL_STATE(1732)] = 116149, + [SMALL_STATE(1733)] = 116232, + [SMALL_STATE(1734)] = 116291, + [SMALL_STATE(1735)] = 116350, + [SMALL_STATE(1736)] = 116413, + [SMALL_STATE(1737)] = 116482, + [SMALL_STATE(1738)] = 116541, + [SMALL_STATE(1739)] = 116600, + [SMALL_STATE(1740)] = 116659, + [SMALL_STATE(1741)] = 116724, + [SMALL_STATE(1742)] = 116793, + [SMALL_STATE(1743)] = 116870, + [SMALL_STATE(1744)] = 116949, + [SMALL_STATE(1745)] = 117030, + [SMALL_STATE(1746)] = 117105, + [SMALL_STATE(1747)] = 117176, + [SMALL_STATE(1748)] = 117235, + [SMALL_STATE(1749)] = 117316, + [SMALL_STATE(1750)] = 117375, + [SMALL_STATE(1751)] = 117458, + [SMALL_STATE(1752)] = 117517, + [SMALL_STATE(1753)] = 117576, + [SMALL_STATE(1754)] = 117635, + [SMALL_STATE(1755)] = 117694, + [SMALL_STATE(1756)] = 117753, + [SMALL_STATE(1757)] = 117818, + [SMALL_STATE(1758)] = 117897, + [SMALL_STATE(1759)] = 117956, + [SMALL_STATE(1760)] = 118033, + [SMALL_STATE(1761)] = 118092, + [SMALL_STATE(1762)] = 118151, + [SMALL_STATE(1763)] = 118226, + [SMALL_STATE(1764)] = 118297, + [SMALL_STATE(1765)] = 118380, + [SMALL_STATE(1766)] = 118439, + [SMALL_STATE(1767)] = 118522, + [SMALL_STATE(1768)] = 118579, + [SMALL_STATE(1769)] = 118638, + [SMALL_STATE(1770)] = 118697, + [SMALL_STATE(1771)] = 118756, + [SMALL_STATE(1772)] = 118821, + [SMALL_STATE(1773)] = 118880, + [SMALL_STATE(1774)] = 118939, + [SMALL_STATE(1775)] = 119002, + [SMALL_STATE(1776)] = 119085, + [SMALL_STATE(1777)] = 119144, + [SMALL_STATE(1778)] = 119203, + [SMALL_STATE(1779)] = 119262, + [SMALL_STATE(1780)] = 119327, + [SMALL_STATE(1781)] = 119386, + [SMALL_STATE(1782)] = 119443, + [SMALL_STATE(1783)] = 119502, + [SMALL_STATE(1784)] = 119567, + [SMALL_STATE(1785)] = 119626, + [SMALL_STATE(1786)] = 119685, + [SMALL_STATE(1787)] = 119742, + [SMALL_STATE(1788)] = 119801, + [SMALL_STATE(1789)] = 119858, + [SMALL_STATE(1790)] = 119927, + [SMALL_STATE(1791)] = 119996, + [SMALL_STATE(1792)] = 120055, + [SMALL_STATE(1793)] = 120114, + [SMALL_STATE(1794)] = 120173, + [SMALL_STATE(1795)] = 120232, + [SMALL_STATE(1796)] = 120291, + [SMALL_STATE(1797)] = 120350, + [SMALL_STATE(1798)] = 120409, + [SMALL_STATE(1799)] = 120468, + [SMALL_STATE(1800)] = 120527, + [SMALL_STATE(1801)] = 120598, + [SMALL_STATE(1802)] = 120673, + [SMALL_STATE(1803)] = 120750, + [SMALL_STATE(1804)] = 120809, + [SMALL_STATE(1805)] = 120868, + [SMALL_STATE(1806)] = 120927, + [SMALL_STATE(1807)] = 121006, + [SMALL_STATE(1808)] = 121087, + [SMALL_STATE(1809)] = 121156, + [SMALL_STATE(1810)] = 121231, + [SMALL_STATE(1811)] = 121308, + [SMALL_STATE(1812)] = 121387, + [SMALL_STATE(1813)] = 121468, + [SMALL_STATE(1814)] = 121537, + [SMALL_STATE(1815)] = 121596, + [SMALL_STATE(1816)] = 121665, + [SMALL_STATE(1817)] = 121722, + [SMALL_STATE(1818)] = 121791, + [SMALL_STATE(1819)] = 121850, + [SMALL_STATE(1820)] = 121925, + [SMALL_STATE(1821)] = 121996, + [SMALL_STATE(1822)] = 122055, + [SMALL_STATE(1823)] = 122130, + [SMALL_STATE(1824)] = 122201, + [SMALL_STATE(1825)] = 122260, + [SMALL_STATE(1826)] = 122319, + [SMALL_STATE(1827)] = 122378, + [SMALL_STATE(1828)] = 122437, + [SMALL_STATE(1829)] = 122496, + [SMALL_STATE(1830)] = 122555, + [SMALL_STATE(1831)] = 122614, + [SMALL_STATE(1832)] = 122673, + [SMALL_STATE(1833)] = 122732, + [SMALL_STATE(1834)] = 122791, + [SMALL_STATE(1835)] = 122850, + [SMALL_STATE(1836)] = 122909, + [SMALL_STATE(1837)] = 122968, + [SMALL_STATE(1838)] = 123027, + [SMALL_STATE(1839)] = 123086, + [SMALL_STATE(1840)] = 123145, + [SMALL_STATE(1841)] = 123204, + [SMALL_STATE(1842)] = 123263, + [SMALL_STATE(1843)] = 123322, + [SMALL_STATE(1844)] = 123381, + [SMALL_STATE(1845)] = 123440, + [SMALL_STATE(1846)] = 123499, + [SMALL_STATE(1847)] = 123558, + [SMALL_STATE(1848)] = 123617, + [SMALL_STATE(1849)] = 123676, + [SMALL_STATE(1850)] = 123735, + [SMALL_STATE(1851)] = 123794, + [SMALL_STATE(1852)] = 123853, + [SMALL_STATE(1853)] = 123936, + [SMALL_STATE(1854)] = 124035, + [SMALL_STATE(1855)] = 124094, + [SMALL_STATE(1856)] = 124153, + [SMALL_STATE(1857)] = 124212, + [SMALL_STATE(1858)] = 124271, + [SMALL_STATE(1859)] = 124330, + [SMALL_STATE(1860)] = 124389, + [SMALL_STATE(1861)] = 124448, + [SMALL_STATE(1862)] = 124513, + [SMALL_STATE(1863)] = 124572, + [SMALL_STATE(1864)] = 124631, + [SMALL_STATE(1865)] = 124690, + [SMALL_STATE(1866)] = 124749, + [SMALL_STATE(1867)] = 124808, + [SMALL_STATE(1868)] = 124867, + [SMALL_STATE(1869)] = 124926, + [SMALL_STATE(1870)] = 124985, + [SMALL_STATE(1871)] = 125044, + [SMALL_STATE(1872)] = 125103, + [SMALL_STATE(1873)] = 125168, + [SMALL_STATE(1874)] = 125227, + [SMALL_STATE(1875)] = 125302, + [SMALL_STATE(1876)] = 125361, + [SMALL_STATE(1877)] = 125420, + [SMALL_STATE(1878)] = 125479, + [SMALL_STATE(1879)] = 125538, + [SMALL_STATE(1880)] = 125597, + [SMALL_STATE(1881)] = 125656, + [SMALL_STATE(1882)] = 125715, + [SMALL_STATE(1883)] = 125774, + [SMALL_STATE(1884)] = 125833, + [SMALL_STATE(1885)] = 125892, + [SMALL_STATE(1886)] = 125951, + [SMALL_STATE(1887)] = 126010, + [SMALL_STATE(1888)] = 126069, + [SMALL_STATE(1889)] = 126152, + [SMALL_STATE(1890)] = 126211, + [SMALL_STATE(1891)] = 126270, + [SMALL_STATE(1892)] = 126329, + [SMALL_STATE(1893)] = 126388, + [SMALL_STATE(1894)] = 126447, + [SMALL_STATE(1895)] = 126506, + [SMALL_STATE(1896)] = 126565, + [SMALL_STATE(1897)] = 126624, + [SMALL_STATE(1898)] = 126683, + [SMALL_STATE(1899)] = 126742, + [SMALL_STATE(1900)] = 126801, + [SMALL_STATE(1901)] = 126878, + [SMALL_STATE(1902)] = 126957, + [SMALL_STATE(1903)] = 127038, + [SMALL_STATE(1904)] = 127121, + [SMALL_STATE(1905)] = 127186, + [SMALL_STATE(1906)] = 127245, + [SMALL_STATE(1907)] = 127344, + [SMALL_STATE(1908)] = 127403, + [SMALL_STATE(1909)] = 127462, + [SMALL_STATE(1910)] = 127521, + [SMALL_STATE(1911)] = 127580, + [SMALL_STATE(1912)] = 127639, + [SMALL_STATE(1913)] = 127698, + [SMALL_STATE(1914)] = 127757, + [SMALL_STATE(1915)] = 127813, + [SMALL_STATE(1916)] = 127871, + [SMALL_STATE(1917)] = 127955, + [SMALL_STATE(1918)] = 128013, + [SMALL_STATE(1919)] = 128071, + [SMALL_STATE(1920)] = 128129, + [SMALL_STATE(1921)] = 128191, + [SMALL_STATE(1922)] = 128275, + [SMALL_STATE(1923)] = 128339, + [SMALL_STATE(1924)] = 128395, + [SMALL_STATE(1925)] = 128451, + [SMALL_STATE(1926)] = 128507, + [SMALL_STATE(1927)] = 128565, + [SMALL_STATE(1928)] = 128621, + [SMALL_STATE(1929)] = 128677, + [SMALL_STATE(1930)] = 128733, + [SMALL_STATE(1931)] = 128789, + [SMALL_STATE(1932)] = 128845, + [SMALL_STATE(1933)] = 128903, + [SMALL_STATE(1934)] = 128959, + [SMALL_STATE(1935)] = 129017, + [SMALL_STATE(1936)] = 129073, + [SMALL_STATE(1937)] = 129129, + [SMALL_STATE(1938)] = 129187, + [SMALL_STATE(1939)] = 129245, + [SMALL_STATE(1940)] = 129303, + [SMALL_STATE(1941)] = 129361, + [SMALL_STATE(1942)] = 129443, + [SMALL_STATE(1943)] = 129527, + [SMALL_STATE(1944)] = 129585, + [SMALL_STATE(1945)] = 129653, + [SMALL_STATE(1946)] = 129711, + [SMALL_STATE(1947)] = 129785, + [SMALL_STATE(1948)] = 129841, + [SMALL_STATE(1949)] = 129897, + [SMALL_STATE(1950)] = 129955, + [SMALL_STATE(1951)] = 130019, + [SMALL_STATE(1952)] = 130077, + [SMALL_STATE(1953)] = 130135, + [SMALL_STATE(1954)] = 130193, + [SMALL_STATE(1955)] = 130249, + [SMALL_STATE(1956)] = 130307, + [SMALL_STATE(1957)] = 130363, + [SMALL_STATE(1958)] = 130421, + [SMALL_STATE(1959)] = 130489, + [SMALL_STATE(1960)] = 130547, + [SMALL_STATE(1961)] = 130605, + [SMALL_STATE(1962)] = 130663, + [SMALL_STATE(1963)] = 130743, + [SMALL_STATE(1964)] = 130801, + [SMALL_STATE(1965)] = 130859, + [SMALL_STATE(1966)] = 130917, + [SMALL_STATE(1967)] = 130973, + [SMALL_STATE(1968)] = 131031, + [SMALL_STATE(1969)] = 131089, + [SMALL_STATE(1970)] = 131147, + [SMALL_STATE(1971)] = 131205, + [SMALL_STATE(1972)] = 131275, + [SMALL_STATE(1973)] = 131333, + [SMALL_STATE(1974)] = 131391, + [SMALL_STATE(1975)] = 131449, + [SMALL_STATE(1976)] = 131507, + [SMALL_STATE(1977)] = 131563, + [SMALL_STATE(1978)] = 131641, + [SMALL_STATE(1979)] = 131699, + [SMALL_STATE(1980)] = 131757, + [SMALL_STATE(1981)] = 131815, + [SMALL_STATE(1982)] = 131873, + [SMALL_STATE(1983)] = 131931, + [SMALL_STATE(1984)] = 131989, + [SMALL_STATE(1985)] = 132057, + [SMALL_STATE(1986)] = 132131, + [SMALL_STATE(1987)] = 132189, + [SMALL_STATE(1988)] = 132247, + [SMALL_STATE(1989)] = 132305, + [SMALL_STATE(1990)] = 132363, + [SMALL_STATE(1991)] = 132421, + [SMALL_STATE(1992)] = 132479, + [SMALL_STATE(1993)] = 132537, + [SMALL_STATE(1994)] = 132599, + [SMALL_STATE(1995)] = 132657, + [SMALL_STATE(1996)] = 132715, + [SMALL_STATE(1997)] = 132773, + [SMALL_STATE(1998)] = 132831, + [SMALL_STATE(1999)] = 132889, + [SMALL_STATE(2000)] = 132947, + [SMALL_STATE(2001)] = 133005, + [SMALL_STATE(2002)] = 133063, + [SMALL_STATE(2003)] = 133121, + [SMALL_STATE(2004)] = 133179, + [SMALL_STATE(2005)] = 133255, + [SMALL_STATE(2006)] = 133313, + [SMALL_STATE(2007)] = 133371, + [SMALL_STATE(2008)] = 133445, + [SMALL_STATE(2009)] = 133509, + [SMALL_STATE(2010)] = 133579, + [SMALL_STATE(2011)] = 133637, + [SMALL_STATE(2012)] = 133695, + [SMALL_STATE(2013)] = 133753, + [SMALL_STATE(2014)] = 133811, + [SMALL_STATE(2015)] = 133869, + [SMALL_STATE(2016)] = 133927, + [SMALL_STATE(2017)] = 133985, + [SMALL_STATE(2018)] = 134043, + [SMALL_STATE(2019)] = 134101, + [SMALL_STATE(2020)] = 134157, + [SMALL_STATE(2021)] = 134215, + [SMALL_STATE(2022)] = 134271, + [SMALL_STATE(2023)] = 134327, + [SMALL_STATE(2024)] = 134383, + [SMALL_STATE(2025)] = 134465, + [SMALL_STATE(2026)] = 134521, + [SMALL_STATE(2027)] = 134579, + [SMALL_STATE(2028)] = 134637, + [SMALL_STATE(2029)] = 134695, + [SMALL_STATE(2030)] = 134751, + [SMALL_STATE(2031)] = 134835, + [SMALL_STATE(2032)] = 134891, + [SMALL_STATE(2033)] = 134949, + [SMALL_STATE(2034)] = 135007, + [SMALL_STATE(2035)] = 135089, + [SMALL_STATE(2036)] = 135145, + [SMALL_STATE(2037)] = 135203, + [SMALL_STATE(2038)] = 135271, + [SMALL_STATE(2039)] = 135345, + [SMALL_STATE(2040)] = 135403, + [SMALL_STATE(2041)] = 135461, + [SMALL_STATE(2042)] = 135519, + [SMALL_STATE(2043)] = 135577, + [SMALL_STATE(2044)] = 135635, + [SMALL_STATE(2045)] = 135693, + [SMALL_STATE(2046)] = 135751, + [SMALL_STATE(2047)] = 135833, + [SMALL_STATE(2048)] = 135891, + [SMALL_STATE(2049)] = 135949, + [SMALL_STATE(2050)] = 136007, + [SMALL_STATE(2051)] = 136065, + [SMALL_STATE(2052)] = 136121, + [SMALL_STATE(2053)] = 136179, + [SMALL_STATE(2054)] = 136237, + [SMALL_STATE(2055)] = 136293, + [SMALL_STATE(2056)] = 136351, + [SMALL_STATE(2057)] = 136433, + [SMALL_STATE(2058)] = 136491, + [SMALL_STATE(2059)] = 136549, + [SMALL_STATE(2060)] = 136607, + [SMALL_STATE(2061)] = 136665, + [SMALL_STATE(2062)] = 136723, + [SMALL_STATE(2063)] = 136781, + [SMALL_STATE(2064)] = 136839, + [SMALL_STATE(2065)] = 136897, + [SMALL_STATE(2066)] = 136955, + [SMALL_STATE(2067)] = 137013, + [SMALL_STATE(2068)] = 137071, + [SMALL_STATE(2069)] = 137129, + [SMALL_STATE(2070)] = 137187, + [SMALL_STATE(2071)] = 137245, + [SMALL_STATE(2072)] = 137303, + [SMALL_STATE(2073)] = 137361, + [SMALL_STATE(2074)] = 137419, + [SMALL_STATE(2075)] = 137477, + [SMALL_STATE(2076)] = 137537, + [SMALL_STATE(2077)] = 137595, + [SMALL_STATE(2078)] = 137651, + [SMALL_STATE(2079)] = 137707, + [SMALL_STATE(2080)] = 137763, + [SMALL_STATE(2081)] = 137819, + [SMALL_STATE(2082)] = 137875, + [SMALL_STATE(2083)] = 137931, + [SMALL_STATE(2084)] = 137987, + [SMALL_STATE(2085)] = 138045, + [SMALL_STATE(2086)] = 138103, + [SMALL_STATE(2087)] = 138161, + [SMALL_STATE(2088)] = 138219, + [SMALL_STATE(2089)] = 138275, + [SMALL_STATE(2090)] = 138333, + [SMALL_STATE(2091)] = 138391, + [SMALL_STATE(2092)] = 138449, + [SMALL_STATE(2093)] = 138507, + [SMALL_STATE(2094)] = 138563, + [SMALL_STATE(2095)] = 138619, + [SMALL_STATE(2096)] = 138675, + [SMALL_STATE(2097)] = 138731, + [SMALL_STATE(2098)] = 138787, + [SMALL_STATE(2099)] = 138857, + [SMALL_STATE(2100)] = 138931, + [SMALL_STATE(2101)] = 139007, + [SMALL_STATE(2102)] = 139085, + [SMALL_STATE(2103)] = 139153, + [SMALL_STATE(2104)] = 139211, + [SMALL_STATE(2105)] = 139269, + [SMALL_STATE(2106)] = 139327, + [SMALL_STATE(2107)] = 139407, + [SMALL_STATE(2108)] = 139465, + [SMALL_STATE(2109)] = 139539, + [SMALL_STATE(2110)] = 139607, + [SMALL_STATE(2111)] = 139665, + [SMALL_STATE(2112)] = 139721, + [SMALL_STATE(2113)] = 139779, + [SMALL_STATE(2114)] = 139837, + [SMALL_STATE(2115)] = 139895, + [SMALL_STATE(2116)] = 139951, + [SMALL_STATE(2117)] = 140007, + [SMALL_STATE(2118)] = 140063, + [SMALL_STATE(2119)] = 140119, + [SMALL_STATE(2120)] = 140177, + [SMALL_STATE(2121)] = 140235, + [SMALL_STATE(2122)] = 140309, + [SMALL_STATE(2123)] = 140367, + [SMALL_STATE(2124)] = 140435, + [SMALL_STATE(2125)] = 140493, + [SMALL_STATE(2126)] = 140551, + [SMALL_STATE(2127)] = 140609, + [SMALL_STATE(2128)] = 140667, + [SMALL_STATE(2129)] = 140725, + [SMALL_STATE(2130)] = 140783, + [SMALL_STATE(2131)] = 140841, + [SMALL_STATE(2132)] = 140899, + [SMALL_STATE(2133)] = 140957, + [SMALL_STATE(2134)] = 141015, + [SMALL_STATE(2135)] = 141073, + [SMALL_STATE(2136)] = 141131, + [SMALL_STATE(2137)] = 141189, + [SMALL_STATE(2138)] = 141247, + [SMALL_STATE(2139)] = 141305, + [SMALL_STATE(2140)] = 141363, + [SMALL_STATE(2141)] = 141445, + [SMALL_STATE(2142)] = 141513, + [SMALL_STATE(2143)] = 141587, + [SMALL_STATE(2144)] = 141657, + [SMALL_STATE(2145)] = 141715, + [SMALL_STATE(2146)] = 141797, + [SMALL_STATE(2147)] = 141855, + [SMALL_STATE(2148)] = 141913, + [SMALL_STATE(2149)] = 141971, + [SMALL_STATE(2150)] = 142029, + [SMALL_STATE(2151)] = 142087, + [SMALL_STATE(2152)] = 142145, + [SMALL_STATE(2153)] = 142203, + [SMALL_STATE(2154)] = 142261, + [SMALL_STATE(2155)] = 142319, + [SMALL_STATE(2156)] = 142377, + [SMALL_STATE(2157)] = 142435, + [SMALL_STATE(2158)] = 142491, + [SMALL_STATE(2159)] = 142547, + [SMALL_STATE(2160)] = 142629, + [SMALL_STATE(2161)] = 142685, + [SMALL_STATE(2162)] = 142781, + [SMALL_STATE(2163)] = 142839, + [SMALL_STATE(2164)] = 142897, + [SMALL_STATE(2165)] = 142955, + [SMALL_STATE(2166)] = 143011, + [SMALL_STATE(2167)] = 143067, + [SMALL_STATE(2168)] = 143125, + [SMALL_STATE(2169)] = 143181, + [SMALL_STATE(2170)] = 143239, + [SMALL_STATE(2171)] = 143297, + [SMALL_STATE(2172)] = 143355, + [SMALL_STATE(2173)] = 143411, + [SMALL_STATE(2174)] = 143467, + [SMALL_STATE(2175)] = 143523, + [SMALL_STATE(2176)] = 143579, + [SMALL_STATE(2177)] = 143637, + [SMALL_STATE(2178)] = 143693, + [SMALL_STATE(2179)] = 143749, + [SMALL_STATE(2180)] = 143805, + [SMALL_STATE(2181)] = 143863, + [SMALL_STATE(2182)] = 143921, + [SMALL_STATE(2183)] = 143979, + [SMALL_STATE(2184)] = 144035, + [SMALL_STATE(2185)] = 144091, + [SMALL_STATE(2186)] = 144155, + [SMALL_STATE(2187)] = 144211, + [SMALL_STATE(2188)] = 144267, + [SMALL_STATE(2189)] = 144349, + [SMALL_STATE(2190)] = 144407, + [SMALL_STATE(2191)] = 144463, + [SMALL_STATE(2192)] = 144519, + [SMALL_STATE(2193)] = 144575, + [SMALL_STATE(2194)] = 144631, + [SMALL_STATE(2195)] = 144689, + [SMALL_STATE(2196)] = 144745, + [SMALL_STATE(2197)] = 144801, + [SMALL_STATE(2198)] = 144857, + [SMALL_STATE(2199)] = 144953, + [SMALL_STATE(2200)] = 145037, + [SMALL_STATE(2201)] = 145093, + [SMALL_STATE(2202)] = 145149, + [SMALL_STATE(2203)] = 145205, + [SMALL_STATE(2204)] = 145261, + [SMALL_STATE(2205)] = 145317, + [SMALL_STATE(2206)] = 145373, + [SMALL_STATE(2207)] = 145429, + [SMALL_STATE(2208)] = 145487, + [SMALL_STATE(2209)] = 145543, + [SMALL_STATE(2210)] = 145599, + [SMALL_STATE(2211)] = 145663, + [SMALL_STATE(2212)] = 145719, + [SMALL_STATE(2213)] = 145775, + [SMALL_STATE(2214)] = 145831, + [SMALL_STATE(2215)] = 145887, + [SMALL_STATE(2216)] = 145945, + [SMALL_STATE(2217)] = 146003, + [SMALL_STATE(2218)] = 146061, + [SMALL_STATE(2219)] = 146119, + [SMALL_STATE(2220)] = 146177, + [SMALL_STATE(2221)] = 146257, + [SMALL_STATE(2222)] = 146335, + [SMALL_STATE(2223)] = 146411, + [SMALL_STATE(2224)] = 146469, + [SMALL_STATE(2225)] = 146553, + [SMALL_STATE(2226)] = 146609, + [SMALL_STATE(2227)] = 146665, + [SMALL_STATE(2228)] = 146723, + [SMALL_STATE(2229)] = 146781, + [SMALL_STATE(2230)] = 146839, + [SMALL_STATE(2231)] = 146897, + [SMALL_STATE(2232)] = 146955, + [SMALL_STATE(2233)] = 147037, + [SMALL_STATE(2234)] = 147093, + [SMALL_STATE(2235)] = 147161, + [SMALL_STATE(2236)] = 147219, + [SMALL_STATE(2237)] = 147277, + [SMALL_STATE(2238)] = 147351, + [SMALL_STATE(2239)] = 147413, + [SMALL_STATE(2240)] = 147477, + [SMALL_STATE(2241)] = 147535, + [SMALL_STATE(2242)] = 147593, + [SMALL_STATE(2243)] = 147661, + [SMALL_STATE(2244)] = 147741, + [SMALL_STATE(2245)] = 147799, + [SMALL_STATE(2246)] = 147877, + [SMALL_STATE(2247)] = 147953, + [SMALL_STATE(2248)] = 148027, + [SMALL_STATE(2249)] = 148085, + [SMALL_STATE(2250)] = 148155, + [SMALL_STATE(2251)] = 148213, + [SMALL_STATE(2252)] = 148269, + [SMALL_STATE(2253)] = 148327, + [SMALL_STATE(2254)] = 148385, + [SMALL_STATE(2255)] = 148443, + [SMALL_STATE(2256)] = 148499, + [SMALL_STATE(2257)] = 148555, + [SMALL_STATE(2258)] = 148613, + [SMALL_STATE(2259)] = 148671, + [SMALL_STATE(2260)] = 148729, + [SMALL_STATE(2261)] = 148787, + [SMALL_STATE(2262)] = 148845, + [SMALL_STATE(2263)] = 148903, + [SMALL_STATE(2264)] = 148961, + [SMALL_STATE(2265)] = 149019, + [SMALL_STATE(2266)] = 149075, + [SMALL_STATE(2267)] = 149157, + [SMALL_STATE(2268)] = 149213, + [SMALL_STATE(2269)] = 149271, + [SMALL_STATE(2270)] = 149329, + [SMALL_STATE(2271)] = 149385, + [SMALL_STATE(2272)] = 149441, + [SMALL_STATE(2273)] = 149525, + [SMALL_STATE(2274)] = 149581, + [SMALL_STATE(2275)] = 149637, + [SMALL_STATE(2276)] = 149717, + [SMALL_STATE(2277)] = 149795, + [SMALL_STATE(2278)] = 149871, + [SMALL_STATE(2279)] = 149927, + [SMALL_STATE(2280)] = 149983, + [SMALL_STATE(2281)] = 150039, + [SMALL_STATE(2282)] = 150097, + [SMALL_STATE(2283)] = 150155, + [SMALL_STATE(2284)] = 150213, + [SMALL_STATE(2285)] = 150271, + [SMALL_STATE(2286)] = 150327, + [SMALL_STATE(2287)] = 150385, + [SMALL_STATE(2288)] = 150443, + [SMALL_STATE(2289)] = 150501, + [SMALL_STATE(2290)] = 150559, + [SMALL_STATE(2291)] = 150617, + [SMALL_STATE(2292)] = 150698, + [SMALL_STATE(2293)] = 150755, + [SMALL_STATE(2294)] = 150824, + [SMALL_STATE(2295)] = 150897, + [SMALL_STATE(2296)] = 150972, + [SMALL_STATE(2297)] = 151049, + [SMALL_STATE(2298)] = 151128, + [SMALL_STATE(2299)] = 151195, + [SMALL_STATE(2300)] = 151252, + [SMALL_STATE(2301)] = 151325, + [SMALL_STATE(2302)] = 151392, + [SMALL_STATE(2303)] = 151473, + [SMALL_STATE(2304)] = 151530, + [SMALL_STATE(2305)] = 151587, + [SMALL_STATE(2306)] = 151644, + [SMALL_STATE(2307)] = 151701, + [SMALL_STATE(2308)] = 151758, + [SMALL_STATE(2309)] = 151815, + [SMALL_STATE(2310)] = 151872, + [SMALL_STATE(2311)] = 151929, + [SMALL_STATE(2312)] = 151998, + [SMALL_STATE(2313)] = 152071, + [SMALL_STATE(2314)] = 152146, + [SMALL_STATE(2315)] = 152223, + [SMALL_STATE(2316)] = 152302, + [SMALL_STATE(2317)] = 152369, + [SMALL_STATE(2318)] = 152430, + [SMALL_STATE(2319)] = 152503, + [SMALL_STATE(2320)] = 152570, + [SMALL_STATE(2321)] = 152651, + [SMALL_STATE(2322)] = 152708, + [SMALL_STATE(2323)] = 152801, + [SMALL_STATE(2324)] = 152882, + [SMALL_STATE(2325)] = 152939, + [SMALL_STATE(2326)] = 153032, + [SMALL_STATE(2327)] = 153089, + [SMALL_STATE(2328)] = 153146, + [SMALL_STATE(2329)] = 153203, + [SMALL_STATE(2330)] = 153296, + [SMALL_STATE(2331)] = 153365, + [SMALL_STATE(2332)] = 153438, + [SMALL_STATE(2333)] = 153513, + [SMALL_STATE(2334)] = 153590, + [SMALL_STATE(2335)] = 153669, + [SMALL_STATE(2336)] = 153736, + [SMALL_STATE(2337)] = 153793, + [SMALL_STATE(2338)] = 153850, + [SMALL_STATE(2339)] = 153923, + [SMALL_STATE(2340)] = 153990, + [SMALL_STATE(2341)] = 154071, + [SMALL_STATE(2342)] = 154128, + [SMALL_STATE(2343)] = 154185, + [SMALL_STATE(2344)] = 154278, + [SMALL_STATE(2345)] = 154369, + [SMALL_STATE(2346)] = 154430, + [SMALL_STATE(2347)] = 154489, + [SMALL_STATE(2348)] = 154570, + [SMALL_STATE(2349)] = 154651, + [SMALL_STATE(2350)] = 154744, + [SMALL_STATE(2351)] = 154837, + [SMALL_STATE(2352)] = 154894, + [SMALL_STATE(2353)] = 154987, + [SMALL_STATE(2354)] = 155080, + [SMALL_STATE(2355)] = 155161, + [SMALL_STATE(2356)] = 155218, + [SMALL_STATE(2357)] = 155275, + [SMALL_STATE(2358)] = 155356, + [SMALL_STATE(2359)] = 155437, + [SMALL_STATE(2360)] = 155494, + [SMALL_STATE(2361)] = 155575, [SMALL_STATE(2362)] = 155632, - [SMALL_STATE(2363)] = 155699, - [SMALL_STATE(2364)] = 155777, - [SMALL_STATE(2365)] = 155837, - [SMALL_STATE(2366)] = 155915, - [SMALL_STATE(2367)] = 155971, - [SMALL_STATE(2368)] = 156049, - [SMALL_STATE(2369)] = 156105, - [SMALL_STATE(2370)] = 156183, - [SMALL_STATE(2371)] = 156239, - [SMALL_STATE(2372)] = 156297, - [SMALL_STATE(2373)] = 156357, - [SMALL_STATE(2374)] = 156435, - [SMALL_STATE(2375)] = 156513, - [SMALL_STATE(2376)] = 156591, - [SMALL_STATE(2377)] = 156647, - [SMALL_STATE(2378)] = 156703, - [SMALL_STATE(2379)] = 156759, - [SMALL_STATE(2380)] = 156815, - [SMALL_STATE(2381)] = 156871, - [SMALL_STATE(2382)] = 156949, - [SMALL_STATE(2383)] = 157005, - [SMALL_STATE(2384)] = 157061, - [SMALL_STATE(2385)] = 157139, - [SMALL_STATE(2386)] = 157217, - [SMALL_STATE(2387)] = 157273, - [SMALL_STATE(2388)] = 157329, - [SMALL_STATE(2389)] = 157385, - [SMALL_STATE(2390)] = 157441, - [SMALL_STATE(2391)] = 157497, - [SMALL_STATE(2392)] = 157553, - [SMALL_STATE(2393)] = 157609, - [SMALL_STATE(2394)] = 157665, - [SMALL_STATE(2395)] = 157721, - [SMALL_STATE(2396)] = 157777, - [SMALL_STATE(2397)] = 157833, - [SMALL_STATE(2398)] = 157889, - [SMALL_STATE(2399)] = 157944, - [SMALL_STATE(2400)] = 157999, - [SMALL_STATE(2401)] = 158054, - [SMALL_STATE(2402)] = 158109, - [SMALL_STATE(2403)] = 158164, - [SMALL_STATE(2404)] = 158219, - [SMALL_STATE(2405)] = 158274, - [SMALL_STATE(2406)] = 158329, - [SMALL_STATE(2407)] = 158384, - [SMALL_STATE(2408)] = 158441, - [SMALL_STATE(2409)] = 158496, - [SMALL_STATE(2410)] = 158551, - [SMALL_STATE(2411)] = 158606, - [SMALL_STATE(2412)] = 158661, - [SMALL_STATE(2413)] = 158716, - [SMALL_STATE(2414)] = 158771, - [SMALL_STATE(2415)] = 158826, - [SMALL_STATE(2416)] = 158881, - [SMALL_STATE(2417)] = 158936, - [SMALL_STATE(2418)] = 158995, - [SMALL_STATE(2419)] = 159050, - [SMALL_STATE(2420)] = 159105, - [SMALL_STATE(2421)] = 159160, - [SMALL_STATE(2422)] = 159219, - [SMALL_STATE(2423)] = 159274, - [SMALL_STATE(2424)] = 159329, - [SMALL_STATE(2425)] = 159384, - [SMALL_STATE(2426)] = 159439, - [SMALL_STATE(2427)] = 159494, - [SMALL_STATE(2428)] = 159549, - [SMALL_STATE(2429)] = 159604, - [SMALL_STATE(2430)] = 159659, - [SMALL_STATE(2431)] = 159714, - [SMALL_STATE(2432)] = 159769, - [SMALL_STATE(2433)] = 159824, - [SMALL_STATE(2434)] = 159879, - [SMALL_STATE(2435)] = 159934, - [SMALL_STATE(2436)] = 159989, - [SMALL_STATE(2437)] = 160044, - [SMALL_STATE(2438)] = 160099, - [SMALL_STATE(2439)] = 160156, - [SMALL_STATE(2440)] = 160211, - [SMALL_STATE(2441)] = 160266, - [SMALL_STATE(2442)] = 160321, - [SMALL_STATE(2443)] = 160376, - [SMALL_STATE(2444)] = 160431, - [SMALL_STATE(2445)] = 160486, - [SMALL_STATE(2446)] = 160541, - [SMALL_STATE(2447)] = 160596, - [SMALL_STATE(2448)] = 160651, - [SMALL_STATE(2449)] = 160706, - [SMALL_STATE(2450)] = 160761, - [SMALL_STATE(2451)] = 160816, - [SMALL_STATE(2452)] = 160871, - [SMALL_STATE(2453)] = 160926, - [SMALL_STATE(2454)] = 160981, - [SMALL_STATE(2455)] = 161036, - [SMALL_STATE(2456)] = 161091, - [SMALL_STATE(2457)] = 161148, - [SMALL_STATE(2458)] = 161203, - [SMALL_STATE(2459)] = 161262, - [SMALL_STATE(2460)] = 161316, - [SMALL_STATE(2461)] = 161370, - [SMALL_STATE(2462)] = 161424, - [SMALL_STATE(2463)] = 161478, - [SMALL_STATE(2464)] = 161532, - [SMALL_STATE(2465)] = 161586, - [SMALL_STATE(2466)] = 161640, - [SMALL_STATE(2467)] = 161694, - [SMALL_STATE(2468)] = 161748, - [SMALL_STATE(2469)] = 161802, - [SMALL_STATE(2470)] = 161856, - [SMALL_STATE(2471)] = 161910, - [SMALL_STATE(2472)] = 161964, - [SMALL_STATE(2473)] = 162018, - [SMALL_STATE(2474)] = 162072, - [SMALL_STATE(2475)] = 162126, - [SMALL_STATE(2476)] = 162180, - [SMALL_STATE(2477)] = 162234, - [SMALL_STATE(2478)] = 162288, - [SMALL_STATE(2479)] = 162342, - [SMALL_STATE(2480)] = 162396, - [SMALL_STATE(2481)] = 162450, - [SMALL_STATE(2482)] = 162504, - [SMALL_STATE(2483)] = 162558, - [SMALL_STATE(2484)] = 162612, - [SMALL_STATE(2485)] = 162666, - [SMALL_STATE(2486)] = 162720, - [SMALL_STATE(2487)] = 162774, - [SMALL_STATE(2488)] = 162828, - [SMALL_STATE(2489)] = 162882, - [SMALL_STATE(2490)] = 162938, - [SMALL_STATE(2491)] = 162992, - [SMALL_STATE(2492)] = 163046, - [SMALL_STATE(2493)] = 163100, - [SMALL_STATE(2494)] = 163152, - [SMALL_STATE(2495)] = 163206, - [SMALL_STATE(2496)] = 163260, - [SMALL_STATE(2497)] = 163314, - [SMALL_STATE(2498)] = 163368, - [SMALL_STATE(2499)] = 163424, - [SMALL_STATE(2500)] = 163478, - [SMALL_STATE(2501)] = 163532, - [SMALL_STATE(2502)] = 163584, - [SMALL_STATE(2503)] = 163638, - [SMALL_STATE(2504)] = 163692, - [SMALL_STATE(2505)] = 163744, - [SMALL_STATE(2506)] = 163798, - [SMALL_STATE(2507)] = 163852, - [SMALL_STATE(2508)] = 163906, - [SMALL_STATE(2509)] = 163960, - [SMALL_STATE(2510)] = 164012, - [SMALL_STATE(2511)] = 164066, - [SMALL_STATE(2512)] = 164118, - [SMALL_STATE(2513)] = 164172, - [SMALL_STATE(2514)] = 164226, - [SMALL_STATE(2515)] = 164280, - [SMALL_STATE(2516)] = 164334, - [SMALL_STATE(2517)] = 164388, - [SMALL_STATE(2518)] = 164442, - [SMALL_STATE(2519)] = 164496, - [SMALL_STATE(2520)] = 164550, - [SMALL_STATE(2521)] = 164604, - [SMALL_STATE(2522)] = 164658, - [SMALL_STATE(2523)] = 164712, - [SMALL_STATE(2524)] = 164766, - [SMALL_STATE(2525)] = 164820, - [SMALL_STATE(2526)] = 164874, - [SMALL_STATE(2527)] = 164928, - [SMALL_STATE(2528)] = 164982, - [SMALL_STATE(2529)] = 165036, - [SMALL_STATE(2530)] = 165090, - [SMALL_STATE(2531)] = 165144, - [SMALL_STATE(2532)] = 165198, - [SMALL_STATE(2533)] = 165251, - [SMALL_STATE(2534)] = 165304, - [SMALL_STATE(2535)] = 165355, - [SMALL_STATE(2536)] = 165408, - [SMALL_STATE(2537)] = 165459, - [SMALL_STATE(2538)] = 165510, - [SMALL_STATE(2539)] = 165563, - [SMALL_STATE(2540)] = 165614, - [SMALL_STATE(2541)] = 165713, - [SMALL_STATE(2542)] = 165766, - [SMALL_STATE(2543)] = 165819, - [SMALL_STATE(2544)] = 165872, - [SMALL_STATE(2545)] = 165923, - [SMALL_STATE(2546)] = 165976, - [SMALL_STATE(2547)] = 166029, - [SMALL_STATE(2548)] = 166082, - [SMALL_STATE(2549)] = 166135, - [SMALL_STATE(2550)] = 166188, - [SMALL_STATE(2551)] = 166241, - [SMALL_STATE(2552)] = 166294, - [SMALL_STATE(2553)] = 166347, - [SMALL_STATE(2554)] = 166402, - [SMALL_STATE(2555)] = 166455, - [SMALL_STATE(2556)] = 166508, - [SMALL_STATE(2557)] = 166561, - [SMALL_STATE(2558)] = 166614, - [SMALL_STATE(2559)] = 166667, - [SMALL_STATE(2560)] = 166720, - [SMALL_STATE(2561)] = 166773, - [SMALL_STATE(2562)] = 166824, - [SMALL_STATE(2563)] = 166877, - [SMALL_STATE(2564)] = 166930, - [SMALL_STATE(2565)] = 166981, - [SMALL_STATE(2566)] = 167034, - [SMALL_STATE(2567)] = 167087, - [SMALL_STATE(2568)] = 167140, - [SMALL_STATE(2569)] = 167193, - [SMALL_STATE(2570)] = 167246, - [SMALL_STATE(2571)] = 167345, - [SMALL_STATE(2572)] = 167396, - [SMALL_STATE(2573)] = 167449, - [SMALL_STATE(2574)] = 167502, - [SMALL_STATE(2575)] = 167555, - [SMALL_STATE(2576)] = 167654, - [SMALL_STATE(2577)] = 167709, - [SMALL_STATE(2578)] = 167762, - [SMALL_STATE(2579)] = 167815, - [SMALL_STATE(2580)] = 167868, - [SMALL_STATE(2581)] = 167921, - [SMALL_STATE(2582)] = 167974, - [SMALL_STATE(2583)] = 168027, - [SMALL_STATE(2584)] = 168080, - [SMALL_STATE(2585)] = 168133, - [SMALL_STATE(2586)] = 168186, - [SMALL_STATE(2587)] = 168239, - [SMALL_STATE(2588)] = 168292, - [SMALL_STATE(2589)] = 168343, - [SMALL_STATE(2590)] = 168396, - [SMALL_STATE(2591)] = 168449, - [SMALL_STATE(2592)] = 168502, - [SMALL_STATE(2593)] = 168555, - [SMALL_STATE(2594)] = 168608, - [SMALL_STATE(2595)] = 168707, - [SMALL_STATE(2596)] = 168758, - [SMALL_STATE(2597)] = 168811, - [SMALL_STATE(2598)] = 168864, - [SMALL_STATE(2599)] = 168917, - [SMALL_STATE(2600)] = 168970, - [SMALL_STATE(2601)] = 169023, - [SMALL_STATE(2602)] = 169076, - [SMALL_STATE(2603)] = 169129, - [SMALL_STATE(2604)] = 169180, - [SMALL_STATE(2605)] = 169264, - [SMALL_STATE(2606)] = 169316, - [SMALL_STATE(2607)] = 169368, - [SMALL_STATE(2608)] = 169420, - [SMALL_STATE(2609)] = 169472, - [SMALL_STATE(2610)] = 169524, - [SMALL_STATE(2611)] = 169576, - [SMALL_STATE(2612)] = 169628, - [SMALL_STATE(2613)] = 169712, - [SMALL_STATE(2614)] = 169764, - [SMALL_STATE(2615)] = 169848, - [SMALL_STATE(2616)] = 169900, - [SMALL_STATE(2617)] = 169984, - [SMALL_STATE(2618)] = 170036, - [SMALL_STATE(2619)] = 170088, - [SMALL_STATE(2620)] = 170140, - [SMALL_STATE(2621)] = 170192, - [SMALL_STATE(2622)] = 170244, - [SMALL_STATE(2623)] = 170296, - [SMALL_STATE(2624)] = 170348, - [SMALL_STATE(2625)] = 170400, - [SMALL_STATE(2626)] = 170452, - [SMALL_STATE(2627)] = 170504, - [SMALL_STATE(2628)] = 170556, - [SMALL_STATE(2629)] = 170608, - [SMALL_STATE(2630)] = 170660, - [SMALL_STATE(2631)] = 170712, - [SMALL_STATE(2632)] = 170764, - [SMALL_STATE(2633)] = 170816, - [SMALL_STATE(2634)] = 170868, - [SMALL_STATE(2635)] = 170920, - [SMALL_STATE(2636)] = 170972, - [SMALL_STATE(2637)] = 171024, - [SMALL_STATE(2638)] = 171076, - [SMALL_STATE(2639)] = 171128, - [SMALL_STATE(2640)] = 171180, - [SMALL_STATE(2641)] = 171232, - [SMALL_STATE(2642)] = 171284, - [SMALL_STATE(2643)] = 171336, - [SMALL_STATE(2644)] = 171388, - [SMALL_STATE(2645)] = 171440, - [SMALL_STATE(2646)] = 171492, - [SMALL_STATE(2647)] = 171544, - [SMALL_STATE(2648)] = 171596, - [SMALL_STATE(2649)] = 171648, - [SMALL_STATE(2650)] = 171700, - [SMALL_STATE(2651)] = 171752, - [SMALL_STATE(2652)] = 171804, - [SMALL_STATE(2653)] = 171856, - [SMALL_STATE(2654)] = 171908, - [SMALL_STATE(2655)] = 171960, - [SMALL_STATE(2656)] = 172012, - [SMALL_STATE(2657)] = 172064, - [SMALL_STATE(2658)] = 172116, - [SMALL_STATE(2659)] = 172168, - [SMALL_STATE(2660)] = 172220, - [SMALL_STATE(2661)] = 172272, - [SMALL_STATE(2662)] = 172324, - [SMALL_STATE(2663)] = 172376, - [SMALL_STATE(2664)] = 172430, - [SMALL_STATE(2665)] = 172482, - [SMALL_STATE(2666)] = 172534, - [SMALL_STATE(2667)] = 172588, - [SMALL_STATE(2668)] = 172640, - [SMALL_STATE(2669)] = 172692, - [SMALL_STATE(2670)] = 172746, - [SMALL_STATE(2671)] = 172798, - [SMALL_STATE(2672)] = 172850, - [SMALL_STATE(2673)] = 172902, - [SMALL_STATE(2674)] = 172954, - [SMALL_STATE(2675)] = 173006, - [SMALL_STATE(2676)] = 173058, - [SMALL_STATE(2677)] = 173110, - [SMALL_STATE(2678)] = 173188, - [SMALL_STATE(2679)] = 173266, - [SMALL_STATE(2680)] = 173344, - [SMALL_STATE(2681)] = 173422, - [SMALL_STATE(2682)] = 173500, - [SMALL_STATE(2683)] = 173578, - [SMALL_STATE(2684)] = 173656, - [SMALL_STATE(2685)] = 173734, - [SMALL_STATE(2686)] = 173812, - [SMALL_STATE(2687)] = 173890, - [SMALL_STATE(2688)] = 173968, - [SMALL_STATE(2689)] = 174046, - [SMALL_STATE(2690)] = 174124, - [SMALL_STATE(2691)] = 174202, - [SMALL_STATE(2692)] = 174280, - [SMALL_STATE(2693)] = 174358, - [SMALL_STATE(2694)] = 174436, - [SMALL_STATE(2695)] = 174514, - [SMALL_STATE(2696)] = 174592, - [SMALL_STATE(2697)] = 174657, - [SMALL_STATE(2698)] = 174722, - [SMALL_STATE(2699)] = 174797, - [SMALL_STATE(2700)] = 174860, - [SMALL_STATE(2701)] = 174936, - [SMALL_STATE(2702)] = 174998, - [SMALL_STATE(2703)] = 175062, - [SMALL_STATE(2704)] = 175124, - [SMALL_STATE(2705)] = 175198, - [SMALL_STATE(2706)] = 175274, - [SMALL_STATE(2707)] = 175338, - [SMALL_STATE(2708)] = 175402, - [SMALL_STATE(2709)] = 175466, - [SMALL_STATE(2710)] = 175509, - [SMALL_STATE(2711)] = 175552, - [SMALL_STATE(2712)] = 175595, - [SMALL_STATE(2713)] = 175638, - [SMALL_STATE(2714)] = 175681, - [SMALL_STATE(2715)] = 175724, - [SMALL_STATE(2716)] = 175767, - [SMALL_STATE(2717)] = 175810, - [SMALL_STATE(2718)] = 175853, - [SMALL_STATE(2719)] = 175896, - [SMALL_STATE(2720)] = 175939, - [SMALL_STATE(2721)] = 175982, - [SMALL_STATE(2722)] = 176025, - [SMALL_STATE(2723)] = 176068, - [SMALL_STATE(2724)] = 176111, - [SMALL_STATE(2725)] = 176154, - [SMALL_STATE(2726)] = 176197, - [SMALL_STATE(2727)] = 176240, - [SMALL_STATE(2728)] = 176283, - [SMALL_STATE(2729)] = 176326, - [SMALL_STATE(2730)] = 176369, - [SMALL_STATE(2731)] = 176412, - [SMALL_STATE(2732)] = 176455, - [SMALL_STATE(2733)] = 176498, - [SMALL_STATE(2734)] = 176541, - [SMALL_STATE(2735)] = 176584, - [SMALL_STATE(2736)] = 176627, - [SMALL_STATE(2737)] = 176670, - [SMALL_STATE(2738)] = 176713, - [SMALL_STATE(2739)] = 176756, - [SMALL_STATE(2740)] = 176799, - [SMALL_STATE(2741)] = 176842, - [SMALL_STATE(2742)] = 176885, - [SMALL_STATE(2743)] = 176928, - [SMALL_STATE(2744)] = 176971, - [SMALL_STATE(2745)] = 177014, - [SMALL_STATE(2746)] = 177057, - [SMALL_STATE(2747)] = 177100, - [SMALL_STATE(2748)] = 177143, - [SMALL_STATE(2749)] = 177186, - [SMALL_STATE(2750)] = 177229, - [SMALL_STATE(2751)] = 177290, - [SMALL_STATE(2752)] = 177333, - [SMALL_STATE(2753)] = 177376, - [SMALL_STATE(2754)] = 177419, - [SMALL_STATE(2755)] = 177462, - [SMALL_STATE(2756)] = 177505, - [SMALL_STATE(2757)] = 177548, - [SMALL_STATE(2758)] = 177591, - [SMALL_STATE(2759)] = 177634, - [SMALL_STATE(2760)] = 177677, - [SMALL_STATE(2761)] = 177720, - [SMALL_STATE(2762)] = 177763, - [SMALL_STATE(2763)] = 177806, - [SMALL_STATE(2764)] = 177849, - [SMALL_STATE(2765)] = 177892, - [SMALL_STATE(2766)] = 177935, - [SMALL_STATE(2767)] = 177978, - [SMALL_STATE(2768)] = 178021, - [SMALL_STATE(2769)] = 178064, - [SMALL_STATE(2770)] = 178127, - [SMALL_STATE(2771)] = 178170, - [SMALL_STATE(2772)] = 178233, - [SMALL_STATE(2773)] = 178276, - [SMALL_STATE(2774)] = 178318, - [SMALL_STATE(2775)] = 178360, - [SMALL_STATE(2776)] = 178402, - [SMALL_STATE(2777)] = 178462, - [SMALL_STATE(2778)] = 178504, - [SMALL_STATE(2779)] = 178546, - [SMALL_STATE(2780)] = 178588, - [SMALL_STATE(2781)] = 178630, - [SMALL_STATE(2782)] = 178690, - [SMALL_STATE(2783)] = 178732, - [SMALL_STATE(2784)] = 178774, - [SMALL_STATE(2785)] = 178816, - [SMALL_STATE(2786)] = 178858, - [SMALL_STATE(2787)] = 178900, - [SMALL_STATE(2788)] = 178942, - [SMALL_STATE(2789)] = 178984, - [SMALL_STATE(2790)] = 179026, - [SMALL_STATE(2791)] = 179068, - [SMALL_STATE(2792)] = 179110, - [SMALL_STATE(2793)] = 179152, - [SMALL_STATE(2794)] = 179194, - [SMALL_STATE(2795)] = 179236, - [SMALL_STATE(2796)] = 179278, - [SMALL_STATE(2797)] = 179320, - [SMALL_STATE(2798)] = 179362, - [SMALL_STATE(2799)] = 179404, - [SMALL_STATE(2800)] = 179446, - [SMALL_STATE(2801)] = 179488, - [SMALL_STATE(2802)] = 179530, - [SMALL_STATE(2803)] = 179572, - [SMALL_STATE(2804)] = 179614, - [SMALL_STATE(2805)] = 179656, - [SMALL_STATE(2806)] = 179698, - [SMALL_STATE(2807)] = 179740, - [SMALL_STATE(2808)] = 179782, - [SMALL_STATE(2809)] = 179824, - [SMALL_STATE(2810)] = 179866, - [SMALL_STATE(2811)] = 179908, - [SMALL_STATE(2812)] = 179950, - [SMALL_STATE(2813)] = 179992, - [SMALL_STATE(2814)] = 180034, - [SMALL_STATE(2815)] = 180076, - [SMALL_STATE(2816)] = 180118, - [SMALL_STATE(2817)] = 180160, - [SMALL_STATE(2818)] = 180202, - [SMALL_STATE(2819)] = 180244, - [SMALL_STATE(2820)] = 180286, - [SMALL_STATE(2821)] = 180328, - [SMALL_STATE(2822)] = 180370, - [SMALL_STATE(2823)] = 180412, - [SMALL_STATE(2824)] = 180454, - [SMALL_STATE(2825)] = 180496, - [SMALL_STATE(2826)] = 180538, - [SMALL_STATE(2827)] = 180580, - [SMALL_STATE(2828)] = 180622, - [SMALL_STATE(2829)] = 180664, - [SMALL_STATE(2830)] = 180740, - [SMALL_STATE(2831)] = 180782, - [SMALL_STATE(2832)] = 180824, - [SMALL_STATE(2833)] = 180866, - [SMALL_STATE(2834)] = 180908, - [SMALL_STATE(2835)] = 180950, - [SMALL_STATE(2836)] = 180992, - [SMALL_STATE(2837)] = 181034, - [SMALL_STATE(2838)] = 181075, - [SMALL_STATE(2839)] = 181116, - [SMALL_STATE(2840)] = 181157, - [SMALL_STATE(2841)] = 181198, - [SMALL_STATE(2842)] = 181239, - [SMALL_STATE(2843)] = 181280, - [SMALL_STATE(2844)] = 181321, - [SMALL_STATE(2845)] = 181362, - [SMALL_STATE(2846)] = 181403, - [SMALL_STATE(2847)] = 181450, - [SMALL_STATE(2848)] = 181511, - [SMALL_STATE(2849)] = 181552, - [SMALL_STATE(2850)] = 181593, - [SMALL_STATE(2851)] = 181652, - [SMALL_STATE(2852)] = 181693, - [SMALL_STATE(2853)] = 181734, - [SMALL_STATE(2854)] = 181775, - [SMALL_STATE(2855)] = 181836, - [SMALL_STATE(2856)] = 181877, - [SMALL_STATE(2857)] = 181918, - [SMALL_STATE(2858)] = 181959, - [SMALL_STATE(2859)] = 182000, - [SMALL_STATE(2860)] = 182041, - [SMALL_STATE(2861)] = 182082, - [SMALL_STATE(2862)] = 182123, - [SMALL_STATE(2863)] = 182164, - [SMALL_STATE(2864)] = 182205, - [SMALL_STATE(2865)] = 182246, - [SMALL_STATE(2866)] = 182287, - [SMALL_STATE(2867)] = 182328, - [SMALL_STATE(2868)] = 182369, - [SMALL_STATE(2869)] = 182410, - [SMALL_STATE(2870)] = 182451, - [SMALL_STATE(2871)] = 182492, - [SMALL_STATE(2872)] = 182533, - [SMALL_STATE(2873)] = 182574, - [SMALL_STATE(2874)] = 182615, - [SMALL_STATE(2875)] = 182656, - [SMALL_STATE(2876)] = 182697, - [SMALL_STATE(2877)] = 182738, - [SMALL_STATE(2878)] = 182779, - [SMALL_STATE(2879)] = 182820, - [SMALL_STATE(2880)] = 182861, - [SMALL_STATE(2881)] = 182902, - [SMALL_STATE(2882)] = 182943, - [SMALL_STATE(2883)] = 182984, - [SMALL_STATE(2884)] = 183025, - [SMALL_STATE(2885)] = 183066, - [SMALL_STATE(2886)] = 183107, - [SMALL_STATE(2887)] = 183148, - [SMALL_STATE(2888)] = 183189, - [SMALL_STATE(2889)] = 183230, - [SMALL_STATE(2890)] = 183271, - [SMALL_STATE(2891)] = 183312, - [SMALL_STATE(2892)] = 183353, - [SMALL_STATE(2893)] = 183394, - [SMALL_STATE(2894)] = 183435, - [SMALL_STATE(2895)] = 183476, - [SMALL_STATE(2896)] = 183517, - [SMALL_STATE(2897)] = 183558, - [SMALL_STATE(2898)] = 183599, - [SMALL_STATE(2899)] = 183640, - [SMALL_STATE(2900)] = 183681, - [SMALL_STATE(2901)] = 183722, - [SMALL_STATE(2902)] = 183763, - [SMALL_STATE(2903)] = 183804, - [SMALL_STATE(2904)] = 183844, - [SMALL_STATE(2905)] = 183890, - [SMALL_STATE(2906)] = 183958, - [SMALL_STATE(2907)] = 184026, - [SMALL_STATE(2908)] = 184094, - [SMALL_STATE(2909)] = 184150, - [SMALL_STATE(2910)] = 184196, - [SMALL_STATE(2911)] = 184242, - [SMALL_STATE(2912)] = 184310, - [SMALL_STATE(2913)] = 184378, - [SMALL_STATE(2914)] = 184446, - [SMALL_STATE(2915)] = 184492, - [SMALL_STATE(2916)] = 184538, - [SMALL_STATE(2917)] = 184606, - [SMALL_STATE(2918)] = 184674, - [SMALL_STATE(2919)] = 184720, - [SMALL_STATE(2920)] = 184760, - [SMALL_STATE(2921)] = 184821, - [SMALL_STATE(2922)] = 184860, - [SMALL_STATE(2923)] = 184899, - [SMALL_STATE(2924)] = 184942, - [SMALL_STATE(2925)] = 184981, - [SMALL_STATE(2926)] = 185024, - [SMALL_STATE(2927)] = 185083, - [SMALL_STATE(2928)] = 185122, - [SMALL_STATE(2929)] = 185183, - [SMALL_STATE(2930)] = 185222, - [SMALL_STATE(2931)] = 185261, - [SMALL_STATE(2932)] = 185321, - [SMALL_STATE(2933)] = 185381, - [SMALL_STATE(2934)] = 185441, - [SMALL_STATE(2935)] = 185501, - [SMALL_STATE(2936)] = 185561, - [SMALL_STATE(2937)] = 185621, - [SMALL_STATE(2938)] = 185659, - [SMALL_STATE(2939)] = 185719, - [SMALL_STATE(2940)] = 185779, - [SMALL_STATE(2941)] = 185839, - [SMALL_STATE(2942)] = 185883, - [SMALL_STATE(2943)] = 185943, - [SMALL_STATE(2944)] = 185983, - [SMALL_STATE(2945)] = 186043, - [SMALL_STATE(2946)] = 186103, - [SMALL_STATE(2947)] = 186163, - [SMALL_STATE(2948)] = 186223, - [SMALL_STATE(2949)] = 186283, - [SMALL_STATE(2950)] = 186321, - [SMALL_STATE(2951)] = 186381, - [SMALL_STATE(2952)] = 186441, - [SMALL_STATE(2953)] = 186501, - [SMALL_STATE(2954)] = 186561, - [SMALL_STATE(2955)] = 186621, - [SMALL_STATE(2956)] = 186681, - [SMALL_STATE(2957)] = 186741, - [SMALL_STATE(2958)] = 186779, - [SMALL_STATE(2959)] = 186839, - [SMALL_STATE(2960)] = 186899, - [SMALL_STATE(2961)] = 186959, - [SMALL_STATE(2962)] = 187019, - [SMALL_STATE(2963)] = 187079, - [SMALL_STATE(2964)] = 187139, - [SMALL_STATE(2965)] = 187177, - [SMALL_STATE(2966)] = 187237, - [SMALL_STATE(2967)] = 187297, - [SMALL_STATE(2968)] = 187357, - [SMALL_STATE(2969)] = 187417, - [SMALL_STATE(2970)] = 187455, - [SMALL_STATE(2971)] = 187515, - [SMALL_STATE(2972)] = 187575, - [SMALL_STATE(2973)] = 187635, - [SMALL_STATE(2974)] = 187695, - [SMALL_STATE(2975)] = 187755, - [SMALL_STATE(2976)] = 187815, - [SMALL_STATE(2977)] = 187875, - [SMALL_STATE(2978)] = 187935, - [SMALL_STATE(2979)] = 187995, - [SMALL_STATE(2980)] = 188055, - [SMALL_STATE(2981)] = 188115, - [SMALL_STATE(2982)] = 188175, - [SMALL_STATE(2983)] = 188235, - [SMALL_STATE(2984)] = 188295, - [SMALL_STATE(2985)] = 188355, - [SMALL_STATE(2986)] = 188415, - [SMALL_STATE(2987)] = 188475, - [SMALL_STATE(2988)] = 188513, - [SMALL_STATE(2989)] = 188573, - [SMALL_STATE(2990)] = 188637, - [SMALL_STATE(2991)] = 188697, - [SMALL_STATE(2992)] = 188757, - [SMALL_STATE(2993)] = 188817, - [SMALL_STATE(2994)] = 188855, - [SMALL_STATE(2995)] = 188919, - [SMALL_STATE(2996)] = 188977, - [SMALL_STATE(2997)] = 189037, - [SMALL_STATE(2998)] = 189097, - [SMALL_STATE(2999)] = 189157, - [SMALL_STATE(3000)] = 189217, - [SMALL_STATE(3001)] = 189277, - [SMALL_STATE(3002)] = 189337, - [SMALL_STATE(3003)] = 189397, - [SMALL_STATE(3004)] = 189457, - [SMALL_STATE(3005)] = 189517, - [SMALL_STATE(3006)] = 189577, - [SMALL_STATE(3007)] = 189637, - [SMALL_STATE(3008)] = 189697, - [SMALL_STATE(3009)] = 189735, - [SMALL_STATE(3010)] = 189795, - [SMALL_STATE(3011)] = 189855, - [SMALL_STATE(3012)] = 189915, - [SMALL_STATE(3013)] = 189975, - [SMALL_STATE(3014)] = 190035, - [SMALL_STATE(3015)] = 190095, - [SMALL_STATE(3016)] = 190133, - [SMALL_STATE(3017)] = 190171, - [SMALL_STATE(3018)] = 190209, - [SMALL_STATE(3019)] = 190247, - [SMALL_STATE(3020)] = 190307, - [SMALL_STATE(3021)] = 190367, - [SMALL_STATE(3022)] = 190427, - [SMALL_STATE(3023)] = 190487, - [SMALL_STATE(3024)] = 190525, - [SMALL_STATE(3025)] = 190585, - [SMALL_STATE(3026)] = 190645, - [SMALL_STATE(3027)] = 190705, - [SMALL_STATE(3028)] = 190743, - [SMALL_STATE(3029)] = 190803, - [SMALL_STATE(3030)] = 190863, - [SMALL_STATE(3031)] = 190923, - [SMALL_STATE(3032)] = 190983, - [SMALL_STATE(3033)] = 191043, - [SMALL_STATE(3034)] = 191103, - [SMALL_STATE(3035)] = 191163, - [SMALL_STATE(3036)] = 191223, - [SMALL_STATE(3037)] = 191283, - [SMALL_STATE(3038)] = 191321, - [SMALL_STATE(3039)] = 191381, - [SMALL_STATE(3040)] = 191441, - [SMALL_STATE(3041)] = 191501, - [SMALL_STATE(3042)] = 191561, - [SMALL_STATE(3043)] = 191599, - [SMALL_STATE(3044)] = 191659, - [SMALL_STATE(3045)] = 191719, - [SMALL_STATE(3046)] = 191757, - [SMALL_STATE(3047)] = 191795, - [SMALL_STATE(3048)] = 191855, - [SMALL_STATE(3049)] = 191915, - [SMALL_STATE(3050)] = 191975, - [SMALL_STATE(3051)] = 192035, - [SMALL_STATE(3052)] = 192073, - [SMALL_STATE(3053)] = 192111, - [SMALL_STATE(3054)] = 192171, - [SMALL_STATE(3055)] = 192231, - [SMALL_STATE(3056)] = 192291, - [SMALL_STATE(3057)] = 192351, - [SMALL_STATE(3058)] = 192411, - [SMALL_STATE(3059)] = 192471, - [SMALL_STATE(3060)] = 192531, - [SMALL_STATE(3061)] = 192591, - [SMALL_STATE(3062)] = 192629, - [SMALL_STATE(3063)] = 192667, - [SMALL_STATE(3064)] = 192705, - [SMALL_STATE(3065)] = 192765, - [SMALL_STATE(3066)] = 192803, - [SMALL_STATE(3067)] = 192841, - [SMALL_STATE(3068)] = 192901, - [SMALL_STATE(3069)] = 192961, - [SMALL_STATE(3070)] = 193021, - [SMALL_STATE(3071)] = 193059, - [SMALL_STATE(3072)] = 193119, - [SMALL_STATE(3073)] = 193179, - [SMALL_STATE(3074)] = 193239, - [SMALL_STATE(3075)] = 193277, - [SMALL_STATE(3076)] = 193315, - [SMALL_STATE(3077)] = 193375, - [SMALL_STATE(3078)] = 193435, - [SMALL_STATE(3079)] = 193495, - [SMALL_STATE(3080)] = 193533, - [SMALL_STATE(3081)] = 193593, - [SMALL_STATE(3082)] = 193653, - [SMALL_STATE(3083)] = 193713, - [SMALL_STATE(3084)] = 193773, - [SMALL_STATE(3085)] = 193833, - [SMALL_STATE(3086)] = 193893, - [SMALL_STATE(3087)] = 193953, - [SMALL_STATE(3088)] = 194013, - [SMALL_STATE(3089)] = 194077, - [SMALL_STATE(3090)] = 194115, - [SMALL_STATE(3091)] = 194175, - [SMALL_STATE(3092)] = 194235, - [SMALL_STATE(3093)] = 194295, - [SMALL_STATE(3094)] = 194355, - [SMALL_STATE(3095)] = 194415, - [SMALL_STATE(3096)] = 194475, - [SMALL_STATE(3097)] = 194535, - [SMALL_STATE(3098)] = 194595, - [SMALL_STATE(3099)] = 194633, - [SMALL_STATE(3100)] = 194671, - [SMALL_STATE(3101)] = 194709, - [SMALL_STATE(3102)] = 194769, - [SMALL_STATE(3103)] = 194829, - [SMALL_STATE(3104)] = 194889, - [SMALL_STATE(3105)] = 194949, - [SMALL_STATE(3106)] = 195009, - [SMALL_STATE(3107)] = 195069, - [SMALL_STATE(3108)] = 195129, - [SMALL_STATE(3109)] = 195189, - [SMALL_STATE(3110)] = 195227, - [SMALL_STATE(3111)] = 195265, - [SMALL_STATE(3112)] = 195325, - [SMALL_STATE(3113)] = 195385, - [SMALL_STATE(3114)] = 195445, - [SMALL_STATE(3115)] = 195505, - [SMALL_STATE(3116)] = 195565, - [SMALL_STATE(3117)] = 195625, - [SMALL_STATE(3118)] = 195685, - [SMALL_STATE(3119)] = 195745, - [SMALL_STATE(3120)] = 195783, - [SMALL_STATE(3121)] = 195843, - [SMALL_STATE(3122)] = 195881, - [SMALL_STATE(3123)] = 195941, - [SMALL_STATE(3124)] = 195979, - [SMALL_STATE(3125)] = 196017, - [SMALL_STATE(3126)] = 196077, - [SMALL_STATE(3127)] = 196115, - [SMALL_STATE(3128)] = 196175, - [SMALL_STATE(3129)] = 196235, - [SMALL_STATE(3130)] = 196295, - [SMALL_STATE(3131)] = 196333, - [SMALL_STATE(3132)] = 196393, - [SMALL_STATE(3133)] = 196453, - [SMALL_STATE(3134)] = 196513, - [SMALL_STATE(3135)] = 196551, - [SMALL_STATE(3136)] = 196611, - [SMALL_STATE(3137)] = 196671, - [SMALL_STATE(3138)] = 196731, - [SMALL_STATE(3139)] = 196768, - [SMALL_STATE(3140)] = 196805, - [SMALL_STATE(3141)] = 196842, - [SMALL_STATE(3142)] = 196879, - [SMALL_STATE(3143)] = 196916, - [SMALL_STATE(3144)] = 196953, - [SMALL_STATE(3145)] = 196990, - [SMALL_STATE(3146)] = 197027, - [SMALL_STATE(3147)] = 197064, - [SMALL_STATE(3148)] = 197101, - [SMALL_STATE(3149)] = 197138, - [SMALL_STATE(3150)] = 197175, - [SMALL_STATE(3151)] = 197212, - [SMALL_STATE(3152)] = 197249, - [SMALL_STATE(3153)] = 197286, - [SMALL_STATE(3154)] = 197323, - [SMALL_STATE(3155)] = 197360, - [SMALL_STATE(3156)] = 197417, - [SMALL_STATE(3157)] = 197454, - [SMALL_STATE(3158)] = 197491, - [SMALL_STATE(3159)] = 197528, - [SMALL_STATE(3160)] = 197565, - [SMALL_STATE(3161)] = 197624, - [SMALL_STATE(3162)] = 197667, - [SMALL_STATE(3163)] = 197704, - [SMALL_STATE(3164)] = 197741, - [SMALL_STATE(3165)] = 197778, - [SMALL_STATE(3166)] = 197815, - [SMALL_STATE(3167)] = 197852, - [SMALL_STATE(3168)] = 197889, - [SMALL_STATE(3169)] = 197926, - [SMALL_STATE(3170)] = 197963, - [SMALL_STATE(3171)] = 198000, - [SMALL_STATE(3172)] = 198037, - [SMALL_STATE(3173)] = 198074, - [SMALL_STATE(3174)] = 198111, - [SMALL_STATE(3175)] = 198170, - [SMALL_STATE(3176)] = 198207, - [SMALL_STATE(3177)] = 198244, - [SMALL_STATE(3178)] = 198281, - [SMALL_STATE(3179)] = 198318, - [SMALL_STATE(3180)] = 198355, - [SMALL_STATE(3181)] = 198392, - [SMALL_STATE(3182)] = 198429, - [SMALL_STATE(3183)] = 198466, - [SMALL_STATE(3184)] = 198503, - [SMALL_STATE(3185)] = 198540, - [SMALL_STATE(3186)] = 198577, - [SMALL_STATE(3187)] = 198614, - [SMALL_STATE(3188)] = 198651, - [SMALL_STATE(3189)] = 198688, - [SMALL_STATE(3190)] = 198725, - [SMALL_STATE(3191)] = 198762, - [SMALL_STATE(3192)] = 198799, - [SMALL_STATE(3193)] = 198836, - [SMALL_STATE(3194)] = 198873, - [SMALL_STATE(3195)] = 198910, - [SMALL_STATE(3196)] = 198967, - [SMALL_STATE(3197)] = 199004, - [SMALL_STATE(3198)] = 199041, - [SMALL_STATE(3199)] = 199078, - [SMALL_STATE(3200)] = 199115, - [SMALL_STATE(3201)] = 199152, - [SMALL_STATE(3202)] = 199189, - [SMALL_STATE(3203)] = 199226, - [SMALL_STATE(3204)] = 199263, - [SMALL_STATE(3205)] = 199300, - [SMALL_STATE(3206)] = 199337, - [SMALL_STATE(3207)] = 199374, - [SMALL_STATE(3208)] = 199411, - [SMALL_STATE(3209)] = 199448, - [SMALL_STATE(3210)] = 199485, - [SMALL_STATE(3211)] = 199522, - [SMALL_STATE(3212)] = 199559, - [SMALL_STATE(3213)] = 199614, - [SMALL_STATE(3214)] = 199673, - [SMALL_STATE(3215)] = 199710, - [SMALL_STATE(3216)] = 199747, - [SMALL_STATE(3217)] = 199790, - [SMALL_STATE(3218)] = 199827, - [SMALL_STATE(3219)] = 199864, - [SMALL_STATE(3220)] = 199901, - [SMALL_STATE(3221)] = 199938, - [SMALL_STATE(3222)] = 199975, - [SMALL_STATE(3223)] = 200012, - [SMALL_STATE(3224)] = 200049, - [SMALL_STATE(3225)] = 200086, - [SMALL_STATE(3226)] = 200123, - [SMALL_STATE(3227)] = 200160, - [SMALL_STATE(3228)] = 200197, - [SMALL_STATE(3229)] = 200234, - [SMALL_STATE(3230)] = 200271, - [SMALL_STATE(3231)] = 200308, - [SMALL_STATE(3232)] = 200345, - [SMALL_STATE(3233)] = 200382, - [SMALL_STATE(3234)] = 200419, - [SMALL_STATE(3235)] = 200456, - [SMALL_STATE(3236)] = 200493, - [SMALL_STATE(3237)] = 200530, - [SMALL_STATE(3238)] = 200587, - [SMALL_STATE(3239)] = 200624, - [SMALL_STATE(3240)] = 200661, - [SMALL_STATE(3241)] = 200698, - [SMALL_STATE(3242)] = 200735, - [SMALL_STATE(3243)] = 200772, - [SMALL_STATE(3244)] = 200809, - [SMALL_STATE(3245)] = 200846, - [SMALL_STATE(3246)] = 200883, - [SMALL_STATE(3247)] = 200920, - [SMALL_STATE(3248)] = 200956, - [SMALL_STATE(3249)] = 200992, - [SMALL_STATE(3250)] = 201048, - [SMALL_STATE(3251)] = 201084, - [SMALL_STATE(3252)] = 201138, - [SMALL_STATE(3253)] = 201194, - [SMALL_STATE(3254)] = 201250, - [SMALL_STATE(3255)] = 201286, - [SMALL_STATE(3256)] = 201342, - [SMALL_STATE(3257)] = 201396, - [SMALL_STATE(3258)] = 201432, - [SMALL_STATE(3259)] = 201468, - [SMALL_STATE(3260)] = 201522, - [SMALL_STATE(3261)] = 201558, - [SMALL_STATE(3262)] = 201614, - [SMALL_STATE(3263)] = 201670, - [SMALL_STATE(3264)] = 201726, - [SMALL_STATE(3265)] = 201780, - [SMALL_STATE(3266)] = 201816, - [SMALL_STATE(3267)] = 201852, - [SMALL_STATE(3268)] = 201888, - [SMALL_STATE(3269)] = 201924, - [SMALL_STATE(3270)] = 201960, - [SMALL_STATE(3271)] = 201996, - [SMALL_STATE(3272)] = 202032, - [SMALL_STATE(3273)] = 202068, - [SMALL_STATE(3274)] = 202104, - [SMALL_STATE(3275)] = 202140, - [SMALL_STATE(3276)] = 202176, - [SMALL_STATE(3277)] = 202212, - [SMALL_STATE(3278)] = 202248, - [SMALL_STATE(3279)] = 202284, - [SMALL_STATE(3280)] = 202320, - [SMALL_STATE(3281)] = 202374, - [SMALL_STATE(3282)] = 202410, - [SMALL_STATE(3283)] = 202446, - [SMALL_STATE(3284)] = 202482, - [SMALL_STATE(3285)] = 202518, - [SMALL_STATE(3286)] = 202554, - [SMALL_STATE(3287)] = 202590, - [SMALL_STATE(3288)] = 202626, - [SMALL_STATE(3289)] = 202662, - [SMALL_STATE(3290)] = 202716, - [SMALL_STATE(3291)] = 202770, - [SMALL_STATE(3292)] = 202826, - [SMALL_STATE(3293)] = 202862, - [SMALL_STATE(3294)] = 202916, - [SMALL_STATE(3295)] = 202972, - [SMALL_STATE(3296)] = 203028, - [SMALL_STATE(3297)] = 203064, - [SMALL_STATE(3298)] = 203100, - [SMALL_STATE(3299)] = 203136, - [SMALL_STATE(3300)] = 203190, - [SMALL_STATE(3301)] = 203226, - [SMALL_STATE(3302)] = 203262, - [SMALL_STATE(3303)] = 203298, - [SMALL_STATE(3304)] = 203334, - [SMALL_STATE(3305)] = 203370, - [SMALL_STATE(3306)] = 203406, - [SMALL_STATE(3307)] = 203442, - [SMALL_STATE(3308)] = 203478, - [SMALL_STATE(3309)] = 203532, - [SMALL_STATE(3310)] = 203568, - [SMALL_STATE(3311)] = 203604, - [SMALL_STATE(3312)] = 203640, - [SMALL_STATE(3313)] = 203676, - [SMALL_STATE(3314)] = 203718, - [SMALL_STATE(3315)] = 203754, - [SMALL_STATE(3316)] = 203790, - [SMALL_STATE(3317)] = 203846, - [SMALL_STATE(3318)] = 203882, - [SMALL_STATE(3319)] = 203918, - [SMALL_STATE(3320)] = 203954, - [SMALL_STATE(3321)] = 203990, - [SMALL_STATE(3322)] = 204026, - [SMALL_STATE(3323)] = 204062, - [SMALL_STATE(3324)] = 204117, - [SMALL_STATE(3325)] = 204160, - [SMALL_STATE(3326)] = 204195, - [SMALL_STATE(3327)] = 204248, - [SMALL_STATE(3328)] = 204283, - [SMALL_STATE(3329)] = 204336, - [SMALL_STATE(3330)] = 204371, - [SMALL_STATE(3331)] = 204406, - [SMALL_STATE(3332)] = 204441, - [SMALL_STATE(3333)] = 204476, - [SMALL_STATE(3334)] = 204511, - [SMALL_STATE(3335)] = 204564, - [SMALL_STATE(3336)] = 204599, - [SMALL_STATE(3337)] = 204634, - [SMALL_STATE(3338)] = 204669, - [SMALL_STATE(3339)] = 204722, - [SMALL_STATE(3340)] = 204757, - [SMALL_STATE(3341)] = 204800, - [SMALL_STATE(3342)] = 204853, - [SMALL_STATE(3343)] = 204906, - [SMALL_STATE(3344)] = 204959, - [SMALL_STATE(3345)] = 205002, - [SMALL_STATE(3346)] = 205045, - [SMALL_STATE(3347)] = 205098, - [SMALL_STATE(3348)] = 205141, - [SMALL_STATE(3349)] = 205194, - [SMALL_STATE(3350)] = 205237, - [SMALL_STATE(3351)] = 205290, - [SMALL_STATE(3352)] = 205343, - [SMALL_STATE(3353)] = 205386, - [SMALL_STATE(3354)] = 205429, - [SMALL_STATE(3355)] = 205482, - [SMALL_STATE(3356)] = 205525, - [SMALL_STATE(3357)] = 205578, - [SMALL_STATE(3358)] = 205621, - [SMALL_STATE(3359)] = 205664, - [SMALL_STATE(3360)] = 205717, - [SMALL_STATE(3361)] = 205770, - [SMALL_STATE(3362)] = 205823, - [SMALL_STATE(3363)] = 205866, - [SMALL_STATE(3364)] = 205919, - [SMALL_STATE(3365)] = 205972, - [SMALL_STATE(3366)] = 206007, - [SMALL_STATE(3367)] = 206050, - [SMALL_STATE(3368)] = 206093, - [SMALL_STATE(3369)] = 206146, - [SMALL_STATE(3370)] = 206199, - [SMALL_STATE(3371)] = 206252, - [SMALL_STATE(3372)] = 206295, - [SMALL_STATE(3373)] = 206348, - [SMALL_STATE(3374)] = 206391, - [SMALL_STATE(3375)] = 206444, - [SMALL_STATE(3376)] = 206497, - [SMALL_STATE(3377)] = 206540, - [SMALL_STATE(3378)] = 206593, - [SMALL_STATE(3379)] = 206636, - [SMALL_STATE(3380)] = 206679, - [SMALL_STATE(3381)] = 206732, - [SMALL_STATE(3382)] = 206775, - [SMALL_STATE(3383)] = 206828, - [SMALL_STATE(3384)] = 206881, - [SMALL_STATE(3385)] = 206924, - [SMALL_STATE(3386)] = 206967, - [SMALL_STATE(3387)] = 207010, - [SMALL_STATE(3388)] = 207045, - [SMALL_STATE(3389)] = 207098, - [SMALL_STATE(3390)] = 207141, - [SMALL_STATE(3391)] = 207194, - [SMALL_STATE(3392)] = 207247, - [SMALL_STATE(3393)] = 207282, - [SMALL_STATE(3394)] = 207317, - [SMALL_STATE(3395)] = 207360, - [SMALL_STATE(3396)] = 207413, - [SMALL_STATE(3397)] = 207448, - [SMALL_STATE(3398)] = 207483, - [SMALL_STATE(3399)] = 207536, - [SMALL_STATE(3400)] = 207579, - [SMALL_STATE(3401)] = 207632, - [SMALL_STATE(3402)] = 207675, - [SMALL_STATE(3403)] = 207718, - [SMALL_STATE(3404)] = 207771, - [SMALL_STATE(3405)] = 207822, - [SMALL_STATE(3406)] = 207875, - [SMALL_STATE(3407)] = 207918, - [SMALL_STATE(3408)] = 207961, - [SMALL_STATE(3409)] = 208016, - [SMALL_STATE(3410)] = 208069, - [SMALL_STATE(3411)] = 208122, - [SMALL_STATE(3412)] = 208157, - [SMALL_STATE(3413)] = 208208, - [SMALL_STATE(3414)] = 208251, - [SMALL_STATE(3415)] = 208304, - [SMALL_STATE(3416)] = 208357, - [SMALL_STATE(3417)] = 208410, - [SMALL_STATE(3418)] = 208461, - [SMALL_STATE(3419)] = 208514, - [SMALL_STATE(3420)] = 208549, - [SMALL_STATE(3421)] = 208592, - [SMALL_STATE(3422)] = 208645, - [SMALL_STATE(3423)] = 208688, - [SMALL_STATE(3424)] = 208731, - [SMALL_STATE(3425)] = 208784, - [SMALL_STATE(3426)] = 208819, - [SMALL_STATE(3427)] = 208872, - [SMALL_STATE(3428)] = 208927, - [SMALL_STATE(3429)] = 208970, - [SMALL_STATE(3430)] = 209025, - [SMALL_STATE(3431)] = 209078, - [SMALL_STATE(3432)] = 209131, - [SMALL_STATE(3433)] = 209166, - [SMALL_STATE(3434)] = 209209, - [SMALL_STATE(3435)] = 209262, - [SMALL_STATE(3436)] = 209315, - [SMALL_STATE(3437)] = 209350, - [SMALL_STATE(3438)] = 209393, - [SMALL_STATE(3439)] = 209436, - [SMALL_STATE(3440)] = 209489, - [SMALL_STATE(3441)] = 209524, - [SMALL_STATE(3442)] = 209567, - [SMALL_STATE(3443)] = 209602, - [SMALL_STATE(3444)] = 209655, - [SMALL_STATE(3445)] = 209698, - [SMALL_STATE(3446)] = 209751, - [SMALL_STATE(3447)] = 209794, - [SMALL_STATE(3448)] = 209829, - [SMALL_STATE(3449)] = 209872, - [SMALL_STATE(3450)] = 209925, - [SMALL_STATE(3451)] = 209978, - [SMALL_STATE(3452)] = 210021, - [SMALL_STATE(3453)] = 210056, - [SMALL_STATE(3454)] = 210099, - [SMALL_STATE(3455)] = 210154, - [SMALL_STATE(3456)] = 210209, - [SMALL_STATE(3457)] = 210252, - [SMALL_STATE(3458)] = 210295, - [SMALL_STATE(3459)] = 210338, - [SMALL_STATE(3460)] = 210391, - [SMALL_STATE(3461)] = 210444, - [SMALL_STATE(3462)] = 210487, - [SMALL_STATE(3463)] = 210540, - [SMALL_STATE(3464)] = 210583, - [SMALL_STATE(3465)] = 210618, - [SMALL_STATE(3466)] = 210671, - [SMALL_STATE(3467)] = 210714, - [SMALL_STATE(3468)] = 210767, - [SMALL_STATE(3469)] = 210820, - [SMALL_STATE(3470)] = 210873, - [SMALL_STATE(3471)] = 210926, - [SMALL_STATE(3472)] = 210979, - [SMALL_STATE(3473)] = 211032, - [SMALL_STATE(3474)] = 211075, - [SMALL_STATE(3475)] = 211127, - [SMALL_STATE(3476)] = 211177, - [SMALL_STATE(3477)] = 211227, - [SMALL_STATE(3478)] = 211279, - [SMALL_STATE(3479)] = 211331, - [SMALL_STATE(3480)] = 211385, - [SMALL_STATE(3481)] = 211435, - [SMALL_STATE(3482)] = 211487, - [SMALL_STATE(3483)] = 211537, - [SMALL_STATE(3484)] = 211579, - [SMALL_STATE(3485)] = 211629, - [SMALL_STATE(3486)] = 211679, - [SMALL_STATE(3487)] = 211729, - [SMALL_STATE(3488)] = 211783, - [SMALL_STATE(3489)] = 211833, - [SMALL_STATE(3490)] = 211883, - [SMALL_STATE(3491)] = 211933, - [SMALL_STATE(3492)] = 211983, - [SMALL_STATE(3493)] = 212033, - [SMALL_STATE(3494)] = 212083, - [SMALL_STATE(3495)] = 212133, - [SMALL_STATE(3496)] = 212183, - [SMALL_STATE(3497)] = 212225, - [SMALL_STATE(3498)] = 212275, - [SMALL_STATE(3499)] = 212325, - [SMALL_STATE(3500)] = 212375, - [SMALL_STATE(3501)] = 212425, - [SMALL_STATE(3502)] = 212475, - [SMALL_STATE(3503)] = 212525, - [SMALL_STATE(3504)] = 212577, - [SMALL_STATE(3505)] = 212627, - [SMALL_STATE(3506)] = 212669, - [SMALL_STATE(3507)] = 212719, - [SMALL_STATE(3508)] = 212759, - [SMALL_STATE(3509)] = 212809, - [SMALL_STATE(3510)] = 212859, - [SMALL_STATE(3511)] = 212909, - [SMALL_STATE(3512)] = 212951, - [SMALL_STATE(3513)] = 213003, - [SMALL_STATE(3514)] = 213053, - [SMALL_STATE(3515)] = 213105, - [SMALL_STATE(3516)] = 213157, - [SMALL_STATE(3517)] = 213199, - [SMALL_STATE(3518)] = 213241, - [SMALL_STATE(3519)] = 213291, - [SMALL_STATE(3520)] = 213341, - [SMALL_STATE(3521)] = 213391, - [SMALL_STATE(3522)] = 213441, - [SMALL_STATE(3523)] = 213475, - [SMALL_STATE(3524)] = 213529, - [SMALL_STATE(3525)] = 213579, - [SMALL_STATE(3526)] = 213629, - [SMALL_STATE(3527)] = 213679, - [SMALL_STATE(3528)] = 213729, - [SMALL_STATE(3529)] = 213779, - [SMALL_STATE(3530)] = 213829, - [SMALL_STATE(3531)] = 213879, - [SMALL_STATE(3532)] = 213929, - [SMALL_STATE(3533)] = 213983, - [SMALL_STATE(3534)] = 214033, - [SMALL_STATE(3535)] = 214083, - [SMALL_STATE(3536)] = 214137, - [SMALL_STATE(3537)] = 214187, - [SMALL_STATE(3538)] = 214237, - [SMALL_STATE(3539)] = 214291, - [SMALL_STATE(3540)] = 214343, - [SMALL_STATE(3541)] = 214393, - [SMALL_STATE(3542)] = 214443, - [SMALL_STATE(3543)] = 214493, - [SMALL_STATE(3544)] = 214543, - [SMALL_STATE(3545)] = 214595, - [SMALL_STATE(3546)] = 214645, - [SMALL_STATE(3547)] = 214695, - [SMALL_STATE(3548)] = 214747, - [SMALL_STATE(3549)] = 214797, - [SMALL_STATE(3550)] = 214847, - [SMALL_STATE(3551)] = 214897, - [SMALL_STATE(3552)] = 214947, - [SMALL_STATE(3553)] = 214997, - [SMALL_STATE(3554)] = 215049, - [SMALL_STATE(3555)] = 215099, - [SMALL_STATE(3556)] = 215153, - [SMALL_STATE(3557)] = 215207, - [SMALL_STATE(3558)] = 215260, - [SMALL_STATE(3559)] = 215313, - [SMALL_STATE(3560)] = 215346, - [SMALL_STATE(3561)] = 215379, - [SMALL_STATE(3562)] = 215432, - [SMALL_STATE(3563)] = 215485, - [SMALL_STATE(3564)] = 215532, - [SMALL_STATE(3565)] = 215585, - [SMALL_STATE(3566)] = 215638, - [SMALL_STATE(3567)] = 215691, - [SMALL_STATE(3568)] = 215744, - [SMALL_STATE(3569)] = 215797, - [SMALL_STATE(3570)] = 215850, - [SMALL_STATE(3571)] = 215903, - [SMALL_STATE(3572)] = 215956, - [SMALL_STATE(3573)] = 216009, - [SMALL_STATE(3574)] = 216062, - [SMALL_STATE(3575)] = 216115, - [SMALL_STATE(3576)] = 216168, - [SMALL_STATE(3577)] = 216221, - [SMALL_STATE(3578)] = 216274, - [SMALL_STATE(3579)] = 216327, - [SMALL_STATE(3580)] = 216380, - [SMALL_STATE(3581)] = 216433, - [SMALL_STATE(3582)] = 216486, - [SMALL_STATE(3583)] = 216539, - [SMALL_STATE(3584)] = 216592, - [SMALL_STATE(3585)] = 216645, - [SMALL_STATE(3586)] = 216698, - [SMALL_STATE(3587)] = 216751, - [SMALL_STATE(3588)] = 216804, - [SMALL_STATE(3589)] = 216857, - [SMALL_STATE(3590)] = 216910, - [SMALL_STATE(3591)] = 216963, - [SMALL_STATE(3592)] = 216996, - [SMALL_STATE(3593)] = 217049, - [SMALL_STATE(3594)] = 217102, - [SMALL_STATE(3595)] = 217155, - [SMALL_STATE(3596)] = 217208, - [SMALL_STATE(3597)] = 217241, - [SMALL_STATE(3598)] = 217294, - [SMALL_STATE(3599)] = 217345, - [SMALL_STATE(3600)] = 217398, - [SMALL_STATE(3601)] = 217451, - [SMALL_STATE(3602)] = 217484, - [SMALL_STATE(3603)] = 217537, - [SMALL_STATE(3604)] = 217590, - [SMALL_STATE(3605)] = 217623, - [SMALL_STATE(3606)] = 217656, - [SMALL_STATE(3607)] = 217709, - [SMALL_STATE(3608)] = 217762, - [SMALL_STATE(3609)] = 217815, - [SMALL_STATE(3610)] = 217868, - [SMALL_STATE(3611)] = 217921, - [SMALL_STATE(3612)] = 217974, - [SMALL_STATE(3613)] = 218027, - [SMALL_STATE(3614)] = 218080, - [SMALL_STATE(3615)] = 218113, - [SMALL_STATE(3616)] = 218166, - [SMALL_STATE(3617)] = 218219, - [SMALL_STATE(3618)] = 218272, - [SMALL_STATE(3619)] = 218325, - [SMALL_STATE(3620)] = 218378, - [SMALL_STATE(3621)] = 218431, - [SMALL_STATE(3622)] = 218484, - [SMALL_STATE(3623)] = 218537, - [SMALL_STATE(3624)] = 218590, - [SMALL_STATE(3625)] = 218623, - [SMALL_STATE(3626)] = 218676, - [SMALL_STATE(3627)] = 218729, - [SMALL_STATE(3628)] = 218782, - [SMALL_STATE(3629)] = 218835, - [SMALL_STATE(3630)] = 218888, - [SMALL_STATE(3631)] = 218941, - [SMALL_STATE(3632)] = 218994, - [SMALL_STATE(3633)] = 219047, - [SMALL_STATE(3634)] = 219080, - [SMALL_STATE(3635)] = 219113, - [SMALL_STATE(3636)] = 219166, - [SMALL_STATE(3637)] = 219199, - [SMALL_STATE(3638)] = 219252, - [SMALL_STATE(3639)] = 219305, - [SMALL_STATE(3640)] = 219358, - [SMALL_STATE(3641)] = 219411, - [SMALL_STATE(3642)] = 219464, - [SMALL_STATE(3643)] = 219517, - [SMALL_STATE(3644)] = 219570, - [SMALL_STATE(3645)] = 219623, - [SMALL_STATE(3646)] = 219676, - [SMALL_STATE(3647)] = 219729, - [SMALL_STATE(3648)] = 219782, - [SMALL_STATE(3649)] = 219835, - [SMALL_STATE(3650)] = 219868, - [SMALL_STATE(3651)] = 219901, - [SMALL_STATE(3652)] = 219954, - [SMALL_STATE(3653)] = 219987, - [SMALL_STATE(3654)] = 220020, - [SMALL_STATE(3655)] = 220073, - [SMALL_STATE(3656)] = 220126, - [SMALL_STATE(3657)] = 220179, - [SMALL_STATE(3658)] = 220232, - [SMALL_STATE(3659)] = 220265, - [SMALL_STATE(3660)] = 220318, - [SMALL_STATE(3661)] = 220365, - [SMALL_STATE(3662)] = 220418, - [SMALL_STATE(3663)] = 220451, - [SMALL_STATE(3664)] = 220498, - [SMALL_STATE(3665)] = 220551, - [SMALL_STATE(3666)] = 220604, - [SMALL_STATE(3667)] = 220637, - [SMALL_STATE(3668)] = 220670, - [SMALL_STATE(3669)] = 220723, - [SMALL_STATE(3670)] = 220756, - [SMALL_STATE(3671)] = 220809, - [SMALL_STATE(3672)] = 220862, - [SMALL_STATE(3673)] = 220895, - [SMALL_STATE(3674)] = 220948, - [SMALL_STATE(3675)] = 221001, - [SMALL_STATE(3676)] = 221034, - [SMALL_STATE(3677)] = 221087, - [SMALL_STATE(3678)] = 221120, - [SMALL_STATE(3679)] = 221173, - [SMALL_STATE(3680)] = 221206, - [SMALL_STATE(3681)] = 221239, - [SMALL_STATE(3682)] = 221272, - [SMALL_STATE(3683)] = 221325, - [SMALL_STATE(3684)] = 221378, - [SMALL_STATE(3685)] = 221431, - [SMALL_STATE(3686)] = 221484, - [SMALL_STATE(3687)] = 221537, - [SMALL_STATE(3688)] = 221590, - [SMALL_STATE(3689)] = 221643, - [SMALL_STATE(3690)] = 221676, - [SMALL_STATE(3691)] = 221709, - [SMALL_STATE(3692)] = 221742, - [SMALL_STATE(3693)] = 221775, - [SMALL_STATE(3694)] = 221808, - [SMALL_STATE(3695)] = 221841, - [SMALL_STATE(3696)] = 221874, - [SMALL_STATE(3697)] = 221907, - [SMALL_STATE(3698)] = 221940, - [SMALL_STATE(3699)] = 221973, - [SMALL_STATE(3700)] = 222026, - [SMALL_STATE(3701)] = 222059, - [SMALL_STATE(3702)] = 222112, - [SMALL_STATE(3703)] = 222165, - [SMALL_STATE(3704)] = 222198, - [SMALL_STATE(3705)] = 222231, - [SMALL_STATE(3706)] = 222264, - [SMALL_STATE(3707)] = 222303, - [SMALL_STATE(3708)] = 222336, - [SMALL_STATE(3709)] = 222369, - [SMALL_STATE(3710)] = 222402, - [SMALL_STATE(3711)] = 222435, - [SMALL_STATE(3712)] = 222468, - [SMALL_STATE(3713)] = 222501, - [SMALL_STATE(3714)] = 222534, - [SMALL_STATE(3715)] = 222567, - [SMALL_STATE(3716)] = 222600, - [SMALL_STATE(3717)] = 222633, - [SMALL_STATE(3718)] = 222666, - [SMALL_STATE(3719)] = 222699, - [SMALL_STATE(3720)] = 222732, - [SMALL_STATE(3721)] = 222785, - [SMALL_STATE(3722)] = 222818, - [SMALL_STATE(3723)] = 222871, - [SMALL_STATE(3724)] = 222904, - [SMALL_STATE(3725)] = 222957, - [SMALL_STATE(3726)] = 222990, - [SMALL_STATE(3727)] = 223043, - [SMALL_STATE(3728)] = 223082, - [SMALL_STATE(3729)] = 223135, - [SMALL_STATE(3730)] = 223188, - [SMALL_STATE(3731)] = 223241, - [SMALL_STATE(3732)] = 223294, - [SMALL_STATE(3733)] = 223327, - [SMALL_STATE(3734)] = 223380, - [SMALL_STATE(3735)] = 223413, - [SMALL_STATE(3736)] = 223446, - [SMALL_STATE(3737)] = 223499, - [SMALL_STATE(3738)] = 223552, - [SMALL_STATE(3739)] = 223585, - [SMALL_STATE(3740)] = 223638, - [SMALL_STATE(3741)] = 223671, - [SMALL_STATE(3742)] = 223724, - [SMALL_STATE(3743)] = 223777, - [SMALL_STATE(3744)] = 223830, - [SMALL_STATE(3745)] = 223883, - [SMALL_STATE(3746)] = 223936, - [SMALL_STATE(3747)] = 223969, - [SMALL_STATE(3748)] = 224002, - [SMALL_STATE(3749)] = 224051, - [SMALL_STATE(3750)] = 224098, - [SMALL_STATE(3751)] = 224131, - [SMALL_STATE(3752)] = 224164, - [SMALL_STATE(3753)] = 224217, - [SMALL_STATE(3754)] = 224270, - [SMALL_STATE(3755)] = 224303, - [SMALL_STATE(3756)] = 224356, - [SMALL_STATE(3757)] = 224409, - [SMALL_STATE(3758)] = 224462, - [SMALL_STATE(3759)] = 224515, - [SMALL_STATE(3760)] = 224548, - [SMALL_STATE(3761)] = 224581, - [SMALL_STATE(3762)] = 224634, - [SMALL_STATE(3763)] = 224687, - [SMALL_STATE(3764)] = 224720, - [SMALL_STATE(3765)] = 224773, - [SMALL_STATE(3766)] = 224826, - [SMALL_STATE(3767)] = 224879, - [SMALL_STATE(3768)] = 224932, - [SMALL_STATE(3769)] = 224965, - [SMALL_STATE(3770)] = 225014, - [SMALL_STATE(3771)] = 225047, - [SMALL_STATE(3772)] = 225100, - [SMALL_STATE(3773)] = 225133, - [SMALL_STATE(3774)] = 225180, - [SMALL_STATE(3775)] = 225233, - [SMALL_STATE(3776)] = 225266, - [SMALL_STATE(3777)] = 225319, - [SMALL_STATE(3778)] = 225352, - [SMALL_STATE(3779)] = 225405, - [SMALL_STATE(3780)] = 225452, - [SMALL_STATE(3781)] = 225499, - [SMALL_STATE(3782)] = 225552, - [SMALL_STATE(3783)] = 225585, - [SMALL_STATE(3784)] = 225638, - [SMALL_STATE(3785)] = 225691, - [SMALL_STATE(3786)] = 225744, - [SMALL_STATE(3787)] = 225797, - [SMALL_STATE(3788)] = 225850, - [SMALL_STATE(3789)] = 225883, - [SMALL_STATE(3790)] = 225916, - [SMALL_STATE(3791)] = 225949, - [SMALL_STATE(3792)] = 225996, - [SMALL_STATE(3793)] = 226029, - [SMALL_STATE(3794)] = 226082, - [SMALL_STATE(3795)] = 226135, - [SMALL_STATE(3796)] = 226188, - [SMALL_STATE(3797)] = 226235, - [SMALL_STATE(3798)] = 226288, - [SMALL_STATE(3799)] = 226341, - [SMALL_STATE(3800)] = 226388, - [SMALL_STATE(3801)] = 226441, - [SMALL_STATE(3802)] = 226474, - [SMALL_STATE(3803)] = 226521, - [SMALL_STATE(3804)] = 226574, - [SMALL_STATE(3805)] = 226627, - [SMALL_STATE(3806)] = 226660, - [SMALL_STATE(3807)] = 226713, - [SMALL_STATE(3808)] = 226760, - [SMALL_STATE(3809)] = 226793, - [SMALL_STATE(3810)] = 226826, - [SMALL_STATE(3811)] = 226859, - [SMALL_STATE(3812)] = 226892, - [SMALL_STATE(3813)] = 226925, - [SMALL_STATE(3814)] = 226978, - [SMALL_STATE(3815)] = 227011, - [SMALL_STATE(3816)] = 227044, - [SMALL_STATE(3817)] = 227097, - [SMALL_STATE(3818)] = 227130, - [SMALL_STATE(3819)] = 227163, - [SMALL_STATE(3820)] = 227196, - [SMALL_STATE(3821)] = 227249, - [SMALL_STATE(3822)] = 227282, - [SMALL_STATE(3823)] = 227315, - [SMALL_STATE(3824)] = 227348, - [SMALL_STATE(3825)] = 227381, - [SMALL_STATE(3826)] = 227414, - [SMALL_STATE(3827)] = 227447, - [SMALL_STATE(3828)] = 227480, - [SMALL_STATE(3829)] = 227513, - [SMALL_STATE(3830)] = 227560, - [SMALL_STATE(3831)] = 227593, - [SMALL_STATE(3832)] = 227626, - [SMALL_STATE(3833)] = 227659, - [SMALL_STATE(3834)] = 227692, - [SMALL_STATE(3835)] = 227725, - [SMALL_STATE(3836)] = 227758, - [SMALL_STATE(3837)] = 227791, - [SMALL_STATE(3838)] = 227824, - [SMALL_STATE(3839)] = 227857, - [SMALL_STATE(3840)] = 227890, - [SMALL_STATE(3841)] = 227923, - [SMALL_STATE(3842)] = 227956, - [SMALL_STATE(3843)] = 227989, - [SMALL_STATE(3844)] = 228022, - [SMALL_STATE(3845)] = 228055, - [SMALL_STATE(3846)] = 228088, - [SMALL_STATE(3847)] = 228121, - [SMALL_STATE(3848)] = 228154, - [SMALL_STATE(3849)] = 228187, - [SMALL_STATE(3850)] = 228220, - [SMALL_STATE(3851)] = 228253, - [SMALL_STATE(3852)] = 228286, - [SMALL_STATE(3853)] = 228319, - [SMALL_STATE(3854)] = 228352, - [SMALL_STATE(3855)] = 228385, - [SMALL_STATE(3856)] = 228418, - [SMALL_STATE(3857)] = 228451, - [SMALL_STATE(3858)] = 228484, - [SMALL_STATE(3859)] = 228517, - [SMALL_STATE(3860)] = 228550, - [SMALL_STATE(3861)] = 228596, - [SMALL_STATE(3862)] = 228640, - [SMALL_STATE(3863)] = 228684, - [SMALL_STATE(3864)] = 228730, - [SMALL_STATE(3865)] = 228774, - [SMALL_STATE(3866)] = 228818, - [SMALL_STATE(3867)] = 228850, - [SMALL_STATE(3868)] = 228894, - [SMALL_STATE(3869)] = 228926, - [SMALL_STATE(3870)] = 228970, - [SMALL_STATE(3871)] = 229002, - [SMALL_STATE(3872)] = 229048, - [SMALL_STATE(3873)] = 229092, - [SMALL_STATE(3874)] = 229136, - [SMALL_STATE(3875)] = 229180, - [SMALL_STATE(3876)] = 229224, - [SMALL_STATE(3877)] = 229268, - [SMALL_STATE(3878)] = 229312, - [SMALL_STATE(3879)] = 229356, - [SMALL_STATE(3880)] = 229400, - [SMALL_STATE(3881)] = 229444, - [SMALL_STATE(3882)] = 229488, - [SMALL_STATE(3883)] = 229532, - [SMALL_STATE(3884)] = 229576, - [SMALL_STATE(3885)] = 229620, - [SMALL_STATE(3886)] = 229664, - [SMALL_STATE(3887)] = 229708, - [SMALL_STATE(3888)] = 229752, - [SMALL_STATE(3889)] = 229796, - [SMALL_STATE(3890)] = 229840, - [SMALL_STATE(3891)] = 229884, - [SMALL_STATE(3892)] = 229928, - [SMALL_STATE(3893)] = 229972, - [SMALL_STATE(3894)] = 230016, - [SMALL_STATE(3895)] = 230060, - [SMALL_STATE(3896)] = 230104, - [SMALL_STATE(3897)] = 230148, - [SMALL_STATE(3898)] = 230192, - [SMALL_STATE(3899)] = 230236, - [SMALL_STATE(3900)] = 230280, - [SMALL_STATE(3901)] = 230324, - [SMALL_STATE(3902)] = 230368, - [SMALL_STATE(3903)] = 230412, - [SMALL_STATE(3904)] = 230456, - [SMALL_STATE(3905)] = 230504, - [SMALL_STATE(3906)] = 230548, - [SMALL_STATE(3907)] = 230592, - [SMALL_STATE(3908)] = 230636, - [SMALL_STATE(3909)] = 230680, - [SMALL_STATE(3910)] = 230712, - [SMALL_STATE(3911)] = 230756, - [SMALL_STATE(3912)] = 230800, - [SMALL_STATE(3913)] = 230848, - [SMALL_STATE(3914)] = 230892, - [SMALL_STATE(3915)] = 230936, - [SMALL_STATE(3916)] = 230980, - [SMALL_STATE(3917)] = 231024, - [SMALL_STATE(3918)] = 231068, - [SMALL_STATE(3919)] = 231112, - [SMALL_STATE(3920)] = 231156, - [SMALL_STATE(3921)] = 231200, - [SMALL_STATE(3922)] = 231244, - [SMALL_STATE(3923)] = 231288, - [SMALL_STATE(3924)] = 231332, - [SMALL_STATE(3925)] = 231376, - [SMALL_STATE(3926)] = 231420, - [SMALL_STATE(3927)] = 231466, - [SMALL_STATE(3928)] = 231510, - [SMALL_STATE(3929)] = 231554, - [SMALL_STATE(3930)] = 231598, - [SMALL_STATE(3931)] = 231644, - [SMALL_STATE(3932)] = 231688, - [SMALL_STATE(3933)] = 231732, - [SMALL_STATE(3934)] = 231776, - [SMALL_STATE(3935)] = 231820, - [SMALL_STATE(3936)] = 231864, - [SMALL_STATE(3937)] = 231908, - [SMALL_STATE(3938)] = 231958, - [SMALL_STATE(3939)] = 232002, - [SMALL_STATE(3940)] = 232046, - [SMALL_STATE(3941)] = 232090, - [SMALL_STATE(3942)] = 232134, - [SMALL_STATE(3943)] = 232178, - [SMALL_STATE(3944)] = 232222, - [SMALL_STATE(3945)] = 232272, - [SMALL_STATE(3946)] = 232316, - [SMALL_STATE(3947)] = 232360, - [SMALL_STATE(3948)] = 232392, - [SMALL_STATE(3949)] = 232424, - [SMALL_STATE(3950)] = 232468, - [SMALL_STATE(3951)] = 232512, - [SMALL_STATE(3952)] = 232544, - [SMALL_STATE(3953)] = 232588, - [SMALL_STATE(3954)] = 232632, - [SMALL_STATE(3955)] = 232676, - [SMALL_STATE(3956)] = 232720, - [SMALL_STATE(3957)] = 232764, - [SMALL_STATE(3958)] = 232808, - [SMALL_STATE(3959)] = 232852, - [SMALL_STATE(3960)] = 232896, - [SMALL_STATE(3961)] = 232942, - [SMALL_STATE(3962)] = 232986, - [SMALL_STATE(3963)] = 233030, - [SMALL_STATE(3964)] = 233074, - [SMALL_STATE(3965)] = 233118, - [SMALL_STATE(3966)] = 233162, - [SMALL_STATE(3967)] = 233206, - [SMALL_STATE(3968)] = 233250, - [SMALL_STATE(3969)] = 233282, - [SMALL_STATE(3970)] = 233322, - [SMALL_STATE(3971)] = 233354, - [SMALL_STATE(3972)] = 233386, - [SMALL_STATE(3973)] = 233424, - [SMALL_STATE(3974)] = 233468, - [SMALL_STATE(3975)] = 233512, - [SMALL_STATE(3976)] = 233556, - [SMALL_STATE(3977)] = 233600, - [SMALL_STATE(3978)] = 233644, - [SMALL_STATE(3979)] = 233688, - [SMALL_STATE(3980)] = 233732, - [SMALL_STATE(3981)] = 233776, - [SMALL_STATE(3982)] = 233820, - [SMALL_STATE(3983)] = 233864, - [SMALL_STATE(3984)] = 233908, - [SMALL_STATE(3985)] = 233952, - [SMALL_STATE(3986)] = 233996, - [SMALL_STATE(3987)] = 234042, - [SMALL_STATE(3988)] = 234086, - [SMALL_STATE(3989)] = 234130, - [SMALL_STATE(3990)] = 234174, - [SMALL_STATE(3991)] = 234218, - [SMALL_STATE(3992)] = 234262, - [SMALL_STATE(3993)] = 234306, - [SMALL_STATE(3994)] = 234338, - [SMALL_STATE(3995)] = 234382, - [SMALL_STATE(3996)] = 234426, - [SMALL_STATE(3997)] = 234470, - [SMALL_STATE(3998)] = 234514, - [SMALL_STATE(3999)] = 234558, - [SMALL_STATE(4000)] = 234590, - [SMALL_STATE(4001)] = 234634, - [SMALL_STATE(4002)] = 234678, - [SMALL_STATE(4003)] = 234722, - [SMALL_STATE(4004)] = 234766, - [SMALL_STATE(4005)] = 234810, - [SMALL_STATE(4006)] = 234854, - [SMALL_STATE(4007)] = 234898, - [SMALL_STATE(4008)] = 234942, - [SMALL_STATE(4009)] = 234986, - [SMALL_STATE(4010)] = 235030, - [SMALL_STATE(4011)] = 235074, - [SMALL_STATE(4012)] = 235118, - [SMALL_STATE(4013)] = 235162, - [SMALL_STATE(4014)] = 235206, - [SMALL_STATE(4015)] = 235250, - [SMALL_STATE(4016)] = 235294, - [SMALL_STATE(4017)] = 235338, - [SMALL_STATE(4018)] = 235370, - [SMALL_STATE(4019)] = 235414, - [SMALL_STATE(4020)] = 235458, - [SMALL_STATE(4021)] = 235502, - [SMALL_STATE(4022)] = 235546, - [SMALL_STATE(4023)] = 235590, - [SMALL_STATE(4024)] = 235634, - [SMALL_STATE(4025)] = 235678, - [SMALL_STATE(4026)] = 235722, - [SMALL_STATE(4027)] = 235766, - [SMALL_STATE(4028)] = 235810, - [SMALL_STATE(4029)] = 235854, - [SMALL_STATE(4030)] = 235898, - [SMALL_STATE(4031)] = 235942, - [SMALL_STATE(4032)] = 235986, - [SMALL_STATE(4033)] = 236030, - [SMALL_STATE(4034)] = 236074, - [SMALL_STATE(4035)] = 236118, - [SMALL_STATE(4036)] = 236162, - [SMALL_STATE(4037)] = 236206, - [SMALL_STATE(4038)] = 236250, - [SMALL_STATE(4039)] = 236282, - [SMALL_STATE(4040)] = 236314, - [SMALL_STATE(4041)] = 236358, - [SMALL_STATE(4042)] = 236402, - [SMALL_STATE(4043)] = 236434, - [SMALL_STATE(4044)] = 236478, - [SMALL_STATE(4045)] = 236522, - [SMALL_STATE(4046)] = 236566, - [SMALL_STATE(4047)] = 236610, - [SMALL_STATE(4048)] = 236654, - [SMALL_STATE(4049)] = 236698, - [SMALL_STATE(4050)] = 236742, - [SMALL_STATE(4051)] = 236786, - [SMALL_STATE(4052)] = 236830, - [SMALL_STATE(4053)] = 236862, - [SMALL_STATE(4054)] = 236906, - [SMALL_STATE(4055)] = 236950, - [SMALL_STATE(4056)] = 236994, - [SMALL_STATE(4057)] = 237038, - [SMALL_STATE(4058)] = 237070, - [SMALL_STATE(4059)] = 237102, - [SMALL_STATE(4060)] = 237146, - [SMALL_STATE(4061)] = 237178, - [SMALL_STATE(4062)] = 237222, - [SMALL_STATE(4063)] = 237266, - [SMALL_STATE(4064)] = 237310, - [SMALL_STATE(4065)] = 237354, - [SMALL_STATE(4066)] = 237398, - [SMALL_STATE(4067)] = 237442, - [SMALL_STATE(4068)] = 237474, - [SMALL_STATE(4069)] = 237518, - [SMALL_STATE(4070)] = 237562, - [SMALL_STATE(4071)] = 237606, - [SMALL_STATE(4072)] = 237650, - [SMALL_STATE(4073)] = 237694, - [SMALL_STATE(4074)] = 237738, - [SMALL_STATE(4075)] = 237782, - [SMALL_STATE(4076)] = 237826, - [SMALL_STATE(4077)] = 237870, - [SMALL_STATE(4078)] = 237914, - [SMALL_STATE(4079)] = 237958, - [SMALL_STATE(4080)] = 237990, - [SMALL_STATE(4081)] = 238022, - [SMALL_STATE(4082)] = 238054, - [SMALL_STATE(4083)] = 238098, - [SMALL_STATE(4084)] = 238142, - [SMALL_STATE(4085)] = 238186, - [SMALL_STATE(4086)] = 238230, - [SMALL_STATE(4087)] = 238262, - [SMALL_STATE(4088)] = 238306, - [SMALL_STATE(4089)] = 238338, - [SMALL_STATE(4090)] = 238370, - [SMALL_STATE(4091)] = 238402, - [SMALL_STATE(4092)] = 238434, - [SMALL_STATE(4093)] = 238478, - [SMALL_STATE(4094)] = 238522, - [SMALL_STATE(4095)] = 238566, - [SMALL_STATE(4096)] = 238610, - [SMALL_STATE(4097)] = 238654, - [SMALL_STATE(4098)] = 238686, - [SMALL_STATE(4099)] = 238730, - [SMALL_STATE(4100)] = 238762, - [SMALL_STATE(4101)] = 238806, - [SMALL_STATE(4102)] = 238850, - [SMALL_STATE(4103)] = 238894, - [SMALL_STATE(4104)] = 238938, - [SMALL_STATE(4105)] = 238982, - [SMALL_STATE(4106)] = 239026, - [SMALL_STATE(4107)] = 239070, - [SMALL_STATE(4108)] = 239114, - [SMALL_STATE(4109)] = 239158, - [SMALL_STATE(4110)] = 239202, - [SMALL_STATE(4111)] = 239246, - [SMALL_STATE(4112)] = 239290, - [SMALL_STATE(4113)] = 239334, - [SMALL_STATE(4114)] = 239378, - [SMALL_STATE(4115)] = 239422, - [SMALL_STATE(4116)] = 239466, - [SMALL_STATE(4117)] = 239498, - [SMALL_STATE(4118)] = 239542, - [SMALL_STATE(4119)] = 239586, - [SMALL_STATE(4120)] = 239618, - [SMALL_STATE(4121)] = 239662, - [SMALL_STATE(4122)] = 239694, - [SMALL_STATE(4123)] = 239738, - [SMALL_STATE(4124)] = 239782, - [SMALL_STATE(4125)] = 239814, - [SMALL_STATE(4126)] = 239858, - [SMALL_STATE(4127)] = 239902, - [SMALL_STATE(4128)] = 239946, - [SMALL_STATE(4129)] = 239990, - [SMALL_STATE(4130)] = 240034, - [SMALL_STATE(4131)] = 240078, - [SMALL_STATE(4132)] = 240110, - [SMALL_STATE(4133)] = 240154, - [SMALL_STATE(4134)] = 240198, - [SMALL_STATE(4135)] = 240242, - [SMALL_STATE(4136)] = 240286, - [SMALL_STATE(4137)] = 240330, - [SMALL_STATE(4138)] = 240374, - [SMALL_STATE(4139)] = 240418, - [SMALL_STATE(4140)] = 240462, - [SMALL_STATE(4141)] = 240506, - [SMALL_STATE(4142)] = 240552, - [SMALL_STATE(4143)] = 240596, - [SMALL_STATE(4144)] = 240640, - [SMALL_STATE(4145)] = 240684, - [SMALL_STATE(4146)] = 240728, - [SMALL_STATE(4147)] = 240772, - [SMALL_STATE(4148)] = 240816, - [SMALL_STATE(4149)] = 240868, - [SMALL_STATE(4150)] = 240912, - [SMALL_STATE(4151)] = 240956, - [SMALL_STATE(4152)] = 241000, - [SMALL_STATE(4153)] = 241044, - [SMALL_STATE(4154)] = 241088, - [SMALL_STATE(4155)] = 241132, - [SMALL_STATE(4156)] = 241176, - [SMALL_STATE(4157)] = 241220, - [SMALL_STATE(4158)] = 241264, - [SMALL_STATE(4159)] = 241308, - [SMALL_STATE(4160)] = 241352, - [SMALL_STATE(4161)] = 241396, - [SMALL_STATE(4162)] = 241440, - [SMALL_STATE(4163)] = 241484, - [SMALL_STATE(4164)] = 241528, - [SMALL_STATE(4165)] = 241560, - [SMALL_STATE(4166)] = 241604, - [SMALL_STATE(4167)] = 241648, - [SMALL_STATE(4168)] = 241692, - [SMALL_STATE(4169)] = 241736, - [SMALL_STATE(4170)] = 241780, - [SMALL_STATE(4171)] = 241824, - [SMALL_STATE(4172)] = 241876, - [SMALL_STATE(4173)] = 241908, - [SMALL_STATE(4174)] = 241940, - [SMALL_STATE(4175)] = 241984, - [SMALL_STATE(4176)] = 242028, - [SMALL_STATE(4177)] = 242078, - [SMALL_STATE(4178)] = 242122, - [SMALL_STATE(4179)] = 242166, - [SMALL_STATE(4180)] = 242198, - [SMALL_STATE(4181)] = 242231, - [SMALL_STATE(4182)] = 242262, - [SMALL_STATE(4183)] = 242293, - [SMALL_STATE(4184)] = 242324, - [SMALL_STATE(4185)] = 242355, - [SMALL_STATE(4186)] = 242386, - [SMALL_STATE(4187)] = 242419, - [SMALL_STATE(4188)] = 242450, - [SMALL_STATE(4189)] = 242481, - [SMALL_STATE(4190)] = 242512, - [SMALL_STATE(4191)] = 242545, - [SMALL_STATE(4192)] = 242594, - [SMALL_STATE(4193)] = 242643, - [SMALL_STATE(4194)] = 242676, - [SMALL_STATE(4195)] = 242707, - [SMALL_STATE(4196)] = 242738, - [SMALL_STATE(4197)] = 242769, - [SMALL_STATE(4198)] = 242800, - [SMALL_STATE(4199)] = 242831, - [SMALL_STATE(4200)] = 242862, - [SMALL_STATE(4201)] = 242893, - [SMALL_STATE(4202)] = 242926, - [SMALL_STATE(4203)] = 242959, - [SMALL_STATE(4204)] = 242990, - [SMALL_STATE(4205)] = 243021, - [SMALL_STATE(4206)] = 243052, - [SMALL_STATE(4207)] = 243083, - [SMALL_STATE(4208)] = 243120, - [SMALL_STATE(4209)] = 243151, - [SMALL_STATE(4210)] = 243188, - [SMALL_STATE(4211)] = 243219, - [SMALL_STATE(4212)] = 243250, - [SMALL_STATE(4213)] = 243281, - [SMALL_STATE(4214)] = 243314, - [SMALL_STATE(4215)] = 243345, - [SMALL_STATE(4216)] = 243376, - [SMALL_STATE(4217)] = 243409, - [SMALL_STATE(4218)] = 243442, - [SMALL_STATE(4219)] = 243473, - [SMALL_STATE(4220)] = 243504, - [SMALL_STATE(4221)] = 243535, - [SMALL_STATE(4222)] = 243566, - [SMALL_STATE(4223)] = 243597, - [SMALL_STATE(4224)] = 243628, - [SMALL_STATE(4225)] = 243661, - [SMALL_STATE(4226)] = 243694, - [SMALL_STATE(4227)] = 243727, - [SMALL_STATE(4228)] = 243760, - [SMALL_STATE(4229)] = 243791, - [SMALL_STATE(4230)] = 243822, - [SMALL_STATE(4231)] = 243855, - [SMALL_STATE(4232)] = 243886, - [SMALL_STATE(4233)] = 243917, - [SMALL_STATE(4234)] = 243948, - [SMALL_STATE(4235)] = 243979, - [SMALL_STATE(4236)] = 244012, - [SMALL_STATE(4237)] = 244045, - [SMALL_STATE(4238)] = 244078, - [SMALL_STATE(4239)] = 244111, - [SMALL_STATE(4240)] = 244144, - [SMALL_STATE(4241)] = 244175, - [SMALL_STATE(4242)] = 244208, - [SMALL_STATE(4243)] = 244241, - [SMALL_STATE(4244)] = 244274, - [SMALL_STATE(4245)] = 244307, - [SMALL_STATE(4246)] = 244340, - [SMALL_STATE(4247)] = 244373, - [SMALL_STATE(4248)] = 244406, - [SMALL_STATE(4249)] = 244437, - [SMALL_STATE(4250)] = 244470, - [SMALL_STATE(4251)] = 244514, - [SMALL_STATE(4252)] = 244558, - [SMALL_STATE(4253)] = 244602, - [SMALL_STATE(4254)] = 244656, - [SMALL_STATE(4255)] = 244692, - [SMALL_STATE(4256)] = 244736, - [SMALL_STATE(4257)] = 244780, - [SMALL_STATE(4258)] = 244824, - [SMALL_STATE(4259)] = 244856, - [SMALL_STATE(4260)] = 244900, - [SMALL_STATE(4261)] = 244936, - [SMALL_STATE(4262)] = 244972, - [SMALL_STATE(4263)] = 245016, - [SMALL_STATE(4264)] = 245045, - [SMALL_STATE(4265)] = 245074, - [SMALL_STATE(4266)] = 245103, - [SMALL_STATE(4267)] = 245132, - [SMALL_STATE(4268)] = 245167, - [SMALL_STATE(4269)] = 245196, - [SMALL_STATE(4270)] = 245225, - [SMALL_STATE(4271)] = 245254, - [SMALL_STATE(4272)] = 245283, - [SMALL_STATE(4273)] = 245312, - [SMALL_STATE(4274)] = 245341, - [SMALL_STATE(4275)] = 245370, - [SMALL_STATE(4276)] = 245399, - [SMALL_STATE(4277)] = 245428, - [SMALL_STATE(4278)] = 245457, - [SMALL_STATE(4279)] = 245486, - [SMALL_STATE(4280)] = 245515, - [SMALL_STATE(4281)] = 245544, - [SMALL_STATE(4282)] = 245573, - [SMALL_STATE(4283)] = 245602, - [SMALL_STATE(4284)] = 245631, - [SMALL_STATE(4285)] = 245660, - [SMALL_STATE(4286)] = 245695, - [SMALL_STATE(4287)] = 245724, - [SMALL_STATE(4288)] = 245753, - [SMALL_STATE(4289)] = 245782, - [SMALL_STATE(4290)] = 245811, - [SMALL_STATE(4291)] = 245840, - [SMALL_STATE(4292)] = 245875, - [SMALL_STATE(4293)] = 245904, - [SMALL_STATE(4294)] = 245933, - [SMALL_STATE(4295)] = 245962, - [SMALL_STATE(4296)] = 245991, - [SMALL_STATE(4297)] = 246020, - [SMALL_STATE(4298)] = 246049, - [SMALL_STATE(4299)] = 246078, - [SMALL_STATE(4300)] = 246107, - [SMALL_STATE(4301)] = 246136, - [SMALL_STATE(4302)] = 246165, - [SMALL_STATE(4303)] = 246194, - [SMALL_STATE(4304)] = 246223, - [SMALL_STATE(4305)] = 246252, - [SMALL_STATE(4306)] = 246281, - [SMALL_STATE(4307)] = 246309, - [SMALL_STATE(4308)] = 246337, - [SMALL_STATE(4309)] = 246379, - [SMALL_STATE(4310)] = 246421, - [SMALL_STATE(4311)] = 246449, - [SMALL_STATE(4312)] = 246477, - [SMALL_STATE(4313)] = 246505, - [SMALL_STATE(4314)] = 246533, - [SMALL_STATE(4315)] = 246561, - [SMALL_STATE(4316)] = 246589, - [SMALL_STATE(4317)] = 246617, - [SMALL_STATE(4318)] = 246645, - [SMALL_STATE(4319)] = 246673, - [SMALL_STATE(4320)] = 246701, - [SMALL_STATE(4321)] = 246729, - [SMALL_STATE(4322)] = 246757, - [SMALL_STATE(4323)] = 246785, - [SMALL_STATE(4324)] = 246827, - [SMALL_STATE(4325)] = 246861, - [SMALL_STATE(4326)] = 246889, - [SMALL_STATE(4327)] = 246917, - [SMALL_STATE(4328)] = 246945, - [SMALL_STATE(4329)] = 246973, - [SMALL_STATE(4330)] = 247015, - [SMALL_STATE(4331)] = 247043, - [SMALL_STATE(4332)] = 247071, - [SMALL_STATE(4333)] = 247099, - [SMALL_STATE(4334)] = 247127, - [SMALL_STATE(4335)] = 247155, - [SMALL_STATE(4336)] = 247191, - [SMALL_STATE(4337)] = 247219, - [SMALL_STATE(4338)] = 247263, - [SMALL_STATE(4339)] = 247291, - [SMALL_STATE(4340)] = 247319, - [SMALL_STATE(4341)] = 247347, - [SMALL_STATE(4342)] = 247375, - [SMALL_STATE(4343)] = 247403, - [SMALL_STATE(4344)] = 247431, - [SMALL_STATE(4345)] = 247459, - [SMALL_STATE(4346)] = 247487, - [SMALL_STATE(4347)] = 247515, - [SMALL_STATE(4348)] = 247543, - [SMALL_STATE(4349)] = 247571, - [SMALL_STATE(4350)] = 247599, - [SMALL_STATE(4351)] = 247627, - [SMALL_STATE(4352)] = 247655, - [SMALL_STATE(4353)] = 247683, - [SMALL_STATE(4354)] = 247711, - [SMALL_STATE(4355)] = 247739, - [SMALL_STATE(4356)] = 247773, - [SMALL_STATE(4357)] = 247801, - [SMALL_STATE(4358)] = 247831, - [SMALL_STATE(4359)] = 247859, - [SMALL_STATE(4360)] = 247887, - [SMALL_STATE(4361)] = 247921, - [SMALL_STATE(4362)] = 247949, - [SMALL_STATE(4363)] = 247977, - [SMALL_STATE(4364)] = 248005, - [SMALL_STATE(4365)] = 248033, - [SMALL_STATE(4366)] = 248061, - [SMALL_STATE(4367)] = 248089, - [SMALL_STATE(4368)] = 248117, - [SMALL_STATE(4369)] = 248145, - [SMALL_STATE(4370)] = 248173, - [SMALL_STATE(4371)] = 248205, - [SMALL_STATE(4372)] = 248233, - [SMALL_STATE(4373)] = 248277, - [SMALL_STATE(4374)] = 248305, - [SMALL_STATE(4375)] = 248333, - [SMALL_STATE(4376)] = 248361, - [SMALL_STATE(4377)] = 248403, - [SMALL_STATE(4378)] = 248431, - [SMALL_STATE(4379)] = 248459, - [SMALL_STATE(4380)] = 248487, - [SMALL_STATE(4381)] = 248515, - [SMALL_STATE(4382)] = 248543, - [SMALL_STATE(4383)] = 248571, - [SMALL_STATE(4384)] = 248599, - [SMALL_STATE(4385)] = 248627, - [SMALL_STATE(4386)] = 248655, - [SMALL_STATE(4387)] = 248683, - [SMALL_STATE(4388)] = 248717, - [SMALL_STATE(4389)] = 248745, - [SMALL_STATE(4390)] = 248773, - [SMALL_STATE(4391)] = 248801, - [SMALL_STATE(4392)] = 248829, - [SMALL_STATE(4393)] = 248857, - [SMALL_STATE(4394)] = 248885, - [SMALL_STATE(4395)] = 248913, - [SMALL_STATE(4396)] = 248941, - [SMALL_STATE(4397)] = 248969, - [SMALL_STATE(4398)] = 248997, - [SMALL_STATE(4399)] = 249025, - [SMALL_STATE(4400)] = 249053, - [SMALL_STATE(4401)] = 249081, - [SMALL_STATE(4402)] = 249109, - [SMALL_STATE(4403)] = 249151, - [SMALL_STATE(4404)] = 249178, - [SMALL_STATE(4405)] = 249205, - [SMALL_STATE(4406)] = 249232, - [SMALL_STATE(4407)] = 249259, - [SMALL_STATE(4408)] = 249298, - [SMALL_STATE(4409)] = 249325, - [SMALL_STATE(4410)] = 249352, - [SMALL_STATE(4411)] = 249379, - [SMALL_STATE(4412)] = 249406, - [SMALL_STATE(4413)] = 249433, - [SMALL_STATE(4414)] = 249460, - [SMALL_STATE(4415)] = 249487, - [SMALL_STATE(4416)] = 249514, - [SMALL_STATE(4417)] = 249541, - [SMALL_STATE(4418)] = 249568, - [SMALL_STATE(4419)] = 249595, - [SMALL_STATE(4420)] = 249622, - [SMALL_STATE(4421)] = 249661, - [SMALL_STATE(4422)] = 249694, - [SMALL_STATE(4423)] = 249721, - [SMALL_STATE(4424)] = 249748, - [SMALL_STATE(4425)] = 249775, - [SMALL_STATE(4426)] = 249802, - [SMALL_STATE(4427)] = 249829, - [SMALL_STATE(4428)] = 249872, - [SMALL_STATE(4429)] = 249899, - [SMALL_STATE(4430)] = 249926, - [SMALL_STATE(4431)] = 249965, - [SMALL_STATE(4432)] = 250004, - [SMALL_STATE(4433)] = 250031, - [SMALL_STATE(4434)] = 250058, - [SMALL_STATE(4435)] = 250085, - [SMALL_STATE(4436)] = 250112, - [SMALL_STATE(4437)] = 250139, - [SMALL_STATE(4438)] = 250166, - [SMALL_STATE(4439)] = 250193, - [SMALL_STATE(4440)] = 250220, - [SMALL_STATE(4441)] = 250247, - [SMALL_STATE(4442)] = 250280, - [SMALL_STATE(4443)] = 250307, - [SMALL_STATE(4444)] = 250350, - [SMALL_STATE(4445)] = 250377, - [SMALL_STATE(4446)] = 250410, - [SMALL_STATE(4447)] = 250437, - [SMALL_STATE(4448)] = 250464, - [SMALL_STATE(4449)] = 250507, - [SMALL_STATE(4450)] = 250534, - [SMALL_STATE(4451)] = 250561, - [SMALL_STATE(4452)] = 250588, - [SMALL_STATE(4453)] = 250615, - [SMALL_STATE(4454)] = 250642, - [SMALL_STATE(4455)] = 250681, - [SMALL_STATE(4456)] = 250708, - [SMALL_STATE(4457)] = 250741, - [SMALL_STATE(4458)] = 250768, - [SMALL_STATE(4459)] = 250795, - [SMALL_STATE(4460)] = 250822, - [SMALL_STATE(4461)] = 250849, - [SMALL_STATE(4462)] = 250876, - [SMALL_STATE(4463)] = 250903, - [SMALL_STATE(4464)] = 250930, - [SMALL_STATE(4465)] = 250957, - [SMALL_STATE(4466)] = 250984, - [SMALL_STATE(4467)] = 251011, - [SMALL_STATE(4468)] = 251038, - [SMALL_STATE(4469)] = 251065, - [SMALL_STATE(4470)] = 251092, - [SMALL_STATE(4471)] = 251119, - [SMALL_STATE(4472)] = 251158, - [SMALL_STATE(4473)] = 251185, - [SMALL_STATE(4474)] = 251212, - [SMALL_STATE(4475)] = 251239, - [SMALL_STATE(4476)] = 251266, - [SMALL_STATE(4477)] = 251293, - [SMALL_STATE(4478)] = 251320, - [SMALL_STATE(4479)] = 251347, - [SMALL_STATE(4480)] = 251374, - [SMALL_STATE(4481)] = 251401, - [SMALL_STATE(4482)] = 251428, - [SMALL_STATE(4483)] = 251455, - [SMALL_STATE(4484)] = 251482, - [SMALL_STATE(4485)] = 251509, - [SMALL_STATE(4486)] = 251538, - [SMALL_STATE(4487)] = 251565, - [SMALL_STATE(4488)] = 251592, - [SMALL_STATE(4489)] = 251619, - [SMALL_STATE(4490)] = 251646, - [SMALL_STATE(4491)] = 251673, - [SMALL_STATE(4492)] = 251700, - [SMALL_STATE(4493)] = 251727, - [SMALL_STATE(4494)] = 251754, - [SMALL_STATE(4495)] = 251781, - [SMALL_STATE(4496)] = 251808, - [SMALL_STATE(4497)] = 251841, - [SMALL_STATE(4498)] = 251868, - [SMALL_STATE(4499)] = 251901, - [SMALL_STATE(4500)] = 251928, - [SMALL_STATE(4501)] = 251971, - [SMALL_STATE(4502)] = 251998, - [SMALL_STATE(4503)] = 252025, - [SMALL_STATE(4504)] = 252062, - [SMALL_STATE(4505)] = 252098, - [SMALL_STATE(4506)] = 252128, - [SMALL_STATE(4507)] = 252154, - [SMALL_STATE(4508)] = 252180, - [SMALL_STATE(4509)] = 252206, - [SMALL_STATE(4510)] = 252242, - [SMALL_STATE(4511)] = 252268, - [SMALL_STATE(4512)] = 252294, - [SMALL_STATE(4513)] = 252320, - [SMALL_STATE(4514)] = 252346, - [SMALL_STATE(4515)] = 252372, - [SMALL_STATE(4516)] = 252398, - [SMALL_STATE(4517)] = 252424, - [SMALL_STATE(4518)] = 252458, - [SMALL_STATE(4519)] = 252484, - [SMALL_STATE(4520)] = 252510, - [SMALL_STATE(4521)] = 252536, - [SMALL_STATE(4522)] = 252562, - [SMALL_STATE(4523)] = 252588, - [SMALL_STATE(4524)] = 252614, - [SMALL_STATE(4525)] = 252640, - [SMALL_STATE(4526)] = 252668, - [SMALL_STATE(4527)] = 252694, - [SMALL_STATE(4528)] = 252720, - [SMALL_STATE(4529)] = 252746, - [SMALL_STATE(4530)] = 252772, - [SMALL_STATE(4531)] = 252798, - [SMALL_STATE(4532)] = 252826, - [SMALL_STATE(4533)] = 252852, - [SMALL_STATE(4534)] = 252878, - [SMALL_STATE(4535)] = 252904, - [SMALL_STATE(4536)] = 252930, - [SMALL_STATE(4537)] = 252956, - [SMALL_STATE(4538)] = 252982, - [SMALL_STATE(4539)] = 253008, - [SMALL_STATE(4540)] = 253034, - [SMALL_STATE(4541)] = 253060, - [SMALL_STATE(4542)] = 253086, - [SMALL_STATE(4543)] = 253112, - [SMALL_STATE(4544)] = 253144, - [SMALL_STATE(4545)] = 253170, - [SMALL_STATE(4546)] = 253196, - [SMALL_STATE(4547)] = 253222, - [SMALL_STATE(4548)] = 253248, - [SMALL_STATE(4549)] = 253276, - [SMALL_STATE(4550)] = 253302, - [SMALL_STATE(4551)] = 253328, - [SMALL_STATE(4552)] = 253354, - [SMALL_STATE(4553)] = 253390, - [SMALL_STATE(4554)] = 253416, - [SMALL_STATE(4555)] = 253442, - [SMALL_STATE(4556)] = 253468, - [SMALL_STATE(4557)] = 253494, - [SMALL_STATE(4558)] = 253520, - [SMALL_STATE(4559)] = 253546, - [SMALL_STATE(4560)] = 253572, - [SMALL_STATE(4561)] = 253598, - [SMALL_STATE(4562)] = 253624, - [SMALL_STATE(4563)] = 253650, - [SMALL_STATE(4564)] = 253682, - [SMALL_STATE(4565)] = 253720, - [SMALL_STATE(4566)] = 253746, - [SMALL_STATE(4567)] = 253772, - [SMALL_STATE(4568)] = 253798, - [SMALL_STATE(4569)] = 253824, - [SMALL_STATE(4570)] = 253850, - [SMALL_STATE(4571)] = 253876, - [SMALL_STATE(4572)] = 253902, - [SMALL_STATE(4573)] = 253928, - [SMALL_STATE(4574)] = 253954, - [SMALL_STATE(4575)] = 253980, - [SMALL_STATE(4576)] = 254006, - [SMALL_STATE(4577)] = 254032, - [SMALL_STATE(4578)] = 254058, - [SMALL_STATE(4579)] = 254084, - [SMALL_STATE(4580)] = 254110, - [SMALL_STATE(4581)] = 254136, - [SMALL_STATE(4582)] = 254162, - [SMALL_STATE(4583)] = 254188, - [SMALL_STATE(4584)] = 254214, - [SMALL_STATE(4585)] = 254240, - [SMALL_STATE(4586)] = 254266, - [SMALL_STATE(4587)] = 254300, - [SMALL_STATE(4588)] = 254326, - [SMALL_STATE(4589)] = 254352, - [SMALL_STATE(4590)] = 254390, - [SMALL_STATE(4591)] = 254416, - [SMALL_STATE(4592)] = 254450, - [SMALL_STATE(4593)] = 254476, - [SMALL_STATE(4594)] = 254512, - [SMALL_STATE(4595)] = 254538, - [SMALL_STATE(4596)] = 254564, - [SMALL_STATE(4597)] = 254590, - [SMALL_STATE(4598)] = 254616, - [SMALL_STATE(4599)] = 254652, - [SMALL_STATE(4600)] = 254678, - [SMALL_STATE(4601)] = 254704, - [SMALL_STATE(4602)] = 254730, - [SMALL_STATE(4603)] = 254756, - [SMALL_STATE(4604)] = 254782, - [SMALL_STATE(4605)] = 254808, - [SMALL_STATE(4606)] = 254834, - [SMALL_STATE(4607)] = 254860, - [SMALL_STATE(4608)] = 254886, - [SMALL_STATE(4609)] = 254912, - [SMALL_STATE(4610)] = 254938, - [SMALL_STATE(4611)] = 254964, - [SMALL_STATE(4612)] = 255000, - [SMALL_STATE(4613)] = 255026, - [SMALL_STATE(4614)] = 255052, - [SMALL_STATE(4615)] = 255078, - [SMALL_STATE(4616)] = 255104, - [SMALL_STATE(4617)] = 255130, - [SMALL_STATE(4618)] = 255166, - [SMALL_STATE(4619)] = 255192, - [SMALL_STATE(4620)] = 255218, - [SMALL_STATE(4621)] = 255244, - [SMALL_STATE(4622)] = 255270, - [SMALL_STATE(4623)] = 255296, - [SMALL_STATE(4624)] = 255322, - [SMALL_STATE(4625)] = 255348, - [SMALL_STATE(4626)] = 255374, - [SMALL_STATE(4627)] = 255400, - [SMALL_STATE(4628)] = 255426, - [SMALL_STATE(4629)] = 255452, - [SMALL_STATE(4630)] = 255480, - [SMALL_STATE(4631)] = 255506, - [SMALL_STATE(4632)] = 255532, - [SMALL_STATE(4633)] = 255558, - [SMALL_STATE(4634)] = 255584, - [SMALL_STATE(4635)] = 255610, - [SMALL_STATE(4636)] = 255636, - [SMALL_STATE(4637)] = 255662, - [SMALL_STATE(4638)] = 255692, - [SMALL_STATE(4639)] = 255718, - [SMALL_STATE(4640)] = 255744, - [SMALL_STATE(4641)] = 255770, - [SMALL_STATE(4642)] = 255796, - [SMALL_STATE(4643)] = 255828, - [SMALL_STATE(4644)] = 255854, - [SMALL_STATE(4645)] = 255880, - [SMALL_STATE(4646)] = 255906, - [SMALL_STATE(4647)] = 255932, - [SMALL_STATE(4648)] = 255958, - [SMALL_STATE(4649)] = 255984, - [SMALL_STATE(4650)] = 256010, - [SMALL_STATE(4651)] = 256036, - [SMALL_STATE(4652)] = 256062, - [SMALL_STATE(4653)] = 256088, - [SMALL_STATE(4654)] = 256122, - [SMALL_STATE(4655)] = 256154, - [SMALL_STATE(4656)] = 256180, - [SMALL_STATE(4657)] = 256206, - [SMALL_STATE(4658)] = 256232, - [SMALL_STATE(4659)] = 256258, - [SMALL_STATE(4660)] = 256284, - [SMALL_STATE(4661)] = 256310, - [SMALL_STATE(4662)] = 256336, - [SMALL_STATE(4663)] = 256362, - [SMALL_STATE(4664)] = 256388, - [SMALL_STATE(4665)] = 256414, - [SMALL_STATE(4666)] = 256446, - [SMALL_STATE(4667)] = 256482, - [SMALL_STATE(4668)] = 256508, - [SMALL_STATE(4669)] = 256534, - [SMALL_STATE(4670)] = 256560, - [SMALL_STATE(4671)] = 256586, - [SMALL_STATE(4672)] = 256622, - [SMALL_STATE(4673)] = 256648, - [SMALL_STATE(4674)] = 256674, - [SMALL_STATE(4675)] = 256700, - [SMALL_STATE(4676)] = 256726, - [SMALL_STATE(4677)] = 256752, - [SMALL_STATE(4678)] = 256778, - [SMALL_STATE(4679)] = 256804, - [SMALL_STATE(4680)] = 256830, - [SMALL_STATE(4681)] = 256856, - [SMALL_STATE(4682)] = 256890, - [SMALL_STATE(4683)] = 256916, - [SMALL_STATE(4684)] = 256942, - [SMALL_STATE(4685)] = 256968, - [SMALL_STATE(4686)] = 256994, - [SMALL_STATE(4687)] = 257020, - [SMALL_STATE(4688)] = 257046, - [SMALL_STATE(4689)] = 257072, - [SMALL_STATE(4690)] = 257098, - [SMALL_STATE(4691)] = 257124, - [SMALL_STATE(4692)] = 257150, - [SMALL_STATE(4693)] = 257176, - [SMALL_STATE(4694)] = 257202, - [SMALL_STATE(4695)] = 257228, - [SMALL_STATE(4696)] = 257254, - [SMALL_STATE(4697)] = 257290, - [SMALL_STATE(4698)] = 257316, - [SMALL_STATE(4699)] = 257342, - [SMALL_STATE(4700)] = 257368, - [SMALL_STATE(4701)] = 257394, - [SMALL_STATE(4702)] = 257420, - [SMALL_STATE(4703)] = 257446, - [SMALL_STATE(4704)] = 257472, - [SMALL_STATE(4705)] = 257498, - [SMALL_STATE(4706)] = 257524, - [SMALL_STATE(4707)] = 257550, - [SMALL_STATE(4708)] = 257576, - [SMALL_STATE(4709)] = 257602, - [SMALL_STATE(4710)] = 257628, - [SMALL_STATE(4711)] = 257654, - [SMALL_STATE(4712)] = 257680, - [SMALL_STATE(4713)] = 257706, - [SMALL_STATE(4714)] = 257732, - [SMALL_STATE(4715)] = 257758, - [SMALL_STATE(4716)] = 257791, - [SMALL_STATE(4717)] = 257816, - [SMALL_STATE(4718)] = 257841, - [SMALL_STATE(4719)] = 257866, - [SMALL_STATE(4720)] = 257899, - [SMALL_STATE(4721)] = 257930, - [SMALL_STATE(4722)] = 257955, - [SMALL_STATE(4723)] = 257988, - [SMALL_STATE(4724)] = 258013, - [SMALL_STATE(4725)] = 258046, - [SMALL_STATE(4726)] = 258071, - [SMALL_STATE(4727)] = 258098, - [SMALL_STATE(4728)] = 258129, - [SMALL_STATE(4729)] = 258162, - [SMALL_STATE(4730)] = 258195, - [SMALL_STATE(4731)] = 258228, - [SMALL_STATE(4732)] = 258253, - [SMALL_STATE(4733)] = 258278, - [SMALL_STATE(4734)] = 258309, - [SMALL_STATE(4735)] = 258334, - [SMALL_STATE(4736)] = 258367, - [SMALL_STATE(4737)] = 258400, - [SMALL_STATE(4738)] = 258425, - [SMALL_STATE(4739)] = 258456, - [SMALL_STATE(4740)] = 258483, - [SMALL_STATE(4741)] = 258508, - [SMALL_STATE(4742)] = 258533, - [SMALL_STATE(4743)] = 258572, - [SMALL_STATE(4744)] = 258605, - [SMALL_STATE(4745)] = 258630, - [SMALL_STATE(4746)] = 258663, - [SMALL_STATE(4747)] = 258688, - [SMALL_STATE(4748)] = 258713, - [SMALL_STATE(4749)] = 258744, - [SMALL_STATE(4750)] = 258777, - [SMALL_STATE(4751)] = 258810, - [SMALL_STATE(4752)] = 258843, - [SMALL_STATE(4753)] = 258876, - [SMALL_STATE(4754)] = 258901, - [SMALL_STATE(4755)] = 258934, - [SMALL_STATE(4756)] = 258967, - [SMALL_STATE(4757)] = 258994, - [SMALL_STATE(4758)] = 259019, - [SMALL_STATE(4759)] = 259044, - [SMALL_STATE(4760)] = 259083, - [SMALL_STATE(4761)] = 259116, - [SMALL_STATE(4762)] = 259149, - [SMALL_STATE(4763)] = 259182, - [SMALL_STATE(4764)] = 259221, - [SMALL_STATE(4765)] = 259254, - [SMALL_STATE(4766)] = 259279, - [SMALL_STATE(4767)] = 259310, - [SMALL_STATE(4768)] = 259337, - [SMALL_STATE(4769)] = 259362, - [SMALL_STATE(4770)] = 259387, - [SMALL_STATE(4771)] = 259412, - [SMALL_STATE(4772)] = 259437, - [SMALL_STATE(4773)] = 259462, - [SMALL_STATE(4774)] = 259495, - [SMALL_STATE(4775)] = 259520, - [SMALL_STATE(4776)] = 259551, - [SMALL_STATE(4777)] = 259576, - [SMALL_STATE(4778)] = 259609, - [SMALL_STATE(4779)] = 259640, - [SMALL_STATE(4780)] = 259673, - [SMALL_STATE(4781)] = 259706, - [SMALL_STATE(4782)] = 259739, - [SMALL_STATE(4783)] = 259772, - [SMALL_STATE(4784)] = 259803, - [SMALL_STATE(4785)] = 259828, - [SMALL_STATE(4786)] = 259853, - [SMALL_STATE(4787)] = 259883, - [SMALL_STATE(4788)] = 259907, - [SMALL_STATE(4789)] = 259937, - [SMALL_STATE(4790)] = 259961, - [SMALL_STATE(4791)] = 259991, - [SMALL_STATE(4792)] = 260027, - [SMALL_STATE(4793)] = 260057, - [SMALL_STATE(4794)] = 260093, - [SMALL_STATE(4795)] = 260123, - [SMALL_STATE(4796)] = 260153, - [SMALL_STATE(4797)] = 260177, - [SMALL_STATE(4798)] = 260213, - [SMALL_STATE(4799)] = 260249, - [SMALL_STATE(4800)] = 260285, - [SMALL_STATE(4801)] = 260315, - [SMALL_STATE(4802)] = 260345, - [SMALL_STATE(4803)] = 260381, - [SMALL_STATE(4804)] = 260405, - [SMALL_STATE(4805)] = 260435, - [SMALL_STATE(4806)] = 260471, - [SMALL_STATE(4807)] = 260507, - [SMALL_STATE(4808)] = 260531, - [SMALL_STATE(4809)] = 260555, - [SMALL_STATE(4810)] = 260591, - [SMALL_STATE(4811)] = 260627, - [SMALL_STATE(4812)] = 260651, - [SMALL_STATE(4813)] = 260675, - [SMALL_STATE(4814)] = 260711, - [SMALL_STATE(4815)] = 260741, - [SMALL_STATE(4816)] = 260777, - [SMALL_STATE(4817)] = 260801, - [SMALL_STATE(4818)] = 260835, - [SMALL_STATE(4819)] = 260871, - [SMALL_STATE(4820)] = 260895, - [SMALL_STATE(4821)] = 260925, - [SMALL_STATE(4822)] = 260949, - [SMALL_STATE(4823)] = 260979, - [SMALL_STATE(4824)] = 261015, - [SMALL_STATE(4825)] = 261039, - [SMALL_STATE(4826)] = 261075, - [SMALL_STATE(4827)] = 261105, - [SMALL_STATE(4828)] = 261141, - [SMALL_STATE(4829)] = 261175, - [SMALL_STATE(4830)] = 261211, - [SMALL_STATE(4831)] = 261247, - [SMALL_STATE(4832)] = 261277, - [SMALL_STATE(4833)] = 261313, - [SMALL_STATE(4834)] = 261347, - [SMALL_STATE(4835)] = 261377, - [SMALL_STATE(4836)] = 261407, - [SMALL_STATE(4837)] = 261431, - [SMALL_STATE(4838)] = 261461, - [SMALL_STATE(4839)] = 261495, - [SMALL_STATE(4840)] = 261531, - [SMALL_STATE(4841)] = 261567, - [SMALL_STATE(4842)] = 261603, - [SMALL_STATE(4843)] = 261633, - [SMALL_STATE(4844)] = 261669, - [SMALL_STATE(4845)] = 261693, - [SMALL_STATE(4846)] = 261729, - [SMALL_STATE(4847)] = 261765, - [SMALL_STATE(4848)] = 261795, - [SMALL_STATE(4849)] = 261823, - [SMALL_STATE(4850)] = 261859, - [SMALL_STATE(4851)] = 261883, - [SMALL_STATE(4852)] = 261907, - [SMALL_STATE(4853)] = 261937, - [SMALL_STATE(4854)] = 261973, - [SMALL_STATE(4855)] = 262009, - [SMALL_STATE(4856)] = 262037, - [SMALL_STATE(4857)] = 262061, - [SMALL_STATE(4858)] = 262091, - [SMALL_STATE(4859)] = 262119, - [SMALL_STATE(4860)] = 262143, - [SMALL_STATE(4861)] = 262173, - [SMALL_STATE(4862)] = 262209, - [SMALL_STATE(4863)] = 262245, - [SMALL_STATE(4864)] = 262275, - [SMALL_STATE(4865)] = 262299, - [SMALL_STATE(4866)] = 262323, - [SMALL_STATE(4867)] = 262351, - [SMALL_STATE(4868)] = 262387, - [SMALL_STATE(4869)] = 262411, - [SMALL_STATE(4870)] = 262435, - [SMALL_STATE(4871)] = 262459, - [SMALL_STATE(4872)] = 262483, - [SMALL_STATE(4873)] = 262513, - [SMALL_STATE(4874)] = 262543, - [SMALL_STATE(4875)] = 262579, - [SMALL_STATE(4876)] = 262603, - [SMALL_STATE(4877)] = 262627, - [SMALL_STATE(4878)] = 262663, - [SMALL_STATE(4879)] = 262687, - [SMALL_STATE(4880)] = 262723, - [SMALL_STATE(4881)] = 262759, - [SMALL_STATE(4882)] = 262783, - [SMALL_STATE(4883)] = 262807, - [SMALL_STATE(4884)] = 262831, - [SMALL_STATE(4885)] = 262865, - [SMALL_STATE(4886)] = 262889, - [SMALL_STATE(4887)] = 262913, - [SMALL_STATE(4888)] = 262943, - [SMALL_STATE(4889)] = 262979, - [SMALL_STATE(4890)] = 263009, - [SMALL_STATE(4891)] = 263033, - [SMALL_STATE(4892)] = 263057, - [SMALL_STATE(4893)] = 263093, - [SMALL_STATE(4894)] = 263129, - [SMALL_STATE(4895)] = 263165, - [SMALL_STATE(4896)] = 263201, - [SMALL_STATE(4897)] = 263225, - [SMALL_STATE(4898)] = 263252, - [SMALL_STATE(4899)] = 263279, - [SMALL_STATE(4900)] = 263306, - [SMALL_STATE(4901)] = 263333, - [SMALL_STATE(4902)] = 263360, - [SMALL_STATE(4903)] = 263385, - [SMALL_STATE(4904)] = 263414, - [SMALL_STATE(4905)] = 263447, - [SMALL_STATE(4906)] = 263474, - [SMALL_STATE(4907)] = 263505, - [SMALL_STATE(4908)] = 263532, - [SMALL_STATE(4909)] = 263559, - [SMALL_STATE(4910)] = 263586, - [SMALL_STATE(4911)] = 263613, - [SMALL_STATE(4912)] = 263640, - [SMALL_STATE(4913)] = 263667, - [SMALL_STATE(4914)] = 263694, - [SMALL_STATE(4915)] = 263725, - [SMALL_STATE(4916)] = 263752, - [SMALL_STATE(4917)] = 263779, - [SMALL_STATE(4918)] = 263804, - [SMALL_STATE(4919)] = 263831, - [SMALL_STATE(4920)] = 263858, - [SMALL_STATE(4921)] = 263885, - [SMALL_STATE(4922)] = 263912, - [SMALL_STATE(4923)] = 263939, - [SMALL_STATE(4924)] = 263966, - [SMALL_STATE(4925)] = 263993, - [SMALL_STATE(4926)] = 264020, - [SMALL_STATE(4927)] = 264047, - [SMALL_STATE(4928)] = 264074, - [SMALL_STATE(4929)] = 264101, - [SMALL_STATE(4930)] = 264134, - [SMALL_STATE(4931)] = 264161, - [SMALL_STATE(4932)] = 264188, - [SMALL_STATE(4933)] = 264215, - [SMALL_STATE(4934)] = 264242, - [SMALL_STATE(4935)] = 264269, - [SMALL_STATE(4936)] = 264296, - [SMALL_STATE(4937)] = 264323, - [SMALL_STATE(4938)] = 264350, - [SMALL_STATE(4939)] = 264377, - [SMALL_STATE(4940)] = 264404, - [SMALL_STATE(4941)] = 264431, - [SMALL_STATE(4942)] = 264458, - [SMALL_STATE(4943)] = 264489, - [SMALL_STATE(4944)] = 264516, - [SMALL_STATE(4945)] = 264543, - [SMALL_STATE(4946)] = 264570, - [SMALL_STATE(4947)] = 264603, - [SMALL_STATE(4948)] = 264630, - [SMALL_STATE(4949)] = 264657, - [SMALL_STATE(4950)] = 264684, - [SMALL_STATE(4951)] = 264711, - [SMALL_STATE(4952)] = 264738, - [SMALL_STATE(4953)] = 264765, - [SMALL_STATE(4954)] = 264792, - [SMALL_STATE(4955)] = 264819, - [SMALL_STATE(4956)] = 264846, - [SMALL_STATE(4957)] = 264873, - [SMALL_STATE(4958)] = 264900, - [SMALL_STATE(4959)] = 264931, - [SMALL_STATE(4960)] = 264964, - [SMALL_STATE(4961)] = 264991, - [SMALL_STATE(4962)] = 265018, - [SMALL_STATE(4963)] = 265045, - [SMALL_STATE(4964)] = 265072, - [SMALL_STATE(4965)] = 265099, - [SMALL_STATE(4966)] = 265126, - [SMALL_STATE(4967)] = 265149, - [SMALL_STATE(4968)] = 265176, - [SMALL_STATE(4969)] = 265203, - [SMALL_STATE(4970)] = 265230, - [SMALL_STATE(4971)] = 265257, - [SMALL_STATE(4972)] = 265284, - [SMALL_STATE(4973)] = 265311, - [SMALL_STATE(4974)] = 265336, - [SMALL_STATE(4975)] = 265365, - [SMALL_STATE(4976)] = 265392, - [SMALL_STATE(4977)] = 265419, - [SMALL_STATE(4978)] = 265452, - [SMALL_STATE(4979)] = 265479, - [SMALL_STATE(4980)] = 265506, - [SMALL_STATE(4981)] = 265533, - [SMALL_STATE(4982)] = 265566, - [SMALL_STATE(4983)] = 265593, - [SMALL_STATE(4984)] = 265620, - [SMALL_STATE(4985)] = 265643, - [SMALL_STATE(4986)] = 265672, - [SMALL_STATE(4987)] = 265699, - [SMALL_STATE(4988)] = 265725, - [SMALL_STATE(4989)] = 265749, - [SMALL_STATE(4990)] = 265773, - [SMALL_STATE(4991)] = 265797, - [SMALL_STATE(4992)] = 265821, - [SMALL_STATE(4993)] = 265851, - [SMALL_STATE(4994)] = 265881, - [SMALL_STATE(4995)] = 265905, - [SMALL_STATE(4996)] = 265929, - [SMALL_STATE(4997)] = 265959, - [SMALL_STATE(4998)] = 265983, - [SMALL_STATE(4999)] = 266007, - [SMALL_STATE(5000)] = 266033, - [SMALL_STATE(5001)] = 266063, - [SMALL_STATE(5002)] = 266093, - [SMALL_STATE(5003)] = 266119, - [SMALL_STATE(5004)] = 266143, - [SMALL_STATE(5005)] = 266173, - [SMALL_STATE(5006)] = 266203, - [SMALL_STATE(5007)] = 266233, - [SMALL_STATE(5008)] = 266257, - [SMALL_STATE(5009)] = 266287, - [SMALL_STATE(5010)] = 266317, - [SMALL_STATE(5011)] = 266339, - [SMALL_STATE(5012)] = 266363, - [SMALL_STATE(5013)] = 266387, - [SMALL_STATE(5014)] = 266417, - [SMALL_STATE(5015)] = 266441, - [SMALL_STATE(5016)] = 266465, - [SMALL_STATE(5017)] = 266491, - [SMALL_STATE(5018)] = 266521, - [SMALL_STATE(5019)] = 266545, - [SMALL_STATE(5020)] = 266569, - [SMALL_STATE(5021)] = 266593, - [SMALL_STATE(5022)] = 266617, - [SMALL_STATE(5023)] = 266641, - [SMALL_STATE(5024)] = 266665, - [SMALL_STATE(5025)] = 266689, - [SMALL_STATE(5026)] = 266715, - [SMALL_STATE(5027)] = 266737, - [SMALL_STATE(5028)] = 266767, - [SMALL_STATE(5029)] = 266797, - [SMALL_STATE(5030)] = 266823, - [SMALL_STATE(5031)] = 266847, - [SMALL_STATE(5032)] = 266873, - [SMALL_STATE(5033)] = 266897, - [SMALL_STATE(5034)] = 266925, - [SMALL_STATE(5035)] = 266955, - [SMALL_STATE(5036)] = 266979, - [SMALL_STATE(5037)] = 267003, - [SMALL_STATE(5038)] = 267033, - [SMALL_STATE(5039)] = 267057, - [SMALL_STATE(5040)] = 267081, - [SMALL_STATE(5041)] = 267103, - [SMALL_STATE(5042)] = 267127, - [SMALL_STATE(5043)] = 267151, - [SMALL_STATE(5044)] = 267175, - [SMALL_STATE(5045)] = 267199, - [SMALL_STATE(5046)] = 267223, - [SMALL_STATE(5047)] = 267253, - [SMALL_STATE(5048)] = 267277, - [SMALL_STATE(5049)] = 267299, - [SMALL_STATE(5050)] = 267323, - [SMALL_STATE(5051)] = 267351, - [SMALL_STATE(5052)] = 267381, - [SMALL_STATE(5053)] = 267405, - [SMALL_STATE(5054)] = 267429, - [SMALL_STATE(5055)] = 267451, - [SMALL_STATE(5056)] = 267475, - [SMALL_STATE(5057)] = 267499, - [SMALL_STATE(5058)] = 267523, - [SMALL_STATE(5059)] = 267547, - [SMALL_STATE(5060)] = 267573, - [SMALL_STATE(5061)] = 267597, - [SMALL_STATE(5062)] = 267621, - [SMALL_STATE(5063)] = 267643, - [SMALL_STATE(5064)] = 267667, - [SMALL_STATE(5065)] = 267697, - [SMALL_STATE(5066)] = 267721, - [SMALL_STATE(5067)] = 267751, - [SMALL_STATE(5068)] = 267775, - [SMALL_STATE(5069)] = 267799, - [SMALL_STATE(5070)] = 267823, - [SMALL_STATE(5071)] = 267847, - [SMALL_STATE(5072)] = 267877, - [SMALL_STATE(5073)] = 267901, - [SMALL_STATE(5074)] = 267925, - [SMALL_STATE(5075)] = 267953, - [SMALL_STATE(5076)] = 267977, - [SMALL_STATE(5077)] = 268001, - [SMALL_STATE(5078)] = 268025, - [SMALL_STATE(5079)] = 268049, - [SMALL_STATE(5080)] = 268073, - [SMALL_STATE(5081)] = 268097, - [SMALL_STATE(5082)] = 268123, - [SMALL_STATE(5083)] = 268145, - [SMALL_STATE(5084)] = 268175, - [SMALL_STATE(5085)] = 268205, - [SMALL_STATE(5086)] = 268235, - [SMALL_STATE(5087)] = 268265, - [SMALL_STATE(5088)] = 268287, - [SMALL_STATE(5089)] = 268311, - [SMALL_STATE(5090)] = 268341, - [SMALL_STATE(5091)] = 268365, - [SMALL_STATE(5092)] = 268387, - [SMALL_STATE(5093)] = 268411, - [SMALL_STATE(5094)] = 268439, - [SMALL_STATE(5095)] = 268469, - [SMALL_STATE(5096)] = 268493, - [SMALL_STATE(5097)] = 268523, - [SMALL_STATE(5098)] = 268553, - [SMALL_STATE(5099)] = 268577, - [SMALL_STATE(5100)] = 268601, - [SMALL_STATE(5101)] = 268623, - [SMALL_STATE(5102)] = 268647, - [SMALL_STATE(5103)] = 268671, - [SMALL_STATE(5104)] = 268695, - [SMALL_STATE(5105)] = 268721, - [SMALL_STATE(5106)] = 268743, - [SMALL_STATE(5107)] = 268773, - [SMALL_STATE(5108)] = 268797, - [SMALL_STATE(5109)] = 268821, - [SMALL_STATE(5110)] = 268847, - [SMALL_STATE(5111)] = 268877, - [SMALL_STATE(5112)] = 268901, - [SMALL_STATE(5113)] = 268931, - [SMALL_STATE(5114)] = 268957, - [SMALL_STATE(5115)] = 268981, - [SMALL_STATE(5116)] = 269005, - [SMALL_STATE(5117)] = 269027, - [SMALL_STATE(5118)] = 269049, - [SMALL_STATE(5119)] = 269071, - [SMALL_STATE(5120)] = 269095, - [SMALL_STATE(5121)] = 269119, - [SMALL_STATE(5122)] = 269143, - [SMALL_STATE(5123)] = 269167, - [SMALL_STATE(5124)] = 269193, - [SMALL_STATE(5125)] = 269217, - [SMALL_STATE(5126)] = 269241, - [SMALL_STATE(5127)] = 269267, - [SMALL_STATE(5128)] = 269289, - [SMALL_STATE(5129)] = 269319, - [SMALL_STATE(5130)] = 269343, - [SMALL_STATE(5131)] = 269367, - [SMALL_STATE(5132)] = 269391, - [SMALL_STATE(5133)] = 269421, - [SMALL_STATE(5134)] = 269445, - [SMALL_STATE(5135)] = 269469, - [SMALL_STATE(5136)] = 269499, - [SMALL_STATE(5137)] = 269523, - [SMALL_STATE(5138)] = 269553, - [SMALL_STATE(5139)] = 269577, - [SMALL_STATE(5140)] = 269599, - [SMALL_STATE(5141)] = 269623, - [SMALL_STATE(5142)] = 269653, - [SMALL_STATE(5143)] = 269679, - [SMALL_STATE(5144)] = 269709, - [SMALL_STATE(5145)] = 269733, - [SMALL_STATE(5146)] = 269757, - [SMALL_STATE(5147)] = 269779, - [SMALL_STATE(5148)] = 269803, - [SMALL_STATE(5149)] = 269827, - [SMALL_STATE(5150)] = 269857, - [SMALL_STATE(5151)] = 269887, - [SMALL_STATE(5152)] = 269911, - [SMALL_STATE(5153)] = 269935, - [SMALL_STATE(5154)] = 269959, - [SMALL_STATE(5155)] = 269983, - [SMALL_STATE(5156)] = 270007, - [SMALL_STATE(5157)] = 270031, - [SMALL_STATE(5158)] = 270061, - [SMALL_STATE(5159)] = 270085, - [SMALL_STATE(5160)] = 270109, - [SMALL_STATE(5161)] = 270139, - [SMALL_STATE(5162)] = 270169, - [SMALL_STATE(5163)] = 270193, - [SMALL_STATE(5164)] = 270217, - [SMALL_STATE(5165)] = 270244, - [SMALL_STATE(5166)] = 270271, - [SMALL_STATE(5167)] = 270296, - [SMALL_STATE(5168)] = 270323, - [SMALL_STATE(5169)] = 270350, - [SMALL_STATE(5170)] = 270375, - [SMALL_STATE(5171)] = 270402, - [SMALL_STATE(5172)] = 270429, - [SMALL_STATE(5173)] = 270456, - [SMALL_STATE(5174)] = 270481, - [SMALL_STATE(5175)] = 270502, - [SMALL_STATE(5176)] = 270527, - [SMALL_STATE(5177)] = 270548, - [SMALL_STATE(5178)] = 270569, - [SMALL_STATE(5179)] = 270596, - [SMALL_STATE(5180)] = 270623, - [SMALL_STATE(5181)] = 270650, - [SMALL_STATE(5182)] = 270677, - [SMALL_STATE(5183)] = 270702, - [SMALL_STATE(5184)] = 270727, - [SMALL_STATE(5185)] = 270754, - [SMALL_STATE(5186)] = 270775, - [SMALL_STATE(5187)] = 270802, - [SMALL_STATE(5188)] = 270827, - [SMALL_STATE(5189)] = 270854, - [SMALL_STATE(5190)] = 270881, - [SMALL_STATE(5191)] = 270902, - [SMALL_STATE(5192)] = 270929, - [SMALL_STATE(5193)] = 270956, - [SMALL_STATE(5194)] = 270977, - [SMALL_STATE(5195)] = 271004, - [SMALL_STATE(5196)] = 271025, - [SMALL_STATE(5197)] = 271046, - [SMALL_STATE(5198)] = 271067, - [SMALL_STATE(5199)] = 271088, - [SMALL_STATE(5200)] = 271115, - [SMALL_STATE(5201)] = 271142, - [SMALL_STATE(5202)] = 271169, - [SMALL_STATE(5203)] = 271196, - [SMALL_STATE(5204)] = 271223, - [SMALL_STATE(5205)] = 271250, - [SMALL_STATE(5206)] = 271277, - [SMALL_STATE(5207)] = 271300, - [SMALL_STATE(5208)] = 271327, - [SMALL_STATE(5209)] = 271348, - [SMALL_STATE(5210)] = 271375, - [SMALL_STATE(5211)] = 271402, - [SMALL_STATE(5212)] = 271429, - [SMALL_STATE(5213)] = 271456, - [SMALL_STATE(5214)] = 271477, - [SMALL_STATE(5215)] = 271498, - [SMALL_STATE(5216)] = 271525, - [SMALL_STATE(5217)] = 271546, - [SMALL_STATE(5218)] = 271567, - [SMALL_STATE(5219)] = 271594, - [SMALL_STATE(5220)] = 271621, - [SMALL_STATE(5221)] = 271648, - [SMALL_STATE(5222)] = 271675, - [SMALL_STATE(5223)] = 271702, - [SMALL_STATE(5224)] = 271729, - [SMALL_STATE(5225)] = 271752, - [SMALL_STATE(5226)] = 271779, - [SMALL_STATE(5227)] = 271806, - [SMALL_STATE(5228)] = 271833, - [SMALL_STATE(5229)] = 271860, - [SMALL_STATE(5230)] = 271881, - [SMALL_STATE(5231)] = 271902, - [SMALL_STATE(5232)] = 271923, - [SMALL_STATE(5233)] = 271950, - [SMALL_STATE(5234)] = 271977, - [SMALL_STATE(5235)] = 272004, - [SMALL_STATE(5236)] = 272025, - [SMALL_STATE(5237)] = 272052, - [SMALL_STATE(5238)] = 272077, - [SMALL_STATE(5239)] = 272102, - [SMALL_STATE(5240)] = 272129, - [SMALL_STATE(5241)] = 272156, - [SMALL_STATE(5242)] = 272179, - [SMALL_STATE(5243)] = 272206, - [SMALL_STATE(5244)] = 272233, - [SMALL_STATE(5245)] = 272254, - [SMALL_STATE(5246)] = 272277, - [SMALL_STATE(5247)] = 272302, - [SMALL_STATE(5248)] = 272329, - [SMALL_STATE(5249)] = 272356, - [SMALL_STATE(5250)] = 272377, - [SMALL_STATE(5251)] = 272404, - [SMALL_STATE(5252)] = 272425, - [SMALL_STATE(5253)] = 272446, - [SMALL_STATE(5254)] = 272473, - [SMALL_STATE(5255)] = 272500, - [SMALL_STATE(5256)] = 272521, - [SMALL_STATE(5257)] = 272548, - [SMALL_STATE(5258)] = 272569, - [SMALL_STATE(5259)] = 272590, - [SMALL_STATE(5260)] = 272611, - [SMALL_STATE(5261)] = 272638, - [SMALL_STATE(5262)] = 272665, - [SMALL_STATE(5263)] = 272692, - [SMALL_STATE(5264)] = 272717, - [SMALL_STATE(5265)] = 272744, - [SMALL_STATE(5266)] = 272771, - [SMALL_STATE(5267)] = 272798, - [SMALL_STATE(5268)] = 272825, - [SMALL_STATE(5269)] = 272852, - [SMALL_STATE(5270)] = 272879, - [SMALL_STATE(5271)] = 272906, - [SMALL_STATE(5272)] = 272927, - [SMALL_STATE(5273)] = 272954, - [SMALL_STATE(5274)] = 272975, - [SMALL_STATE(5275)] = 273002, - [SMALL_STATE(5276)] = 273029, - [SMALL_STATE(5277)] = 273056, - [SMALL_STATE(5278)] = 273077, - [SMALL_STATE(5279)] = 273104, - [SMALL_STATE(5280)] = 273131, - [SMALL_STATE(5281)] = 273158, - [SMALL_STATE(5282)] = 273185, - [SMALL_STATE(5283)] = 273206, - [SMALL_STATE(5284)] = 273227, - [SMALL_STATE(5285)] = 273254, - [SMALL_STATE(5286)] = 273281, - [SMALL_STATE(5287)] = 273308, - [SMALL_STATE(5288)] = 273329, - [SMALL_STATE(5289)] = 273356, - [SMALL_STATE(5290)] = 273383, - [SMALL_STATE(5291)] = 273410, - [SMALL_STATE(5292)] = 273437, - [SMALL_STATE(5293)] = 273458, - [SMALL_STATE(5294)] = 273479, - [SMALL_STATE(5295)] = 273506, - [SMALL_STATE(5296)] = 273527, - [SMALL_STATE(5297)] = 273554, - [SMALL_STATE(5298)] = 273581, - [SMALL_STATE(5299)] = 273608, - [SMALL_STATE(5300)] = 273635, - [SMALL_STATE(5301)] = 273656, - [SMALL_STATE(5302)] = 273677, - [SMALL_STATE(5303)] = 273704, - [SMALL_STATE(5304)] = 273729, - [SMALL_STATE(5305)] = 273756, - [SMALL_STATE(5306)] = 273783, - [SMALL_STATE(5307)] = 273810, - [SMALL_STATE(5308)] = 273837, - [SMALL_STATE(5309)] = 273864, - [SMALL_STATE(5310)] = 273891, - [SMALL_STATE(5311)] = 273918, - [SMALL_STATE(5312)] = 273945, - [SMALL_STATE(5313)] = 273966, - [SMALL_STATE(5314)] = 273987, - [SMALL_STATE(5315)] = 274014, - [SMALL_STATE(5316)] = 274041, - [SMALL_STATE(5317)] = 274062, - [SMALL_STATE(5318)] = 274089, - [SMALL_STATE(5319)] = 274116, - [SMALL_STATE(5320)] = 274143, - [SMALL_STATE(5321)] = 274170, - [SMALL_STATE(5322)] = 274191, - [SMALL_STATE(5323)] = 274218, - [SMALL_STATE(5324)] = 274239, - [SMALL_STATE(5325)] = 274266, - [SMALL_STATE(5326)] = 274287, - [SMALL_STATE(5327)] = 274312, - [SMALL_STATE(5328)] = 274337, - [SMALL_STATE(5329)] = 274364, - [SMALL_STATE(5330)] = 274385, - [SMALL_STATE(5331)] = 274412, - [SMALL_STATE(5332)] = 274439, - [SMALL_STATE(5333)] = 274466, - [SMALL_STATE(5334)] = 274493, - [SMALL_STATE(5335)] = 274514, - [SMALL_STATE(5336)] = 274535, - [SMALL_STATE(5337)] = 274562, - [SMALL_STATE(5338)] = 274583, - [SMALL_STATE(5339)] = 274604, - [SMALL_STATE(5340)] = 274631, - [SMALL_STATE(5341)] = 274658, - [SMALL_STATE(5342)] = 274679, - [SMALL_STATE(5343)] = 274704, - [SMALL_STATE(5344)] = 274725, - [SMALL_STATE(5345)] = 274752, - [SMALL_STATE(5346)] = 274773, - [SMALL_STATE(5347)] = 274800, - [SMALL_STATE(5348)] = 274827, - [SMALL_STATE(5349)] = 274854, - [SMALL_STATE(5350)] = 274875, - [SMALL_STATE(5351)] = 274902, - [SMALL_STATE(5352)] = 274929, - [SMALL_STATE(5353)] = 274950, - [SMALL_STATE(5354)] = 274975, - [SMALL_STATE(5355)] = 275002, - [SMALL_STATE(5356)] = 275029, - [SMALL_STATE(5357)] = 275056, - [SMALL_STATE(5358)] = 275083, - [SMALL_STATE(5359)] = 275106, - [SMALL_STATE(5360)] = 275133, - [SMALL_STATE(5361)] = 275160, - [SMALL_STATE(5362)] = 275185, - [SMALL_STATE(5363)] = 275212, - [SMALL_STATE(5364)] = 275239, - [SMALL_STATE(5365)] = 275260, - [SMALL_STATE(5366)] = 275287, - [SMALL_STATE(5367)] = 275314, - [SMALL_STATE(5368)] = 275335, - [SMALL_STATE(5369)] = 275362, - [SMALL_STATE(5370)] = 275389, - [SMALL_STATE(5371)] = 275416, - [SMALL_STATE(5372)] = 275437, - [SMALL_STATE(5373)] = 275462, - [SMALL_STATE(5374)] = 275489, - [SMALL_STATE(5375)] = 275510, - [SMALL_STATE(5376)] = 275537, - [SMALL_STATE(5377)] = 275558, - [SMALL_STATE(5378)] = 275585, - [SMALL_STATE(5379)] = 275612, - [SMALL_STATE(5380)] = 275633, - [SMALL_STATE(5381)] = 275660, - [SMALL_STATE(5382)] = 275681, - [SMALL_STATE(5383)] = 275708, - [SMALL_STATE(5384)] = 275732, - [SMALL_STATE(5385)] = 275756, - [SMALL_STATE(5386)] = 275780, - [SMALL_STATE(5387)] = 275804, - [SMALL_STATE(5388)] = 275828, - [SMALL_STATE(5389)] = 275852, - [SMALL_STATE(5390)] = 275876, - [SMALL_STATE(5391)] = 275900, - [SMALL_STATE(5392)] = 275924, - [SMALL_STATE(5393)] = 275948, - [SMALL_STATE(5394)] = 275972, - [SMALL_STATE(5395)] = 275992, - [SMALL_STATE(5396)] = 276016, - [SMALL_STATE(5397)] = 276040, - [SMALL_STATE(5398)] = 276064, - [SMALL_STATE(5399)] = 276088, - [SMALL_STATE(5400)] = 276110, - [SMALL_STATE(5401)] = 276134, - [SMALL_STATE(5402)] = 276158, - [SMALL_STATE(5403)] = 276182, - [SMALL_STATE(5404)] = 276204, - [SMALL_STATE(5405)] = 276228, - [SMALL_STATE(5406)] = 276252, - [SMALL_STATE(5407)] = 276276, - [SMALL_STATE(5408)] = 276300, - [SMALL_STATE(5409)] = 276324, - [SMALL_STATE(5410)] = 276348, - [SMALL_STATE(5411)] = 276372, - [SMALL_STATE(5412)] = 276396, - [SMALL_STATE(5413)] = 276418, - [SMALL_STATE(5414)] = 276442, - [SMALL_STATE(5415)] = 276466, - [SMALL_STATE(5416)] = 276490, - [SMALL_STATE(5417)] = 276514, - [SMALL_STATE(5418)] = 276534, - [SMALL_STATE(5419)] = 276558, - [SMALL_STATE(5420)] = 276578, - [SMALL_STATE(5421)] = 276602, - [SMALL_STATE(5422)] = 276622, - [SMALL_STATE(5423)] = 276646, - [SMALL_STATE(5424)] = 276670, - [SMALL_STATE(5425)] = 276694, - [SMALL_STATE(5426)] = 276714, - [SMALL_STATE(5427)] = 276734, - [SMALL_STATE(5428)] = 276758, - [SMALL_STATE(5429)] = 276782, - [SMALL_STATE(5430)] = 276806, - [SMALL_STATE(5431)] = 276830, - [SMALL_STATE(5432)] = 276854, - [SMALL_STATE(5433)] = 276878, - [SMALL_STATE(5434)] = 276902, - [SMALL_STATE(5435)] = 276926, - [SMALL_STATE(5436)] = 276948, - [SMALL_STATE(5437)] = 276972, - [SMALL_STATE(5438)] = 276996, - [SMALL_STATE(5439)] = 277020, - [SMALL_STATE(5440)] = 277044, - [SMALL_STATE(5441)] = 277064, - [SMALL_STATE(5442)] = 277088, - [SMALL_STATE(5443)] = 277112, - [SMALL_STATE(5444)] = 277136, - [SMALL_STATE(5445)] = 277160, - [SMALL_STATE(5446)] = 277184, - [SMALL_STATE(5447)] = 277208, - [SMALL_STATE(5448)] = 277232, - [SMALL_STATE(5449)] = 277256, - [SMALL_STATE(5450)] = 277280, - [SMALL_STATE(5451)] = 277304, - [SMALL_STATE(5452)] = 277328, - [SMALL_STATE(5453)] = 277352, - [SMALL_STATE(5454)] = 277376, - [SMALL_STATE(5455)] = 277400, - [SMALL_STATE(5456)] = 277422, - [SMALL_STATE(5457)] = 277446, - [SMALL_STATE(5458)] = 277470, - [SMALL_STATE(5459)] = 277494, - [SMALL_STATE(5460)] = 277518, - [SMALL_STATE(5461)] = 277542, - [SMALL_STATE(5462)] = 277566, - [SMALL_STATE(5463)] = 277590, - [SMALL_STATE(5464)] = 277614, - [SMALL_STATE(5465)] = 277638, - [SMALL_STATE(5466)] = 277662, - [SMALL_STATE(5467)] = 277686, - [SMALL_STATE(5468)] = 277710, - [SMALL_STATE(5469)] = 277732, - [SMALL_STATE(5470)] = 277752, - [SMALL_STATE(5471)] = 277776, - [SMALL_STATE(5472)] = 277800, - [SMALL_STATE(5473)] = 277824, - [SMALL_STATE(5474)] = 277848, - [SMALL_STATE(5475)] = 277872, - [SMALL_STATE(5476)] = 277896, - [SMALL_STATE(5477)] = 277920, - [SMALL_STATE(5478)] = 277944, - [SMALL_STATE(5479)] = 277968, - [SMALL_STATE(5480)] = 277992, - [SMALL_STATE(5481)] = 278016, - [SMALL_STATE(5482)] = 278040, - [SMALL_STATE(5483)] = 278064, - [SMALL_STATE(5484)] = 278088, - [SMALL_STATE(5485)] = 278112, - [SMALL_STATE(5486)] = 278136, - [SMALL_STATE(5487)] = 278160, - [SMALL_STATE(5488)] = 278184, - [SMALL_STATE(5489)] = 278208, - [SMALL_STATE(5490)] = 278232, - [SMALL_STATE(5491)] = 278256, - [SMALL_STATE(5492)] = 278280, - [SMALL_STATE(5493)] = 278304, - [SMALL_STATE(5494)] = 278328, - [SMALL_STATE(5495)] = 278352, - [SMALL_STATE(5496)] = 278376, - [SMALL_STATE(5497)] = 278400, - [SMALL_STATE(5498)] = 278424, - [SMALL_STATE(5499)] = 278448, - [SMALL_STATE(5500)] = 278472, - [SMALL_STATE(5501)] = 278496, - [SMALL_STATE(5502)] = 278520, - [SMALL_STATE(5503)] = 278544, - [SMALL_STATE(5504)] = 278566, - [SMALL_STATE(5505)] = 278590, - [SMALL_STATE(5506)] = 278610, - [SMALL_STATE(5507)] = 278634, - [SMALL_STATE(5508)] = 278658, - [SMALL_STATE(5509)] = 278682, - [SMALL_STATE(5510)] = 278706, - [SMALL_STATE(5511)] = 278730, - [SMALL_STATE(5512)] = 278754, - [SMALL_STATE(5513)] = 278778, - [SMALL_STATE(5514)] = 278802, - [SMALL_STATE(5515)] = 278826, - [SMALL_STATE(5516)] = 278850, - [SMALL_STATE(5517)] = 278874, - [SMALL_STATE(5518)] = 278898, - [SMALL_STATE(5519)] = 278922, - [SMALL_STATE(5520)] = 278946, - [SMALL_STATE(5521)] = 278970, - [SMALL_STATE(5522)] = 278994, - [SMALL_STATE(5523)] = 279018, - [SMALL_STATE(5524)] = 279042, - [SMALL_STATE(5525)] = 279066, - [SMALL_STATE(5526)] = 279090, - [SMALL_STATE(5527)] = 279114, - [SMALL_STATE(5528)] = 279134, - [SMALL_STATE(5529)] = 279158, - [SMALL_STATE(5530)] = 279182, - [SMALL_STATE(5531)] = 279206, - [SMALL_STATE(5532)] = 279230, - [SMALL_STATE(5533)] = 279254, - [SMALL_STATE(5534)] = 279278, - [SMALL_STATE(5535)] = 279302, - [SMALL_STATE(5536)] = 279326, - [SMALL_STATE(5537)] = 279346, - [SMALL_STATE(5538)] = 279370, - [SMALL_STATE(5539)] = 279390, - [SMALL_STATE(5540)] = 279414, - [SMALL_STATE(5541)] = 279438, - [SMALL_STATE(5542)] = 279462, - [SMALL_STATE(5543)] = 279486, - [SMALL_STATE(5544)] = 279508, - [SMALL_STATE(5545)] = 279532, - [SMALL_STATE(5546)] = 279556, - [SMALL_STATE(5547)] = 279576, - [SMALL_STATE(5548)] = 279600, - [SMALL_STATE(5549)] = 279624, - [SMALL_STATE(5550)] = 279648, - [SMALL_STATE(5551)] = 279672, - [SMALL_STATE(5552)] = 279696, - [SMALL_STATE(5553)] = 279720, - [SMALL_STATE(5554)] = 279744, - [SMALL_STATE(5555)] = 279764, - [SMALL_STATE(5556)] = 279788, - [SMALL_STATE(5557)] = 279808, - [SMALL_STATE(5558)] = 279828, - [SMALL_STATE(5559)] = 279852, - [SMALL_STATE(5560)] = 279876, - [SMALL_STATE(5561)] = 279900, - [SMALL_STATE(5562)] = 279924, - [SMALL_STATE(5563)] = 279948, - [SMALL_STATE(5564)] = 279970, - [SMALL_STATE(5565)] = 279994, - [SMALL_STATE(5566)] = 280014, - [SMALL_STATE(5567)] = 280038, - [SMALL_STATE(5568)] = 280062, - [SMALL_STATE(5569)] = 280086, - [SMALL_STATE(5570)] = 280110, - [SMALL_STATE(5571)] = 280130, - [SMALL_STATE(5572)] = 280154, - [SMALL_STATE(5573)] = 280174, - [SMALL_STATE(5574)] = 280198, - [SMALL_STATE(5575)] = 280222, - [SMALL_STATE(5576)] = 280246, - [SMALL_STATE(5577)] = 280270, - [SMALL_STATE(5578)] = 280294, - [SMALL_STATE(5579)] = 280318, - [SMALL_STATE(5580)] = 280342, - [SMALL_STATE(5581)] = 280366, - [SMALL_STATE(5582)] = 280390, - [SMALL_STATE(5583)] = 280410, - [SMALL_STATE(5584)] = 280434, - [SMALL_STATE(5585)] = 280458, - [SMALL_STATE(5586)] = 280482, - [SMALL_STATE(5587)] = 280506, - [SMALL_STATE(5588)] = 280530, - [SMALL_STATE(5589)] = 280550, - [SMALL_STATE(5590)] = 280574, - [SMALL_STATE(5591)] = 280598, - [SMALL_STATE(5592)] = 280622, - [SMALL_STATE(5593)] = 280644, - [SMALL_STATE(5594)] = 280668, - [SMALL_STATE(5595)] = 280692, - [SMALL_STATE(5596)] = 280716, - [SMALL_STATE(5597)] = 280740, - [SMALL_STATE(5598)] = 280764, - [SMALL_STATE(5599)] = 280786, - [SMALL_STATE(5600)] = 280810, - [SMALL_STATE(5601)] = 280834, - [SMALL_STATE(5602)] = 280858, - [SMALL_STATE(5603)] = 280882, - [SMALL_STATE(5604)] = 280906, - [SMALL_STATE(5605)] = 280930, - [SMALL_STATE(5606)] = 280954, - [SMALL_STATE(5607)] = 280978, - [SMALL_STATE(5608)] = 281002, - [SMALL_STATE(5609)] = 281026, - [SMALL_STATE(5610)] = 281050, - [SMALL_STATE(5611)] = 281074, - [SMALL_STATE(5612)] = 281098, - [SMALL_STATE(5613)] = 281122, - [SMALL_STATE(5614)] = 281146, - [SMALL_STATE(5615)] = 281170, - [SMALL_STATE(5616)] = 281192, - [SMALL_STATE(5617)] = 281216, - [SMALL_STATE(5618)] = 281240, - [SMALL_STATE(5619)] = 281264, - [SMALL_STATE(5620)] = 281288, - [SMALL_STATE(5621)] = 281312, - [SMALL_STATE(5622)] = 281336, - [SMALL_STATE(5623)] = 281360, - [SMALL_STATE(5624)] = 281384, - [SMALL_STATE(5625)] = 281408, - [SMALL_STATE(5626)] = 281432, - [SMALL_STATE(5627)] = 281452, - [SMALL_STATE(5628)] = 281476, - [SMALL_STATE(5629)] = 281500, - [SMALL_STATE(5630)] = 281524, - [SMALL_STATE(5631)] = 281548, - [SMALL_STATE(5632)] = 281572, - [SMALL_STATE(5633)] = 281596, - [SMALL_STATE(5634)] = 281620, - [SMALL_STATE(5635)] = 281644, - [SMALL_STATE(5636)] = 281668, - [SMALL_STATE(5637)] = 281692, - [SMALL_STATE(5638)] = 281716, - [SMALL_STATE(5639)] = 281738, - [SMALL_STATE(5640)] = 281762, - [SMALL_STATE(5641)] = 281786, - [SMALL_STATE(5642)] = 281810, - [SMALL_STATE(5643)] = 281834, - [SMALL_STATE(5644)] = 281854, - [SMALL_STATE(5645)] = 281878, - [SMALL_STATE(5646)] = 281902, - [SMALL_STATE(5647)] = 281926, - [SMALL_STATE(5648)] = 281950, - [SMALL_STATE(5649)] = 281974, - [SMALL_STATE(5650)] = 281998, - [SMALL_STATE(5651)] = 282022, - [SMALL_STATE(5652)] = 282042, - [SMALL_STATE(5653)] = 282066, - [SMALL_STATE(5654)] = 282088, - [SMALL_STATE(5655)] = 282112, - [SMALL_STATE(5656)] = 282136, - [SMALL_STATE(5657)] = 282160, - [SMALL_STATE(5658)] = 282184, - [SMALL_STATE(5659)] = 282208, - [SMALL_STATE(5660)] = 282230, - [SMALL_STATE(5661)] = 282254, - [SMALL_STATE(5662)] = 282274, - [SMALL_STATE(5663)] = 282298, - [SMALL_STATE(5664)] = 282322, - [SMALL_STATE(5665)] = 282346, - [SMALL_STATE(5666)] = 282370, - [SMALL_STATE(5667)] = 282390, - [SMALL_STATE(5668)] = 282410, - [SMALL_STATE(5669)] = 282430, - [SMALL_STATE(5670)] = 282454, - [SMALL_STATE(5671)] = 282478, - [SMALL_STATE(5672)] = 282502, - [SMALL_STATE(5673)] = 282526, - [SMALL_STATE(5674)] = 282550, - [SMALL_STATE(5675)] = 282574, - [SMALL_STATE(5676)] = 282598, - [SMALL_STATE(5677)] = 282622, - [SMALL_STATE(5678)] = 282644, - [SMALL_STATE(5679)] = 282664, - [SMALL_STATE(5680)] = 282688, - [SMALL_STATE(5681)] = 282712, - [SMALL_STATE(5682)] = 282736, - [SMALL_STATE(5683)] = 282760, - [SMALL_STATE(5684)] = 282784, - [SMALL_STATE(5685)] = 282808, - [SMALL_STATE(5686)] = 282832, - [SMALL_STATE(5687)] = 282856, - [SMALL_STATE(5688)] = 282876, - [SMALL_STATE(5689)] = 282896, - [SMALL_STATE(5690)] = 282920, - [SMALL_STATE(5691)] = 282942, - [SMALL_STATE(5692)] = 282966, - [SMALL_STATE(5693)] = 282990, - [SMALL_STATE(5694)] = 283014, - [SMALL_STATE(5695)] = 283038, - [SMALL_STATE(5696)] = 283062, - [SMALL_STATE(5697)] = 283086, - [SMALL_STATE(5698)] = 283110, - [SMALL_STATE(5699)] = 283130, - [SMALL_STATE(5700)] = 283154, - [SMALL_STATE(5701)] = 283174, - [SMALL_STATE(5702)] = 283198, - [SMALL_STATE(5703)] = 283222, - [SMALL_STATE(5704)] = 283246, - [SMALL_STATE(5705)] = 283270, - [SMALL_STATE(5706)] = 283294, - [SMALL_STATE(5707)] = 283318, - [SMALL_STATE(5708)] = 283338, - [SMALL_STATE(5709)] = 283362, - [SMALL_STATE(5710)] = 283382, - [SMALL_STATE(5711)] = 283402, - [SMALL_STATE(5712)] = 283426, - [SMALL_STATE(5713)] = 283446, - [SMALL_STATE(5714)] = 283466, - [SMALL_STATE(5715)] = 283486, - [SMALL_STATE(5716)] = 283510, - [SMALL_STATE(5717)] = 283534, - [SMALL_STATE(5718)] = 283554, - [SMALL_STATE(5719)] = 283578, - [SMALL_STATE(5720)] = 283602, - [SMALL_STATE(5721)] = 283624, - [SMALL_STATE(5722)] = 283648, - [SMALL_STATE(5723)] = 283672, - [SMALL_STATE(5724)] = 283692, - [SMALL_STATE(5725)] = 283714, - [SMALL_STATE(5726)] = 283738, - [SMALL_STATE(5727)] = 283762, - [SMALL_STATE(5728)] = 283782, - [SMALL_STATE(5729)] = 283806, - [SMALL_STATE(5730)] = 283830, - [SMALL_STATE(5731)] = 283854, - [SMALL_STATE(5732)] = 283878, - [SMALL_STATE(5733)] = 283898, - [SMALL_STATE(5734)] = 283918, - [SMALL_STATE(5735)] = 283938, - [SMALL_STATE(5736)] = 283958, - [SMALL_STATE(5737)] = 283982, - [SMALL_STATE(5738)] = 284004, - [SMALL_STATE(5739)] = 284024, - [SMALL_STATE(5740)] = 284048, - [SMALL_STATE(5741)] = 284068, - [SMALL_STATE(5742)] = 284090, - [SMALL_STATE(5743)] = 284112, - [SMALL_STATE(5744)] = 284136, - [SMALL_STATE(5745)] = 284156, - [SMALL_STATE(5746)] = 284180, - [SMALL_STATE(5747)] = 284204, - [SMALL_STATE(5748)] = 284228, - [SMALL_STATE(5749)] = 284252, - [SMALL_STATE(5750)] = 284272, - [SMALL_STATE(5751)] = 284296, - [SMALL_STATE(5752)] = 284320, - [SMALL_STATE(5753)] = 284344, - [SMALL_STATE(5754)] = 284368, - [SMALL_STATE(5755)] = 284388, - [SMALL_STATE(5756)] = 284412, - [SMALL_STATE(5757)] = 284432, - [SMALL_STATE(5758)] = 284456, - [SMALL_STATE(5759)] = 284478, - [SMALL_STATE(5760)] = 284502, - [SMALL_STATE(5761)] = 284524, - [SMALL_STATE(5762)] = 284548, - [SMALL_STATE(5763)] = 284572, - [SMALL_STATE(5764)] = 284594, - [SMALL_STATE(5765)] = 284618, - [SMALL_STATE(5766)] = 284642, - [SMALL_STATE(5767)] = 284662, - [SMALL_STATE(5768)] = 284686, - [SMALL_STATE(5769)] = 284710, - [SMALL_STATE(5770)] = 284734, - [SMALL_STATE(5771)] = 284758, - [SMALL_STATE(5772)] = 284782, - [SMALL_STATE(5773)] = 284802, - [SMALL_STATE(5774)] = 284826, - [SMALL_STATE(5775)] = 284850, - [SMALL_STATE(5776)] = 284874, - [SMALL_STATE(5777)] = 284898, - [SMALL_STATE(5778)] = 284922, - [SMALL_STATE(5779)] = 284942, - [SMALL_STATE(5780)] = 284966, - [SMALL_STATE(5781)] = 284986, - [SMALL_STATE(5782)] = 285010, - [SMALL_STATE(5783)] = 285034, - [SMALL_STATE(5784)] = 285054, - [SMALL_STATE(5785)] = 285078, - [SMALL_STATE(5786)] = 285102, - [SMALL_STATE(5787)] = 285122, - [SMALL_STATE(5788)] = 285146, - [SMALL_STATE(5789)] = 285170, - [SMALL_STATE(5790)] = 285194, - [SMALL_STATE(5791)] = 285214, - [SMALL_STATE(5792)] = 285236, - [SMALL_STATE(5793)] = 285260, - [SMALL_STATE(5794)] = 285284, - [SMALL_STATE(5795)] = 285308, - [SMALL_STATE(5796)] = 285330, - [SMALL_STATE(5797)] = 285354, - [SMALL_STATE(5798)] = 285378, - [SMALL_STATE(5799)] = 285402, - [SMALL_STATE(5800)] = 285426, - [SMALL_STATE(5801)] = 285448, - [SMALL_STATE(5802)] = 285472, - [SMALL_STATE(5803)] = 285496, - [SMALL_STATE(5804)] = 285520, - [SMALL_STATE(5805)] = 285544, - [SMALL_STATE(5806)] = 285568, - [SMALL_STATE(5807)] = 285588, - [SMALL_STATE(5808)] = 285612, - [SMALL_STATE(5809)] = 285636, - [SMALL_STATE(5810)] = 285660, - [SMALL_STATE(5811)] = 285684, - [SMALL_STATE(5812)] = 285708, - [SMALL_STATE(5813)] = 285732, - [SMALL_STATE(5814)] = 285756, - [SMALL_STATE(5815)] = 285780, - [SMALL_STATE(5816)] = 285802, - [SMALL_STATE(5817)] = 285826, - [SMALL_STATE(5818)] = 285846, - [SMALL_STATE(5819)] = 285870, - [SMALL_STATE(5820)] = 285894, - [SMALL_STATE(5821)] = 285918, - [SMALL_STATE(5822)] = 285942, - [SMALL_STATE(5823)] = 285966, - [SMALL_STATE(5824)] = 285988, - [SMALL_STATE(5825)] = 286012, - [SMALL_STATE(5826)] = 286036, - [SMALL_STATE(5827)] = 286060, - [SMALL_STATE(5828)] = 286084, - [SMALL_STATE(5829)] = 286108, - [SMALL_STATE(5830)] = 286128, - [SMALL_STATE(5831)] = 286152, - [SMALL_STATE(5832)] = 286172, - [SMALL_STATE(5833)] = 286196, - [SMALL_STATE(5834)] = 286220, - [SMALL_STATE(5835)] = 286244, - [SMALL_STATE(5836)] = 286264, - [SMALL_STATE(5837)] = 286283, - [SMALL_STATE(5838)] = 286304, - [SMALL_STATE(5839)] = 286325, - [SMALL_STATE(5840)] = 286344, - [SMALL_STATE(5841)] = 286363, - [SMALL_STATE(5842)] = 286384, - [SMALL_STATE(5843)] = 286403, - [SMALL_STATE(5844)] = 286422, - [SMALL_STATE(5845)] = 286441, - [SMALL_STATE(5846)] = 286460, - [SMALL_STATE(5847)] = 286479, - [SMALL_STATE(5848)] = 286498, - [SMALL_STATE(5849)] = 286517, - [SMALL_STATE(5850)] = 286536, - [SMALL_STATE(5851)] = 286555, - [SMALL_STATE(5852)] = 286574, - [SMALL_STATE(5853)] = 286593, - [SMALL_STATE(5854)] = 286614, - [SMALL_STATE(5855)] = 286635, - [SMALL_STATE(5856)] = 286654, - [SMALL_STATE(5857)] = 286673, - [SMALL_STATE(5858)] = 286692, - [SMALL_STATE(5859)] = 286711, - [SMALL_STATE(5860)] = 286732, - [SMALL_STATE(5861)] = 286751, - [SMALL_STATE(5862)] = 286770, - [SMALL_STATE(5863)] = 286789, - [SMALL_STATE(5864)] = 286808, - [SMALL_STATE(5865)] = 286827, - [SMALL_STATE(5866)] = 286848, - [SMALL_STATE(5867)] = 286867, - [SMALL_STATE(5868)] = 286886, - [SMALL_STATE(5869)] = 286905, - [SMALL_STATE(5870)] = 286924, - [SMALL_STATE(5871)] = 286943, - [SMALL_STATE(5872)] = 286962, - [SMALL_STATE(5873)] = 286981, - [SMALL_STATE(5874)] = 287000, - [SMALL_STATE(5875)] = 287021, - [SMALL_STATE(5876)] = 287040, - [SMALL_STATE(5877)] = 287059, - [SMALL_STATE(5878)] = 287078, - [SMALL_STATE(5879)] = 287097, - [SMALL_STATE(5880)] = 287118, - [SMALL_STATE(5881)] = 287139, - [SMALL_STATE(5882)] = 287160, - [SMALL_STATE(5883)] = 287181, - [SMALL_STATE(5884)] = 287202, - [SMALL_STATE(5885)] = 287221, - [SMALL_STATE(5886)] = 287240, - [SMALL_STATE(5887)] = 287261, - [SMALL_STATE(5888)] = 287282, - [SMALL_STATE(5889)] = 287303, - [SMALL_STATE(5890)] = 287322, - [SMALL_STATE(5891)] = 287343, - [SMALL_STATE(5892)] = 287364, - [SMALL_STATE(5893)] = 287385, - [SMALL_STATE(5894)] = 287406, - [SMALL_STATE(5895)] = 287427, - [SMALL_STATE(5896)] = 287448, - [SMALL_STATE(5897)] = 287469, - [SMALL_STATE(5898)] = 287488, - [SMALL_STATE(5899)] = 287509, - [SMALL_STATE(5900)] = 287528, - [SMALL_STATE(5901)] = 287547, - [SMALL_STATE(5902)] = 287568, - [SMALL_STATE(5903)] = 287589, - [SMALL_STATE(5904)] = 287608, - [SMALL_STATE(5905)] = 287627, - [SMALL_STATE(5906)] = 287646, - [SMALL_STATE(5907)] = 287665, - [SMALL_STATE(5908)] = 287686, - [SMALL_STATE(5909)] = 287707, - [SMALL_STATE(5910)] = 287728, - [SMALL_STATE(5911)] = 287747, - [SMALL_STATE(5912)] = 287768, - [SMALL_STATE(5913)] = 287787, - [SMALL_STATE(5914)] = 287808, - [SMALL_STATE(5915)] = 287827, - [SMALL_STATE(5916)] = 287846, - [SMALL_STATE(5917)] = 287865, - [SMALL_STATE(5918)] = 287884, - [SMALL_STATE(5919)] = 287905, - [SMALL_STATE(5920)] = 287924, - [SMALL_STATE(5921)] = 287943, - [SMALL_STATE(5922)] = 287962, - [SMALL_STATE(5923)] = 287981, - [SMALL_STATE(5924)] = 288002, - [SMALL_STATE(5925)] = 288021, - [SMALL_STATE(5926)] = 288042, - [SMALL_STATE(5927)] = 288061, - [SMALL_STATE(5928)] = 288080, - [SMALL_STATE(5929)] = 288099, - [SMALL_STATE(5930)] = 288120, - [SMALL_STATE(5931)] = 288141, - [SMALL_STATE(5932)] = 288160, - [SMALL_STATE(5933)] = 288179, - [SMALL_STATE(5934)] = 288198, - [SMALL_STATE(5935)] = 288219, - [SMALL_STATE(5936)] = 288240, - [SMALL_STATE(5937)] = 288259, - [SMALL_STATE(5938)] = 288278, - [SMALL_STATE(5939)] = 288297, - [SMALL_STATE(5940)] = 288316, - [SMALL_STATE(5941)] = 288337, - [SMALL_STATE(5942)] = 288356, - [SMALL_STATE(5943)] = 288375, - [SMALL_STATE(5944)] = 288394, - [SMALL_STATE(5945)] = 288415, - [SMALL_STATE(5946)] = 288434, - [SMALL_STATE(5947)] = 288453, - [SMALL_STATE(5948)] = 288474, - [SMALL_STATE(5949)] = 288493, - [SMALL_STATE(5950)] = 288512, - [SMALL_STATE(5951)] = 288533, - [SMALL_STATE(5952)] = 288554, - [SMALL_STATE(5953)] = 288575, - [SMALL_STATE(5954)] = 288596, - [SMALL_STATE(5955)] = 288615, - [SMALL_STATE(5956)] = 288636, - [SMALL_STATE(5957)] = 288657, - [SMALL_STATE(5958)] = 288678, - [SMALL_STATE(5959)] = 288699, - [SMALL_STATE(5960)] = 288718, - [SMALL_STATE(5961)] = 288739, - [SMALL_STATE(5962)] = 288760, - [SMALL_STATE(5963)] = 288779, - [SMALL_STATE(5964)] = 288800, - [SMALL_STATE(5965)] = 288819, - [SMALL_STATE(5966)] = 288838, - [SMALL_STATE(5967)] = 288859, - [SMALL_STATE(5968)] = 288880, - [SMALL_STATE(5969)] = 288899, - [SMALL_STATE(5970)] = 288918, - [SMALL_STATE(5971)] = 288939, - [SMALL_STATE(5972)] = 288958, - [SMALL_STATE(5973)] = 288977, - [SMALL_STATE(5974)] = 288996, - [SMALL_STATE(5975)] = 289015, - [SMALL_STATE(5976)] = 289036, - [SMALL_STATE(5977)] = 289057, - [SMALL_STATE(5978)] = 289078, - [SMALL_STATE(5979)] = 289097, - [SMALL_STATE(5980)] = 289118, - [SMALL_STATE(5981)] = 289139, - [SMALL_STATE(5982)] = 289160, - [SMALL_STATE(5983)] = 289181, - [SMALL_STATE(5984)] = 289202, - [SMALL_STATE(5985)] = 289221, - [SMALL_STATE(5986)] = 289242, - [SMALL_STATE(5987)] = 289263, - [SMALL_STATE(5988)] = 289284, - [SMALL_STATE(5989)] = 289303, - [SMALL_STATE(5990)] = 289322, - [SMALL_STATE(5991)] = 289343, - [SMALL_STATE(5992)] = 289364, - [SMALL_STATE(5993)] = 289385, - [SMALL_STATE(5994)] = 289406, - [SMALL_STATE(5995)] = 289425, - [SMALL_STATE(5996)] = 289446, - [SMALL_STATE(5997)] = 289467, - [SMALL_STATE(5998)] = 289486, - [SMALL_STATE(5999)] = 289507, - [SMALL_STATE(6000)] = 289528, - [SMALL_STATE(6001)] = 289549, - [SMALL_STATE(6002)] = 289570, - [SMALL_STATE(6003)] = 289589, - [SMALL_STATE(6004)] = 289610, - [SMALL_STATE(6005)] = 289631, - [SMALL_STATE(6006)] = 289650, - [SMALL_STATE(6007)] = 289671, - [SMALL_STATE(6008)] = 289690, - [SMALL_STATE(6009)] = 289711, - [SMALL_STATE(6010)] = 289732, - [SMALL_STATE(6011)] = 289751, - [SMALL_STATE(6012)] = 289772, - [SMALL_STATE(6013)] = 289793, - [SMALL_STATE(6014)] = 289814, - [SMALL_STATE(6015)] = 289835, - [SMALL_STATE(6016)] = 289856, - [SMALL_STATE(6017)] = 289877, - [SMALL_STATE(6018)] = 289898, - [SMALL_STATE(6019)] = 289919, - [SMALL_STATE(6020)] = 289940, - [SMALL_STATE(6021)] = 289961, - [SMALL_STATE(6022)] = 289982, - [SMALL_STATE(6023)] = 290003, - [SMALL_STATE(6024)] = 290024, - [SMALL_STATE(6025)] = 290045, - [SMALL_STATE(6026)] = 290066, - [SMALL_STATE(6027)] = 290087, - [SMALL_STATE(6028)] = 290108, - [SMALL_STATE(6029)] = 290129, - [SMALL_STATE(6030)] = 290150, - [SMALL_STATE(6031)] = 290171, - [SMALL_STATE(6032)] = 290192, - [SMALL_STATE(6033)] = 290213, - [SMALL_STATE(6034)] = 290234, - [SMALL_STATE(6035)] = 290255, - [SMALL_STATE(6036)] = 290276, - [SMALL_STATE(6037)] = 290297, - [SMALL_STATE(6038)] = 290318, - [SMALL_STATE(6039)] = 290339, - [SMALL_STATE(6040)] = 290360, - [SMALL_STATE(6041)] = 290381, - [SMALL_STATE(6042)] = 290400, - [SMALL_STATE(6043)] = 290421, - [SMALL_STATE(6044)] = 290442, - [SMALL_STATE(6045)] = 290463, - [SMALL_STATE(6046)] = 290484, - [SMALL_STATE(6047)] = 290505, - [SMALL_STATE(6048)] = 290526, - [SMALL_STATE(6049)] = 290547, - [SMALL_STATE(6050)] = 290568, - [SMALL_STATE(6051)] = 290589, - [SMALL_STATE(6052)] = 290610, - [SMALL_STATE(6053)] = 290631, - [SMALL_STATE(6054)] = 290652, - [SMALL_STATE(6055)] = 290673, - [SMALL_STATE(6056)] = 290694, - [SMALL_STATE(6057)] = 290715, - [SMALL_STATE(6058)] = 290736, - [SMALL_STATE(6059)] = 290757, - [SMALL_STATE(6060)] = 290778, - [SMALL_STATE(6061)] = 290799, - [SMALL_STATE(6062)] = 290820, - [SMALL_STATE(6063)] = 290841, - [SMALL_STATE(6064)] = 290862, - [SMALL_STATE(6065)] = 290883, - [SMALL_STATE(6066)] = 290904, - [SMALL_STATE(6067)] = 290925, - [SMALL_STATE(6068)] = 290946, - [SMALL_STATE(6069)] = 290967, - [SMALL_STATE(6070)] = 290988, - [SMALL_STATE(6071)] = 291009, - [SMALL_STATE(6072)] = 291030, - [SMALL_STATE(6073)] = 291051, - [SMALL_STATE(6074)] = 291072, - [SMALL_STATE(6075)] = 291093, - [SMALL_STATE(6076)] = 291112, - [SMALL_STATE(6077)] = 291133, - [SMALL_STATE(6078)] = 291154, - [SMALL_STATE(6079)] = 291175, - [SMALL_STATE(6080)] = 291196, - [SMALL_STATE(6081)] = 291217, - [SMALL_STATE(6082)] = 291238, - [SMALL_STATE(6083)] = 291259, - [SMALL_STATE(6084)] = 291278, - [SMALL_STATE(6085)] = 291299, - [SMALL_STATE(6086)] = 291320, - [SMALL_STATE(6087)] = 291341, - [SMALL_STATE(6088)] = 291360, - [SMALL_STATE(6089)] = 291379, - [SMALL_STATE(6090)] = 291400, - [SMALL_STATE(6091)] = 291421, - [SMALL_STATE(6092)] = 291442, - [SMALL_STATE(6093)] = 291463, - [SMALL_STATE(6094)] = 291484, - [SMALL_STATE(6095)] = 291505, - [SMALL_STATE(6096)] = 291526, - [SMALL_STATE(6097)] = 291547, - [SMALL_STATE(6098)] = 291568, - [SMALL_STATE(6099)] = 291589, - [SMALL_STATE(6100)] = 291610, - [SMALL_STATE(6101)] = 291631, - [SMALL_STATE(6102)] = 291652, - [SMALL_STATE(6103)] = 291673, - [SMALL_STATE(6104)] = 291694, - [SMALL_STATE(6105)] = 291715, - [SMALL_STATE(6106)] = 291736, - [SMALL_STATE(6107)] = 291757, - [SMALL_STATE(6108)] = 291778, - [SMALL_STATE(6109)] = 291799, - [SMALL_STATE(6110)] = 291820, - [SMALL_STATE(6111)] = 291841, - [SMALL_STATE(6112)] = 291862, - [SMALL_STATE(6113)] = 291883, - [SMALL_STATE(6114)] = 291902, - [SMALL_STATE(6115)] = 291923, - [SMALL_STATE(6116)] = 291944, - [SMALL_STATE(6117)] = 291965, - [SMALL_STATE(6118)] = 291986, - [SMALL_STATE(6119)] = 292007, - [SMALL_STATE(6120)] = 292028, - [SMALL_STATE(6121)] = 292049, - [SMALL_STATE(6122)] = 292070, - [SMALL_STATE(6123)] = 292091, - [SMALL_STATE(6124)] = 292112, - [SMALL_STATE(6125)] = 292133, - [SMALL_STATE(6126)] = 292154, - [SMALL_STATE(6127)] = 292173, - [SMALL_STATE(6128)] = 292194, - [SMALL_STATE(6129)] = 292215, - [SMALL_STATE(6130)] = 292236, - [SMALL_STATE(6131)] = 292255, - [SMALL_STATE(6132)] = 292276, - [SMALL_STATE(6133)] = 292297, - [SMALL_STATE(6134)] = 292318, - [SMALL_STATE(6135)] = 292339, - [SMALL_STATE(6136)] = 292360, - [SMALL_STATE(6137)] = 292381, - [SMALL_STATE(6138)] = 292402, - [SMALL_STATE(6139)] = 292423, - [SMALL_STATE(6140)] = 292444, - [SMALL_STATE(6141)] = 292465, - [SMALL_STATE(6142)] = 292486, - [SMALL_STATE(6143)] = 292507, - [SMALL_STATE(6144)] = 292528, - [SMALL_STATE(6145)] = 292549, - [SMALL_STATE(6146)] = 292570, - [SMALL_STATE(6147)] = 292591, - [SMALL_STATE(6148)] = 292612, - [SMALL_STATE(6149)] = 292631, - [SMALL_STATE(6150)] = 292652, - [SMALL_STATE(6151)] = 292673, - [SMALL_STATE(6152)] = 292694, - [SMALL_STATE(6153)] = 292715, - [SMALL_STATE(6154)] = 292736, - [SMALL_STATE(6155)] = 292757, - [SMALL_STATE(6156)] = 292776, - [SMALL_STATE(6157)] = 292797, - [SMALL_STATE(6158)] = 292818, - [SMALL_STATE(6159)] = 292839, - [SMALL_STATE(6160)] = 292860, - [SMALL_STATE(6161)] = 292879, - [SMALL_STATE(6162)] = 292900, - [SMALL_STATE(6163)] = 292921, - [SMALL_STATE(6164)] = 292942, - [SMALL_STATE(6165)] = 292963, - [SMALL_STATE(6166)] = 292982, - [SMALL_STATE(6167)] = 293003, - [SMALL_STATE(6168)] = 293024, - [SMALL_STATE(6169)] = 293045, - [SMALL_STATE(6170)] = 293066, - [SMALL_STATE(6171)] = 293085, - [SMALL_STATE(6172)] = 293106, - [SMALL_STATE(6173)] = 293127, - [SMALL_STATE(6174)] = 293148, - [SMALL_STATE(6175)] = 293167, - [SMALL_STATE(6176)] = 293188, - [SMALL_STATE(6177)] = 293209, - [SMALL_STATE(6178)] = 293230, - [SMALL_STATE(6179)] = 293251, - [SMALL_STATE(6180)] = 293272, - [SMALL_STATE(6181)] = 293293, - [SMALL_STATE(6182)] = 293312, - [SMALL_STATE(6183)] = 293333, - [SMALL_STATE(6184)] = 293354, - [SMALL_STATE(6185)] = 293375, - [SMALL_STATE(6186)] = 293396, - [SMALL_STATE(6187)] = 293417, - [SMALL_STATE(6188)] = 293436, - [SMALL_STATE(6189)] = 293455, - [SMALL_STATE(6190)] = 293476, - [SMALL_STATE(6191)] = 293497, - [SMALL_STATE(6192)] = 293518, - [SMALL_STATE(6193)] = 293539, - [SMALL_STATE(6194)] = 293558, - [SMALL_STATE(6195)] = 293577, - [SMALL_STATE(6196)] = 293598, - [SMALL_STATE(6197)] = 293619, - [SMALL_STATE(6198)] = 293638, - [SMALL_STATE(6199)] = 293659, - [SMALL_STATE(6200)] = 293678, - [SMALL_STATE(6201)] = 293699, - [SMALL_STATE(6202)] = 293720, - [SMALL_STATE(6203)] = 293741, - [SMALL_STATE(6204)] = 293762, - [SMALL_STATE(6205)] = 293783, - [SMALL_STATE(6206)] = 293804, - [SMALL_STATE(6207)] = 293825, - [SMALL_STATE(6208)] = 293846, - [SMALL_STATE(6209)] = 293867, - [SMALL_STATE(6210)] = 293888, - [SMALL_STATE(6211)] = 293909, - [SMALL_STATE(6212)] = 293930, - [SMALL_STATE(6213)] = 293951, - [SMALL_STATE(6214)] = 293972, - [SMALL_STATE(6215)] = 293993, - [SMALL_STATE(6216)] = 294014, - [SMALL_STATE(6217)] = 294035, - [SMALL_STATE(6218)] = 294056, - [SMALL_STATE(6219)] = 294077, - [SMALL_STATE(6220)] = 294096, - [SMALL_STATE(6221)] = 294117, - [SMALL_STATE(6222)] = 294138, - [SMALL_STATE(6223)] = 294159, - [SMALL_STATE(6224)] = 294178, - [SMALL_STATE(6225)] = 294199, - [SMALL_STATE(6226)] = 294220, - [SMALL_STATE(6227)] = 294241, - [SMALL_STATE(6228)] = 294262, - [SMALL_STATE(6229)] = 294283, - [SMALL_STATE(6230)] = 294304, - [SMALL_STATE(6231)] = 294325, - [SMALL_STATE(6232)] = 294344, - [SMALL_STATE(6233)] = 294365, - [SMALL_STATE(6234)] = 294386, - [SMALL_STATE(6235)] = 294407, - [SMALL_STATE(6236)] = 294428, - [SMALL_STATE(6237)] = 294449, - [SMALL_STATE(6238)] = 294470, - [SMALL_STATE(6239)] = 294491, - [SMALL_STATE(6240)] = 294510, - [SMALL_STATE(6241)] = 294531, - [SMALL_STATE(6242)] = 294552, - [SMALL_STATE(6243)] = 294571, - [SMALL_STATE(6244)] = 294592, - [SMALL_STATE(6245)] = 294613, - [SMALL_STATE(6246)] = 294634, - [SMALL_STATE(6247)] = 294655, - [SMALL_STATE(6248)] = 294676, - [SMALL_STATE(6249)] = 294697, - [SMALL_STATE(6250)] = 294718, - [SMALL_STATE(6251)] = 294739, - [SMALL_STATE(6252)] = 294760, - [SMALL_STATE(6253)] = 294781, - [SMALL_STATE(6254)] = 294802, - [SMALL_STATE(6255)] = 294823, - [SMALL_STATE(6256)] = 294844, - [SMALL_STATE(6257)] = 294865, - [SMALL_STATE(6258)] = 294886, - [SMALL_STATE(6259)] = 294905, - [SMALL_STATE(6260)] = 294924, - [SMALL_STATE(6261)] = 294945, - [SMALL_STATE(6262)] = 294964, - [SMALL_STATE(6263)] = 294983, - [SMALL_STATE(6264)] = 295004, - [SMALL_STATE(6265)] = 295025, - [SMALL_STATE(6266)] = 295046, - [SMALL_STATE(6267)] = 295067, - [SMALL_STATE(6268)] = 295088, - [SMALL_STATE(6269)] = 295109, - [SMALL_STATE(6270)] = 295130, - [SMALL_STATE(6271)] = 295151, - [SMALL_STATE(6272)] = 295172, - [SMALL_STATE(6273)] = 295193, - [SMALL_STATE(6274)] = 295214, - [SMALL_STATE(6275)] = 295235, - [SMALL_STATE(6276)] = 295256, - [SMALL_STATE(6277)] = 295277, - [SMALL_STATE(6278)] = 295296, - [SMALL_STATE(6279)] = 295317, - [SMALL_STATE(6280)] = 295338, - [SMALL_STATE(6281)] = 295357, - [SMALL_STATE(6282)] = 295378, - [SMALL_STATE(6283)] = 295399, - [SMALL_STATE(6284)] = 295420, - [SMALL_STATE(6285)] = 295439, - [SMALL_STATE(6286)] = 295460, - [SMALL_STATE(6287)] = 295481, - [SMALL_STATE(6288)] = 295502, - [SMALL_STATE(6289)] = 295523, - [SMALL_STATE(6290)] = 295544, - [SMALL_STATE(6291)] = 295565, - [SMALL_STATE(6292)] = 295586, - [SMALL_STATE(6293)] = 295607, - [SMALL_STATE(6294)] = 295628, - [SMALL_STATE(6295)] = 295649, - [SMALL_STATE(6296)] = 295670, - [SMALL_STATE(6297)] = 295691, - [SMALL_STATE(6298)] = 295710, - [SMALL_STATE(6299)] = 295731, - [SMALL_STATE(6300)] = 295750, - [SMALL_STATE(6301)] = 295771, - [SMALL_STATE(6302)] = 295792, - [SMALL_STATE(6303)] = 295813, - [SMALL_STATE(6304)] = 295834, - [SMALL_STATE(6305)] = 295855, - [SMALL_STATE(6306)] = 295876, - [SMALL_STATE(6307)] = 295897, - [SMALL_STATE(6308)] = 295918, - [SMALL_STATE(6309)] = 295939, - [SMALL_STATE(6310)] = 295960, - [SMALL_STATE(6311)] = 295981, - [SMALL_STATE(6312)] = 296002, - [SMALL_STATE(6313)] = 296023, - [SMALL_STATE(6314)] = 296042, - [SMALL_STATE(6315)] = 296063, - [SMALL_STATE(6316)] = 296084, - [SMALL_STATE(6317)] = 296105, - [SMALL_STATE(6318)] = 296126, - [SMALL_STATE(6319)] = 296147, - [SMALL_STATE(6320)] = 296168, - [SMALL_STATE(6321)] = 296189, - [SMALL_STATE(6322)] = 296210, - [SMALL_STATE(6323)] = 296231, - [SMALL_STATE(6324)] = 296252, - [SMALL_STATE(6325)] = 296273, - [SMALL_STATE(6326)] = 296294, - [SMALL_STATE(6327)] = 296313, - [SMALL_STATE(6328)] = 296334, - [SMALL_STATE(6329)] = 296355, - [SMALL_STATE(6330)] = 296376, - [SMALL_STATE(6331)] = 296397, - [SMALL_STATE(6332)] = 296418, - [SMALL_STATE(6333)] = 296439, - [SMALL_STATE(6334)] = 296460, - [SMALL_STATE(6335)] = 296481, - [SMALL_STATE(6336)] = 296500, - [SMALL_STATE(6337)] = 296521, - [SMALL_STATE(6338)] = 296542, - [SMALL_STATE(6339)] = 296563, - [SMALL_STATE(6340)] = 296584, - [SMALL_STATE(6341)] = 296605, - [SMALL_STATE(6342)] = 296624, - [SMALL_STATE(6343)] = 296645, - [SMALL_STATE(6344)] = 296666, - [SMALL_STATE(6345)] = 296687, - [SMALL_STATE(6346)] = 296708, - [SMALL_STATE(6347)] = 296729, - [SMALL_STATE(6348)] = 296750, - [SMALL_STATE(6349)] = 296771, - [SMALL_STATE(6350)] = 296792, - [SMALL_STATE(6351)] = 296813, - [SMALL_STATE(6352)] = 296834, - [SMALL_STATE(6353)] = 296855, - [SMALL_STATE(6354)] = 296876, - [SMALL_STATE(6355)] = 296897, - [SMALL_STATE(6356)] = 296918, - [SMALL_STATE(6357)] = 296939, - [SMALL_STATE(6358)] = 296960, - [SMALL_STATE(6359)] = 296981, - [SMALL_STATE(6360)] = 297002, - [SMALL_STATE(6361)] = 297023, - [SMALL_STATE(6362)] = 297044, - [SMALL_STATE(6363)] = 297065, - [SMALL_STATE(6364)] = 297086, - [SMALL_STATE(6365)] = 297107, - [SMALL_STATE(6366)] = 297128, - [SMALL_STATE(6367)] = 297149, - [SMALL_STATE(6368)] = 297170, - [SMALL_STATE(6369)] = 297189, - [SMALL_STATE(6370)] = 297210, - [SMALL_STATE(6371)] = 297231, - [SMALL_STATE(6372)] = 297252, - [SMALL_STATE(6373)] = 297273, - [SMALL_STATE(6374)] = 297294, - [SMALL_STATE(6375)] = 297315, - [SMALL_STATE(6376)] = 297334, - [SMALL_STATE(6377)] = 297355, - [SMALL_STATE(6378)] = 297376, - [SMALL_STATE(6379)] = 297397, - [SMALL_STATE(6380)] = 297418, - [SMALL_STATE(6381)] = 297439, - [SMALL_STATE(6382)] = 297460, - [SMALL_STATE(6383)] = 297481, - [SMALL_STATE(6384)] = 297502, - [SMALL_STATE(6385)] = 297521, - [SMALL_STATE(6386)] = 297540, - [SMALL_STATE(6387)] = 297561, - [SMALL_STATE(6388)] = 297582, - [SMALL_STATE(6389)] = 297603, - [SMALL_STATE(6390)] = 297624, - [SMALL_STATE(6391)] = 297645, - [SMALL_STATE(6392)] = 297664, - [SMALL_STATE(6393)] = 297685, - [SMALL_STATE(6394)] = 297706, - [SMALL_STATE(6395)] = 297727, - [SMALL_STATE(6396)] = 297746, - [SMALL_STATE(6397)] = 297767, - [SMALL_STATE(6398)] = 297786, - [SMALL_STATE(6399)] = 297807, - [SMALL_STATE(6400)] = 297828, - [SMALL_STATE(6401)] = 297849, - [SMALL_STATE(6402)] = 297870, - [SMALL_STATE(6403)] = 297891, - [SMALL_STATE(6404)] = 297912, - [SMALL_STATE(6405)] = 297933, - [SMALL_STATE(6406)] = 297954, - [SMALL_STATE(6407)] = 297975, - [SMALL_STATE(6408)] = 297996, - [SMALL_STATE(6409)] = 298017, - [SMALL_STATE(6410)] = 298038, - [SMALL_STATE(6411)] = 298059, - [SMALL_STATE(6412)] = 298080, - [SMALL_STATE(6413)] = 298099, - [SMALL_STATE(6414)] = 298120, - [SMALL_STATE(6415)] = 298141, - [SMALL_STATE(6416)] = 298162, - [SMALL_STATE(6417)] = 298183, - [SMALL_STATE(6418)] = 298202, - [SMALL_STATE(6419)] = 298223, - [SMALL_STATE(6420)] = 298244, - [SMALL_STATE(6421)] = 298263, - [SMALL_STATE(6422)] = 298284, - [SMALL_STATE(6423)] = 298305, - [SMALL_STATE(6424)] = 298326, - [SMALL_STATE(6425)] = 298347, - [SMALL_STATE(6426)] = 298368, - [SMALL_STATE(6427)] = 298389, - [SMALL_STATE(6428)] = 298408, - [SMALL_STATE(6429)] = 298426, - [SMALL_STATE(6430)] = 298444, - [SMALL_STATE(6431)] = 298462, - [SMALL_STATE(6432)] = 298480, - [SMALL_STATE(6433)] = 298498, - [SMALL_STATE(6434)] = 298516, - [SMALL_STATE(6435)] = 298534, - [SMALL_STATE(6436)] = 298552, - [SMALL_STATE(6437)] = 298570, - [SMALL_STATE(6438)] = 298588, - [SMALL_STATE(6439)] = 298606, - [SMALL_STATE(6440)] = 298624, - [SMALL_STATE(6441)] = 298642, - [SMALL_STATE(6442)] = 298660, - [SMALL_STATE(6443)] = 298678, - [SMALL_STATE(6444)] = 298696, - [SMALL_STATE(6445)] = 298714, - [SMALL_STATE(6446)] = 298732, - [SMALL_STATE(6447)] = 298750, - [SMALL_STATE(6448)] = 298768, - [SMALL_STATE(6449)] = 298786, - [SMALL_STATE(6450)] = 298804, - [SMALL_STATE(6451)] = 298822, - [SMALL_STATE(6452)] = 298840, - [SMALL_STATE(6453)] = 298858, - [SMALL_STATE(6454)] = 298876, - [SMALL_STATE(6455)] = 298894, - [SMALL_STATE(6456)] = 298912, - [SMALL_STATE(6457)] = 298930, - [SMALL_STATE(6458)] = 298948, - [SMALL_STATE(6459)] = 298966, - [SMALL_STATE(6460)] = 298984, - [SMALL_STATE(6461)] = 299002, - [SMALL_STATE(6462)] = 299020, - [SMALL_STATE(6463)] = 299038, - [SMALL_STATE(6464)] = 299056, - [SMALL_STATE(6465)] = 299074, - [SMALL_STATE(6466)] = 299092, - [SMALL_STATE(6467)] = 299110, - [SMALL_STATE(6468)] = 299128, - [SMALL_STATE(6469)] = 299146, - [SMALL_STATE(6470)] = 299164, - [SMALL_STATE(6471)] = 299182, - [SMALL_STATE(6472)] = 299200, - [SMALL_STATE(6473)] = 299218, - [SMALL_STATE(6474)] = 299236, - [SMALL_STATE(6475)] = 299254, - [SMALL_STATE(6476)] = 299272, - [SMALL_STATE(6477)] = 299290, - [SMALL_STATE(6478)] = 299308, - [SMALL_STATE(6479)] = 299326, - [SMALL_STATE(6480)] = 299344, - [SMALL_STATE(6481)] = 299362, - [SMALL_STATE(6482)] = 299380, - [SMALL_STATE(6483)] = 299398, - [SMALL_STATE(6484)] = 299416, - [SMALL_STATE(6485)] = 299434, - [SMALL_STATE(6486)] = 299452, - [SMALL_STATE(6487)] = 299470, - [SMALL_STATE(6488)] = 299488, - [SMALL_STATE(6489)] = 299506, - [SMALL_STATE(6490)] = 299524, - [SMALL_STATE(6491)] = 299542, - [SMALL_STATE(6492)] = 299560, - [SMALL_STATE(6493)] = 299578, - [SMALL_STATE(6494)] = 299596, - [SMALL_STATE(6495)] = 299614, - [SMALL_STATE(6496)] = 299632, - [SMALL_STATE(6497)] = 299650, - [SMALL_STATE(6498)] = 299668, - [SMALL_STATE(6499)] = 299686, - [SMALL_STATE(6500)] = 299704, - [SMALL_STATE(6501)] = 299722, - [SMALL_STATE(6502)] = 299740, - [SMALL_STATE(6503)] = 299758, - [SMALL_STATE(6504)] = 299776, - [SMALL_STATE(6505)] = 299794, - [SMALL_STATE(6506)] = 299812, - [SMALL_STATE(6507)] = 299830, - [SMALL_STATE(6508)] = 299848, - [SMALL_STATE(6509)] = 299866, - [SMALL_STATE(6510)] = 299884, - [SMALL_STATE(6511)] = 299902, - [SMALL_STATE(6512)] = 299920, - [SMALL_STATE(6513)] = 299938, - [SMALL_STATE(6514)] = 299956, - [SMALL_STATE(6515)] = 299974, - [SMALL_STATE(6516)] = 299992, - [SMALL_STATE(6517)] = 300010, - [SMALL_STATE(6518)] = 300028, - [SMALL_STATE(6519)] = 300046, - [SMALL_STATE(6520)] = 300064, - [SMALL_STATE(6521)] = 300082, - [SMALL_STATE(6522)] = 300100, - [SMALL_STATE(6523)] = 300118, - [SMALL_STATE(6524)] = 300136, - [SMALL_STATE(6525)] = 300154, - [SMALL_STATE(6526)] = 300172, - [SMALL_STATE(6527)] = 300190, - [SMALL_STATE(6528)] = 300208, - [SMALL_STATE(6529)] = 300226, - [SMALL_STATE(6530)] = 300244, - [SMALL_STATE(6531)] = 300262, - [SMALL_STATE(6532)] = 300280, - [SMALL_STATE(6533)] = 300298, - [SMALL_STATE(6534)] = 300316, - [SMALL_STATE(6535)] = 300334, - [SMALL_STATE(6536)] = 300352, - [SMALL_STATE(6537)] = 300370, - [SMALL_STATE(6538)] = 300388, - [SMALL_STATE(6539)] = 300406, - [SMALL_STATE(6540)] = 300424, - [SMALL_STATE(6541)] = 300442, - [SMALL_STATE(6542)] = 300460, - [SMALL_STATE(6543)] = 300478, - [SMALL_STATE(6544)] = 300496, - [SMALL_STATE(6545)] = 300514, - [SMALL_STATE(6546)] = 300532, - [SMALL_STATE(6547)] = 300550, - [SMALL_STATE(6548)] = 300568, - [SMALL_STATE(6549)] = 300586, - [SMALL_STATE(6550)] = 300604, - [SMALL_STATE(6551)] = 300622, - [SMALL_STATE(6552)] = 300640, - [SMALL_STATE(6553)] = 300658, - [SMALL_STATE(6554)] = 300676, - [SMALL_STATE(6555)] = 300694, - [SMALL_STATE(6556)] = 300712, - [SMALL_STATE(6557)] = 300730, - [SMALL_STATE(6558)] = 300748, - [SMALL_STATE(6559)] = 300766, - [SMALL_STATE(6560)] = 300784, - [SMALL_STATE(6561)] = 300802, - [SMALL_STATE(6562)] = 300820, - [SMALL_STATE(6563)] = 300838, - [SMALL_STATE(6564)] = 300856, - [SMALL_STATE(6565)] = 300874, - [SMALL_STATE(6566)] = 300892, - [SMALL_STATE(6567)] = 300910, - [SMALL_STATE(6568)] = 300928, - [SMALL_STATE(6569)] = 300946, - [SMALL_STATE(6570)] = 300964, - [SMALL_STATE(6571)] = 300982, - [SMALL_STATE(6572)] = 301000, - [SMALL_STATE(6573)] = 301018, - [SMALL_STATE(6574)] = 301036, - [SMALL_STATE(6575)] = 301054, - [SMALL_STATE(6576)] = 301072, - [SMALL_STATE(6577)] = 301090, - [SMALL_STATE(6578)] = 301108, - [SMALL_STATE(6579)] = 301126, - [SMALL_STATE(6580)] = 301144, - [SMALL_STATE(6581)] = 301162, - [SMALL_STATE(6582)] = 301180, - [SMALL_STATE(6583)] = 301198, - [SMALL_STATE(6584)] = 301216, - [SMALL_STATE(6585)] = 301234, - [SMALL_STATE(6586)] = 301252, - [SMALL_STATE(6587)] = 301270, - [SMALL_STATE(6588)] = 301288, - [SMALL_STATE(6589)] = 301306, - [SMALL_STATE(6590)] = 301324, - [SMALL_STATE(6591)] = 301342, - [SMALL_STATE(6592)] = 301360, - [SMALL_STATE(6593)] = 301378, - [SMALL_STATE(6594)] = 301396, - [SMALL_STATE(6595)] = 301414, - [SMALL_STATE(6596)] = 301432, - [SMALL_STATE(6597)] = 301450, - [SMALL_STATE(6598)] = 301468, - [SMALL_STATE(6599)] = 301486, - [SMALL_STATE(6600)] = 301504, - [SMALL_STATE(6601)] = 301522, - [SMALL_STATE(6602)] = 301540, - [SMALL_STATE(6603)] = 301558, - [SMALL_STATE(6604)] = 301576, - [SMALL_STATE(6605)] = 301594, - [SMALL_STATE(6606)] = 301612, - [SMALL_STATE(6607)] = 301630, - [SMALL_STATE(6608)] = 301648, - [SMALL_STATE(6609)] = 301666, - [SMALL_STATE(6610)] = 301684, - [SMALL_STATE(6611)] = 301702, - [SMALL_STATE(6612)] = 301720, - [SMALL_STATE(6613)] = 301738, - [SMALL_STATE(6614)] = 301756, - [SMALL_STATE(6615)] = 301774, - [SMALL_STATE(6616)] = 301792, - [SMALL_STATE(6617)] = 301810, - [SMALL_STATE(6618)] = 301828, - [SMALL_STATE(6619)] = 301846, - [SMALL_STATE(6620)] = 301864, - [SMALL_STATE(6621)] = 301882, - [SMALL_STATE(6622)] = 301900, - [SMALL_STATE(6623)] = 301918, - [SMALL_STATE(6624)] = 301936, - [SMALL_STATE(6625)] = 301954, - [SMALL_STATE(6626)] = 301972, - [SMALL_STATE(6627)] = 301990, - [SMALL_STATE(6628)] = 302008, - [SMALL_STATE(6629)] = 302026, - [SMALL_STATE(6630)] = 302044, - [SMALL_STATE(6631)] = 302062, - [SMALL_STATE(6632)] = 302080, - [SMALL_STATE(6633)] = 302098, - [SMALL_STATE(6634)] = 302116, - [SMALL_STATE(6635)] = 302134, - [SMALL_STATE(6636)] = 302152, - [SMALL_STATE(6637)] = 302170, - [SMALL_STATE(6638)] = 302188, - [SMALL_STATE(6639)] = 302206, - [SMALL_STATE(6640)] = 302224, - [SMALL_STATE(6641)] = 302242, - [SMALL_STATE(6642)] = 302260, - [SMALL_STATE(6643)] = 302278, - [SMALL_STATE(6644)] = 302296, - [SMALL_STATE(6645)] = 302314, - [SMALL_STATE(6646)] = 302332, - [SMALL_STATE(6647)] = 302350, - [SMALL_STATE(6648)] = 302368, - [SMALL_STATE(6649)] = 302386, - [SMALL_STATE(6650)] = 302404, - [SMALL_STATE(6651)] = 302422, - [SMALL_STATE(6652)] = 302440, - [SMALL_STATE(6653)] = 302458, - [SMALL_STATE(6654)] = 302476, - [SMALL_STATE(6655)] = 302494, - [SMALL_STATE(6656)] = 302512, - [SMALL_STATE(6657)] = 302530, - [SMALL_STATE(6658)] = 302548, - [SMALL_STATE(6659)] = 302566, - [SMALL_STATE(6660)] = 302584, - [SMALL_STATE(6661)] = 302602, - [SMALL_STATE(6662)] = 302620, - [SMALL_STATE(6663)] = 302638, - [SMALL_STATE(6664)] = 302656, - [SMALL_STATE(6665)] = 302674, - [SMALL_STATE(6666)] = 302692, - [SMALL_STATE(6667)] = 302710, - [SMALL_STATE(6668)] = 302728, - [SMALL_STATE(6669)] = 302746, - [SMALL_STATE(6670)] = 302764, - [SMALL_STATE(6671)] = 302782, - [SMALL_STATE(6672)] = 302800, - [SMALL_STATE(6673)] = 302818, - [SMALL_STATE(6674)] = 302836, - [SMALL_STATE(6675)] = 302854, - [SMALL_STATE(6676)] = 302872, - [SMALL_STATE(6677)] = 302890, - [SMALL_STATE(6678)] = 302908, - [SMALL_STATE(6679)] = 302926, - [SMALL_STATE(6680)] = 302944, - [SMALL_STATE(6681)] = 302962, - [SMALL_STATE(6682)] = 302980, - [SMALL_STATE(6683)] = 302998, - [SMALL_STATE(6684)] = 303016, - [SMALL_STATE(6685)] = 303034, - [SMALL_STATE(6686)] = 303052, - [SMALL_STATE(6687)] = 303070, - [SMALL_STATE(6688)] = 303088, - [SMALL_STATE(6689)] = 303106, - [SMALL_STATE(6690)] = 303124, - [SMALL_STATE(6691)] = 303142, - [SMALL_STATE(6692)] = 303160, - [SMALL_STATE(6693)] = 303178, - [SMALL_STATE(6694)] = 303196, - [SMALL_STATE(6695)] = 303214, - [SMALL_STATE(6696)] = 303232, - [SMALL_STATE(6697)] = 303250, - [SMALL_STATE(6698)] = 303268, - [SMALL_STATE(6699)] = 303286, - [SMALL_STATE(6700)] = 303304, - [SMALL_STATE(6701)] = 303322, - [SMALL_STATE(6702)] = 303340, - [SMALL_STATE(6703)] = 303358, - [SMALL_STATE(6704)] = 303376, - [SMALL_STATE(6705)] = 303394, - [SMALL_STATE(6706)] = 303412, - [SMALL_STATE(6707)] = 303430, - [SMALL_STATE(6708)] = 303448, - [SMALL_STATE(6709)] = 303466, - [SMALL_STATE(6710)] = 303484, - [SMALL_STATE(6711)] = 303502, - [SMALL_STATE(6712)] = 303520, - [SMALL_STATE(6713)] = 303538, - [SMALL_STATE(6714)] = 303556, - [SMALL_STATE(6715)] = 303574, - [SMALL_STATE(6716)] = 303592, - [SMALL_STATE(6717)] = 303610, - [SMALL_STATE(6718)] = 303628, - [SMALL_STATE(6719)] = 303646, - [SMALL_STATE(6720)] = 303664, - [SMALL_STATE(6721)] = 303682, - [SMALL_STATE(6722)] = 303700, - [SMALL_STATE(6723)] = 303718, - [SMALL_STATE(6724)] = 303736, - [SMALL_STATE(6725)] = 303754, - [SMALL_STATE(6726)] = 303772, - [SMALL_STATE(6727)] = 303790, - [SMALL_STATE(6728)] = 303808, - [SMALL_STATE(6729)] = 303826, - [SMALL_STATE(6730)] = 303844, - [SMALL_STATE(6731)] = 303862, - [SMALL_STATE(6732)] = 303880, - [SMALL_STATE(6733)] = 303898, - [SMALL_STATE(6734)] = 303916, - [SMALL_STATE(6735)] = 303934, - [SMALL_STATE(6736)] = 303952, - [SMALL_STATE(6737)] = 303970, - [SMALL_STATE(6738)] = 303988, - [SMALL_STATE(6739)] = 304006, - [SMALL_STATE(6740)] = 304024, - [SMALL_STATE(6741)] = 304042, - [SMALL_STATE(6742)] = 304060, - [SMALL_STATE(6743)] = 304078, - [SMALL_STATE(6744)] = 304096, - [SMALL_STATE(6745)] = 304114, - [SMALL_STATE(6746)] = 304132, - [SMALL_STATE(6747)] = 304150, - [SMALL_STATE(6748)] = 304168, - [SMALL_STATE(6749)] = 304186, - [SMALL_STATE(6750)] = 304204, - [SMALL_STATE(6751)] = 304222, - [SMALL_STATE(6752)] = 304240, - [SMALL_STATE(6753)] = 304258, - [SMALL_STATE(6754)] = 304276, - [SMALL_STATE(6755)] = 304294, - [SMALL_STATE(6756)] = 304312, - [SMALL_STATE(6757)] = 304330, - [SMALL_STATE(6758)] = 304348, - [SMALL_STATE(6759)] = 304366, - [SMALL_STATE(6760)] = 304384, - [SMALL_STATE(6761)] = 304402, - [SMALL_STATE(6762)] = 304420, - [SMALL_STATE(6763)] = 304438, - [SMALL_STATE(6764)] = 304456, - [SMALL_STATE(6765)] = 304474, - [SMALL_STATE(6766)] = 304492, - [SMALL_STATE(6767)] = 304510, - [SMALL_STATE(6768)] = 304528, - [SMALL_STATE(6769)] = 304546, - [SMALL_STATE(6770)] = 304564, - [SMALL_STATE(6771)] = 304582, - [SMALL_STATE(6772)] = 304600, - [SMALL_STATE(6773)] = 304618, - [SMALL_STATE(6774)] = 304636, - [SMALL_STATE(6775)] = 304654, - [SMALL_STATE(6776)] = 304672, - [SMALL_STATE(6777)] = 304690, - [SMALL_STATE(6778)] = 304708, - [SMALL_STATE(6779)] = 304726, - [SMALL_STATE(6780)] = 304744, - [SMALL_STATE(6781)] = 304762, - [SMALL_STATE(6782)] = 304780, - [SMALL_STATE(6783)] = 304798, - [SMALL_STATE(6784)] = 304816, - [SMALL_STATE(6785)] = 304834, - [SMALL_STATE(6786)] = 304852, - [SMALL_STATE(6787)] = 304870, - [SMALL_STATE(6788)] = 304888, - [SMALL_STATE(6789)] = 304906, - [SMALL_STATE(6790)] = 304924, - [SMALL_STATE(6791)] = 304942, - [SMALL_STATE(6792)] = 304960, - [SMALL_STATE(6793)] = 304978, - [SMALL_STATE(6794)] = 304996, - [SMALL_STATE(6795)] = 305014, - [SMALL_STATE(6796)] = 305032, - [SMALL_STATE(6797)] = 305050, - [SMALL_STATE(6798)] = 305068, - [SMALL_STATE(6799)] = 305086, - [SMALL_STATE(6800)] = 305104, - [SMALL_STATE(6801)] = 305122, - [SMALL_STATE(6802)] = 305140, - [SMALL_STATE(6803)] = 305158, - [SMALL_STATE(6804)] = 305176, - [SMALL_STATE(6805)] = 305194, - [SMALL_STATE(6806)] = 305212, - [SMALL_STATE(6807)] = 305230, - [SMALL_STATE(6808)] = 305248, - [SMALL_STATE(6809)] = 305266, - [SMALL_STATE(6810)] = 305284, - [SMALL_STATE(6811)] = 305302, - [SMALL_STATE(6812)] = 305320, - [SMALL_STATE(6813)] = 305338, - [SMALL_STATE(6814)] = 305356, - [SMALL_STATE(6815)] = 305374, - [SMALL_STATE(6816)] = 305392, - [SMALL_STATE(6817)] = 305410, - [SMALL_STATE(6818)] = 305428, - [SMALL_STATE(6819)] = 305446, - [SMALL_STATE(6820)] = 305464, - [SMALL_STATE(6821)] = 305482, - [SMALL_STATE(6822)] = 305500, - [SMALL_STATE(6823)] = 305518, - [SMALL_STATE(6824)] = 305536, - [SMALL_STATE(6825)] = 305554, - [SMALL_STATE(6826)] = 305572, - [SMALL_STATE(6827)] = 305590, - [SMALL_STATE(6828)] = 305608, - [SMALL_STATE(6829)] = 305626, - [SMALL_STATE(6830)] = 305644, - [SMALL_STATE(6831)] = 305662, - [SMALL_STATE(6832)] = 305680, - [SMALL_STATE(6833)] = 305698, - [SMALL_STATE(6834)] = 305716, - [SMALL_STATE(6835)] = 305734, - [SMALL_STATE(6836)] = 305752, - [SMALL_STATE(6837)] = 305770, - [SMALL_STATE(6838)] = 305788, - [SMALL_STATE(6839)] = 305806, - [SMALL_STATE(6840)] = 305824, - [SMALL_STATE(6841)] = 305842, - [SMALL_STATE(6842)] = 305860, - [SMALL_STATE(6843)] = 305878, - [SMALL_STATE(6844)] = 305896, - [SMALL_STATE(6845)] = 305914, - [SMALL_STATE(6846)] = 305932, - [SMALL_STATE(6847)] = 305950, - [SMALL_STATE(6848)] = 305968, - [SMALL_STATE(6849)] = 305986, - [SMALL_STATE(6850)] = 306004, - [SMALL_STATE(6851)] = 306022, - [SMALL_STATE(6852)] = 306040, - [SMALL_STATE(6853)] = 306058, - [SMALL_STATE(6854)] = 306076, - [SMALL_STATE(6855)] = 306094, - [SMALL_STATE(6856)] = 306112, - [SMALL_STATE(6857)] = 306130, - [SMALL_STATE(6858)] = 306148, - [SMALL_STATE(6859)] = 306166, - [SMALL_STATE(6860)] = 306184, - [SMALL_STATE(6861)] = 306202, - [SMALL_STATE(6862)] = 306220, - [SMALL_STATE(6863)] = 306238, - [SMALL_STATE(6864)] = 306256, - [SMALL_STATE(6865)] = 306274, - [SMALL_STATE(6866)] = 306292, - [SMALL_STATE(6867)] = 306310, - [SMALL_STATE(6868)] = 306328, - [SMALL_STATE(6869)] = 306346, - [SMALL_STATE(6870)] = 306364, - [SMALL_STATE(6871)] = 306382, - [SMALL_STATE(6872)] = 306400, - [SMALL_STATE(6873)] = 306418, - [SMALL_STATE(6874)] = 306436, - [SMALL_STATE(6875)] = 306454, - [SMALL_STATE(6876)] = 306472, - [SMALL_STATE(6877)] = 306490, - [SMALL_STATE(6878)] = 306508, - [SMALL_STATE(6879)] = 306526, - [SMALL_STATE(6880)] = 306544, - [SMALL_STATE(6881)] = 306562, - [SMALL_STATE(6882)] = 306580, - [SMALL_STATE(6883)] = 306598, - [SMALL_STATE(6884)] = 306616, - [SMALL_STATE(6885)] = 306634, - [SMALL_STATE(6886)] = 306652, - [SMALL_STATE(6887)] = 306670, - [SMALL_STATE(6888)] = 306688, - [SMALL_STATE(6889)] = 306706, - [SMALL_STATE(6890)] = 306724, - [SMALL_STATE(6891)] = 306742, - [SMALL_STATE(6892)] = 306760, - [SMALL_STATE(6893)] = 306778, - [SMALL_STATE(6894)] = 306796, - [SMALL_STATE(6895)] = 306814, - [SMALL_STATE(6896)] = 306832, - [SMALL_STATE(6897)] = 306850, - [SMALL_STATE(6898)] = 306868, - [SMALL_STATE(6899)] = 306886, - [SMALL_STATE(6900)] = 306904, - [SMALL_STATE(6901)] = 306922, - [SMALL_STATE(6902)] = 306940, - [SMALL_STATE(6903)] = 306958, - [SMALL_STATE(6904)] = 306976, - [SMALL_STATE(6905)] = 306994, - [SMALL_STATE(6906)] = 307012, - [SMALL_STATE(6907)] = 307030, - [SMALL_STATE(6908)] = 307048, - [SMALL_STATE(6909)] = 307066, - [SMALL_STATE(6910)] = 307084, - [SMALL_STATE(6911)] = 307102, - [SMALL_STATE(6912)] = 307120, - [SMALL_STATE(6913)] = 307138, - [SMALL_STATE(6914)] = 307156, - [SMALL_STATE(6915)] = 307174, - [SMALL_STATE(6916)] = 307192, - [SMALL_STATE(6917)] = 307210, - [SMALL_STATE(6918)] = 307228, - [SMALL_STATE(6919)] = 307246, - [SMALL_STATE(6920)] = 307264, - [SMALL_STATE(6921)] = 307282, - [SMALL_STATE(6922)] = 307300, - [SMALL_STATE(6923)] = 307318, - [SMALL_STATE(6924)] = 307336, - [SMALL_STATE(6925)] = 307354, - [SMALL_STATE(6926)] = 307372, - [SMALL_STATE(6927)] = 307390, - [SMALL_STATE(6928)] = 307408, - [SMALL_STATE(6929)] = 307426, - [SMALL_STATE(6930)] = 307444, - [SMALL_STATE(6931)] = 307462, - [SMALL_STATE(6932)] = 307480, - [SMALL_STATE(6933)] = 307498, - [SMALL_STATE(6934)] = 307516, - [SMALL_STATE(6935)] = 307534, - [SMALL_STATE(6936)] = 307552, - [SMALL_STATE(6937)] = 307570, - [SMALL_STATE(6938)] = 307588, - [SMALL_STATE(6939)] = 307606, - [SMALL_STATE(6940)] = 307624, - [SMALL_STATE(6941)] = 307642, - [SMALL_STATE(6942)] = 307660, - [SMALL_STATE(6943)] = 307678, - [SMALL_STATE(6944)] = 307696, - [SMALL_STATE(6945)] = 307714, - [SMALL_STATE(6946)] = 307732, - [SMALL_STATE(6947)] = 307750, - [SMALL_STATE(6948)] = 307768, - [SMALL_STATE(6949)] = 307786, - [SMALL_STATE(6950)] = 307804, - [SMALL_STATE(6951)] = 307822, - [SMALL_STATE(6952)] = 307840, - [SMALL_STATE(6953)] = 307858, - [SMALL_STATE(6954)] = 307876, - [SMALL_STATE(6955)] = 307894, - [SMALL_STATE(6956)] = 307912, - [SMALL_STATE(6957)] = 307930, - [SMALL_STATE(6958)] = 307948, - [SMALL_STATE(6959)] = 307966, - [SMALL_STATE(6960)] = 307984, - [SMALL_STATE(6961)] = 308002, - [SMALL_STATE(6962)] = 308020, - [SMALL_STATE(6963)] = 308038, - [SMALL_STATE(6964)] = 308056, - [SMALL_STATE(6965)] = 308074, - [SMALL_STATE(6966)] = 308092, - [SMALL_STATE(6967)] = 308110, - [SMALL_STATE(6968)] = 308128, - [SMALL_STATE(6969)] = 308146, - [SMALL_STATE(6970)] = 308164, - [SMALL_STATE(6971)] = 308182, - [SMALL_STATE(6972)] = 308200, - [SMALL_STATE(6973)] = 308218, - [SMALL_STATE(6974)] = 308236, - [SMALL_STATE(6975)] = 308254, - [SMALL_STATE(6976)] = 308272, - [SMALL_STATE(6977)] = 308290, - [SMALL_STATE(6978)] = 308308, - [SMALL_STATE(6979)] = 308326, - [SMALL_STATE(6980)] = 308344, - [SMALL_STATE(6981)] = 308362, - [SMALL_STATE(6982)] = 308380, - [SMALL_STATE(6983)] = 308398, - [SMALL_STATE(6984)] = 308416, - [SMALL_STATE(6985)] = 308434, - [SMALL_STATE(6986)] = 308452, - [SMALL_STATE(6987)] = 308470, - [SMALL_STATE(6988)] = 308488, - [SMALL_STATE(6989)] = 308506, - [SMALL_STATE(6990)] = 308524, - [SMALL_STATE(6991)] = 308542, - [SMALL_STATE(6992)] = 308560, - [SMALL_STATE(6993)] = 308578, - [SMALL_STATE(6994)] = 308596, - [SMALL_STATE(6995)] = 308614, - [SMALL_STATE(6996)] = 308632, - [SMALL_STATE(6997)] = 308650, - [SMALL_STATE(6998)] = 308668, - [SMALL_STATE(6999)] = 308686, - [SMALL_STATE(7000)] = 308704, - [SMALL_STATE(7001)] = 308722, - [SMALL_STATE(7002)] = 308740, - [SMALL_STATE(7003)] = 308758, - [SMALL_STATE(7004)] = 308776, - [SMALL_STATE(7005)] = 308794, - [SMALL_STATE(7006)] = 308812, - [SMALL_STATE(7007)] = 308830, - [SMALL_STATE(7008)] = 308848, - [SMALL_STATE(7009)] = 308866, - [SMALL_STATE(7010)] = 308884, - [SMALL_STATE(7011)] = 308902, - [SMALL_STATE(7012)] = 308920, - [SMALL_STATE(7013)] = 308938, - [SMALL_STATE(7014)] = 308956, - [SMALL_STATE(7015)] = 308974, - [SMALL_STATE(7016)] = 308992, - [SMALL_STATE(7017)] = 309010, - [SMALL_STATE(7018)] = 309028, - [SMALL_STATE(7019)] = 309046, - [SMALL_STATE(7020)] = 309064, - [SMALL_STATE(7021)] = 309082, - [SMALL_STATE(7022)] = 309100, - [SMALL_STATE(7023)] = 309118, - [SMALL_STATE(7024)] = 309136, - [SMALL_STATE(7025)] = 309154, - [SMALL_STATE(7026)] = 309172, - [SMALL_STATE(7027)] = 309190, - [SMALL_STATE(7028)] = 309208, - [SMALL_STATE(7029)] = 309226, - [SMALL_STATE(7030)] = 309244, - [SMALL_STATE(7031)] = 309262, - [SMALL_STATE(7032)] = 309280, - [SMALL_STATE(7033)] = 309298, - [SMALL_STATE(7034)] = 309316, - [SMALL_STATE(7035)] = 309334, - [SMALL_STATE(7036)] = 309352, - [SMALL_STATE(7037)] = 309370, - [SMALL_STATE(7038)] = 309388, - [SMALL_STATE(7039)] = 309406, - [SMALL_STATE(7040)] = 309424, - [SMALL_STATE(7041)] = 309442, - [SMALL_STATE(7042)] = 309460, - [SMALL_STATE(7043)] = 309478, - [SMALL_STATE(7044)] = 309496, - [SMALL_STATE(7045)] = 309514, - [SMALL_STATE(7046)] = 309532, - [SMALL_STATE(7047)] = 309550, - [SMALL_STATE(7048)] = 309568, - [SMALL_STATE(7049)] = 309586, - [SMALL_STATE(7050)] = 309604, - [SMALL_STATE(7051)] = 309622, - [SMALL_STATE(7052)] = 309640, - [SMALL_STATE(7053)] = 309658, - [SMALL_STATE(7054)] = 309676, - [SMALL_STATE(7055)] = 309694, - [SMALL_STATE(7056)] = 309712, - [SMALL_STATE(7057)] = 309730, - [SMALL_STATE(7058)] = 309748, - [SMALL_STATE(7059)] = 309766, - [SMALL_STATE(7060)] = 309784, - [SMALL_STATE(7061)] = 309802, - [SMALL_STATE(7062)] = 309820, - [SMALL_STATE(7063)] = 309838, - [SMALL_STATE(7064)] = 309856, - [SMALL_STATE(7065)] = 309874, - [SMALL_STATE(7066)] = 309892, - [SMALL_STATE(7067)] = 309910, - [SMALL_STATE(7068)] = 309928, - [SMALL_STATE(7069)] = 309946, - [SMALL_STATE(7070)] = 309964, - [SMALL_STATE(7071)] = 309982, - [SMALL_STATE(7072)] = 310000, - [SMALL_STATE(7073)] = 310018, - [SMALL_STATE(7074)] = 310036, - [SMALL_STATE(7075)] = 310054, - [SMALL_STATE(7076)] = 310072, - [SMALL_STATE(7077)] = 310090, - [SMALL_STATE(7078)] = 310108, - [SMALL_STATE(7079)] = 310126, - [SMALL_STATE(7080)] = 310144, - [SMALL_STATE(7081)] = 310162, - [SMALL_STATE(7082)] = 310180, - [SMALL_STATE(7083)] = 310198, - [SMALL_STATE(7084)] = 310216, - [SMALL_STATE(7085)] = 310234, - [SMALL_STATE(7086)] = 310252, - [SMALL_STATE(7087)] = 310270, - [SMALL_STATE(7088)] = 310288, - [SMALL_STATE(7089)] = 310306, - [SMALL_STATE(7090)] = 310324, - [SMALL_STATE(7091)] = 310342, - [SMALL_STATE(7092)] = 310360, - [SMALL_STATE(7093)] = 310378, - [SMALL_STATE(7094)] = 310396, - [SMALL_STATE(7095)] = 310414, - [SMALL_STATE(7096)] = 310432, - [SMALL_STATE(7097)] = 310450, - [SMALL_STATE(7098)] = 310468, - [SMALL_STATE(7099)] = 310486, - [SMALL_STATE(7100)] = 310504, - [SMALL_STATE(7101)] = 310522, - [SMALL_STATE(7102)] = 310540, - [SMALL_STATE(7103)] = 310558, - [SMALL_STATE(7104)] = 310576, - [SMALL_STATE(7105)] = 310594, - [SMALL_STATE(7106)] = 310612, - [SMALL_STATE(7107)] = 310630, - [SMALL_STATE(7108)] = 310648, - [SMALL_STATE(7109)] = 310666, - [SMALL_STATE(7110)] = 310684, - [SMALL_STATE(7111)] = 310702, - [SMALL_STATE(7112)] = 310720, - [SMALL_STATE(7113)] = 310738, - [SMALL_STATE(7114)] = 310756, - [SMALL_STATE(7115)] = 310774, - [SMALL_STATE(7116)] = 310792, - [SMALL_STATE(7117)] = 310810, - [SMALL_STATE(7118)] = 310828, - [SMALL_STATE(7119)] = 310846, - [SMALL_STATE(7120)] = 310864, - [SMALL_STATE(7121)] = 310882, - [SMALL_STATE(7122)] = 310900, - [SMALL_STATE(7123)] = 310918, - [SMALL_STATE(7124)] = 310936, - [SMALL_STATE(7125)] = 310954, - [SMALL_STATE(7126)] = 310972, - [SMALL_STATE(7127)] = 310990, - [SMALL_STATE(7128)] = 311008, - [SMALL_STATE(7129)] = 311026, - [SMALL_STATE(7130)] = 311044, - [SMALL_STATE(7131)] = 311062, - [SMALL_STATE(7132)] = 311080, - [SMALL_STATE(7133)] = 311098, - [SMALL_STATE(7134)] = 311116, - [SMALL_STATE(7135)] = 311134, - [SMALL_STATE(7136)] = 311152, - [SMALL_STATE(7137)] = 311170, - [SMALL_STATE(7138)] = 311188, - [SMALL_STATE(7139)] = 311206, - [SMALL_STATE(7140)] = 311224, - [SMALL_STATE(7141)] = 311242, - [SMALL_STATE(7142)] = 311260, - [SMALL_STATE(7143)] = 311278, - [SMALL_STATE(7144)] = 311296, - [SMALL_STATE(7145)] = 311314, - [SMALL_STATE(7146)] = 311332, - [SMALL_STATE(7147)] = 311350, - [SMALL_STATE(7148)] = 311368, - [SMALL_STATE(7149)] = 311386, - [SMALL_STATE(7150)] = 311404, - [SMALL_STATE(7151)] = 311422, - [SMALL_STATE(7152)] = 311440, - [SMALL_STATE(7153)] = 311458, - [SMALL_STATE(7154)] = 311476, - [SMALL_STATE(7155)] = 311494, - [SMALL_STATE(7156)] = 311512, - [SMALL_STATE(7157)] = 311530, - [SMALL_STATE(7158)] = 311548, - [SMALL_STATE(7159)] = 311566, - [SMALL_STATE(7160)] = 311584, - [SMALL_STATE(7161)] = 311602, - [SMALL_STATE(7162)] = 311620, - [SMALL_STATE(7163)] = 311638, - [SMALL_STATE(7164)] = 311656, - [SMALL_STATE(7165)] = 311674, - [SMALL_STATE(7166)] = 311692, - [SMALL_STATE(7167)] = 311710, - [SMALL_STATE(7168)] = 311728, - [SMALL_STATE(7169)] = 311746, - [SMALL_STATE(7170)] = 311764, - [SMALL_STATE(7171)] = 311782, - [SMALL_STATE(7172)] = 311800, - [SMALL_STATE(7173)] = 311818, - [SMALL_STATE(7174)] = 311836, - [SMALL_STATE(7175)] = 311854, - [SMALL_STATE(7176)] = 311872, - [SMALL_STATE(7177)] = 311890, - [SMALL_STATE(7178)] = 311908, - [SMALL_STATE(7179)] = 311926, - [SMALL_STATE(7180)] = 311944, - [SMALL_STATE(7181)] = 311962, - [SMALL_STATE(7182)] = 311980, - [SMALL_STATE(7183)] = 311998, - [SMALL_STATE(7184)] = 312016, - [SMALL_STATE(7185)] = 312034, - [SMALL_STATE(7186)] = 312052, - [SMALL_STATE(7187)] = 312070, - [SMALL_STATE(7188)] = 312088, - [SMALL_STATE(7189)] = 312106, - [SMALL_STATE(7190)] = 312124, - [SMALL_STATE(7191)] = 312142, - [SMALL_STATE(7192)] = 312160, - [SMALL_STATE(7193)] = 312178, - [SMALL_STATE(7194)] = 312196, - [SMALL_STATE(7195)] = 312214, - [SMALL_STATE(7196)] = 312232, - [SMALL_STATE(7197)] = 312250, - [SMALL_STATE(7198)] = 312268, - [SMALL_STATE(7199)] = 312286, - [SMALL_STATE(7200)] = 312304, - [SMALL_STATE(7201)] = 312322, - [SMALL_STATE(7202)] = 312340, - [SMALL_STATE(7203)] = 312358, - [SMALL_STATE(7204)] = 312376, - [SMALL_STATE(7205)] = 312394, - [SMALL_STATE(7206)] = 312412, - [SMALL_STATE(7207)] = 312430, - [SMALL_STATE(7208)] = 312448, - [SMALL_STATE(7209)] = 312466, - [SMALL_STATE(7210)] = 312484, - [SMALL_STATE(7211)] = 312502, - [SMALL_STATE(7212)] = 312520, - [SMALL_STATE(7213)] = 312538, - [SMALL_STATE(7214)] = 312556, - [SMALL_STATE(7215)] = 312574, - [SMALL_STATE(7216)] = 312592, - [SMALL_STATE(7217)] = 312610, - [SMALL_STATE(7218)] = 312628, - [SMALL_STATE(7219)] = 312646, - [SMALL_STATE(7220)] = 312664, - [SMALL_STATE(7221)] = 312682, - [SMALL_STATE(7222)] = 312700, - [SMALL_STATE(7223)] = 312718, - [SMALL_STATE(7224)] = 312736, - [SMALL_STATE(7225)] = 312754, - [SMALL_STATE(7226)] = 312772, - [SMALL_STATE(7227)] = 312790, - [SMALL_STATE(7228)] = 312808, - [SMALL_STATE(7229)] = 312826, - [SMALL_STATE(7230)] = 312844, - [SMALL_STATE(7231)] = 312862, - [SMALL_STATE(7232)] = 312880, - [SMALL_STATE(7233)] = 312898, - [SMALL_STATE(7234)] = 312916, - [SMALL_STATE(7235)] = 312934, - [SMALL_STATE(7236)] = 312952, - [SMALL_STATE(7237)] = 312970, - [SMALL_STATE(7238)] = 312988, - [SMALL_STATE(7239)] = 313006, - [SMALL_STATE(7240)] = 313024, - [SMALL_STATE(7241)] = 313042, - [SMALL_STATE(7242)] = 313060, - [SMALL_STATE(7243)] = 313078, - [SMALL_STATE(7244)] = 313096, - [SMALL_STATE(7245)] = 313114, - [SMALL_STATE(7246)] = 313132, - [SMALL_STATE(7247)] = 313150, - [SMALL_STATE(7248)] = 313168, - [SMALL_STATE(7249)] = 313186, - [SMALL_STATE(7250)] = 313204, - [SMALL_STATE(7251)] = 313222, - [SMALL_STATE(7252)] = 313240, - [SMALL_STATE(7253)] = 313258, - [SMALL_STATE(7254)] = 313276, - [SMALL_STATE(7255)] = 313294, - [SMALL_STATE(7256)] = 313312, - [SMALL_STATE(7257)] = 313330, - [SMALL_STATE(7258)] = 313348, - [SMALL_STATE(7259)] = 313366, - [SMALL_STATE(7260)] = 313384, - [SMALL_STATE(7261)] = 313402, - [SMALL_STATE(7262)] = 313420, - [SMALL_STATE(7263)] = 313438, - [SMALL_STATE(7264)] = 313456, - [SMALL_STATE(7265)] = 313474, - [SMALL_STATE(7266)] = 313492, - [SMALL_STATE(7267)] = 313510, - [SMALL_STATE(7268)] = 313528, - [SMALL_STATE(7269)] = 313546, - [SMALL_STATE(7270)] = 313564, - [SMALL_STATE(7271)] = 313582, - [SMALL_STATE(7272)] = 313600, - [SMALL_STATE(7273)] = 313618, - [SMALL_STATE(7274)] = 313636, - [SMALL_STATE(7275)] = 313654, - [SMALL_STATE(7276)] = 313672, - [SMALL_STATE(7277)] = 313690, - [SMALL_STATE(7278)] = 313708, - [SMALL_STATE(7279)] = 313726, - [SMALL_STATE(7280)] = 313744, - [SMALL_STATE(7281)] = 313762, - [SMALL_STATE(7282)] = 313780, - [SMALL_STATE(7283)] = 313798, - [SMALL_STATE(7284)] = 313816, - [SMALL_STATE(7285)] = 313834, - [SMALL_STATE(7286)] = 313852, - [SMALL_STATE(7287)] = 313870, - [SMALL_STATE(7288)] = 313888, - [SMALL_STATE(7289)] = 313906, - [SMALL_STATE(7290)] = 313924, - [SMALL_STATE(7291)] = 313942, - [SMALL_STATE(7292)] = 313960, - [SMALL_STATE(7293)] = 313978, - [SMALL_STATE(7294)] = 313996, - [SMALL_STATE(7295)] = 314014, - [SMALL_STATE(7296)] = 314032, - [SMALL_STATE(7297)] = 314050, - [SMALL_STATE(7298)] = 314068, - [SMALL_STATE(7299)] = 314086, - [SMALL_STATE(7300)] = 314104, - [SMALL_STATE(7301)] = 314122, - [SMALL_STATE(7302)] = 314140, - [SMALL_STATE(7303)] = 314158, - [SMALL_STATE(7304)] = 314176, - [SMALL_STATE(7305)] = 314194, - [SMALL_STATE(7306)] = 314212, - [SMALL_STATE(7307)] = 314230, - [SMALL_STATE(7308)] = 314248, - [SMALL_STATE(7309)] = 314266, - [SMALL_STATE(7310)] = 314284, - [SMALL_STATE(7311)] = 314302, - [SMALL_STATE(7312)] = 314320, - [SMALL_STATE(7313)] = 314338, - [SMALL_STATE(7314)] = 314356, - [SMALL_STATE(7315)] = 314374, - [SMALL_STATE(7316)] = 314392, - [SMALL_STATE(7317)] = 314410, - [SMALL_STATE(7318)] = 314428, - [SMALL_STATE(7319)] = 314446, - [SMALL_STATE(7320)] = 314464, - [SMALL_STATE(7321)] = 314482, - [SMALL_STATE(7322)] = 314500, - [SMALL_STATE(7323)] = 314518, - [SMALL_STATE(7324)] = 314536, - [SMALL_STATE(7325)] = 314554, - [SMALL_STATE(7326)] = 314572, - [SMALL_STATE(7327)] = 314590, - [SMALL_STATE(7328)] = 314608, - [SMALL_STATE(7329)] = 314626, - [SMALL_STATE(7330)] = 314644, - [SMALL_STATE(7331)] = 314662, - [SMALL_STATE(7332)] = 314680, - [SMALL_STATE(7333)] = 314698, - [SMALL_STATE(7334)] = 314716, - [SMALL_STATE(7335)] = 314734, - [SMALL_STATE(7336)] = 314752, - [SMALL_STATE(7337)] = 314770, - [SMALL_STATE(7338)] = 314788, - [SMALL_STATE(7339)] = 314806, - [SMALL_STATE(7340)] = 314824, - [SMALL_STATE(7341)] = 314842, - [SMALL_STATE(7342)] = 314860, - [SMALL_STATE(7343)] = 314878, - [SMALL_STATE(7344)] = 314896, - [SMALL_STATE(7345)] = 314914, - [SMALL_STATE(7346)] = 314932, - [SMALL_STATE(7347)] = 314950, - [SMALL_STATE(7348)] = 314968, - [SMALL_STATE(7349)] = 314986, - [SMALL_STATE(7350)] = 315004, - [SMALL_STATE(7351)] = 315022, - [SMALL_STATE(7352)] = 315040, - [SMALL_STATE(7353)] = 315058, - [SMALL_STATE(7354)] = 315076, - [SMALL_STATE(7355)] = 315094, - [SMALL_STATE(7356)] = 315112, - [SMALL_STATE(7357)] = 315130, - [SMALL_STATE(7358)] = 315148, - [SMALL_STATE(7359)] = 315166, - [SMALL_STATE(7360)] = 315184, - [SMALL_STATE(7361)] = 315202, - [SMALL_STATE(7362)] = 315220, - [SMALL_STATE(7363)] = 315238, - [SMALL_STATE(7364)] = 315256, - [SMALL_STATE(7365)] = 315274, - [SMALL_STATE(7366)] = 315292, - [SMALL_STATE(7367)] = 315310, - [SMALL_STATE(7368)] = 315328, - [SMALL_STATE(7369)] = 315346, - [SMALL_STATE(7370)] = 315364, - [SMALL_STATE(7371)] = 315382, - [SMALL_STATE(7372)] = 315400, - [SMALL_STATE(7373)] = 315418, - [SMALL_STATE(7374)] = 315436, - [SMALL_STATE(7375)] = 315454, - [SMALL_STATE(7376)] = 315472, - [SMALL_STATE(7377)] = 315490, - [SMALL_STATE(7378)] = 315508, - [SMALL_STATE(7379)] = 315526, - [SMALL_STATE(7380)] = 315544, - [SMALL_STATE(7381)] = 315562, - [SMALL_STATE(7382)] = 315580, - [SMALL_STATE(7383)] = 315598, - [SMALL_STATE(7384)] = 315616, - [SMALL_STATE(7385)] = 315634, - [SMALL_STATE(7386)] = 315652, - [SMALL_STATE(7387)] = 315670, - [SMALL_STATE(7388)] = 315688, - [SMALL_STATE(7389)] = 315706, - [SMALL_STATE(7390)] = 315724, - [SMALL_STATE(7391)] = 315742, - [SMALL_STATE(7392)] = 315760, - [SMALL_STATE(7393)] = 315778, - [SMALL_STATE(7394)] = 315796, - [SMALL_STATE(7395)] = 315814, - [SMALL_STATE(7396)] = 315832, - [SMALL_STATE(7397)] = 315850, - [SMALL_STATE(7398)] = 315868, - [SMALL_STATE(7399)] = 315886, - [SMALL_STATE(7400)] = 315904, - [SMALL_STATE(7401)] = 315922, - [SMALL_STATE(7402)] = 315940, - [SMALL_STATE(7403)] = 315958, - [SMALL_STATE(7404)] = 315976, - [SMALL_STATE(7405)] = 315994, - [SMALL_STATE(7406)] = 316012, - [SMALL_STATE(7407)] = 316030, - [SMALL_STATE(7408)] = 316048, - [SMALL_STATE(7409)] = 316066, - [SMALL_STATE(7410)] = 316084, - [SMALL_STATE(7411)] = 316102, - [SMALL_STATE(7412)] = 316120, - [SMALL_STATE(7413)] = 316138, - [SMALL_STATE(7414)] = 316156, - [SMALL_STATE(7415)] = 316174, - [SMALL_STATE(7416)] = 316192, - [SMALL_STATE(7417)] = 316210, - [SMALL_STATE(7418)] = 316228, - [SMALL_STATE(7419)] = 316246, - [SMALL_STATE(7420)] = 316264, - [SMALL_STATE(7421)] = 316282, - [SMALL_STATE(7422)] = 316300, - [SMALL_STATE(7423)] = 316318, - [SMALL_STATE(7424)] = 316336, - [SMALL_STATE(7425)] = 316354, - [SMALL_STATE(7426)] = 316372, - [SMALL_STATE(7427)] = 316390, - [SMALL_STATE(7428)] = 316408, - [SMALL_STATE(7429)] = 316426, - [SMALL_STATE(7430)] = 316444, - [SMALL_STATE(7431)] = 316462, - [SMALL_STATE(7432)] = 316480, - [SMALL_STATE(7433)] = 316498, - [SMALL_STATE(7434)] = 316516, - [SMALL_STATE(7435)] = 316534, - [SMALL_STATE(7436)] = 316552, - [SMALL_STATE(7437)] = 316570, - [SMALL_STATE(7438)] = 316588, - [SMALL_STATE(7439)] = 316606, - [SMALL_STATE(7440)] = 316624, - [SMALL_STATE(7441)] = 316642, - [SMALL_STATE(7442)] = 316660, - [SMALL_STATE(7443)] = 316678, - [SMALL_STATE(7444)] = 316696, - [SMALL_STATE(7445)] = 316714, - [SMALL_STATE(7446)] = 316732, - [SMALL_STATE(7447)] = 316750, - [SMALL_STATE(7448)] = 316768, - [SMALL_STATE(7449)] = 316786, - [SMALL_STATE(7450)] = 316804, - [SMALL_STATE(7451)] = 316822, - [SMALL_STATE(7452)] = 316840, - [SMALL_STATE(7453)] = 316858, - [SMALL_STATE(7454)] = 316876, - [SMALL_STATE(7455)] = 316894, - [SMALL_STATE(7456)] = 316912, - [SMALL_STATE(7457)] = 316930, - [SMALL_STATE(7458)] = 316948, - [SMALL_STATE(7459)] = 316966, - [SMALL_STATE(7460)] = 316984, - [SMALL_STATE(7461)] = 317002, - [SMALL_STATE(7462)] = 317020, - [SMALL_STATE(7463)] = 317038, - [SMALL_STATE(7464)] = 317056, - [SMALL_STATE(7465)] = 317074, - [SMALL_STATE(7466)] = 317092, - [SMALL_STATE(7467)] = 317110, - [SMALL_STATE(7468)] = 317128, - [SMALL_STATE(7469)] = 317146, - [SMALL_STATE(7470)] = 317164, - [SMALL_STATE(7471)] = 317182, - [SMALL_STATE(7472)] = 317200, - [SMALL_STATE(7473)] = 317218, - [SMALL_STATE(7474)] = 317236, - [SMALL_STATE(7475)] = 317254, - [SMALL_STATE(7476)] = 317272, - [SMALL_STATE(7477)] = 317290, - [SMALL_STATE(7478)] = 317308, - [SMALL_STATE(7479)] = 317326, - [SMALL_STATE(7480)] = 317344, - [SMALL_STATE(7481)] = 317362, - [SMALL_STATE(7482)] = 317380, - [SMALL_STATE(7483)] = 317398, - [SMALL_STATE(7484)] = 317416, - [SMALL_STATE(7485)] = 317434, - [SMALL_STATE(7486)] = 317452, - [SMALL_STATE(7487)] = 317470, - [SMALL_STATE(7488)] = 317488, - [SMALL_STATE(7489)] = 317506, - [SMALL_STATE(7490)] = 317524, - [SMALL_STATE(7491)] = 317542, - [SMALL_STATE(7492)] = 317560, - [SMALL_STATE(7493)] = 317578, - [SMALL_STATE(7494)] = 317596, - [SMALL_STATE(7495)] = 317614, - [SMALL_STATE(7496)] = 317632, - [SMALL_STATE(7497)] = 317650, - [SMALL_STATE(7498)] = 317668, - [SMALL_STATE(7499)] = 317686, - [SMALL_STATE(7500)] = 317704, - [SMALL_STATE(7501)] = 317722, - [SMALL_STATE(7502)] = 317740, - [SMALL_STATE(7503)] = 317758, - [SMALL_STATE(7504)] = 317776, - [SMALL_STATE(7505)] = 317794, - [SMALL_STATE(7506)] = 317812, - [SMALL_STATE(7507)] = 317830, - [SMALL_STATE(7508)] = 317848, - [SMALL_STATE(7509)] = 317866, - [SMALL_STATE(7510)] = 317884, - [SMALL_STATE(7511)] = 317902, - [SMALL_STATE(7512)] = 317920, - [SMALL_STATE(7513)] = 317938, - [SMALL_STATE(7514)] = 317956, - [SMALL_STATE(7515)] = 317974, - [SMALL_STATE(7516)] = 317992, - [SMALL_STATE(7517)] = 318010, - [SMALL_STATE(7518)] = 318028, - [SMALL_STATE(7519)] = 318046, - [SMALL_STATE(7520)] = 318064, - [SMALL_STATE(7521)] = 318082, - [SMALL_STATE(7522)] = 318100, - [SMALL_STATE(7523)] = 318118, - [SMALL_STATE(7524)] = 318136, - [SMALL_STATE(7525)] = 318154, - [SMALL_STATE(7526)] = 318172, - [SMALL_STATE(7527)] = 318190, - [SMALL_STATE(7528)] = 318208, - [SMALL_STATE(7529)] = 318226, - [SMALL_STATE(7530)] = 318244, - [SMALL_STATE(7531)] = 318262, - [SMALL_STATE(7532)] = 318280, - [SMALL_STATE(7533)] = 318298, - [SMALL_STATE(7534)] = 318316, - [SMALL_STATE(7535)] = 318334, - [SMALL_STATE(7536)] = 318352, - [SMALL_STATE(7537)] = 318370, - [SMALL_STATE(7538)] = 318388, - [SMALL_STATE(7539)] = 318406, - [SMALL_STATE(7540)] = 318424, - [SMALL_STATE(7541)] = 318442, - [SMALL_STATE(7542)] = 318460, - [SMALL_STATE(7543)] = 318478, - [SMALL_STATE(7544)] = 318496, - [SMALL_STATE(7545)] = 318514, - [SMALL_STATE(7546)] = 318532, - [SMALL_STATE(7547)] = 318550, - [SMALL_STATE(7548)] = 318568, - [SMALL_STATE(7549)] = 318586, - [SMALL_STATE(7550)] = 318604, - [SMALL_STATE(7551)] = 318622, - [SMALL_STATE(7552)] = 318640, - [SMALL_STATE(7553)] = 318658, - [SMALL_STATE(7554)] = 318676, - [SMALL_STATE(7555)] = 318694, - [SMALL_STATE(7556)] = 318712, - [SMALL_STATE(7557)] = 318730, - [SMALL_STATE(7558)] = 318748, - [SMALL_STATE(7559)] = 318766, - [SMALL_STATE(7560)] = 318784, - [SMALL_STATE(7561)] = 318802, - [SMALL_STATE(7562)] = 318820, - [SMALL_STATE(7563)] = 318838, - [SMALL_STATE(7564)] = 318856, - [SMALL_STATE(7565)] = 318874, - [SMALL_STATE(7566)] = 318892, - [SMALL_STATE(7567)] = 318910, - [SMALL_STATE(7568)] = 318928, - [SMALL_STATE(7569)] = 318946, - [SMALL_STATE(7570)] = 318964, - [SMALL_STATE(7571)] = 318982, - [SMALL_STATE(7572)] = 319000, - [SMALL_STATE(7573)] = 319018, - [SMALL_STATE(7574)] = 319036, - [SMALL_STATE(7575)] = 319054, - [SMALL_STATE(7576)] = 319072, - [SMALL_STATE(7577)] = 319090, - [SMALL_STATE(7578)] = 319108, - [SMALL_STATE(7579)] = 319126, - [SMALL_STATE(7580)] = 319144, - [SMALL_STATE(7581)] = 319162, - [SMALL_STATE(7582)] = 319180, - [SMALL_STATE(7583)] = 319198, - [SMALL_STATE(7584)] = 319216, - [SMALL_STATE(7585)] = 319234, - [SMALL_STATE(7586)] = 319252, - [SMALL_STATE(7587)] = 319270, - [SMALL_STATE(7588)] = 319288, - [SMALL_STATE(7589)] = 319306, - [SMALL_STATE(7590)] = 319324, - [SMALL_STATE(7591)] = 319342, - [SMALL_STATE(7592)] = 319360, - [SMALL_STATE(7593)] = 319378, - [SMALL_STATE(7594)] = 319396, - [SMALL_STATE(7595)] = 319414, - [SMALL_STATE(7596)] = 319432, - [SMALL_STATE(7597)] = 319450, - [SMALL_STATE(7598)] = 319468, - [SMALL_STATE(7599)] = 319486, - [SMALL_STATE(7600)] = 319504, - [SMALL_STATE(7601)] = 319522, - [SMALL_STATE(7602)] = 319540, - [SMALL_STATE(7603)] = 319558, - [SMALL_STATE(7604)] = 319576, - [SMALL_STATE(7605)] = 319594, - [SMALL_STATE(7606)] = 319612, - [SMALL_STATE(7607)] = 319630, - [SMALL_STATE(7608)] = 319648, - [SMALL_STATE(7609)] = 319666, - [SMALL_STATE(7610)] = 319684, - [SMALL_STATE(7611)] = 319702, - [SMALL_STATE(7612)] = 319720, - [SMALL_STATE(7613)] = 319738, - [SMALL_STATE(7614)] = 319756, - [SMALL_STATE(7615)] = 319774, - [SMALL_STATE(7616)] = 319792, - [SMALL_STATE(7617)] = 319810, - [SMALL_STATE(7618)] = 319828, - [SMALL_STATE(7619)] = 319846, - [SMALL_STATE(7620)] = 319864, - [SMALL_STATE(7621)] = 319882, - [SMALL_STATE(7622)] = 319900, - [SMALL_STATE(7623)] = 319918, - [SMALL_STATE(7624)] = 319936, - [SMALL_STATE(7625)] = 319954, - [SMALL_STATE(7626)] = 319972, - [SMALL_STATE(7627)] = 319990, - [SMALL_STATE(7628)] = 320008, - [SMALL_STATE(7629)] = 320026, - [SMALL_STATE(7630)] = 320044, - [SMALL_STATE(7631)] = 320062, - [SMALL_STATE(7632)] = 320080, - [SMALL_STATE(7633)] = 320098, - [SMALL_STATE(7634)] = 320116, - [SMALL_STATE(7635)] = 320134, - [SMALL_STATE(7636)] = 320152, - [SMALL_STATE(7637)] = 320170, - [SMALL_STATE(7638)] = 320188, - [SMALL_STATE(7639)] = 320206, - [SMALL_STATE(7640)] = 320224, - [SMALL_STATE(7641)] = 320242, - [SMALL_STATE(7642)] = 320260, - [SMALL_STATE(7643)] = 320278, - [SMALL_STATE(7644)] = 320296, - [SMALL_STATE(7645)] = 320314, - [SMALL_STATE(7646)] = 320332, - [SMALL_STATE(7647)] = 320350, - [SMALL_STATE(7648)] = 320368, - [SMALL_STATE(7649)] = 320386, - [SMALL_STATE(7650)] = 320404, - [SMALL_STATE(7651)] = 320422, - [SMALL_STATE(7652)] = 320440, - [SMALL_STATE(7653)] = 320458, - [SMALL_STATE(7654)] = 320476, - [SMALL_STATE(7655)] = 320494, - [SMALL_STATE(7656)] = 320512, - [SMALL_STATE(7657)] = 320530, - [SMALL_STATE(7658)] = 320548, - [SMALL_STATE(7659)] = 320566, - [SMALL_STATE(7660)] = 320584, - [SMALL_STATE(7661)] = 320602, - [SMALL_STATE(7662)] = 320620, - [SMALL_STATE(7663)] = 320638, - [SMALL_STATE(7664)] = 320656, - [SMALL_STATE(7665)] = 320674, - [SMALL_STATE(7666)] = 320692, - [SMALL_STATE(7667)] = 320710, - [SMALL_STATE(7668)] = 320728, - [SMALL_STATE(7669)] = 320746, - [SMALL_STATE(7670)] = 320764, - [SMALL_STATE(7671)] = 320782, - [SMALL_STATE(7672)] = 320800, - [SMALL_STATE(7673)] = 320818, - [SMALL_STATE(7674)] = 320836, - [SMALL_STATE(7675)] = 320854, - [SMALL_STATE(7676)] = 320872, - [SMALL_STATE(7677)] = 320890, - [SMALL_STATE(7678)] = 320908, - [SMALL_STATE(7679)] = 320926, - [SMALL_STATE(7680)] = 320944, - [SMALL_STATE(7681)] = 320962, - [SMALL_STATE(7682)] = 320980, - [SMALL_STATE(7683)] = 320998, - [SMALL_STATE(7684)] = 321016, - [SMALL_STATE(7685)] = 321034, - [SMALL_STATE(7686)] = 321052, - [SMALL_STATE(7687)] = 321070, - [SMALL_STATE(7688)] = 321088, - [SMALL_STATE(7689)] = 321106, - [SMALL_STATE(7690)] = 321124, - [SMALL_STATE(7691)] = 321142, - [SMALL_STATE(7692)] = 321160, - [SMALL_STATE(7693)] = 321178, - [SMALL_STATE(7694)] = 321196, - [SMALL_STATE(7695)] = 321214, - [SMALL_STATE(7696)] = 321232, - [SMALL_STATE(7697)] = 321250, - [SMALL_STATE(7698)] = 321268, - [SMALL_STATE(7699)] = 321286, - [SMALL_STATE(7700)] = 321304, - [SMALL_STATE(7701)] = 321322, - [SMALL_STATE(7702)] = 321340, - [SMALL_STATE(7703)] = 321358, - [SMALL_STATE(7704)] = 321376, - [SMALL_STATE(7705)] = 321394, - [SMALL_STATE(7706)] = 321412, - [SMALL_STATE(7707)] = 321430, - [SMALL_STATE(7708)] = 321448, - [SMALL_STATE(7709)] = 321466, - [SMALL_STATE(7710)] = 321484, - [SMALL_STATE(7711)] = 321502, - [SMALL_STATE(7712)] = 321520, - [SMALL_STATE(7713)] = 321538, - [SMALL_STATE(7714)] = 321556, - [SMALL_STATE(7715)] = 321574, - [SMALL_STATE(7716)] = 321592, - [SMALL_STATE(7717)] = 321610, - [SMALL_STATE(7718)] = 321628, - [SMALL_STATE(7719)] = 321646, - [SMALL_STATE(7720)] = 321664, - [SMALL_STATE(7721)] = 321682, - [SMALL_STATE(7722)] = 321700, - [SMALL_STATE(7723)] = 321718, - [SMALL_STATE(7724)] = 321736, - [SMALL_STATE(7725)] = 321754, - [SMALL_STATE(7726)] = 321772, - [SMALL_STATE(7727)] = 321790, - [SMALL_STATE(7728)] = 321808, - [SMALL_STATE(7729)] = 321826, - [SMALL_STATE(7730)] = 321844, - [SMALL_STATE(7731)] = 321862, - [SMALL_STATE(7732)] = 321880, - [SMALL_STATE(7733)] = 321898, - [SMALL_STATE(7734)] = 321916, - [SMALL_STATE(7735)] = 321934, - [SMALL_STATE(7736)] = 321952, - [SMALL_STATE(7737)] = 321970, - [SMALL_STATE(7738)] = 321988, - [SMALL_STATE(7739)] = 322006, - [SMALL_STATE(7740)] = 322024, - [SMALL_STATE(7741)] = 322042, - [SMALL_STATE(7742)] = 322060, - [SMALL_STATE(7743)] = 322078, - [SMALL_STATE(7744)] = 322096, - [SMALL_STATE(7745)] = 322114, - [SMALL_STATE(7746)] = 322132, - [SMALL_STATE(7747)] = 322150, - [SMALL_STATE(7748)] = 322168, - [SMALL_STATE(7749)] = 322186, - [SMALL_STATE(7750)] = 322204, - [SMALL_STATE(7751)] = 322222, - [SMALL_STATE(7752)] = 322240, - [SMALL_STATE(7753)] = 322258, - [SMALL_STATE(7754)] = 322276, - [SMALL_STATE(7755)] = 322294, - [SMALL_STATE(7756)] = 322312, - [SMALL_STATE(7757)] = 322330, - [SMALL_STATE(7758)] = 322348, - [SMALL_STATE(7759)] = 322366, - [SMALL_STATE(7760)] = 322384, - [SMALL_STATE(7761)] = 322402, - [SMALL_STATE(7762)] = 322420, - [SMALL_STATE(7763)] = 322438, - [SMALL_STATE(7764)] = 322456, - [SMALL_STATE(7765)] = 322474, - [SMALL_STATE(7766)] = 322492, - [SMALL_STATE(7767)] = 322510, - [SMALL_STATE(7768)] = 322528, - [SMALL_STATE(7769)] = 322546, - [SMALL_STATE(7770)] = 322564, - [SMALL_STATE(7771)] = 322582, - [SMALL_STATE(7772)] = 322600, - [SMALL_STATE(7773)] = 322618, - [SMALL_STATE(7774)] = 322636, - [SMALL_STATE(7775)] = 322654, - [SMALL_STATE(7776)] = 322672, - [SMALL_STATE(7777)] = 322690, - [SMALL_STATE(7778)] = 322708, - [SMALL_STATE(7779)] = 322726, - [SMALL_STATE(7780)] = 322744, - [SMALL_STATE(7781)] = 322762, - [SMALL_STATE(7782)] = 322780, - [SMALL_STATE(7783)] = 322798, - [SMALL_STATE(7784)] = 322816, - [SMALL_STATE(7785)] = 322834, - [SMALL_STATE(7786)] = 322852, - [SMALL_STATE(7787)] = 322870, - [SMALL_STATE(7788)] = 322888, - [SMALL_STATE(7789)] = 322906, - [SMALL_STATE(7790)] = 322924, - [SMALL_STATE(7791)] = 322942, - [SMALL_STATE(7792)] = 322960, - [SMALL_STATE(7793)] = 322978, - [SMALL_STATE(7794)] = 322996, - [SMALL_STATE(7795)] = 323014, - [SMALL_STATE(7796)] = 323032, - [SMALL_STATE(7797)] = 323050, - [SMALL_STATE(7798)] = 323068, - [SMALL_STATE(7799)] = 323086, - [SMALL_STATE(7800)] = 323104, - [SMALL_STATE(7801)] = 323122, - [SMALL_STATE(7802)] = 323140, - [SMALL_STATE(7803)] = 323158, - [SMALL_STATE(7804)] = 323176, - [SMALL_STATE(7805)] = 323194, - [SMALL_STATE(7806)] = 323212, - [SMALL_STATE(7807)] = 323230, - [SMALL_STATE(7808)] = 323248, - [SMALL_STATE(7809)] = 323266, - [SMALL_STATE(7810)] = 323284, - [SMALL_STATE(7811)] = 323302, - [SMALL_STATE(7812)] = 323320, - [SMALL_STATE(7813)] = 323338, - [SMALL_STATE(7814)] = 323356, - [SMALL_STATE(7815)] = 323374, - [SMALL_STATE(7816)] = 323392, - [SMALL_STATE(7817)] = 323410, - [SMALL_STATE(7818)] = 323428, - [SMALL_STATE(7819)] = 323446, - [SMALL_STATE(7820)] = 323464, - [SMALL_STATE(7821)] = 323482, - [SMALL_STATE(7822)] = 323500, - [SMALL_STATE(7823)] = 323518, - [SMALL_STATE(7824)] = 323536, - [SMALL_STATE(7825)] = 323554, - [SMALL_STATE(7826)] = 323572, - [SMALL_STATE(7827)] = 323590, - [SMALL_STATE(7828)] = 323608, - [SMALL_STATE(7829)] = 323626, - [SMALL_STATE(7830)] = 323644, - [SMALL_STATE(7831)] = 323662, - [SMALL_STATE(7832)] = 323680, - [SMALL_STATE(7833)] = 323698, - [SMALL_STATE(7834)] = 323716, - [SMALL_STATE(7835)] = 323734, - [SMALL_STATE(7836)] = 323752, - [SMALL_STATE(7837)] = 323770, - [SMALL_STATE(7838)] = 323788, - [SMALL_STATE(7839)] = 323806, - [SMALL_STATE(7840)] = 323824, - [SMALL_STATE(7841)] = 323842, - [SMALL_STATE(7842)] = 323860, - [SMALL_STATE(7843)] = 323878, - [SMALL_STATE(7844)] = 323896, - [SMALL_STATE(7845)] = 323914, - [SMALL_STATE(7846)] = 323932, - [SMALL_STATE(7847)] = 323950, - [SMALL_STATE(7848)] = 323968, - [SMALL_STATE(7849)] = 323986, - [SMALL_STATE(7850)] = 324004, - [SMALL_STATE(7851)] = 324022, - [SMALL_STATE(7852)] = 324040, - [SMALL_STATE(7853)] = 324058, - [SMALL_STATE(7854)] = 324076, - [SMALL_STATE(7855)] = 324094, - [SMALL_STATE(7856)] = 324112, - [SMALL_STATE(7857)] = 324130, - [SMALL_STATE(7858)] = 324148, - [SMALL_STATE(7859)] = 324166, - [SMALL_STATE(7860)] = 324184, - [SMALL_STATE(7861)] = 324202, - [SMALL_STATE(7862)] = 324220, - [SMALL_STATE(7863)] = 324238, - [SMALL_STATE(7864)] = 324256, - [SMALL_STATE(7865)] = 324274, - [SMALL_STATE(7866)] = 324292, - [SMALL_STATE(7867)] = 324310, - [SMALL_STATE(7868)] = 324328, - [SMALL_STATE(7869)] = 324346, - [SMALL_STATE(7870)] = 324364, - [SMALL_STATE(7871)] = 324382, - [SMALL_STATE(7872)] = 324400, - [SMALL_STATE(7873)] = 324418, - [SMALL_STATE(7874)] = 324436, - [SMALL_STATE(7875)] = 324454, - [SMALL_STATE(7876)] = 324472, - [SMALL_STATE(7877)] = 324490, - [SMALL_STATE(7878)] = 324508, - [SMALL_STATE(7879)] = 324526, - [SMALL_STATE(7880)] = 324544, - [SMALL_STATE(7881)] = 324562, - [SMALL_STATE(7882)] = 324580, - [SMALL_STATE(7883)] = 324598, - [SMALL_STATE(7884)] = 324616, - [SMALL_STATE(7885)] = 324634, - [SMALL_STATE(7886)] = 324652, - [SMALL_STATE(7887)] = 324670, - [SMALL_STATE(7888)] = 324688, - [SMALL_STATE(7889)] = 324706, - [SMALL_STATE(7890)] = 324724, - [SMALL_STATE(7891)] = 324742, - [SMALL_STATE(7892)] = 324760, - [SMALL_STATE(7893)] = 324778, - [SMALL_STATE(7894)] = 324796, - [SMALL_STATE(7895)] = 324814, - [SMALL_STATE(7896)] = 324832, - [SMALL_STATE(7897)] = 324850, - [SMALL_STATE(7898)] = 324868, - [SMALL_STATE(7899)] = 324886, - [SMALL_STATE(7900)] = 324904, - [SMALL_STATE(7901)] = 324922, - [SMALL_STATE(7902)] = 324940, - [SMALL_STATE(7903)] = 324958, - [SMALL_STATE(7904)] = 324976, - [SMALL_STATE(7905)] = 324994, - [SMALL_STATE(7906)] = 325012, - [SMALL_STATE(7907)] = 325030, - [SMALL_STATE(7908)] = 325048, - [SMALL_STATE(7909)] = 325066, - [SMALL_STATE(7910)] = 325084, - [SMALL_STATE(7911)] = 325102, - [SMALL_STATE(7912)] = 325120, - [SMALL_STATE(7913)] = 325138, - [SMALL_STATE(7914)] = 325156, - [SMALL_STATE(7915)] = 325174, - [SMALL_STATE(7916)] = 325192, - [SMALL_STATE(7917)] = 325210, - [SMALL_STATE(7918)] = 325228, - [SMALL_STATE(7919)] = 325246, - [SMALL_STATE(7920)] = 325264, - [SMALL_STATE(7921)] = 325282, - [SMALL_STATE(7922)] = 325300, - [SMALL_STATE(7923)] = 325318, - [SMALL_STATE(7924)] = 325336, - [SMALL_STATE(7925)] = 325354, - [SMALL_STATE(7926)] = 325372, - [SMALL_STATE(7927)] = 325390, - [SMALL_STATE(7928)] = 325408, - [SMALL_STATE(7929)] = 325426, - [SMALL_STATE(7930)] = 325444, - [SMALL_STATE(7931)] = 325462, - [SMALL_STATE(7932)] = 325480, - [SMALL_STATE(7933)] = 325498, - [SMALL_STATE(7934)] = 325516, - [SMALL_STATE(7935)] = 325534, - [SMALL_STATE(7936)] = 325552, - [SMALL_STATE(7937)] = 325570, - [SMALL_STATE(7938)] = 325588, - [SMALL_STATE(7939)] = 325606, - [SMALL_STATE(7940)] = 325624, - [SMALL_STATE(7941)] = 325642, - [SMALL_STATE(7942)] = 325660, - [SMALL_STATE(7943)] = 325678, - [SMALL_STATE(7944)] = 325696, - [SMALL_STATE(7945)] = 325714, - [SMALL_STATE(7946)] = 325732, - [SMALL_STATE(7947)] = 325750, - [SMALL_STATE(7948)] = 325768, - [SMALL_STATE(7949)] = 325786, - [SMALL_STATE(7950)] = 325804, - [SMALL_STATE(7951)] = 325822, - [SMALL_STATE(7952)] = 325840, - [SMALL_STATE(7953)] = 325858, - [SMALL_STATE(7954)] = 325876, - [SMALL_STATE(7955)] = 325894, - [SMALL_STATE(7956)] = 325912, - [SMALL_STATE(7957)] = 325930, - [SMALL_STATE(7958)] = 325948, - [SMALL_STATE(7959)] = 325966, - [SMALL_STATE(7960)] = 325984, - [SMALL_STATE(7961)] = 326002, - [SMALL_STATE(7962)] = 326020, - [SMALL_STATE(7963)] = 326038, - [SMALL_STATE(7964)] = 326056, - [SMALL_STATE(7965)] = 326074, - [SMALL_STATE(7966)] = 326092, - [SMALL_STATE(7967)] = 326110, - [SMALL_STATE(7968)] = 326128, - [SMALL_STATE(7969)] = 326146, - [SMALL_STATE(7970)] = 326164, - [SMALL_STATE(7971)] = 326182, - [SMALL_STATE(7972)] = 326200, - [SMALL_STATE(7973)] = 326218, - [SMALL_STATE(7974)] = 326236, - [SMALL_STATE(7975)] = 326254, - [SMALL_STATE(7976)] = 326272, - [SMALL_STATE(7977)] = 326290, - [SMALL_STATE(7978)] = 326308, - [SMALL_STATE(7979)] = 326326, - [SMALL_STATE(7980)] = 326344, - [SMALL_STATE(7981)] = 326362, - [SMALL_STATE(7982)] = 326380, - [SMALL_STATE(7983)] = 326398, - [SMALL_STATE(7984)] = 326416, - [SMALL_STATE(7985)] = 326434, - [SMALL_STATE(7986)] = 326452, - [SMALL_STATE(7987)] = 326470, - [SMALL_STATE(7988)] = 326488, - [SMALL_STATE(7989)] = 326506, - [SMALL_STATE(7990)] = 326524, - [SMALL_STATE(7991)] = 326542, - [SMALL_STATE(7992)] = 326560, - [SMALL_STATE(7993)] = 326578, - [SMALL_STATE(7994)] = 326596, - [SMALL_STATE(7995)] = 326614, - [SMALL_STATE(7996)] = 326632, - [SMALL_STATE(7997)] = 326650, - [SMALL_STATE(7998)] = 326668, - [SMALL_STATE(7999)] = 326686, - [SMALL_STATE(8000)] = 326704, - [SMALL_STATE(8001)] = 326722, - [SMALL_STATE(8002)] = 326740, - [SMALL_STATE(8003)] = 326758, - [SMALL_STATE(8004)] = 326776, - [SMALL_STATE(8005)] = 326794, - [SMALL_STATE(8006)] = 326812, - [SMALL_STATE(8007)] = 326830, - [SMALL_STATE(8008)] = 326848, - [SMALL_STATE(8009)] = 326866, - [SMALL_STATE(8010)] = 326884, - [SMALL_STATE(8011)] = 326902, - [SMALL_STATE(8012)] = 326920, - [SMALL_STATE(8013)] = 326938, - [SMALL_STATE(8014)] = 326956, - [SMALL_STATE(8015)] = 326974, - [SMALL_STATE(8016)] = 326992, - [SMALL_STATE(8017)] = 327010, - [SMALL_STATE(8018)] = 327028, - [SMALL_STATE(8019)] = 327046, - [SMALL_STATE(8020)] = 327064, - [SMALL_STATE(8021)] = 327082, - [SMALL_STATE(8022)] = 327100, - [SMALL_STATE(8023)] = 327118, - [SMALL_STATE(8024)] = 327136, - [SMALL_STATE(8025)] = 327154, - [SMALL_STATE(8026)] = 327172, - [SMALL_STATE(8027)] = 327190, - [SMALL_STATE(8028)] = 327208, - [SMALL_STATE(8029)] = 327226, - [SMALL_STATE(8030)] = 327244, - [SMALL_STATE(8031)] = 327262, - [SMALL_STATE(8032)] = 327280, - [SMALL_STATE(8033)] = 327298, - [SMALL_STATE(8034)] = 327316, - [SMALL_STATE(8035)] = 327334, - [SMALL_STATE(8036)] = 327352, - [SMALL_STATE(8037)] = 327370, - [SMALL_STATE(8038)] = 327388, - [SMALL_STATE(8039)] = 327406, - [SMALL_STATE(8040)] = 327424, - [SMALL_STATE(8041)] = 327442, - [SMALL_STATE(8042)] = 327460, - [SMALL_STATE(8043)] = 327478, - [SMALL_STATE(8044)] = 327496, - [SMALL_STATE(8045)] = 327514, - [SMALL_STATE(8046)] = 327532, - [SMALL_STATE(8047)] = 327550, - [SMALL_STATE(8048)] = 327568, - [SMALL_STATE(8049)] = 327586, - [SMALL_STATE(8050)] = 327604, - [SMALL_STATE(8051)] = 327622, - [SMALL_STATE(8052)] = 327640, - [SMALL_STATE(8053)] = 327658, - [SMALL_STATE(8054)] = 327676, - [SMALL_STATE(8055)] = 327694, - [SMALL_STATE(8056)] = 327712, - [SMALL_STATE(8057)] = 327730, - [SMALL_STATE(8058)] = 327748, - [SMALL_STATE(8059)] = 327766, - [SMALL_STATE(8060)] = 327784, - [SMALL_STATE(8061)] = 327802, - [SMALL_STATE(8062)] = 327820, - [SMALL_STATE(8063)] = 327838, - [SMALL_STATE(8064)] = 327856, - [SMALL_STATE(8065)] = 327874, - [SMALL_STATE(8066)] = 327892, - [SMALL_STATE(8067)] = 327910, - [SMALL_STATE(8068)] = 327928, - [SMALL_STATE(8069)] = 327946, - [SMALL_STATE(8070)] = 327964, - [SMALL_STATE(8071)] = 327982, - [SMALL_STATE(8072)] = 328000, - [SMALL_STATE(8073)] = 328018, - [SMALL_STATE(8074)] = 328036, - [SMALL_STATE(8075)] = 328054, - [SMALL_STATE(8076)] = 328072, - [SMALL_STATE(8077)] = 328090, - [SMALL_STATE(8078)] = 328108, - [SMALL_STATE(8079)] = 328126, - [SMALL_STATE(8080)] = 328144, - [SMALL_STATE(8081)] = 328162, - [SMALL_STATE(8082)] = 328180, - [SMALL_STATE(8083)] = 328198, - [SMALL_STATE(8084)] = 328216, - [SMALL_STATE(8085)] = 328234, - [SMALL_STATE(8086)] = 328252, - [SMALL_STATE(8087)] = 328270, - [SMALL_STATE(8088)] = 328288, - [SMALL_STATE(8089)] = 328306, - [SMALL_STATE(8090)] = 328324, - [SMALL_STATE(8091)] = 328342, - [SMALL_STATE(8092)] = 328360, - [SMALL_STATE(8093)] = 328378, - [SMALL_STATE(8094)] = 328396, - [SMALL_STATE(8095)] = 328414, - [SMALL_STATE(8096)] = 328432, - [SMALL_STATE(8097)] = 328450, - [SMALL_STATE(8098)] = 328468, - [SMALL_STATE(8099)] = 328486, - [SMALL_STATE(8100)] = 328504, - [SMALL_STATE(8101)] = 328522, - [SMALL_STATE(8102)] = 328540, - [SMALL_STATE(8103)] = 328558, - [SMALL_STATE(8104)] = 328576, - [SMALL_STATE(8105)] = 328594, - [SMALL_STATE(8106)] = 328612, - [SMALL_STATE(8107)] = 328630, - [SMALL_STATE(8108)] = 328648, - [SMALL_STATE(8109)] = 328666, - [SMALL_STATE(8110)] = 328684, - [SMALL_STATE(8111)] = 328702, - [SMALL_STATE(8112)] = 328720, - [SMALL_STATE(8113)] = 328738, - [SMALL_STATE(8114)] = 328756, - [SMALL_STATE(8115)] = 328774, - [SMALL_STATE(8116)] = 328792, - [SMALL_STATE(8117)] = 328810, - [SMALL_STATE(8118)] = 328828, - [SMALL_STATE(8119)] = 328846, - [SMALL_STATE(8120)] = 328864, - [SMALL_STATE(8121)] = 328882, - [SMALL_STATE(8122)] = 328900, - [SMALL_STATE(8123)] = 328918, - [SMALL_STATE(8124)] = 328936, - [SMALL_STATE(8125)] = 328954, - [SMALL_STATE(8126)] = 328972, - [SMALL_STATE(8127)] = 328990, - [SMALL_STATE(8128)] = 329008, - [SMALL_STATE(8129)] = 329012, - [SMALL_STATE(8130)] = 329016, + [SMALL_STATE(2363)] = 155723, + [SMALL_STATE(2364)] = 155804, + [SMALL_STATE(2365)] = 155885, + [SMALL_STATE(2366)] = 155966, + [SMALL_STATE(2367)] = 156023, + [SMALL_STATE(2368)] = 156104, + [SMALL_STATE(2369)] = 156161, + [SMALL_STATE(2370)] = 156242, + [SMALL_STATE(2371)] = 156335, + [SMALL_STATE(2372)] = 156396, + [SMALL_STATE(2373)] = 156453, + [SMALL_STATE(2374)] = 156546, + [SMALL_STATE(2375)] = 156603, + [SMALL_STATE(2376)] = 156684, + [SMALL_STATE(2377)] = 156765, + [SMALL_STATE(2378)] = 156846, + [SMALL_STATE(2379)] = 156927, + [SMALL_STATE(2380)] = 156984, + [SMALL_STATE(2381)] = 157063, + [SMALL_STATE(2382)] = 157140, + [SMALL_STATE(2383)] = 157215, + [SMALL_STATE(2384)] = 157272, + [SMALL_STATE(2385)] = 157353, + [SMALL_STATE(2386)] = 157410, + [SMALL_STATE(2387)] = 157467, + [SMALL_STATE(2388)] = 157524, + [SMALL_STATE(2389)] = 157605, + [SMALL_STATE(2390)] = 157686, + [SMALL_STATE(2391)] = 157767, + [SMALL_STATE(2392)] = 157824, + [SMALL_STATE(2393)] = 157915, + [SMALL_STATE(2394)] = 157972, + [SMALL_STATE(2395)] = 158029, + [SMALL_STATE(2396)] = 158086, + [SMALL_STATE(2397)] = 158155, + [SMALL_STATE(2398)] = 158212, + [SMALL_STATE(2399)] = 158269, + [SMALL_STATE(2400)] = 158342, + [SMALL_STATE(2401)] = 158417, + [SMALL_STATE(2402)] = 158494, + [SMALL_STATE(2403)] = 158575, + [SMALL_STATE(2404)] = 158654, + [SMALL_STATE(2405)] = 158721, + [SMALL_STATE(2406)] = 158790, + [SMALL_STATE(2407)] = 158863, + [SMALL_STATE(2408)] = 158938, + [SMALL_STATE(2409)] = 159015, + [SMALL_STATE(2410)] = 159094, + [SMALL_STATE(2411)] = 159161, + [SMALL_STATE(2412)] = 159218, + [SMALL_STATE(2413)] = 159275, + [SMALL_STATE(2414)] = 159332, + [SMALL_STATE(2415)] = 159399, + [SMALL_STATE(2416)] = 159456, + [SMALL_STATE(2417)] = 159529, + [SMALL_STATE(2418)] = 159602, + [SMALL_STATE(2419)] = 159669, + [SMALL_STATE(2420)] = 159750, + [SMALL_STATE(2421)] = 159807, + [SMALL_STATE(2422)] = 159864, + [SMALL_STATE(2423)] = 159955, + [SMALL_STATE(2424)] = 160036, + [SMALL_STATE(2425)] = 160103, + [SMALL_STATE(2426)] = 160172, + [SMALL_STATE(2427)] = 160245, + [SMALL_STATE(2428)] = 160318, + [SMALL_STATE(2429)] = 160385, + [SMALL_STATE(2430)] = 160442, + [SMALL_STATE(2431)] = 160499, + [SMALL_STATE(2432)] = 160556, + [SMALL_STATE(2433)] = 160612, + [SMALL_STATE(2434)] = 160690, + [SMALL_STATE(2435)] = 160746, + [SMALL_STATE(2436)] = 160802, + [SMALL_STATE(2437)] = 160858, + [SMALL_STATE(2438)] = 160914, + [SMALL_STATE(2439)] = 160970, + [SMALL_STATE(2440)] = 161026, + [SMALL_STATE(2441)] = 161082, + [SMALL_STATE(2442)] = 161138, + [SMALL_STATE(2443)] = 161194, + [SMALL_STATE(2444)] = 161250, + [SMALL_STATE(2445)] = 161306, + [SMALL_STATE(2446)] = 161362, + [SMALL_STATE(2447)] = 161418, + [SMALL_STATE(2448)] = 161474, + [SMALL_STATE(2449)] = 161552, + [SMALL_STATE(2450)] = 161608, + [SMALL_STATE(2451)] = 161686, + [SMALL_STATE(2452)] = 161764, + [SMALL_STATE(2453)] = 161820, + [SMALL_STATE(2454)] = 161876, + [SMALL_STATE(2455)] = 161954, + [SMALL_STATE(2456)] = 162032, + [SMALL_STATE(2457)] = 162092, + [SMALL_STATE(2458)] = 162148, + [SMALL_STATE(2459)] = 162206, + [SMALL_STATE(2460)] = 162262, + [SMALL_STATE(2461)] = 162340, + [SMALL_STATE(2462)] = 162418, + [SMALL_STATE(2463)] = 162496, + [SMALL_STATE(2464)] = 162574, + [SMALL_STATE(2465)] = 162630, + [SMALL_STATE(2466)] = 162686, + [SMALL_STATE(2467)] = 162742, + [SMALL_STATE(2468)] = 162802, + [SMALL_STATE(2469)] = 162858, + [SMALL_STATE(2470)] = 162915, + [SMALL_STATE(2471)] = 162974, + [SMALL_STATE(2472)] = 163029, + [SMALL_STATE(2473)] = 163084, + [SMALL_STATE(2474)] = 163139, + [SMALL_STATE(2475)] = 163194, + [SMALL_STATE(2476)] = 163249, + [SMALL_STATE(2477)] = 163304, + [SMALL_STATE(2478)] = 163361, + [SMALL_STATE(2479)] = 163416, + [SMALL_STATE(2480)] = 163471, + [SMALL_STATE(2481)] = 163526, + [SMALL_STATE(2482)] = 163581, + [SMALL_STATE(2483)] = 163636, + [SMALL_STATE(2484)] = 163691, + [SMALL_STATE(2485)] = 163746, + [SMALL_STATE(2486)] = 163801, + [SMALL_STATE(2487)] = 163856, + [SMALL_STATE(2488)] = 163911, + [SMALL_STATE(2489)] = 163966, + [SMALL_STATE(2490)] = 164021, + [SMALL_STATE(2491)] = 164076, + [SMALL_STATE(2492)] = 164131, + [SMALL_STATE(2493)] = 164186, + [SMALL_STATE(2494)] = 164241, + [SMALL_STATE(2495)] = 164296, + [SMALL_STATE(2496)] = 164351, + [SMALL_STATE(2497)] = 164406, + [SMALL_STATE(2498)] = 164461, + [SMALL_STATE(2499)] = 164516, + [SMALL_STATE(2500)] = 164571, + [SMALL_STATE(2501)] = 164626, + [SMALL_STATE(2502)] = 164681, + [SMALL_STATE(2503)] = 164736, + [SMALL_STATE(2504)] = 164791, + [SMALL_STATE(2505)] = 164846, + [SMALL_STATE(2506)] = 164901, + [SMALL_STATE(2507)] = 164956, + [SMALL_STATE(2508)] = 165011, + [SMALL_STATE(2509)] = 165066, + [SMALL_STATE(2510)] = 165121, + [SMALL_STATE(2511)] = 165176, + [SMALL_STATE(2512)] = 165235, + [SMALL_STATE(2513)] = 165290, + [SMALL_STATE(2514)] = 165345, + [SMALL_STATE(2515)] = 165400, + [SMALL_STATE(2516)] = 165455, + [SMALL_STATE(2517)] = 165510, + [SMALL_STATE(2518)] = 165565, + [SMALL_STATE(2519)] = 165620, + [SMALL_STATE(2520)] = 165675, + [SMALL_STATE(2521)] = 165730, + [SMALL_STATE(2522)] = 165785, + [SMALL_STATE(2523)] = 165840, + [SMALL_STATE(2524)] = 165897, + [SMALL_STATE(2525)] = 165956, + [SMALL_STATE(2526)] = 166011, + [SMALL_STATE(2527)] = 166066, + [SMALL_STATE(2528)] = 166121, + [SMALL_STATE(2529)] = 166176, + [SMALL_STATE(2530)] = 166231, + [SMALL_STATE(2531)] = 166286, + [SMALL_STATE(2532)] = 166341, + [SMALL_STATE(2533)] = 166396, + [SMALL_STATE(2534)] = 166451, + [SMALL_STATE(2535)] = 166506, + [SMALL_STATE(2536)] = 166560, + [SMALL_STATE(2537)] = 166614, + [SMALL_STATE(2538)] = 166668, + [SMALL_STATE(2539)] = 166722, + [SMALL_STATE(2540)] = 166776, + [SMALL_STATE(2541)] = 166830, + [SMALL_STATE(2542)] = 166884, + [SMALL_STATE(2543)] = 166936, + [SMALL_STATE(2544)] = 166990, + [SMALL_STATE(2545)] = 167044, + [SMALL_STATE(2546)] = 167098, + [SMALL_STATE(2547)] = 167152, + [SMALL_STATE(2548)] = 167206, + [SMALL_STATE(2549)] = 167260, + [SMALL_STATE(2550)] = 167314, + [SMALL_STATE(2551)] = 167368, + [SMALL_STATE(2552)] = 167422, + [SMALL_STATE(2553)] = 167476, + [SMALL_STATE(2554)] = 167530, + [SMALL_STATE(2555)] = 167584, + [SMALL_STATE(2556)] = 167638, + [SMALL_STATE(2557)] = 167692, + [SMALL_STATE(2558)] = 167746, + [SMALL_STATE(2559)] = 167802, + [SMALL_STATE(2560)] = 167856, + [SMALL_STATE(2561)] = 167910, + [SMALL_STATE(2562)] = 167964, + [SMALL_STATE(2563)] = 168018, + [SMALL_STATE(2564)] = 168072, + [SMALL_STATE(2565)] = 168126, + [SMALL_STATE(2566)] = 168180, + [SMALL_STATE(2567)] = 168234, + [SMALL_STATE(2568)] = 168288, + [SMALL_STATE(2569)] = 168342, + [SMALL_STATE(2570)] = 168396, + [SMALL_STATE(2571)] = 168450, + [SMALL_STATE(2572)] = 168504, + [SMALL_STATE(2573)] = 168558, + [SMALL_STATE(2574)] = 168612, + [SMALL_STATE(2575)] = 168666, + [SMALL_STATE(2576)] = 168720, + [SMALL_STATE(2577)] = 168772, + [SMALL_STATE(2578)] = 168826, + [SMALL_STATE(2579)] = 168880, + [SMALL_STATE(2580)] = 168934, + [SMALL_STATE(2581)] = 168988, + [SMALL_STATE(2582)] = 169042, + [SMALL_STATE(2583)] = 169096, + [SMALL_STATE(2584)] = 169150, + [SMALL_STATE(2585)] = 169204, + [SMALL_STATE(2586)] = 169258, + [SMALL_STATE(2587)] = 169310, + [SMALL_STATE(2588)] = 169364, + [SMALL_STATE(2589)] = 169418, + [SMALL_STATE(2590)] = 169472, + [SMALL_STATE(2591)] = 169526, + [SMALL_STATE(2592)] = 169580, + [SMALL_STATE(2593)] = 169634, + [SMALL_STATE(2594)] = 169688, + [SMALL_STATE(2595)] = 169742, + [SMALL_STATE(2596)] = 169796, + [SMALL_STATE(2597)] = 169850, + [SMALL_STATE(2598)] = 169904, + [SMALL_STATE(2599)] = 169958, + [SMALL_STATE(2600)] = 170014, + [SMALL_STATE(2601)] = 170066, + [SMALL_STATE(2602)] = 170118, + [SMALL_STATE(2603)] = 170172, + [SMALL_STATE(2604)] = 170226, + [SMALL_STATE(2605)] = 170280, + [SMALL_STATE(2606)] = 170334, + [SMALL_STATE(2607)] = 170388, + [SMALL_STATE(2608)] = 170442, + [SMALL_STATE(2609)] = 170496, + [SMALL_STATE(2610)] = 170550, + [SMALL_STATE(2611)] = 170604, + [SMALL_STATE(2612)] = 170658, + [SMALL_STATE(2613)] = 170712, + [SMALL_STATE(2614)] = 170766, + [SMALL_STATE(2615)] = 170819, + [SMALL_STATE(2616)] = 170872, + [SMALL_STATE(2617)] = 170925, + [SMALL_STATE(2618)] = 170978, + [SMALL_STATE(2619)] = 171031, + [SMALL_STATE(2620)] = 171084, + [SMALL_STATE(2621)] = 171137, + [SMALL_STATE(2622)] = 171188, + [SMALL_STATE(2623)] = 171289, + [SMALL_STATE(2624)] = 171340, + [SMALL_STATE(2625)] = 171393, + [SMALL_STATE(2626)] = 171446, + [SMALL_STATE(2627)] = 171499, + [SMALL_STATE(2628)] = 171550, + [SMALL_STATE(2629)] = 171603, + [SMALL_STATE(2630)] = 171656, + [SMALL_STATE(2631)] = 171709, + [SMALL_STATE(2632)] = 171762, + [SMALL_STATE(2633)] = 171815, + [SMALL_STATE(2634)] = 171868, + [SMALL_STATE(2635)] = 171921, + [SMALL_STATE(2636)] = 171974, + [SMALL_STATE(2637)] = 172027, + [SMALL_STATE(2638)] = 172080, + [SMALL_STATE(2639)] = 172133, + [SMALL_STATE(2640)] = 172186, + [SMALL_STATE(2641)] = 172239, + [SMALL_STATE(2642)] = 172292, + [SMALL_STATE(2643)] = 172345, + [SMALL_STATE(2644)] = 172396, + [SMALL_STATE(2645)] = 172449, + [SMALL_STATE(2646)] = 172502, + [SMALL_STATE(2647)] = 172555, + [SMALL_STATE(2648)] = 172608, + [SMALL_STATE(2649)] = 172661, + [SMALL_STATE(2650)] = 172714, + [SMALL_STATE(2651)] = 172767, + [SMALL_STATE(2652)] = 172820, + [SMALL_STATE(2653)] = 172871, + [SMALL_STATE(2654)] = 172924, + [SMALL_STATE(2655)] = 172977, + [SMALL_STATE(2656)] = 173032, + [SMALL_STATE(2657)] = 173085, + [SMALL_STATE(2658)] = 173138, + [SMALL_STATE(2659)] = 173191, + [SMALL_STATE(2660)] = 173244, + [SMALL_STATE(2661)] = 173297, + [SMALL_STATE(2662)] = 173350, + [SMALL_STATE(2663)] = 173403, + [SMALL_STATE(2664)] = 173456, + [SMALL_STATE(2665)] = 173509, + [SMALL_STATE(2666)] = 173562, + [SMALL_STATE(2667)] = 173663, + [SMALL_STATE(2668)] = 173716, + [SMALL_STATE(2669)] = 173769, + [SMALL_STATE(2670)] = 173822, + [SMALL_STATE(2671)] = 173875, + [SMALL_STATE(2672)] = 173928, + [SMALL_STATE(2673)] = 173981, + [SMALL_STATE(2674)] = 174032, + [SMALL_STATE(2675)] = 174085, + [SMALL_STATE(2676)] = 174136, + [SMALL_STATE(2677)] = 174187, + [SMALL_STATE(2678)] = 174240, + [SMALL_STATE(2679)] = 174293, + [SMALL_STATE(2680)] = 174394, + [SMALL_STATE(2681)] = 174445, + [SMALL_STATE(2682)] = 174496, + [SMALL_STATE(2683)] = 174549, + [SMALL_STATE(2684)] = 174600, + [SMALL_STATE(2685)] = 174653, + [SMALL_STATE(2686)] = 174706, + [SMALL_STATE(2687)] = 174759, + [SMALL_STATE(2688)] = 174812, + [SMALL_STATE(2689)] = 174865, + [SMALL_STATE(2690)] = 174920, + [SMALL_STATE(2691)] = 175021, + [SMALL_STATE(2692)] = 175073, + [SMALL_STATE(2693)] = 175125, + [SMALL_STATE(2694)] = 175177, + [SMALL_STATE(2695)] = 175229, + [SMALL_STATE(2696)] = 175281, + [SMALL_STATE(2697)] = 175333, + [SMALL_STATE(2698)] = 175385, + [SMALL_STATE(2699)] = 175437, + [SMALL_STATE(2700)] = 175489, + [SMALL_STATE(2701)] = 175541, + [SMALL_STATE(2702)] = 175593, + [SMALL_STATE(2703)] = 175677, + [SMALL_STATE(2704)] = 175729, + [SMALL_STATE(2705)] = 175781, + [SMALL_STATE(2706)] = 175833, + [SMALL_STATE(2707)] = 175885, + [SMALL_STATE(2708)] = 175937, + [SMALL_STATE(2709)] = 175989, + [SMALL_STATE(2710)] = 176073, + [SMALL_STATE(2711)] = 176125, + [SMALL_STATE(2712)] = 176177, + [SMALL_STATE(2713)] = 176229, + [SMALL_STATE(2714)] = 176313, + [SMALL_STATE(2715)] = 176365, + [SMALL_STATE(2716)] = 176419, + [SMALL_STATE(2717)] = 176471, + [SMALL_STATE(2718)] = 176523, + [SMALL_STATE(2719)] = 176575, + [SMALL_STATE(2720)] = 176659, + [SMALL_STATE(2721)] = 176711, + [SMALL_STATE(2722)] = 176763, + [SMALL_STATE(2723)] = 176815, + [SMALL_STATE(2724)] = 176867, + [SMALL_STATE(2725)] = 176921, + [SMALL_STATE(2726)] = 176973, + [SMALL_STATE(2727)] = 177025, + [SMALL_STATE(2728)] = 177077, + [SMALL_STATE(2729)] = 177129, + [SMALL_STATE(2730)] = 177181, + [SMALL_STATE(2731)] = 177233, + [SMALL_STATE(2732)] = 177285, + [SMALL_STATE(2733)] = 177337, + [SMALL_STATE(2734)] = 177389, + [SMALL_STATE(2735)] = 177441, + [SMALL_STATE(2736)] = 177493, + [SMALL_STATE(2737)] = 177545, + [SMALL_STATE(2738)] = 177597, + [SMALL_STATE(2739)] = 177649, + [SMALL_STATE(2740)] = 177701, + [SMALL_STATE(2741)] = 177753, + [SMALL_STATE(2742)] = 177805, + [SMALL_STATE(2743)] = 177857, + [SMALL_STATE(2744)] = 177909, + [SMALL_STATE(2745)] = 177961, + [SMALL_STATE(2746)] = 178013, + [SMALL_STATE(2747)] = 178065, + [SMALL_STATE(2748)] = 178117, + [SMALL_STATE(2749)] = 178169, + [SMALL_STATE(2750)] = 178221, + [SMALL_STATE(2751)] = 178273, + [SMALL_STATE(2752)] = 178325, + [SMALL_STATE(2753)] = 178377, + [SMALL_STATE(2754)] = 178429, + [SMALL_STATE(2755)] = 178481, + [SMALL_STATE(2756)] = 178535, + [SMALL_STATE(2757)] = 178587, + [SMALL_STATE(2758)] = 178639, + [SMALL_STATE(2759)] = 178691, + [SMALL_STATE(2760)] = 178743, + [SMALL_STATE(2761)] = 178795, + [SMALL_STATE(2762)] = 178847, + [SMALL_STATE(2763)] = 178899, + [SMALL_STATE(2764)] = 178951, + [SMALL_STATE(2765)] = 179003, + [SMALL_STATE(2766)] = 179055, + [SMALL_STATE(2767)] = 179107, + [SMALL_STATE(2768)] = 179159, + [SMALL_STATE(2769)] = 179211, + [SMALL_STATE(2770)] = 179263, + [SMALL_STATE(2771)] = 179341, + [SMALL_STATE(2772)] = 179419, + [SMALL_STATE(2773)] = 179497, + [SMALL_STATE(2774)] = 179575, + [SMALL_STATE(2775)] = 179653, + [SMALL_STATE(2776)] = 179731, + [SMALL_STATE(2777)] = 179809, + [SMALL_STATE(2778)] = 179887, + [SMALL_STATE(2779)] = 179965, + [SMALL_STATE(2780)] = 180043, + [SMALL_STATE(2781)] = 180121, + [SMALL_STATE(2782)] = 180199, + [SMALL_STATE(2783)] = 180277, + [SMALL_STATE(2784)] = 180355, + [SMALL_STATE(2785)] = 180433, + [SMALL_STATE(2786)] = 180511, + [SMALL_STATE(2787)] = 180589, + [SMALL_STATE(2788)] = 180667, + [SMALL_STATE(2789)] = 180745, + [SMALL_STATE(2790)] = 180810, + [SMALL_STATE(2791)] = 180885, + [SMALL_STATE(2792)] = 180948, + [SMALL_STATE(2793)] = 181013, + [SMALL_STATE(2794)] = 181077, + [SMALL_STATE(2795)] = 181141, + [SMALL_STATE(2796)] = 181203, + [SMALL_STATE(2797)] = 181265, + [SMALL_STATE(2798)] = 181341, + [SMALL_STATE(2799)] = 181405, + [SMALL_STATE(2800)] = 181479, + [SMALL_STATE(2801)] = 181555, + [SMALL_STATE(2802)] = 181619, + [SMALL_STATE(2803)] = 181662, + [SMALL_STATE(2804)] = 181725, + [SMALL_STATE(2805)] = 181768, + [SMALL_STATE(2806)] = 181811, + [SMALL_STATE(2807)] = 181854, + [SMALL_STATE(2808)] = 181897, + [SMALL_STATE(2809)] = 181940, + [SMALL_STATE(2810)] = 181983, + [SMALL_STATE(2811)] = 182046, + [SMALL_STATE(2812)] = 182089, + [SMALL_STATE(2813)] = 182132, + [SMALL_STATE(2814)] = 182175, + [SMALL_STATE(2815)] = 182218, + [SMALL_STATE(2816)] = 182261, + [SMALL_STATE(2817)] = 182304, + [SMALL_STATE(2818)] = 182347, + [SMALL_STATE(2819)] = 182390, + [SMALL_STATE(2820)] = 182433, + [SMALL_STATE(2821)] = 182476, + [SMALL_STATE(2822)] = 182519, + [SMALL_STATE(2823)] = 182562, + [SMALL_STATE(2824)] = 182605, + [SMALL_STATE(2825)] = 182648, + [SMALL_STATE(2826)] = 182691, + [SMALL_STATE(2827)] = 182734, + [SMALL_STATE(2828)] = 182777, + [SMALL_STATE(2829)] = 182820, + [SMALL_STATE(2830)] = 182863, + [SMALL_STATE(2831)] = 182906, + [SMALL_STATE(2832)] = 182949, + [SMALL_STATE(2833)] = 182992, + [SMALL_STATE(2834)] = 183035, + [SMALL_STATE(2835)] = 183078, + [SMALL_STATE(2836)] = 183121, + [SMALL_STATE(2837)] = 183164, + [SMALL_STATE(2838)] = 183207, + [SMALL_STATE(2839)] = 183250, + [SMALL_STATE(2840)] = 183293, + [SMALL_STATE(2841)] = 183336, + [SMALL_STATE(2842)] = 183397, + [SMALL_STATE(2843)] = 183440, + [SMALL_STATE(2844)] = 183483, + [SMALL_STATE(2845)] = 183526, + [SMALL_STATE(2846)] = 183569, + [SMALL_STATE(2847)] = 183612, + [SMALL_STATE(2848)] = 183655, + [SMALL_STATE(2849)] = 183698, + [SMALL_STATE(2850)] = 183741, + [SMALL_STATE(2851)] = 183784, + [SMALL_STATE(2852)] = 183827, + [SMALL_STATE(2853)] = 183870, + [SMALL_STATE(2854)] = 183913, + [SMALL_STATE(2855)] = 183956, + [SMALL_STATE(2856)] = 183999, + [SMALL_STATE(2857)] = 184042, + [SMALL_STATE(2858)] = 184085, + [SMALL_STATE(2859)] = 184128, + [SMALL_STATE(2860)] = 184171, + [SMALL_STATE(2861)] = 184214, + [SMALL_STATE(2862)] = 184257, + [SMALL_STATE(2863)] = 184300, + [SMALL_STATE(2864)] = 184343, + [SMALL_STATE(2865)] = 184386, + [SMALL_STATE(2866)] = 184429, + [SMALL_STATE(2867)] = 184471, + [SMALL_STATE(2868)] = 184513, + [SMALL_STATE(2869)] = 184555, + [SMALL_STATE(2870)] = 184597, + [SMALL_STATE(2871)] = 184639, + [SMALL_STATE(2872)] = 184681, + [SMALL_STATE(2873)] = 184741, + [SMALL_STATE(2874)] = 184801, + [SMALL_STATE(2875)] = 184877, + [SMALL_STATE(2876)] = 184919, + [SMALL_STATE(2877)] = 184961, + [SMALL_STATE(2878)] = 185003, + [SMALL_STATE(2879)] = 185045, + [SMALL_STATE(2880)] = 185087, + [SMALL_STATE(2881)] = 185129, + [SMALL_STATE(2882)] = 185171, + [SMALL_STATE(2883)] = 185213, + [SMALL_STATE(2884)] = 185255, + [SMALL_STATE(2885)] = 185297, + [SMALL_STATE(2886)] = 185339, + [SMALL_STATE(2887)] = 185381, + [SMALL_STATE(2888)] = 185423, + [SMALL_STATE(2889)] = 185465, + [SMALL_STATE(2890)] = 185507, + [SMALL_STATE(2891)] = 185549, + [SMALL_STATE(2892)] = 185591, + [SMALL_STATE(2893)] = 185633, + [SMALL_STATE(2894)] = 185675, + [SMALL_STATE(2895)] = 185717, + [SMALL_STATE(2896)] = 185759, + [SMALL_STATE(2897)] = 185801, + [SMALL_STATE(2898)] = 185843, + [SMALL_STATE(2899)] = 185885, + [SMALL_STATE(2900)] = 185927, + [SMALL_STATE(2901)] = 185969, + [SMALL_STATE(2902)] = 186011, + [SMALL_STATE(2903)] = 186053, + [SMALL_STATE(2904)] = 186095, + [SMALL_STATE(2905)] = 186137, + [SMALL_STATE(2906)] = 186179, + [SMALL_STATE(2907)] = 186221, + [SMALL_STATE(2908)] = 186263, + [SMALL_STATE(2909)] = 186305, + [SMALL_STATE(2910)] = 186347, + [SMALL_STATE(2911)] = 186389, + [SMALL_STATE(2912)] = 186431, + [SMALL_STATE(2913)] = 186473, + [SMALL_STATE(2914)] = 186515, + [SMALL_STATE(2915)] = 186557, + [SMALL_STATE(2916)] = 186599, + [SMALL_STATE(2917)] = 186641, + [SMALL_STATE(2918)] = 186683, + [SMALL_STATE(2919)] = 186725, + [SMALL_STATE(2920)] = 186767, + [SMALL_STATE(2921)] = 186809, + [SMALL_STATE(2922)] = 186851, + [SMALL_STATE(2923)] = 186893, + [SMALL_STATE(2924)] = 186935, + [SMALL_STATE(2925)] = 186977, + [SMALL_STATE(2926)] = 187019, + [SMALL_STATE(2927)] = 187061, + [SMALL_STATE(2928)] = 187103, + [SMALL_STATE(2929)] = 187145, + [SMALL_STATE(2930)] = 187187, + [SMALL_STATE(2931)] = 187228, + [SMALL_STATE(2932)] = 187269, + [SMALL_STATE(2933)] = 187310, + [SMALL_STATE(2934)] = 187351, + [SMALL_STATE(2935)] = 187392, + [SMALL_STATE(2936)] = 187433, + [SMALL_STATE(2937)] = 187474, + [SMALL_STATE(2938)] = 187515, + [SMALL_STATE(2939)] = 187556, + [SMALL_STATE(2940)] = 187597, + [SMALL_STATE(2941)] = 187638, + [SMALL_STATE(2942)] = 187679, + [SMALL_STATE(2943)] = 187720, + [SMALL_STATE(2944)] = 187761, + [SMALL_STATE(2945)] = 187820, + [SMALL_STATE(2946)] = 187861, + [SMALL_STATE(2947)] = 187902, + [SMALL_STATE(2948)] = 187943, + [SMALL_STATE(2949)] = 187984, + [SMALL_STATE(2950)] = 188025, + [SMALL_STATE(2951)] = 188066, + [SMALL_STATE(2952)] = 188107, + [SMALL_STATE(2953)] = 188168, + [SMALL_STATE(2954)] = 188209, + [SMALL_STATE(2955)] = 188250, + [SMALL_STATE(2956)] = 188291, + [SMALL_STATE(2957)] = 188332, + [SMALL_STATE(2958)] = 188373, + [SMALL_STATE(2959)] = 188414, + [SMALL_STATE(2960)] = 188455, + [SMALL_STATE(2961)] = 188496, + [SMALL_STATE(2962)] = 188537, + [SMALL_STATE(2963)] = 188578, + [SMALL_STATE(2964)] = 188619, + [SMALL_STATE(2965)] = 188660, + [SMALL_STATE(2966)] = 188701, + [SMALL_STATE(2967)] = 188742, + [SMALL_STATE(2968)] = 188783, + [SMALL_STATE(2969)] = 188824, + [SMALL_STATE(2970)] = 188865, + [SMALL_STATE(2971)] = 188906, + [SMALL_STATE(2972)] = 188947, + [SMALL_STATE(2973)] = 188988, + [SMALL_STATE(2974)] = 189029, + [SMALL_STATE(2975)] = 189070, + [SMALL_STATE(2976)] = 189111, + [SMALL_STATE(2977)] = 189152, + [SMALL_STATE(2978)] = 189193, + [SMALL_STATE(2979)] = 189234, + [SMALL_STATE(2980)] = 189275, + [SMALL_STATE(2981)] = 189316, + [SMALL_STATE(2982)] = 189357, + [SMALL_STATE(2983)] = 189398, + [SMALL_STATE(2984)] = 189459, + [SMALL_STATE(2985)] = 189500, + [SMALL_STATE(2986)] = 189547, + [SMALL_STATE(2987)] = 189588, + [SMALL_STATE(2988)] = 189629, + [SMALL_STATE(2989)] = 189670, + [SMALL_STATE(2990)] = 189711, + [SMALL_STATE(2991)] = 189752, + [SMALL_STATE(2992)] = 189793, + [SMALL_STATE(2993)] = 189834, + [SMALL_STATE(2994)] = 189875, + [SMALL_STATE(2995)] = 189916, + [SMALL_STATE(2996)] = 189957, + [SMALL_STATE(2997)] = 190025, + [SMALL_STATE(2998)] = 190093, + [SMALL_STATE(2999)] = 190139, + [SMALL_STATE(3000)] = 190179, + [SMALL_STATE(3001)] = 190247, + [SMALL_STATE(3002)] = 190287, + [SMALL_STATE(3003)] = 190333, + [SMALL_STATE(3004)] = 190401, + [SMALL_STATE(3005)] = 190469, + [SMALL_STATE(3006)] = 190515, + [SMALL_STATE(3007)] = 190561, + [SMALL_STATE(3008)] = 190629, + [SMALL_STATE(3009)] = 190675, + [SMALL_STATE(3010)] = 190731, + [SMALL_STATE(3011)] = 190799, + [SMALL_STATE(3012)] = 190845, + [SMALL_STATE(3013)] = 190913, + [SMALL_STATE(3014)] = 190972, + [SMALL_STATE(3015)] = 191015, + [SMALL_STATE(3016)] = 191076, + [SMALL_STATE(3017)] = 191115, + [SMALL_STATE(3018)] = 191154, + [SMALL_STATE(3019)] = 191193, + [SMALL_STATE(3020)] = 191232, + [SMALL_STATE(3021)] = 191293, + [SMALL_STATE(3022)] = 191336, + [SMALL_STATE(3023)] = 191375, + [SMALL_STATE(3024)] = 191414, + [SMALL_STATE(3025)] = 191474, + [SMALL_STATE(3026)] = 191534, + [SMALL_STATE(3027)] = 191594, + [SMALL_STATE(3028)] = 191654, + [SMALL_STATE(3029)] = 191714, + [SMALL_STATE(3030)] = 191774, + [SMALL_STATE(3031)] = 191834, + [SMALL_STATE(3032)] = 191872, + [SMALL_STATE(3033)] = 191932, + [SMALL_STATE(3034)] = 191970, + [SMALL_STATE(3035)] = 192008, + [SMALL_STATE(3036)] = 192068, + [SMALL_STATE(3037)] = 192106, + [SMALL_STATE(3038)] = 192144, + [SMALL_STATE(3039)] = 192182, + [SMALL_STATE(3040)] = 192220, + [SMALL_STATE(3041)] = 192264, + [SMALL_STATE(3042)] = 192324, + [SMALL_STATE(3043)] = 192384, + [SMALL_STATE(3044)] = 192444, + [SMALL_STATE(3045)] = 192504, + [SMALL_STATE(3046)] = 192564, + [SMALL_STATE(3047)] = 192624, + [SMALL_STATE(3048)] = 192662, + [SMALL_STATE(3049)] = 192700, + [SMALL_STATE(3050)] = 192760, + [SMALL_STATE(3051)] = 192820, + [SMALL_STATE(3052)] = 192880, + [SMALL_STATE(3053)] = 192918, + [SMALL_STATE(3054)] = 192976, + [SMALL_STATE(3055)] = 193014, + [SMALL_STATE(3056)] = 193074, + [SMALL_STATE(3057)] = 193134, + [SMALL_STATE(3058)] = 193194, + [SMALL_STATE(3059)] = 193232, + [SMALL_STATE(3060)] = 193292, + [SMALL_STATE(3061)] = 193352, + [SMALL_STATE(3062)] = 193412, + [SMALL_STATE(3063)] = 193472, + [SMALL_STATE(3064)] = 193510, + [SMALL_STATE(3065)] = 193548, + [SMALL_STATE(3066)] = 193608, + [SMALL_STATE(3067)] = 193646, + [SMALL_STATE(3068)] = 193684, + [SMALL_STATE(3069)] = 193722, + [SMALL_STATE(3070)] = 193760, + [SMALL_STATE(3071)] = 193798, + [SMALL_STATE(3072)] = 193858, + [SMALL_STATE(3073)] = 193918, + [SMALL_STATE(3074)] = 193978, + [SMALL_STATE(3075)] = 194016, + [SMALL_STATE(3076)] = 194054, + [SMALL_STATE(3077)] = 194092, + [SMALL_STATE(3078)] = 194156, + [SMALL_STATE(3079)] = 194194, + [SMALL_STATE(3080)] = 194254, + [SMALL_STATE(3081)] = 194314, + [SMALL_STATE(3082)] = 194374, + [SMALL_STATE(3083)] = 194434, + [SMALL_STATE(3084)] = 194472, + [SMALL_STATE(3085)] = 194532, + [SMALL_STATE(3086)] = 194570, + [SMALL_STATE(3087)] = 194608, + [SMALL_STATE(3088)] = 194646, + [SMALL_STATE(3089)] = 194710, + [SMALL_STATE(3090)] = 194774, + [SMALL_STATE(3091)] = 194834, + [SMALL_STATE(3092)] = 194894, + [SMALL_STATE(3093)] = 194954, + [SMALL_STATE(3094)] = 194992, + [SMALL_STATE(3095)] = 195052, + [SMALL_STATE(3096)] = 195112, + [SMALL_STATE(3097)] = 195172, + [SMALL_STATE(3098)] = 195232, + [SMALL_STATE(3099)] = 195292, + [SMALL_STATE(3100)] = 195330, + [SMALL_STATE(3101)] = 195390, + [SMALL_STATE(3102)] = 195450, + [SMALL_STATE(3103)] = 195510, + [SMALL_STATE(3104)] = 195550, + [SMALL_STATE(3105)] = 195610, + [SMALL_STATE(3106)] = 195670, + [SMALL_STATE(3107)] = 195730, + [SMALL_STATE(3108)] = 195790, + [SMALL_STATE(3109)] = 195850, + [SMALL_STATE(3110)] = 195910, + [SMALL_STATE(3111)] = 195970, + [SMALL_STATE(3112)] = 196030, + [SMALL_STATE(3113)] = 196090, + [SMALL_STATE(3114)] = 196150, + [SMALL_STATE(3115)] = 196210, + [SMALL_STATE(3116)] = 196248, + [SMALL_STATE(3117)] = 196308, + [SMALL_STATE(3118)] = 196346, + [SMALL_STATE(3119)] = 196406, + [SMALL_STATE(3120)] = 196466, + [SMALL_STATE(3121)] = 196526, + [SMALL_STATE(3122)] = 196586, + [SMALL_STATE(3123)] = 196646, + [SMALL_STATE(3124)] = 196706, + [SMALL_STATE(3125)] = 196766, + [SMALL_STATE(3126)] = 196826, + [SMALL_STATE(3127)] = 196886, + [SMALL_STATE(3128)] = 196924, + [SMALL_STATE(3129)] = 196984, + [SMALL_STATE(3130)] = 197044, + [SMALL_STATE(3131)] = 197104, + [SMALL_STATE(3132)] = 197164, + [SMALL_STATE(3133)] = 197224, + [SMALL_STATE(3134)] = 197284, + [SMALL_STATE(3135)] = 197344, + [SMALL_STATE(3136)] = 197404, + [SMALL_STATE(3137)] = 197464, + [SMALL_STATE(3138)] = 197502, + [SMALL_STATE(3139)] = 197562, + [SMALL_STATE(3140)] = 197622, + [SMALL_STATE(3141)] = 197682, + [SMALL_STATE(3142)] = 197742, + [SMALL_STATE(3143)] = 197802, + [SMALL_STATE(3144)] = 197862, + [SMALL_STATE(3145)] = 197922, + [SMALL_STATE(3146)] = 197982, + [SMALL_STATE(3147)] = 198042, + [SMALL_STATE(3148)] = 198102, + [SMALL_STATE(3149)] = 198162, + [SMALL_STATE(3150)] = 198200, + [SMALL_STATE(3151)] = 198238, + [SMALL_STATE(3152)] = 198298, + [SMALL_STATE(3153)] = 198358, + [SMALL_STATE(3154)] = 198418, + [SMALL_STATE(3155)] = 198478, + [SMALL_STATE(3156)] = 198538, + [SMALL_STATE(3157)] = 198598, + [SMALL_STATE(3158)] = 198658, + [SMALL_STATE(3159)] = 198696, + [SMALL_STATE(3160)] = 198756, + [SMALL_STATE(3161)] = 198794, + [SMALL_STATE(3162)] = 198832, + [SMALL_STATE(3163)] = 198892, + [SMALL_STATE(3164)] = 198952, + [SMALL_STATE(3165)] = 199012, + [SMALL_STATE(3166)] = 199072, + [SMALL_STATE(3167)] = 199132, + [SMALL_STATE(3168)] = 199192, + [SMALL_STATE(3169)] = 199252, + [SMALL_STATE(3170)] = 199312, + [SMALL_STATE(3171)] = 199372, + [SMALL_STATE(3172)] = 199432, + [SMALL_STATE(3173)] = 199492, + [SMALL_STATE(3174)] = 199552, + [SMALL_STATE(3175)] = 199612, + [SMALL_STATE(3176)] = 199672, + [SMALL_STATE(3177)] = 199732, + [SMALL_STATE(3178)] = 199792, + [SMALL_STATE(3179)] = 199852, + [SMALL_STATE(3180)] = 199912, + [SMALL_STATE(3181)] = 199972, + [SMALL_STATE(3182)] = 200032, + [SMALL_STATE(3183)] = 200092, + [SMALL_STATE(3184)] = 200152, + [SMALL_STATE(3185)] = 200212, + [SMALL_STATE(3186)] = 200272, + [SMALL_STATE(3187)] = 200332, + [SMALL_STATE(3188)] = 200392, + [SMALL_STATE(3189)] = 200452, + [SMALL_STATE(3190)] = 200490, + [SMALL_STATE(3191)] = 200550, + [SMALL_STATE(3192)] = 200610, + [SMALL_STATE(3193)] = 200670, + [SMALL_STATE(3194)] = 200730, + [SMALL_STATE(3195)] = 200790, + [SMALL_STATE(3196)] = 200850, + [SMALL_STATE(3197)] = 200910, + [SMALL_STATE(3198)] = 200970, + [SMALL_STATE(3199)] = 201030, + [SMALL_STATE(3200)] = 201068, + [SMALL_STATE(3201)] = 201128, + [SMALL_STATE(3202)] = 201188, + [SMALL_STATE(3203)] = 201248, + [SMALL_STATE(3204)] = 201308, + [SMALL_STATE(3205)] = 201368, + [SMALL_STATE(3206)] = 201428, + [SMALL_STATE(3207)] = 201488, + [SMALL_STATE(3208)] = 201526, + [SMALL_STATE(3209)] = 201564, + [SMALL_STATE(3210)] = 201624, + [SMALL_STATE(3211)] = 201662, + [SMALL_STATE(3212)] = 201722, + [SMALL_STATE(3213)] = 201782, + [SMALL_STATE(3214)] = 201842, + [SMALL_STATE(3215)] = 201902, + [SMALL_STATE(3216)] = 201962, + [SMALL_STATE(3217)] = 202022, + [SMALL_STATE(3218)] = 202082, + [SMALL_STATE(3219)] = 202142, + [SMALL_STATE(3220)] = 202202, + [SMALL_STATE(3221)] = 202262, + [SMALL_STATE(3222)] = 202322, + [SMALL_STATE(3223)] = 202382, + [SMALL_STATE(3224)] = 202420, + [SMALL_STATE(3225)] = 202480, + [SMALL_STATE(3226)] = 202540, + [SMALL_STATE(3227)] = 202600, + [SMALL_STATE(3228)] = 202660, + [SMALL_STATE(3229)] = 202720, + [SMALL_STATE(3230)] = 202780, + [SMALL_STATE(3231)] = 202840, + [SMALL_STATE(3232)] = 202900, + [SMALL_STATE(3233)] = 202938, + [SMALL_STATE(3234)] = 202998, + [SMALL_STATE(3235)] = 203035, + [SMALL_STATE(3236)] = 203072, + [SMALL_STATE(3237)] = 203109, + [SMALL_STATE(3238)] = 203146, + [SMALL_STATE(3239)] = 203183, + [SMALL_STATE(3240)] = 203220, + [SMALL_STATE(3241)] = 203257, + [SMALL_STATE(3242)] = 203294, + [SMALL_STATE(3243)] = 203351, + [SMALL_STATE(3244)] = 203408, + [SMALL_STATE(3245)] = 203445, + [SMALL_STATE(3246)] = 203482, + [SMALL_STATE(3247)] = 203519, + [SMALL_STATE(3248)] = 203556, + [SMALL_STATE(3249)] = 203593, + [SMALL_STATE(3250)] = 203630, + [SMALL_STATE(3251)] = 203667, + [SMALL_STATE(3252)] = 203704, + [SMALL_STATE(3253)] = 203741, + [SMALL_STATE(3254)] = 203778, + [SMALL_STATE(3255)] = 203815, + [SMALL_STATE(3256)] = 203852, + [SMALL_STATE(3257)] = 203889, + [SMALL_STATE(3258)] = 203926, + [SMALL_STATE(3259)] = 203963, + [SMALL_STATE(3260)] = 204000, + [SMALL_STATE(3261)] = 204037, + [SMALL_STATE(3262)] = 204074, + [SMALL_STATE(3263)] = 204111, + [SMALL_STATE(3264)] = 204148, + [SMALL_STATE(3265)] = 204185, + [SMALL_STATE(3266)] = 204244, + [SMALL_STATE(3267)] = 204281, + [SMALL_STATE(3268)] = 204318, + [SMALL_STATE(3269)] = 204355, + [SMALL_STATE(3270)] = 204392, + [SMALL_STATE(3271)] = 204429, + [SMALL_STATE(3272)] = 204466, + [SMALL_STATE(3273)] = 204503, + [SMALL_STATE(3274)] = 204540, + [SMALL_STATE(3275)] = 204577, + [SMALL_STATE(3276)] = 204614, + [SMALL_STATE(3277)] = 204651, + [SMALL_STATE(3278)] = 204688, + [SMALL_STATE(3279)] = 204725, + [SMALL_STATE(3280)] = 204762, + [SMALL_STATE(3281)] = 204799, + [SMALL_STATE(3282)] = 204836, + [SMALL_STATE(3283)] = 204873, + [SMALL_STATE(3284)] = 204910, + [SMALL_STATE(3285)] = 204947, + [SMALL_STATE(3286)] = 204984, + [SMALL_STATE(3287)] = 205039, + [SMALL_STATE(3288)] = 205076, + [SMALL_STATE(3289)] = 205113, + [SMALL_STATE(3290)] = 205150, + [SMALL_STATE(3291)] = 205187, + [SMALL_STATE(3292)] = 205224, + [SMALL_STATE(3293)] = 205261, + [SMALL_STATE(3294)] = 205298, + [SMALL_STATE(3295)] = 205335, + [SMALL_STATE(3296)] = 205372, + [SMALL_STATE(3297)] = 205409, + [SMALL_STATE(3298)] = 205446, + [SMALL_STATE(3299)] = 205483, + [SMALL_STATE(3300)] = 205540, + [SMALL_STATE(3301)] = 205577, + [SMALL_STATE(3302)] = 205614, + [SMALL_STATE(3303)] = 205651, + [SMALL_STATE(3304)] = 205688, + [SMALL_STATE(3305)] = 205725, + [SMALL_STATE(3306)] = 205762, + [SMALL_STATE(3307)] = 205799, + [SMALL_STATE(3308)] = 205836, + [SMALL_STATE(3309)] = 205873, + [SMALL_STATE(3310)] = 205910, + [SMALL_STATE(3311)] = 205947, + [SMALL_STATE(3312)] = 205984, + [SMALL_STATE(3313)] = 206021, + [SMALL_STATE(3314)] = 206058, + [SMALL_STATE(3315)] = 206117, + [SMALL_STATE(3316)] = 206154, + [SMALL_STATE(3317)] = 206191, + [SMALL_STATE(3318)] = 206228, + [SMALL_STATE(3319)] = 206265, + [SMALL_STATE(3320)] = 206302, + [SMALL_STATE(3321)] = 206339, + [SMALL_STATE(3322)] = 206376, + [SMALL_STATE(3323)] = 206413, + [SMALL_STATE(3324)] = 206456, + [SMALL_STATE(3325)] = 206493, + [SMALL_STATE(3326)] = 206530, + [SMALL_STATE(3327)] = 206567, + [SMALL_STATE(3328)] = 206604, + [SMALL_STATE(3329)] = 206641, + [SMALL_STATE(3330)] = 206678, + [SMALL_STATE(3331)] = 206715, + [SMALL_STATE(3332)] = 206752, + [SMALL_STATE(3333)] = 206789, + [SMALL_STATE(3334)] = 206826, + [SMALL_STATE(3335)] = 206863, + [SMALL_STATE(3336)] = 206900, + [SMALL_STATE(3337)] = 206937, + [SMALL_STATE(3338)] = 206974, + [SMALL_STATE(3339)] = 207017, + [SMALL_STATE(3340)] = 207054, + [SMALL_STATE(3341)] = 207091, + [SMALL_STATE(3342)] = 207128, + [SMALL_STATE(3343)] = 207165, + [SMALL_STATE(3344)] = 207202, + [SMALL_STATE(3345)] = 207239, + [SMALL_STATE(3346)] = 207276, + [SMALL_STATE(3347)] = 207313, + [SMALL_STATE(3348)] = 207372, + [SMALL_STATE(3349)] = 207409, + [SMALL_STATE(3350)] = 207446, + [SMALL_STATE(3351)] = 207483, + [SMALL_STATE(3352)] = 207539, + [SMALL_STATE(3353)] = 207595, + [SMALL_STATE(3354)] = 207631, + [SMALL_STATE(3355)] = 207667, + [SMALL_STATE(3356)] = 207703, + [SMALL_STATE(3357)] = 207759, + [SMALL_STATE(3358)] = 207795, + [SMALL_STATE(3359)] = 207831, + [SMALL_STATE(3360)] = 207885, + [SMALL_STATE(3361)] = 207941, + [SMALL_STATE(3362)] = 207977, + [SMALL_STATE(3363)] = 208013, + [SMALL_STATE(3364)] = 208069, + [SMALL_STATE(3365)] = 208105, + [SMALL_STATE(3366)] = 208141, + [SMALL_STATE(3367)] = 208195, + [SMALL_STATE(3368)] = 208231, + [SMALL_STATE(3369)] = 208267, + [SMALL_STATE(3370)] = 208303, + [SMALL_STATE(3371)] = 208339, + [SMALL_STATE(3372)] = 208375, + [SMALL_STATE(3373)] = 208411, + [SMALL_STATE(3374)] = 208447, + [SMALL_STATE(3375)] = 208483, + [SMALL_STATE(3376)] = 208519, + [SMALL_STATE(3377)] = 208555, + [SMALL_STATE(3378)] = 208591, + [SMALL_STATE(3379)] = 208633, + [SMALL_STATE(3380)] = 208689, + [SMALL_STATE(3381)] = 208725, + [SMALL_STATE(3382)] = 208761, + [SMALL_STATE(3383)] = 208815, + [SMALL_STATE(3384)] = 208851, + [SMALL_STATE(3385)] = 208887, + [SMALL_STATE(3386)] = 208923, + [SMALL_STATE(3387)] = 208959, + [SMALL_STATE(3388)] = 208995, + [SMALL_STATE(3389)] = 209031, + [SMALL_STATE(3390)] = 209067, + [SMALL_STATE(3391)] = 209121, + [SMALL_STATE(3392)] = 209157, + [SMALL_STATE(3393)] = 209193, + [SMALL_STATE(3394)] = 209229, + [SMALL_STATE(3395)] = 209285, + [SMALL_STATE(3396)] = 209321, + [SMALL_STATE(3397)] = 209357, + [SMALL_STATE(3398)] = 209393, + [SMALL_STATE(3399)] = 209429, + [SMALL_STATE(3400)] = 209465, + [SMALL_STATE(3401)] = 209501, + [SMALL_STATE(3402)] = 209555, + [SMALL_STATE(3403)] = 209591, + [SMALL_STATE(3404)] = 209627, + [SMALL_STATE(3405)] = 209681, + [SMALL_STATE(3406)] = 209717, + [SMALL_STATE(3407)] = 209753, + [SMALL_STATE(3408)] = 209789, + [SMALL_STATE(3409)] = 209825, + [SMALL_STATE(3410)] = 209861, + [SMALL_STATE(3411)] = 209897, + [SMALL_STATE(3412)] = 209933, + [SMALL_STATE(3413)] = 209987, + [SMALL_STATE(3414)] = 210043, + [SMALL_STATE(3415)] = 210079, + [SMALL_STATE(3416)] = 210115, + [SMALL_STATE(3417)] = 210151, + [SMALL_STATE(3418)] = 210187, + [SMALL_STATE(3419)] = 210243, + [SMALL_STATE(3420)] = 210297, + [SMALL_STATE(3421)] = 210351, + [SMALL_STATE(3422)] = 210387, + [SMALL_STATE(3423)] = 210443, + [SMALL_STATE(3424)] = 210479, + [SMALL_STATE(3425)] = 210533, + [SMALL_STATE(3426)] = 210569, + [SMALL_STATE(3427)] = 210605, + [SMALL_STATE(3428)] = 210641, + [SMALL_STATE(3429)] = 210677, + [SMALL_STATE(3430)] = 210733, + [SMALL_STATE(3431)] = 210769, + [SMALL_STATE(3432)] = 210822, + [SMALL_STATE(3433)] = 210867, + [SMALL_STATE(3434)] = 210912, + [SMALL_STATE(3435)] = 210965, + [SMALL_STATE(3436)] = 211000, + [SMALL_STATE(3437)] = 211053, + [SMALL_STATE(3438)] = 211106, + [SMALL_STATE(3439)] = 211151, + [SMALL_STATE(3440)] = 211186, + [SMALL_STATE(3441)] = 211231, + [SMALL_STATE(3442)] = 211266, + [SMALL_STATE(3443)] = 211311, + [SMALL_STATE(3444)] = 211346, + [SMALL_STATE(3445)] = 211381, + [SMALL_STATE(3446)] = 211426, + [SMALL_STATE(3447)] = 211471, + [SMALL_STATE(3448)] = 211516, + [SMALL_STATE(3449)] = 211551, + [SMALL_STATE(3450)] = 211604, + [SMALL_STATE(3451)] = 211639, + [SMALL_STATE(3452)] = 211674, + [SMALL_STATE(3453)] = 211727, + [SMALL_STATE(3454)] = 211780, + [SMALL_STATE(3455)] = 211833, + [SMALL_STATE(3456)] = 211868, + [SMALL_STATE(3457)] = 211903, + [SMALL_STATE(3458)] = 211948, + [SMALL_STATE(3459)] = 212001, + [SMALL_STATE(3460)] = 212054, + [SMALL_STATE(3461)] = 212107, + [SMALL_STATE(3462)] = 212160, + [SMALL_STATE(3463)] = 212213, + [SMALL_STATE(3464)] = 212266, + [SMALL_STATE(3465)] = 212319, + [SMALL_STATE(3466)] = 212372, + [SMALL_STATE(3467)] = 212425, + [SMALL_STATE(3468)] = 212460, + [SMALL_STATE(3469)] = 212513, + [SMALL_STATE(3470)] = 212548, + [SMALL_STATE(3471)] = 212593, + [SMALL_STATE(3472)] = 212628, + [SMALL_STATE(3473)] = 212681, + [SMALL_STATE(3474)] = 212734, + [SMALL_STATE(3475)] = 212787, + [SMALL_STATE(3476)] = 212832, + [SMALL_STATE(3477)] = 212867, + [SMALL_STATE(3478)] = 212920, + [SMALL_STATE(3479)] = 212973, + [SMALL_STATE(3480)] = 213026, + [SMALL_STATE(3481)] = 213079, + [SMALL_STATE(3482)] = 213114, + [SMALL_STATE(3483)] = 213149, + [SMALL_STATE(3484)] = 213184, + [SMALL_STATE(3485)] = 213229, + [SMALL_STATE(3486)] = 213282, + [SMALL_STATE(3487)] = 213335, + [SMALL_STATE(3488)] = 213388, + [SMALL_STATE(3489)] = 213441, + [SMALL_STATE(3490)] = 213486, + [SMALL_STATE(3491)] = 213539, + [SMALL_STATE(3492)] = 213592, + [SMALL_STATE(3493)] = 213637, + [SMALL_STATE(3494)] = 213682, + [SMALL_STATE(3495)] = 213735, + [SMALL_STATE(3496)] = 213780, + [SMALL_STATE(3497)] = 213815, + [SMALL_STATE(3498)] = 213868, + [SMALL_STATE(3499)] = 213921, + [SMALL_STATE(3500)] = 213956, + [SMALL_STATE(3501)] = 214001, + [SMALL_STATE(3502)] = 214054, + [SMALL_STATE(3503)] = 214107, + [SMALL_STATE(3504)] = 214160, + [SMALL_STATE(3505)] = 214195, + [SMALL_STATE(3506)] = 214240, + [SMALL_STATE(3507)] = 214285, + [SMALL_STATE(3508)] = 214330, + [SMALL_STATE(3509)] = 214365, + [SMALL_STATE(3510)] = 214418, + [SMALL_STATE(3511)] = 214471, + [SMALL_STATE(3512)] = 214524, + [SMALL_STATE(3513)] = 214577, + [SMALL_STATE(3514)] = 214630, + [SMALL_STATE(3515)] = 214665, + [SMALL_STATE(3516)] = 214710, + [SMALL_STATE(3517)] = 214763, + [SMALL_STATE(3518)] = 214798, + [SMALL_STATE(3519)] = 214851, + [SMALL_STATE(3520)] = 214906, + [SMALL_STATE(3521)] = 214961, + [SMALL_STATE(3522)] = 215006, + [SMALL_STATE(3523)] = 215059, + [SMALL_STATE(3524)] = 215112, + [SMALL_STATE(3525)] = 215165, + [SMALL_STATE(3526)] = 215218, + [SMALL_STATE(3527)] = 215271, + [SMALL_STATE(3528)] = 215324, + [SMALL_STATE(3529)] = 215369, + [SMALL_STATE(3530)] = 215414, + [SMALL_STATE(3531)] = 215459, + [SMALL_STATE(3532)] = 215512, + [SMALL_STATE(3533)] = 215557, + [SMALL_STATE(3534)] = 215610, + [SMALL_STATE(3535)] = 215655, + [SMALL_STATE(3536)] = 215708, + [SMALL_STATE(3537)] = 215761, + [SMALL_STATE(3538)] = 215806, + [SMALL_STATE(3539)] = 215851, + [SMALL_STATE(3540)] = 215896, + [SMALL_STATE(3541)] = 215931, + [SMALL_STATE(3542)] = 215984, + [SMALL_STATE(3543)] = 216029, + [SMALL_STATE(3544)] = 216064, + [SMALL_STATE(3545)] = 216117, + [SMALL_STATE(3546)] = 216162, + [SMALL_STATE(3547)] = 216207, + [SMALL_STATE(3548)] = 216242, + [SMALL_STATE(3549)] = 216295, + [SMALL_STATE(3550)] = 216346, + [SMALL_STATE(3551)] = 216391, + [SMALL_STATE(3552)] = 216436, + [SMALL_STATE(3553)] = 216481, + [SMALL_STATE(3554)] = 216526, + [SMALL_STATE(3555)] = 216571, + [SMALL_STATE(3556)] = 216624, + [SMALL_STATE(3557)] = 216677, + [SMALL_STATE(3558)] = 216722, + [SMALL_STATE(3559)] = 216767, + [SMALL_STATE(3560)] = 216822, + [SMALL_STATE(3561)] = 216857, + [SMALL_STATE(3562)] = 216912, + [SMALL_STATE(3563)] = 216957, + [SMALL_STATE(3564)] = 216992, + [SMALL_STATE(3565)] = 217037, + [SMALL_STATE(3566)] = 217072, + [SMALL_STATE(3567)] = 217125, + [SMALL_STATE(3568)] = 217170, + [SMALL_STATE(3569)] = 217223, + [SMALL_STATE(3570)] = 217268, + [SMALL_STATE(3571)] = 217313, + [SMALL_STATE(3572)] = 217358, + [SMALL_STATE(3573)] = 217411, + [SMALL_STATE(3574)] = 217464, + [SMALL_STATE(3575)] = 217519, + [SMALL_STATE(3576)] = 217564, + [SMALL_STATE(3577)] = 217609, + [SMALL_STATE(3578)] = 217664, + [SMALL_STATE(3579)] = 217717, + [SMALL_STATE(3580)] = 217762, + [SMALL_STATE(3581)] = 217807, + [SMALL_STATE(3582)] = 217860, + [SMALL_STATE(3583)] = 217905, + [SMALL_STATE(3584)] = 217958, + [SMALL_STATE(3585)] = 218008, + [SMALL_STATE(3586)] = 218058, + [SMALL_STATE(3587)] = 218110, + [SMALL_STATE(3588)] = 218160, + [SMALL_STATE(3589)] = 218210, + [SMALL_STATE(3590)] = 218260, + [SMALL_STATE(3591)] = 218314, + [SMALL_STATE(3592)] = 218364, + [SMALL_STATE(3593)] = 218414, + [SMALL_STATE(3594)] = 218464, + [SMALL_STATE(3595)] = 218518, + [SMALL_STATE(3596)] = 218568, + [SMALL_STATE(3597)] = 218620, + [SMALL_STATE(3598)] = 218672, + [SMALL_STATE(3599)] = 218722, + [SMALL_STATE(3600)] = 218772, + [SMALL_STATE(3601)] = 218822, + [SMALL_STATE(3602)] = 218872, + [SMALL_STATE(3603)] = 218922, + [SMALL_STATE(3604)] = 218972, + [SMALL_STATE(3605)] = 219022, + [SMALL_STATE(3606)] = 219074, + [SMALL_STATE(3607)] = 219124, + [SMALL_STATE(3608)] = 219174, + [SMALL_STATE(3609)] = 219224, + [SMALL_STATE(3610)] = 219274, + [SMALL_STATE(3611)] = 219324, + [SMALL_STATE(3612)] = 219374, + [SMALL_STATE(3613)] = 219424, + [SMALL_STATE(3614)] = 219474, + [SMALL_STATE(3615)] = 219524, + [SMALL_STATE(3616)] = 219574, + [SMALL_STATE(3617)] = 219624, + [SMALL_STATE(3618)] = 219674, + [SMALL_STATE(3619)] = 219728, + [SMALL_STATE(3620)] = 219778, + [SMALL_STATE(3621)] = 219828, + [SMALL_STATE(3622)] = 219878, + [SMALL_STATE(3623)] = 219932, + [SMALL_STATE(3624)] = 219984, + [SMALL_STATE(3625)] = 220034, + [SMALL_STATE(3626)] = 220084, + [SMALL_STATE(3627)] = 220134, + [SMALL_STATE(3628)] = 220188, + [SMALL_STATE(3629)] = 220242, + [SMALL_STATE(3630)] = 220292, + [SMALL_STATE(3631)] = 220342, + [SMALL_STATE(3632)] = 220392, + [SMALL_STATE(3633)] = 220442, + [SMALL_STATE(3634)] = 220492, + [SMALL_STATE(3635)] = 220542, + [SMALL_STATE(3636)] = 220592, + [SMALL_STATE(3637)] = 220642, + [SMALL_STATE(3638)] = 220694, + [SMALL_STATE(3639)] = 220744, + [SMALL_STATE(3640)] = 220796, + [SMALL_STATE(3641)] = 220846, + [SMALL_STATE(3642)] = 220896, + [SMALL_STATE(3643)] = 220936, + [SMALL_STATE(3644)] = 220978, + [SMALL_STATE(3645)] = 221028, + [SMALL_STATE(3646)] = 221078, + [SMALL_STATE(3647)] = 221132, + [SMALL_STATE(3648)] = 221184, + [SMALL_STATE(3649)] = 221218, + [SMALL_STATE(3650)] = 221268, + [SMALL_STATE(3651)] = 221310, + [SMALL_STATE(3652)] = 221352, + [SMALL_STATE(3653)] = 221394, + [SMALL_STATE(3654)] = 221446, + [SMALL_STATE(3655)] = 221488, + [SMALL_STATE(3656)] = 221538, + [SMALL_STATE(3657)] = 221590, + [SMALL_STATE(3658)] = 221642, + [SMALL_STATE(3659)] = 221692, + [SMALL_STATE(3660)] = 221746, + [SMALL_STATE(3661)] = 221796, + [SMALL_STATE(3662)] = 221848, + [SMALL_STATE(3663)] = 221898, + [SMALL_STATE(3664)] = 221948, + [SMALL_STATE(3665)] = 221998, + [SMALL_STATE(3666)] = 222040, + [SMALL_STATE(3667)] = 222090, + [SMALL_STATE(3668)] = 222143, + [SMALL_STATE(3669)] = 222196, + [SMALL_STATE(3670)] = 222243, + [SMALL_STATE(3671)] = 222296, + [SMALL_STATE(3672)] = 222329, + [SMALL_STATE(3673)] = 222362, + [SMALL_STATE(3674)] = 222395, + [SMALL_STATE(3675)] = 222428, + [SMALL_STATE(3676)] = 222461, + [SMALL_STATE(3677)] = 222494, + [SMALL_STATE(3678)] = 222527, + [SMALL_STATE(3679)] = 222560, + [SMALL_STATE(3680)] = 222593, + [SMALL_STATE(3681)] = 222646, + [SMALL_STATE(3682)] = 222699, + [SMALL_STATE(3683)] = 222732, + [SMALL_STATE(3684)] = 222765, + [SMALL_STATE(3685)] = 222818, + [SMALL_STATE(3686)] = 222851, + [SMALL_STATE(3687)] = 222884, + [SMALL_STATE(3688)] = 222917, + [SMALL_STATE(3689)] = 222950, + [SMALL_STATE(3690)] = 223003, + [SMALL_STATE(3691)] = 223036, + [SMALL_STATE(3692)] = 223069, + [SMALL_STATE(3693)] = 223102, + [SMALL_STATE(3694)] = 223135, + [SMALL_STATE(3695)] = 223168, + [SMALL_STATE(3696)] = 223201, + [SMALL_STATE(3697)] = 223234, + [SMALL_STATE(3698)] = 223267, + [SMALL_STATE(3699)] = 223320, + [SMALL_STATE(3700)] = 223353, + [SMALL_STATE(3701)] = 223386, + [SMALL_STATE(3702)] = 223419, + [SMALL_STATE(3703)] = 223452, + [SMALL_STATE(3704)] = 223485, + [SMALL_STATE(3705)] = 223538, + [SMALL_STATE(3706)] = 223591, + [SMALL_STATE(3707)] = 223644, + [SMALL_STATE(3708)] = 223697, + [SMALL_STATE(3709)] = 223750, + [SMALL_STATE(3710)] = 223783, + [SMALL_STATE(3711)] = 223816, + [SMALL_STATE(3712)] = 223849, + [SMALL_STATE(3713)] = 223882, + [SMALL_STATE(3714)] = 223929, + [SMALL_STATE(3715)] = 223962, + [SMALL_STATE(3716)] = 223995, + [SMALL_STATE(3717)] = 224028, + [SMALL_STATE(3718)] = 224075, + [SMALL_STATE(3719)] = 224108, + [SMALL_STATE(3720)] = 224141, + [SMALL_STATE(3721)] = 224192, + [SMALL_STATE(3722)] = 224225, + [SMALL_STATE(3723)] = 224258, + [SMALL_STATE(3724)] = 224291, + [SMALL_STATE(3725)] = 224324, + [SMALL_STATE(3726)] = 224357, + [SMALL_STATE(3727)] = 224390, + [SMALL_STATE(3728)] = 224423, + [SMALL_STATE(3729)] = 224456, + [SMALL_STATE(3730)] = 224489, + [SMALL_STATE(3731)] = 224522, + [SMALL_STATE(3732)] = 224569, + [SMALL_STATE(3733)] = 224602, + [SMALL_STATE(3734)] = 224635, + [SMALL_STATE(3735)] = 224668, + [SMALL_STATE(3736)] = 224701, + [SMALL_STATE(3737)] = 224734, + [SMALL_STATE(3738)] = 224767, + [SMALL_STATE(3739)] = 224800, + [SMALL_STATE(3740)] = 224833, + [SMALL_STATE(3741)] = 224866, + [SMALL_STATE(3742)] = 224915, + [SMALL_STATE(3743)] = 224948, + [SMALL_STATE(3744)] = 224981, + [SMALL_STATE(3745)] = 225014, + [SMALL_STATE(3746)] = 225061, + [SMALL_STATE(3747)] = 225114, + [SMALL_STATE(3748)] = 225163, + [SMALL_STATE(3749)] = 225196, + [SMALL_STATE(3750)] = 225249, + [SMALL_STATE(3751)] = 225282, + [SMALL_STATE(3752)] = 225335, + [SMALL_STATE(3753)] = 225368, + [SMALL_STATE(3754)] = 225401, + [SMALL_STATE(3755)] = 225440, + [SMALL_STATE(3756)] = 225473, + [SMALL_STATE(3757)] = 225520, + [SMALL_STATE(3758)] = 225553, + [SMALL_STATE(3759)] = 225586, + [SMALL_STATE(3760)] = 225639, + [SMALL_STATE(3761)] = 225692, + [SMALL_STATE(3762)] = 225725, + [SMALL_STATE(3763)] = 225758, + [SMALL_STATE(3764)] = 225811, + [SMALL_STATE(3765)] = 225844, + [SMALL_STATE(3766)] = 225897, + [SMALL_STATE(3767)] = 225930, + [SMALL_STATE(3768)] = 225977, + [SMALL_STATE(3769)] = 226010, + [SMALL_STATE(3770)] = 226063, + [SMALL_STATE(3771)] = 226116, + [SMALL_STATE(3772)] = 226149, + [SMALL_STATE(3773)] = 226182, + [SMALL_STATE(3774)] = 226215, + [SMALL_STATE(3775)] = 226248, + [SMALL_STATE(3776)] = 226301, + [SMALL_STATE(3777)] = 226354, + [SMALL_STATE(3778)] = 226401, + [SMALL_STATE(3779)] = 226454, + [SMALL_STATE(3780)] = 226507, + [SMALL_STATE(3781)] = 226540, + [SMALL_STATE(3782)] = 226573, + [SMALL_STATE(3783)] = 226620, + [SMALL_STATE(3784)] = 226653, + [SMALL_STATE(3785)] = 226706, + [SMALL_STATE(3786)] = 226759, + [SMALL_STATE(3787)] = 226812, + [SMALL_STATE(3788)] = 226865, + [SMALL_STATE(3789)] = 226918, + [SMALL_STATE(3790)] = 226971, + [SMALL_STATE(3791)] = 227024, + [SMALL_STATE(3792)] = 227077, + [SMALL_STATE(3793)] = 227130, + [SMALL_STATE(3794)] = 227163, + [SMALL_STATE(3795)] = 227210, + [SMALL_STATE(3796)] = 227263, + [SMALL_STATE(3797)] = 227316, + [SMALL_STATE(3798)] = 227369, + [SMALL_STATE(3799)] = 227422, + [SMALL_STATE(3800)] = 227475, + [SMALL_STATE(3801)] = 227528, + [SMALL_STATE(3802)] = 227581, + [SMALL_STATE(3803)] = 227634, + [SMALL_STATE(3804)] = 227667, + [SMALL_STATE(3805)] = 227720, + [SMALL_STATE(3806)] = 227773, + [SMALL_STATE(3807)] = 227826, + [SMALL_STATE(3808)] = 227879, + [SMALL_STATE(3809)] = 227932, + [SMALL_STATE(3810)] = 227965, + [SMALL_STATE(3811)] = 227998, + [SMALL_STATE(3812)] = 228051, + [SMALL_STATE(3813)] = 228104, + [SMALL_STATE(3814)] = 228151, + [SMALL_STATE(3815)] = 228204, + [SMALL_STATE(3816)] = 228257, + [SMALL_STATE(3817)] = 228310, + [SMALL_STATE(3818)] = 228363, + [SMALL_STATE(3819)] = 228396, + [SMALL_STATE(3820)] = 228449, + [SMALL_STATE(3821)] = 228502, + [SMALL_STATE(3822)] = 228555, + [SMALL_STATE(3823)] = 228602, + [SMALL_STATE(3824)] = 228655, + [SMALL_STATE(3825)] = 228708, + [SMALL_STATE(3826)] = 228761, + [SMALL_STATE(3827)] = 228814, + [SMALL_STATE(3828)] = 228867, + [SMALL_STATE(3829)] = 228920, + [SMALL_STATE(3830)] = 228973, + [SMALL_STATE(3831)] = 229026, + [SMALL_STATE(3832)] = 229059, + [SMALL_STATE(3833)] = 229112, + [SMALL_STATE(3834)] = 229165, + [SMALL_STATE(3835)] = 229198, + [SMALL_STATE(3836)] = 229251, + [SMALL_STATE(3837)] = 229284, + [SMALL_STATE(3838)] = 229317, + [SMALL_STATE(3839)] = 229370, + [SMALL_STATE(3840)] = 229423, + [SMALL_STATE(3841)] = 229456, + [SMALL_STATE(3842)] = 229509, + [SMALL_STATE(3843)] = 229542, + [SMALL_STATE(3844)] = 229595, + [SMALL_STATE(3845)] = 229628, + [SMALL_STATE(3846)] = 229681, + [SMALL_STATE(3847)] = 229734, + [SMALL_STATE(3848)] = 229787, + [SMALL_STATE(3849)] = 229820, + [SMALL_STATE(3850)] = 229873, + [SMALL_STATE(3851)] = 229906, + [SMALL_STATE(3852)] = 229939, + [SMALL_STATE(3853)] = 229992, + [SMALL_STATE(3854)] = 230045, + [SMALL_STATE(3855)] = 230098, + [SMALL_STATE(3856)] = 230151, + [SMALL_STATE(3857)] = 230184, + [SMALL_STATE(3858)] = 230237, + [SMALL_STATE(3859)] = 230290, + [SMALL_STATE(3860)] = 230343, + [SMALL_STATE(3861)] = 230396, + [SMALL_STATE(3862)] = 230429, + [SMALL_STATE(3863)] = 230482, + [SMALL_STATE(3864)] = 230535, + [SMALL_STATE(3865)] = 230588, + [SMALL_STATE(3866)] = 230621, + [SMALL_STATE(3867)] = 230674, + [SMALL_STATE(3868)] = 230727, + [SMALL_STATE(3869)] = 230780, + [SMALL_STATE(3870)] = 230833, + [SMALL_STATE(3871)] = 230886, + [SMALL_STATE(3872)] = 230939, + [SMALL_STATE(3873)] = 230972, + [SMALL_STATE(3874)] = 231025, + [SMALL_STATE(3875)] = 231078, + [SMALL_STATE(3876)] = 231131, + [SMALL_STATE(3877)] = 231184, + [SMALL_STATE(3878)] = 231237, + [SMALL_STATE(3879)] = 231270, + [SMALL_STATE(3880)] = 231323, + [SMALL_STATE(3881)] = 231362, + [SMALL_STATE(3882)] = 231415, + [SMALL_STATE(3883)] = 231468, + [SMALL_STATE(3884)] = 231521, + [SMALL_STATE(3885)] = 231574, + [SMALL_STATE(3886)] = 231627, + [SMALL_STATE(3887)] = 231680, + [SMALL_STATE(3888)] = 231733, + [SMALL_STATE(3889)] = 231786, + [SMALL_STATE(3890)] = 231839, + [SMALL_STATE(3891)] = 231886, + [SMALL_STATE(3892)] = 231939, + [SMALL_STATE(3893)] = 231992, + [SMALL_STATE(3894)] = 232045, + [SMALL_STATE(3895)] = 232078, + [SMALL_STATE(3896)] = 232131, + [SMALL_STATE(3897)] = 232184, + [SMALL_STATE(3898)] = 232237, + [SMALL_STATE(3899)] = 232290, + [SMALL_STATE(3900)] = 232323, + [SMALL_STATE(3901)] = 232376, + [SMALL_STATE(3902)] = 232429, + [SMALL_STATE(3903)] = 232462, + [SMALL_STATE(3904)] = 232495, + [SMALL_STATE(3905)] = 232528, + [SMALL_STATE(3906)] = 232581, + [SMALL_STATE(3907)] = 232634, + [SMALL_STATE(3908)] = 232687, + [SMALL_STATE(3909)] = 232740, + [SMALL_STATE(3910)] = 232773, + [SMALL_STATE(3911)] = 232806, + [SMALL_STATE(3912)] = 232839, + [SMALL_STATE(3913)] = 232872, + [SMALL_STATE(3914)] = 232905, + [SMALL_STATE(3915)] = 232958, + [SMALL_STATE(3916)] = 233011, + [SMALL_STATE(3917)] = 233044, + [SMALL_STATE(3918)] = 233077, + [SMALL_STATE(3919)] = 233110, + [SMALL_STATE(3920)] = 233143, + [SMALL_STATE(3921)] = 233196, + [SMALL_STATE(3922)] = 233229, + [SMALL_STATE(3923)] = 233262, + [SMALL_STATE(3924)] = 233315, + [SMALL_STATE(3925)] = 233368, + [SMALL_STATE(3926)] = 233421, + [SMALL_STATE(3927)] = 233454, + [SMALL_STATE(3928)] = 233487, + [SMALL_STATE(3929)] = 233540, + [SMALL_STATE(3930)] = 233573, + [SMALL_STATE(3931)] = 233626, + [SMALL_STATE(3932)] = 233659, + [SMALL_STATE(3933)] = 233712, + [SMALL_STATE(3934)] = 233745, + [SMALL_STATE(3935)] = 233778, + [SMALL_STATE(3936)] = 233811, + [SMALL_STATE(3937)] = 233844, + [SMALL_STATE(3938)] = 233877, + [SMALL_STATE(3939)] = 233930, + [SMALL_STATE(3940)] = 233963, + [SMALL_STATE(3941)] = 234016, + [SMALL_STATE(3942)] = 234069, + [SMALL_STATE(3943)] = 234122, + [SMALL_STATE(3944)] = 234155, + [SMALL_STATE(3945)] = 234188, + [SMALL_STATE(3946)] = 234241, + [SMALL_STATE(3947)] = 234294, + [SMALL_STATE(3948)] = 234327, + [SMALL_STATE(3949)] = 234380, + [SMALL_STATE(3950)] = 234433, + [SMALL_STATE(3951)] = 234486, + [SMALL_STATE(3952)] = 234539, + [SMALL_STATE(3953)] = 234572, + [SMALL_STATE(3954)] = 234605, + [SMALL_STATE(3955)] = 234658, + [SMALL_STATE(3956)] = 234691, + [SMALL_STATE(3957)] = 234724, + [SMALL_STATE(3958)] = 234757, + [SMALL_STATE(3959)] = 234810, + [SMALL_STATE(3960)] = 234843, + [SMALL_STATE(3961)] = 234896, + [SMALL_STATE(3962)] = 234929, + [SMALL_STATE(3963)] = 234982, + [SMALL_STATE(3964)] = 235035, + [SMALL_STATE(3965)] = 235088, + [SMALL_STATE(3966)] = 235141, + [SMALL_STATE(3967)] = 235174, + [SMALL_STATE(3968)] = 235227, + [SMALL_STATE(3969)] = 235280, + [SMALL_STATE(3970)] = 235333, + [SMALL_STATE(3971)] = 235386, + [SMALL_STATE(3972)] = 235439, + [SMALL_STATE(3973)] = 235492, + [SMALL_STATE(3974)] = 235525, + [SMALL_STATE(3975)] = 235558, + [SMALL_STATE(3976)] = 235591, + [SMALL_STATE(3977)] = 235644, + [SMALL_STATE(3978)] = 235697, + [SMALL_STATE(3979)] = 235741, + [SMALL_STATE(3980)] = 235785, + [SMALL_STATE(3981)] = 235829, + [SMALL_STATE(3982)] = 235873, + [SMALL_STATE(3983)] = 235917, + [SMALL_STATE(3984)] = 235961, + [SMALL_STATE(3985)] = 235993, + [SMALL_STATE(3986)] = 236037, + [SMALL_STATE(3987)] = 236081, + [SMALL_STATE(3988)] = 236125, + [SMALL_STATE(3989)] = 236169, + [SMALL_STATE(3990)] = 236213, + [SMALL_STATE(3991)] = 236257, + [SMALL_STATE(3992)] = 236301, + [SMALL_STATE(3993)] = 236333, + [SMALL_STATE(3994)] = 236377, + [SMALL_STATE(3995)] = 236409, + [SMALL_STATE(3996)] = 236453, + [SMALL_STATE(3997)] = 236497, + [SMALL_STATE(3998)] = 236541, + [SMALL_STATE(3999)] = 236585, + [SMALL_STATE(4000)] = 236629, + [SMALL_STATE(4001)] = 236673, + [SMALL_STATE(4002)] = 236717, + [SMALL_STATE(4003)] = 236761, + [SMALL_STATE(4004)] = 236805, + [SMALL_STATE(4005)] = 236849, + [SMALL_STATE(4006)] = 236893, + [SMALL_STATE(4007)] = 236925, + [SMALL_STATE(4008)] = 236969, + [SMALL_STATE(4009)] = 237013, + [SMALL_STATE(4010)] = 237057, + [SMALL_STATE(4011)] = 237101, + [SMALL_STATE(4012)] = 237145, + [SMALL_STATE(4013)] = 237189, + [SMALL_STATE(4014)] = 237233, + [SMALL_STATE(4015)] = 237277, + [SMALL_STATE(4016)] = 237321, + [SMALL_STATE(4017)] = 237365, + [SMALL_STATE(4018)] = 237409, + [SMALL_STATE(4019)] = 237453, + [SMALL_STATE(4020)] = 237497, + [SMALL_STATE(4021)] = 237541, + [SMALL_STATE(4022)] = 237585, + [SMALL_STATE(4023)] = 237629, + [SMALL_STATE(4024)] = 237673, + [SMALL_STATE(4025)] = 237705, + [SMALL_STATE(4026)] = 237749, + [SMALL_STATE(4027)] = 237793, + [SMALL_STATE(4028)] = 237837, + [SMALL_STATE(4029)] = 237881, + [SMALL_STATE(4030)] = 237925, + [SMALL_STATE(4031)] = 237969, + [SMALL_STATE(4032)] = 238001, + [SMALL_STATE(4033)] = 238045, + [SMALL_STATE(4034)] = 238089, + [SMALL_STATE(4035)] = 238133, + [SMALL_STATE(4036)] = 238177, + [SMALL_STATE(4037)] = 238221, + [SMALL_STATE(4038)] = 238265, + [SMALL_STATE(4039)] = 238309, + [SMALL_STATE(4040)] = 238353, + [SMALL_STATE(4041)] = 238397, + [SMALL_STATE(4042)] = 238441, + [SMALL_STATE(4043)] = 238473, + [SMALL_STATE(4044)] = 238517, + [SMALL_STATE(4045)] = 238561, + [SMALL_STATE(4046)] = 238605, + [SMALL_STATE(4047)] = 238649, + [SMALL_STATE(4048)] = 238693, + [SMALL_STATE(4049)] = 238737, + [SMALL_STATE(4050)] = 238785, + [SMALL_STATE(4051)] = 238829, + [SMALL_STATE(4052)] = 238873, + [SMALL_STATE(4053)] = 238905, + [SMALL_STATE(4054)] = 238937, + [SMALL_STATE(4055)] = 238981, + [SMALL_STATE(4056)] = 239013, + [SMALL_STATE(4057)] = 239057, + [SMALL_STATE(4058)] = 239105, + [SMALL_STATE(4059)] = 239149, + [SMALL_STATE(4060)] = 239193, + [SMALL_STATE(4061)] = 239225, + [SMALL_STATE(4062)] = 239269, + [SMALL_STATE(4063)] = 239301, + [SMALL_STATE(4064)] = 239345, + [SMALL_STATE(4065)] = 239389, + [SMALL_STATE(4066)] = 239435, + [SMALL_STATE(4067)] = 239479, + [SMALL_STATE(4068)] = 239523, + [SMALL_STATE(4069)] = 239567, + [SMALL_STATE(4070)] = 239611, + [SMALL_STATE(4071)] = 239655, + [SMALL_STATE(4072)] = 239687, + [SMALL_STATE(4073)] = 239731, + [SMALL_STATE(4074)] = 239777, + [SMALL_STATE(4075)] = 239821, + [SMALL_STATE(4076)] = 239865, + [SMALL_STATE(4077)] = 239911, + [SMALL_STATE(4078)] = 239955, + [SMALL_STATE(4079)] = 239999, + [SMALL_STATE(4080)] = 240031, + [SMALL_STATE(4081)] = 240075, + [SMALL_STATE(4082)] = 240119, + [SMALL_STATE(4083)] = 240163, + [SMALL_STATE(4084)] = 240207, + [SMALL_STATE(4085)] = 240257, + [SMALL_STATE(4086)] = 240301, + [SMALL_STATE(4087)] = 240345, + [SMALL_STATE(4088)] = 240389, + [SMALL_STATE(4089)] = 240433, + [SMALL_STATE(4090)] = 240477, + [SMALL_STATE(4091)] = 240509, + [SMALL_STATE(4092)] = 240559, + [SMALL_STATE(4093)] = 240603, + [SMALL_STATE(4094)] = 240647, + [SMALL_STATE(4095)] = 240691, + [SMALL_STATE(4096)] = 240735, + [SMALL_STATE(4097)] = 240779, + [SMALL_STATE(4098)] = 240823, + [SMALL_STATE(4099)] = 240867, + [SMALL_STATE(4100)] = 240911, + [SMALL_STATE(4101)] = 240955, + [SMALL_STATE(4102)] = 240999, + [SMALL_STATE(4103)] = 241043, + [SMALL_STATE(4104)] = 241087, + [SMALL_STATE(4105)] = 241131, + [SMALL_STATE(4106)] = 241175, + [SMALL_STATE(4107)] = 241219, + [SMALL_STATE(4108)] = 241263, + [SMALL_STATE(4109)] = 241307, + [SMALL_STATE(4110)] = 241351, + [SMALL_STATE(4111)] = 241395, + [SMALL_STATE(4112)] = 241439, + [SMALL_STATE(4113)] = 241483, + [SMALL_STATE(4114)] = 241527, + [SMALL_STATE(4115)] = 241571, + [SMALL_STATE(4116)] = 241603, + [SMALL_STATE(4117)] = 241647, + [SMALL_STATE(4118)] = 241691, + [SMALL_STATE(4119)] = 241735, + [SMALL_STATE(4120)] = 241767, + [SMALL_STATE(4121)] = 241811, + [SMALL_STATE(4122)] = 241855, + [SMALL_STATE(4123)] = 241887, + [SMALL_STATE(4124)] = 241931, + [SMALL_STATE(4125)] = 241975, + [SMALL_STATE(4126)] = 242019, + [SMALL_STATE(4127)] = 242063, + [SMALL_STATE(4128)] = 242107, + [SMALL_STATE(4129)] = 242151, + [SMALL_STATE(4130)] = 242195, + [SMALL_STATE(4131)] = 242235, + [SMALL_STATE(4132)] = 242279, + [SMALL_STATE(4133)] = 242329, + [SMALL_STATE(4134)] = 242373, + [SMALL_STATE(4135)] = 242417, + [SMALL_STATE(4136)] = 242461, + [SMALL_STATE(4137)] = 242493, + [SMALL_STATE(4138)] = 242537, + [SMALL_STATE(4139)] = 242581, + [SMALL_STATE(4140)] = 242625, + [SMALL_STATE(4141)] = 242669, + [SMALL_STATE(4142)] = 242713, + [SMALL_STATE(4143)] = 242757, + [SMALL_STATE(4144)] = 242801, + [SMALL_STATE(4145)] = 242845, + [SMALL_STATE(4146)] = 242889, + [SMALL_STATE(4147)] = 242933, + [SMALL_STATE(4148)] = 242977, + [SMALL_STATE(4149)] = 243021, + [SMALL_STATE(4150)] = 243065, + [SMALL_STATE(4151)] = 243109, + [SMALL_STATE(4152)] = 243153, + [SMALL_STATE(4153)] = 243197, + [SMALL_STATE(4154)] = 243241, + [SMALL_STATE(4155)] = 243285, + [SMALL_STATE(4156)] = 243329, + [SMALL_STATE(4157)] = 243373, + [SMALL_STATE(4158)] = 243405, + [SMALL_STATE(4159)] = 243449, + [SMALL_STATE(4160)] = 243501, + [SMALL_STATE(4161)] = 243545, + [SMALL_STATE(4162)] = 243577, + [SMALL_STATE(4163)] = 243621, + [SMALL_STATE(4164)] = 243665, + [SMALL_STATE(4165)] = 243711, + [SMALL_STATE(4166)] = 243755, + [SMALL_STATE(4167)] = 243799, + [SMALL_STATE(4168)] = 243831, + [SMALL_STATE(4169)] = 243875, + [SMALL_STATE(4170)] = 243919, + [SMALL_STATE(4171)] = 243963, + [SMALL_STATE(4172)] = 244009, + [SMALL_STATE(4173)] = 244041, + [SMALL_STATE(4174)] = 244085, + [SMALL_STATE(4175)] = 244129, + [SMALL_STATE(4176)] = 244173, + [SMALL_STATE(4177)] = 244217, + [SMALL_STATE(4178)] = 244261, + [SMALL_STATE(4179)] = 244305, + [SMALL_STATE(4180)] = 244349, + [SMALL_STATE(4181)] = 244381, + [SMALL_STATE(4182)] = 244425, + [SMALL_STATE(4183)] = 244457, + [SMALL_STATE(4184)] = 244489, + [SMALL_STATE(4185)] = 244521, + [SMALL_STATE(4186)] = 244565, + [SMALL_STATE(4187)] = 244609, + [SMALL_STATE(4188)] = 244653, + [SMALL_STATE(4189)] = 244697, + [SMALL_STATE(4190)] = 244741, + [SMALL_STATE(4191)] = 244785, + [SMALL_STATE(4192)] = 244829, + [SMALL_STATE(4193)] = 244861, + [SMALL_STATE(4194)] = 244913, + [SMALL_STATE(4195)] = 244957, + [SMALL_STATE(4196)] = 245001, + [SMALL_STATE(4197)] = 245045, + [SMALL_STATE(4198)] = 245089, + [SMALL_STATE(4199)] = 245133, + [SMALL_STATE(4200)] = 245177, + [SMALL_STATE(4201)] = 245223, + [SMALL_STATE(4202)] = 245267, + [SMALL_STATE(4203)] = 245311, + [SMALL_STATE(4204)] = 245355, + [SMALL_STATE(4205)] = 245399, + [SMALL_STATE(4206)] = 245443, + [SMALL_STATE(4207)] = 245487, + [SMALL_STATE(4208)] = 245531, + [SMALL_STATE(4209)] = 245575, + [SMALL_STATE(4210)] = 245619, + [SMALL_STATE(4211)] = 245663, + [SMALL_STATE(4212)] = 245707, + [SMALL_STATE(4213)] = 245751, + [SMALL_STATE(4214)] = 245783, + [SMALL_STATE(4215)] = 245827, + [SMALL_STATE(4216)] = 245871, + [SMALL_STATE(4217)] = 245903, + [SMALL_STATE(4218)] = 245947, + [SMALL_STATE(4219)] = 245979, + [SMALL_STATE(4220)] = 246023, + [SMALL_STATE(4221)] = 246055, + [SMALL_STATE(4222)] = 246099, + [SMALL_STATE(4223)] = 246143, + [SMALL_STATE(4224)] = 246187, + [SMALL_STATE(4225)] = 246231, + [SMALL_STATE(4226)] = 246275, + [SMALL_STATE(4227)] = 246319, + [SMALL_STATE(4228)] = 246363, + [SMALL_STATE(4229)] = 246409, + [SMALL_STATE(4230)] = 246441, + [SMALL_STATE(4231)] = 246485, + [SMALL_STATE(4232)] = 246529, + [SMALL_STATE(4233)] = 246573, + [SMALL_STATE(4234)] = 246617, + [SMALL_STATE(4235)] = 246661, + [SMALL_STATE(4236)] = 246705, + [SMALL_STATE(4237)] = 246749, + [SMALL_STATE(4238)] = 246793, + [SMALL_STATE(4239)] = 246825, + [SMALL_STATE(4240)] = 246869, + [SMALL_STATE(4241)] = 246913, + [SMALL_STATE(4242)] = 246957, + [SMALL_STATE(4243)] = 247001, + [SMALL_STATE(4244)] = 247045, + [SMALL_STATE(4245)] = 247089, + [SMALL_STATE(4246)] = 247133, + [SMALL_STATE(4247)] = 247165, + [SMALL_STATE(4248)] = 247197, + [SMALL_STATE(4249)] = 247241, + [SMALL_STATE(4250)] = 247285, + [SMALL_STATE(4251)] = 247329, + [SMALL_STATE(4252)] = 247373, + [SMALL_STATE(4253)] = 247417, + [SMALL_STATE(4254)] = 247461, + [SMALL_STATE(4255)] = 247505, + [SMALL_STATE(4256)] = 247551, + [SMALL_STATE(4257)] = 247595, + [SMALL_STATE(4258)] = 247639, + [SMALL_STATE(4259)] = 247683, + [SMALL_STATE(4260)] = 247727, + [SMALL_STATE(4261)] = 247771, + [SMALL_STATE(4262)] = 247815, + [SMALL_STATE(4263)] = 247859, + [SMALL_STATE(4264)] = 247903, + [SMALL_STATE(4265)] = 247947, + [SMALL_STATE(4266)] = 247991, + [SMALL_STATE(4267)] = 248035, + [SMALL_STATE(4268)] = 248079, + [SMALL_STATE(4269)] = 248123, + [SMALL_STATE(4270)] = 248167, + [SMALL_STATE(4271)] = 248211, + [SMALL_STATE(4272)] = 248243, + [SMALL_STATE(4273)] = 248287, + [SMALL_STATE(4274)] = 248331, + [SMALL_STATE(4275)] = 248375, + [SMALL_STATE(4276)] = 248413, + [SMALL_STATE(4277)] = 248457, + [SMALL_STATE(4278)] = 248501, + [SMALL_STATE(4279)] = 248545, + [SMALL_STATE(4280)] = 248589, + [SMALL_STATE(4281)] = 248635, + [SMALL_STATE(4282)] = 248679, + [SMALL_STATE(4283)] = 248723, + [SMALL_STATE(4284)] = 248767, + [SMALL_STATE(4285)] = 248811, + [SMALL_STATE(4286)] = 248855, + [SMALL_STATE(4287)] = 248899, + [SMALL_STATE(4288)] = 248943, + [SMALL_STATE(4289)] = 248989, + [SMALL_STATE(4290)] = 249033, + [SMALL_STATE(4291)] = 249077, + [SMALL_STATE(4292)] = 249123, + [SMALL_STATE(4293)] = 249167, + [SMALL_STATE(4294)] = 249211, + [SMALL_STATE(4295)] = 249255, + [SMALL_STATE(4296)] = 249299, + [SMALL_STATE(4297)] = 249343, + [SMALL_STATE(4298)] = 249387, + [SMALL_STATE(4299)] = 249431, + [SMALL_STATE(4300)] = 249463, + [SMALL_STATE(4301)] = 249507, + [SMALL_STATE(4302)] = 249551, + [SMALL_STATE(4303)] = 249597, + [SMALL_STATE(4304)] = 249641, + [SMALL_STATE(4305)] = 249673, + [SMALL_STATE(4306)] = 249717, + [SMALL_STATE(4307)] = 249761, + [SMALL_STATE(4308)] = 249805, + [SMALL_STATE(4309)] = 249849, + [SMALL_STATE(4310)] = 249893, + [SMALL_STATE(4311)] = 249937, + [SMALL_STATE(4312)] = 249981, + [SMALL_STATE(4313)] = 250025, + [SMALL_STATE(4314)] = 250057, + [SMALL_STATE(4315)] = 250101, + [SMALL_STATE(4316)] = 250134, + [SMALL_STATE(4317)] = 250165, + [SMALL_STATE(4318)] = 250198, + [SMALL_STATE(4319)] = 250231, + [SMALL_STATE(4320)] = 250264, + [SMALL_STATE(4321)] = 250297, + [SMALL_STATE(4322)] = 250330, + [SMALL_STATE(4323)] = 250363, + [SMALL_STATE(4324)] = 250396, + [SMALL_STATE(4325)] = 250429, + [SMALL_STATE(4326)] = 250462, + [SMALL_STATE(4327)] = 250499, + [SMALL_STATE(4328)] = 250532, + [SMALL_STATE(4329)] = 250565, + [SMALL_STATE(4330)] = 250598, + [SMALL_STATE(4331)] = 250631, + [SMALL_STATE(4332)] = 250664, + [SMALL_STATE(4333)] = 250697, + [SMALL_STATE(4334)] = 250730, + [SMALL_STATE(4335)] = 250763, + [SMALL_STATE(4336)] = 250796, + [SMALL_STATE(4337)] = 250829, + [SMALL_STATE(4338)] = 250866, + [SMALL_STATE(4339)] = 250915, + [SMALL_STATE(4340)] = 250964, + [SMALL_STATE(4341)] = 250995, + [SMALL_STATE(4342)] = 251028, + [SMALL_STATE(4343)] = 251061, + [SMALL_STATE(4344)] = 251092, + [SMALL_STATE(4345)] = 251123, + [SMALL_STATE(4346)] = 251154, + [SMALL_STATE(4347)] = 251185, + [SMALL_STATE(4348)] = 251216, + [SMALL_STATE(4349)] = 251247, + [SMALL_STATE(4350)] = 251278, + [SMALL_STATE(4351)] = 251309, + [SMALL_STATE(4352)] = 251340, + [SMALL_STATE(4353)] = 251373, + [SMALL_STATE(4354)] = 251406, + [SMALL_STATE(4355)] = 251437, + [SMALL_STATE(4356)] = 251470, + [SMALL_STATE(4357)] = 251501, + [SMALL_STATE(4358)] = 251532, + [SMALL_STATE(4359)] = 251565, + [SMALL_STATE(4360)] = 251598, + [SMALL_STATE(4361)] = 251631, + [SMALL_STATE(4362)] = 251662, + [SMALL_STATE(4363)] = 251693, + [SMALL_STATE(4364)] = 251726, + [SMALL_STATE(4365)] = 251757, + [SMALL_STATE(4366)] = 251788, + [SMALL_STATE(4367)] = 251819, + [SMALL_STATE(4368)] = 251850, + [SMALL_STATE(4369)] = 251881, + [SMALL_STATE(4370)] = 251912, + [SMALL_STATE(4371)] = 251943, + [SMALL_STATE(4372)] = 251974, + [SMALL_STATE(4373)] = 252005, + [SMALL_STATE(4374)] = 252036, + [SMALL_STATE(4375)] = 252067, + [SMALL_STATE(4376)] = 252098, + [SMALL_STATE(4377)] = 252129, + [SMALL_STATE(4378)] = 252160, + [SMALL_STATE(4379)] = 252191, + [SMALL_STATE(4380)] = 252222, + [SMALL_STATE(4381)] = 252253, + [SMALL_STATE(4382)] = 252284, + [SMALL_STATE(4383)] = 252315, + [SMALL_STATE(4384)] = 252346, + [SMALL_STATE(4385)] = 252377, + [SMALL_STATE(4386)] = 252408, + [SMALL_STATE(4387)] = 252439, + [SMALL_STATE(4388)] = 252483, + [SMALL_STATE(4389)] = 252527, + [SMALL_STATE(4390)] = 252571, + [SMALL_STATE(4391)] = 252607, + [SMALL_STATE(4392)] = 252643, + [SMALL_STATE(4393)] = 252687, + [SMALL_STATE(4394)] = 252741, + [SMALL_STATE(4395)] = 252777, + [SMALL_STATE(4396)] = 252809, + [SMALL_STATE(4397)] = 252853, + [SMALL_STATE(4398)] = 252897, + [SMALL_STATE(4399)] = 252941, + [SMALL_STATE(4400)] = 252985, + [SMALL_STATE(4401)] = 253014, + [SMALL_STATE(4402)] = 253043, + [SMALL_STATE(4403)] = 253072, + [SMALL_STATE(4404)] = 253101, + [SMALL_STATE(4405)] = 253130, + [SMALL_STATE(4406)] = 253159, + [SMALL_STATE(4407)] = 253188, + [SMALL_STATE(4408)] = 253217, + [SMALL_STATE(4409)] = 253246, + [SMALL_STATE(4410)] = 253275, + [SMALL_STATE(4411)] = 253304, + [SMALL_STATE(4412)] = 253333, + [SMALL_STATE(4413)] = 253362, + [SMALL_STATE(4414)] = 253391, + [SMALL_STATE(4415)] = 253420, + [SMALL_STATE(4416)] = 253449, + [SMALL_STATE(4417)] = 253478, + [SMALL_STATE(4418)] = 253507, + [SMALL_STATE(4419)] = 253536, + [SMALL_STATE(4420)] = 253565, + [SMALL_STATE(4421)] = 253594, + [SMALL_STATE(4422)] = 253629, + [SMALL_STATE(4423)] = 253658, + [SMALL_STATE(4424)] = 253687, + [SMALL_STATE(4425)] = 253716, + [SMALL_STATE(4426)] = 253745, + [SMALL_STATE(4427)] = 253774, + [SMALL_STATE(4428)] = 253803, + [SMALL_STATE(4429)] = 253832, + [SMALL_STATE(4430)] = 253861, + [SMALL_STATE(4431)] = 253890, + [SMALL_STATE(4432)] = 253919, + [SMALL_STATE(4433)] = 253948, + [SMALL_STATE(4434)] = 253983, + [SMALL_STATE(4435)] = 254012, + [SMALL_STATE(4436)] = 254041, + [SMALL_STATE(4437)] = 254070, + [SMALL_STATE(4438)] = 254099, + [SMALL_STATE(4439)] = 254128, + [SMALL_STATE(4440)] = 254157, + [SMALL_STATE(4441)] = 254186, + [SMALL_STATE(4442)] = 254221, + [SMALL_STATE(4443)] = 254250, + [SMALL_STATE(4444)] = 254279, + [SMALL_STATE(4445)] = 254308, + [SMALL_STATE(4446)] = 254336, + [SMALL_STATE(4447)] = 254364, + [SMALL_STATE(4448)] = 254392, + [SMALL_STATE(4449)] = 254420, + [SMALL_STATE(4450)] = 254448, + [SMALL_STATE(4451)] = 254476, + [SMALL_STATE(4452)] = 254504, + [SMALL_STATE(4453)] = 254548, + [SMALL_STATE(4454)] = 254582, + [SMALL_STATE(4455)] = 254610, + [SMALL_STATE(4456)] = 254654, + [SMALL_STATE(4457)] = 254688, + [SMALL_STATE(4458)] = 254716, + [SMALL_STATE(4459)] = 254744, + [SMALL_STATE(4460)] = 254772, + [SMALL_STATE(4461)] = 254800, + [SMALL_STATE(4462)] = 254828, + [SMALL_STATE(4463)] = 254856, + [SMALL_STATE(4464)] = 254886, + [SMALL_STATE(4465)] = 254928, + [SMALL_STATE(4466)] = 254956, + [SMALL_STATE(4467)] = 254998, + [SMALL_STATE(4468)] = 255026, + [SMALL_STATE(4469)] = 255068, + [SMALL_STATE(4470)] = 255096, + [SMALL_STATE(4471)] = 255124, + [SMALL_STATE(4472)] = 255152, + [SMALL_STATE(4473)] = 255180, + [SMALL_STATE(4474)] = 255208, + [SMALL_STATE(4475)] = 255236, + [SMALL_STATE(4476)] = 255264, + [SMALL_STATE(4477)] = 255292, + [SMALL_STATE(4478)] = 255320, + [SMALL_STATE(4479)] = 255348, + [SMALL_STATE(4480)] = 255376, + [SMALL_STATE(4481)] = 255410, + [SMALL_STATE(4482)] = 255438, + [SMALL_STATE(4483)] = 255466, + [SMALL_STATE(4484)] = 255494, + [SMALL_STATE(4485)] = 255522, + [SMALL_STATE(4486)] = 255550, + [SMALL_STATE(4487)] = 255578, + [SMALL_STATE(4488)] = 255620, + [SMALL_STATE(4489)] = 255648, + [SMALL_STATE(4490)] = 255676, + [SMALL_STATE(4491)] = 255704, + [SMALL_STATE(4492)] = 255732, + [SMALL_STATE(4493)] = 255760, + [SMALL_STATE(4494)] = 255788, + [SMALL_STATE(4495)] = 255816, + [SMALL_STATE(4496)] = 255844, + [SMALL_STATE(4497)] = 255878, + [SMALL_STATE(4498)] = 255906, + [SMALL_STATE(4499)] = 255938, + [SMALL_STATE(4500)] = 255966, + [SMALL_STATE(4501)] = 255994, + [SMALL_STATE(4502)] = 256022, + [SMALL_STATE(4503)] = 256050, + [SMALL_STATE(4504)] = 256078, + [SMALL_STATE(4505)] = 256106, + [SMALL_STATE(4506)] = 256148, + [SMALL_STATE(4507)] = 256176, + [SMALL_STATE(4508)] = 256204, + [SMALL_STATE(4509)] = 256232, + [SMALL_STATE(4510)] = 256268, + [SMALL_STATE(4511)] = 256296, + [SMALL_STATE(4512)] = 256324, + [SMALL_STATE(4513)] = 256352, + [SMALL_STATE(4514)] = 256380, + [SMALL_STATE(4515)] = 256408, + [SMALL_STATE(4516)] = 256436, + [SMALL_STATE(4517)] = 256464, + [SMALL_STATE(4518)] = 256492, + [SMALL_STATE(4519)] = 256520, + [SMALL_STATE(4520)] = 256548, + [SMALL_STATE(4521)] = 256576, + [SMALL_STATE(4522)] = 256604, + [SMALL_STATE(4523)] = 256632, + [SMALL_STATE(4524)] = 256660, + [SMALL_STATE(4525)] = 256688, + [SMALL_STATE(4526)] = 256716, + [SMALL_STATE(4527)] = 256744, + [SMALL_STATE(4528)] = 256772, + [SMALL_STATE(4529)] = 256800, + [SMALL_STATE(4530)] = 256828, + [SMALL_STATE(4531)] = 256856, + [SMALL_STATE(4532)] = 256884, + [SMALL_STATE(4533)] = 256912, + [SMALL_STATE(4534)] = 256940, + [SMALL_STATE(4535)] = 256968, + [SMALL_STATE(4536)] = 256996, + [SMALL_STATE(4537)] = 257024, + [SMALL_STATE(4538)] = 257052, + [SMALL_STATE(4539)] = 257080, + [SMALL_STATE(4540)] = 257108, + [SMALL_STATE(4541)] = 257136, + [SMALL_STATE(4542)] = 257164, + [SMALL_STATE(4543)] = 257206, + [SMALL_STATE(4544)] = 257234, + [SMALL_STATE(4545)] = 257262, + [SMALL_STATE(4546)] = 257290, + [SMALL_STATE(4547)] = 257318, + [SMALL_STATE(4548)] = 257346, + [SMALL_STATE(4549)] = 257389, + [SMALL_STATE(4550)] = 257416, + [SMALL_STATE(4551)] = 257459, + [SMALL_STATE(4552)] = 257486, + [SMALL_STATE(4553)] = 257513, + [SMALL_STATE(4554)] = 257540, + [SMALL_STATE(4555)] = 257567, + [SMALL_STATE(4556)] = 257594, + [SMALL_STATE(4557)] = 257621, + [SMALL_STATE(4558)] = 257664, + [SMALL_STATE(4559)] = 257701, + [SMALL_STATE(4560)] = 257734, + [SMALL_STATE(4561)] = 257761, + [SMALL_STATE(4562)] = 257788, + [SMALL_STATE(4563)] = 257815, + [SMALL_STATE(4564)] = 257842, + [SMALL_STATE(4565)] = 257869, + [SMALL_STATE(4566)] = 257908, + [SMALL_STATE(4567)] = 257935, + [SMALL_STATE(4568)] = 257962, + [SMALL_STATE(4569)] = 257989, + [SMALL_STATE(4570)] = 258016, + [SMALL_STATE(4571)] = 258043, + [SMALL_STATE(4572)] = 258070, + [SMALL_STATE(4573)] = 258103, + [SMALL_STATE(4574)] = 258130, + [SMALL_STATE(4575)] = 258157, + [SMALL_STATE(4576)] = 258184, + [SMALL_STATE(4577)] = 258211, + [SMALL_STATE(4578)] = 258238, + [SMALL_STATE(4579)] = 258265, + [SMALL_STATE(4580)] = 258292, + [SMALL_STATE(4581)] = 258319, + [SMALL_STATE(4582)] = 258346, + [SMALL_STATE(4583)] = 258385, + [SMALL_STATE(4584)] = 258412, + [SMALL_STATE(4585)] = 258439, + [SMALL_STATE(4586)] = 258466, + [SMALL_STATE(4587)] = 258493, + [SMALL_STATE(4588)] = 258520, + [SMALL_STATE(4589)] = 258547, + [SMALL_STATE(4590)] = 258574, + [SMALL_STATE(4591)] = 258601, + [SMALL_STATE(4592)] = 258628, + [SMALL_STATE(4593)] = 258655, + [SMALL_STATE(4594)] = 258682, + [SMALL_STATE(4595)] = 258709, + [SMALL_STATE(4596)] = 258742, + [SMALL_STATE(4597)] = 258769, + [SMALL_STATE(4598)] = 258796, + [SMALL_STATE(4599)] = 258823, + [SMALL_STATE(4600)] = 258850, + [SMALL_STATE(4601)] = 258877, + [SMALL_STATE(4602)] = 258916, + [SMALL_STATE(4603)] = 258955, + [SMALL_STATE(4604)] = 258982, + [SMALL_STATE(4605)] = 259021, + [SMALL_STATE(4606)] = 259048, + [SMALL_STATE(4607)] = 259075, + [SMALL_STATE(4608)] = 259108, + [SMALL_STATE(4609)] = 259135, + [SMALL_STATE(4610)] = 259162, + [SMALL_STATE(4611)] = 259189, + [SMALL_STATE(4612)] = 259216, + [SMALL_STATE(4613)] = 259243, + [SMALL_STATE(4614)] = 259270, + [SMALL_STATE(4615)] = 259297, + [SMALL_STATE(4616)] = 259324, + [SMALL_STATE(4617)] = 259351, + [SMALL_STATE(4618)] = 259378, + [SMALL_STATE(4619)] = 259405, + [SMALL_STATE(4620)] = 259432, + [SMALL_STATE(4621)] = 259459, + [SMALL_STATE(4622)] = 259486, + [SMALL_STATE(4623)] = 259513, + [SMALL_STATE(4624)] = 259540, + [SMALL_STATE(4625)] = 259567, + [SMALL_STATE(4626)] = 259594, + [SMALL_STATE(4627)] = 259627, + [SMALL_STATE(4628)] = 259654, + [SMALL_STATE(4629)] = 259681, + [SMALL_STATE(4630)] = 259708, + [SMALL_STATE(4631)] = 259751, + [SMALL_STATE(4632)] = 259778, + [SMALL_STATE(4633)] = 259805, + [SMALL_STATE(4634)] = 259832, + [SMALL_STATE(4635)] = 259859, + [SMALL_STATE(4636)] = 259886, + [SMALL_STATE(4637)] = 259913, + [SMALL_STATE(4638)] = 259940, + [SMALL_STATE(4639)] = 259973, + [SMALL_STATE(4640)] = 260000, + [SMALL_STATE(4641)] = 260029, + [SMALL_STATE(4642)] = 260056, + [SMALL_STATE(4643)] = 260083, + [SMALL_STATE(4644)] = 260110, + [SMALL_STATE(4645)] = 260137, + [SMALL_STATE(4646)] = 260164, + [SMALL_STATE(4647)] = 260191, + [SMALL_STATE(4648)] = 260218, + [SMALL_STATE(4649)] = 260245, + [SMALL_STATE(4650)] = 260272, + [SMALL_STATE(4651)] = 260299, + [SMALL_STATE(4652)] = 260326, + [SMALL_STATE(4653)] = 260353, + [SMALL_STATE(4654)] = 260380, + [SMALL_STATE(4655)] = 260419, + [SMALL_STATE(4656)] = 260445, + [SMALL_STATE(4657)] = 260471, + [SMALL_STATE(4658)] = 260497, + [SMALL_STATE(4659)] = 260523, + [SMALL_STATE(4660)] = 260549, + [SMALL_STATE(4661)] = 260575, + [SMALL_STATE(4662)] = 260603, + [SMALL_STATE(4663)] = 260629, + [SMALL_STATE(4664)] = 260655, + [SMALL_STATE(4665)] = 260681, + [SMALL_STATE(4666)] = 260707, + [SMALL_STATE(4667)] = 260733, + [SMALL_STATE(4668)] = 260769, + [SMALL_STATE(4669)] = 260795, + [SMALL_STATE(4670)] = 260833, + [SMALL_STATE(4671)] = 260859, + [SMALL_STATE(4672)] = 260895, + [SMALL_STATE(4673)] = 260921, + [SMALL_STATE(4674)] = 260947, + [SMALL_STATE(4675)] = 260975, + [SMALL_STATE(4676)] = 261001, + [SMALL_STATE(4677)] = 261027, + [SMALL_STATE(4678)] = 261053, + [SMALL_STATE(4679)] = 261079, + [SMALL_STATE(4680)] = 261105, + [SMALL_STATE(4681)] = 261131, + [SMALL_STATE(4682)] = 261157, + [SMALL_STATE(4683)] = 261183, + [SMALL_STATE(4684)] = 261209, + [SMALL_STATE(4685)] = 261235, + [SMALL_STATE(4686)] = 261261, + [SMALL_STATE(4687)] = 261287, + [SMALL_STATE(4688)] = 261313, + [SMALL_STATE(4689)] = 261339, + [SMALL_STATE(4690)] = 261365, + [SMALL_STATE(4691)] = 261391, + [SMALL_STATE(4692)] = 261417, + [SMALL_STATE(4693)] = 261443, + [SMALL_STATE(4694)] = 261479, + [SMALL_STATE(4695)] = 261505, + [SMALL_STATE(4696)] = 261531, + [SMALL_STATE(4697)] = 261557, + [SMALL_STATE(4698)] = 261583, + [SMALL_STATE(4699)] = 261609, + [SMALL_STATE(4700)] = 261635, + [SMALL_STATE(4701)] = 261661, + [SMALL_STATE(4702)] = 261687, + [SMALL_STATE(4703)] = 261713, + [SMALL_STATE(4704)] = 261747, + [SMALL_STATE(4705)] = 261773, + [SMALL_STATE(4706)] = 261799, + [SMALL_STATE(4707)] = 261833, + [SMALL_STATE(4708)] = 261859, + [SMALL_STATE(4709)] = 261885, + [SMALL_STATE(4710)] = 261911, + [SMALL_STATE(4711)] = 261937, + [SMALL_STATE(4712)] = 261963, + [SMALL_STATE(4713)] = 261989, + [SMALL_STATE(4714)] = 262015, + [SMALL_STATE(4715)] = 262041, + [SMALL_STATE(4716)] = 262067, + [SMALL_STATE(4717)] = 262103, + [SMALL_STATE(4718)] = 262129, + [SMALL_STATE(4719)] = 262155, + [SMALL_STATE(4720)] = 262193, + [SMALL_STATE(4721)] = 262219, + [SMALL_STATE(4722)] = 262245, + [SMALL_STATE(4723)] = 262271, + [SMALL_STATE(4724)] = 262297, + [SMALL_STATE(4725)] = 262323, + [SMALL_STATE(4726)] = 262349, + [SMALL_STATE(4727)] = 262375, + [SMALL_STATE(4728)] = 262403, + [SMALL_STATE(4729)] = 262429, + [SMALL_STATE(4730)] = 262455, + [SMALL_STATE(4731)] = 262481, + [SMALL_STATE(4732)] = 262507, + [SMALL_STATE(4733)] = 262533, + [SMALL_STATE(4734)] = 262559, + [SMALL_STATE(4735)] = 262593, + [SMALL_STATE(4736)] = 262619, + [SMALL_STATE(4737)] = 262645, + [SMALL_STATE(4738)] = 262671, + [SMALL_STATE(4739)] = 262697, + [SMALL_STATE(4740)] = 262723, + [SMALL_STATE(4741)] = 262749, + [SMALL_STATE(4742)] = 262779, + [SMALL_STATE(4743)] = 262809, + [SMALL_STATE(4744)] = 262835, + [SMALL_STATE(4745)] = 262871, + [SMALL_STATE(4746)] = 262897, + [SMALL_STATE(4747)] = 262923, + [SMALL_STATE(4748)] = 262949, + [SMALL_STATE(4749)] = 262975, + [SMALL_STATE(4750)] = 263003, + [SMALL_STATE(4751)] = 263029, + [SMALL_STATE(4752)] = 263055, + [SMALL_STATE(4753)] = 263081, + [SMALL_STATE(4754)] = 263107, + [SMALL_STATE(4755)] = 263133, + [SMALL_STATE(4756)] = 263159, + [SMALL_STATE(4757)] = 263185, + [SMALL_STATE(4758)] = 263211, + [SMALL_STATE(4759)] = 263237, + [SMALL_STATE(4760)] = 263263, + [SMALL_STATE(4761)] = 263299, + [SMALL_STATE(4762)] = 263325, + [SMALL_STATE(4763)] = 263351, + [SMALL_STATE(4764)] = 263377, + [SMALL_STATE(4765)] = 263403, + [SMALL_STATE(4766)] = 263429, + [SMALL_STATE(4767)] = 263455, + [SMALL_STATE(4768)] = 263481, + [SMALL_STATE(4769)] = 263507, + [SMALL_STATE(4770)] = 263533, + [SMALL_STATE(4771)] = 263559, + [SMALL_STATE(4772)] = 263585, + [SMALL_STATE(4773)] = 263611, + [SMALL_STATE(4774)] = 263637, + [SMALL_STATE(4775)] = 263669, + [SMALL_STATE(4776)] = 263697, + [SMALL_STATE(4777)] = 263723, + [SMALL_STATE(4778)] = 263749, + [SMALL_STATE(4779)] = 263781, + [SMALL_STATE(4780)] = 263807, + [SMALL_STATE(4781)] = 263833, + [SMALL_STATE(4782)] = 263859, + [SMALL_STATE(4783)] = 263885, + [SMALL_STATE(4784)] = 263911, + [SMALL_STATE(4785)] = 263937, + [SMALL_STATE(4786)] = 263963, + [SMALL_STATE(4787)] = 263989, + [SMALL_STATE(4788)] = 264015, + [SMALL_STATE(4789)] = 264041, + [SMALL_STATE(4790)] = 264067, + [SMALL_STATE(4791)] = 264093, + [SMALL_STATE(4792)] = 264119, + [SMALL_STATE(4793)] = 264145, + [SMALL_STATE(4794)] = 264171, + [SMALL_STATE(4795)] = 264197, + [SMALL_STATE(4796)] = 264223, + [SMALL_STATE(4797)] = 264249, + [SMALL_STATE(4798)] = 264275, + [SMALL_STATE(4799)] = 264301, + [SMALL_STATE(4800)] = 264327, + [SMALL_STATE(4801)] = 264353, + [SMALL_STATE(4802)] = 264379, + [SMALL_STATE(4803)] = 264405, + [SMALL_STATE(4804)] = 264437, + [SMALL_STATE(4805)] = 264463, + [SMALL_STATE(4806)] = 264489, + [SMALL_STATE(4807)] = 264515, + [SMALL_STATE(4808)] = 264541, + [SMALL_STATE(4809)] = 264567, + [SMALL_STATE(4810)] = 264601, + [SMALL_STATE(4811)] = 264627, + [SMALL_STATE(4812)] = 264653, + [SMALL_STATE(4813)] = 264679, + [SMALL_STATE(4814)] = 264705, + [SMALL_STATE(4815)] = 264731, + [SMALL_STATE(4816)] = 264757, + [SMALL_STATE(4817)] = 264783, + [SMALL_STATE(4818)] = 264809, + [SMALL_STATE(4819)] = 264835, + [SMALL_STATE(4820)] = 264861, + [SMALL_STATE(4821)] = 264887, + [SMALL_STATE(4822)] = 264913, + [SMALL_STATE(4823)] = 264949, + [SMALL_STATE(4824)] = 264975, + [SMALL_STATE(4825)] = 265001, + [SMALL_STATE(4826)] = 265027, + [SMALL_STATE(4827)] = 265053, + [SMALL_STATE(4828)] = 265079, + [SMALL_STATE(4829)] = 265105, + [SMALL_STATE(4830)] = 265131, + [SMALL_STATE(4831)] = 265157, + [SMALL_STATE(4832)] = 265183, + [SMALL_STATE(4833)] = 265209, + [SMALL_STATE(4834)] = 265245, + [SMALL_STATE(4835)] = 265271, + [SMALL_STATE(4836)] = 265303, + [SMALL_STATE(4837)] = 265329, + [SMALL_STATE(4838)] = 265363, + [SMALL_STATE(4839)] = 265389, + [SMALL_STATE(4840)] = 265425, + [SMALL_STATE(4841)] = 265451, + [SMALL_STATE(4842)] = 265477, + [SMALL_STATE(4843)] = 265509, + [SMALL_STATE(4844)] = 265535, + [SMALL_STATE(4845)] = 265561, + [SMALL_STATE(4846)] = 265587, + [SMALL_STATE(4847)] = 265613, + [SMALL_STATE(4848)] = 265639, + [SMALL_STATE(4849)] = 265665, + [SMALL_STATE(4850)] = 265691, + [SMALL_STATE(4851)] = 265717, + [SMALL_STATE(4852)] = 265743, + [SMALL_STATE(4853)] = 265769, + [SMALL_STATE(4854)] = 265795, + [SMALL_STATE(4855)] = 265821, + [SMALL_STATE(4856)] = 265847, + [SMALL_STATE(4857)] = 265873, + [SMALL_STATE(4858)] = 265899, + [SMALL_STATE(4859)] = 265925, + [SMALL_STATE(4860)] = 265951, + [SMALL_STATE(4861)] = 265977, + [SMALL_STATE(4862)] = 266003, + [SMALL_STATE(4863)] = 266031, + [SMALL_STATE(4864)] = 266057, + [SMALL_STATE(4865)] = 266083, + [SMALL_STATE(4866)] = 266109, + [SMALL_STATE(4867)] = 266135, + [SMALL_STATE(4868)] = 266161, + [SMALL_STATE(4869)] = 266197, + [SMALL_STATE(4870)] = 266223, + [SMALL_STATE(4871)] = 266249, + [SMALL_STATE(4872)] = 266275, + [SMALL_STATE(4873)] = 266301, + [SMALL_STATE(4874)] = 266327, + [SMALL_STATE(4875)] = 266353, + [SMALL_STATE(4876)] = 266379, + [SMALL_STATE(4877)] = 266405, + [SMALL_STATE(4878)] = 266431, + [SMALL_STATE(4879)] = 266457, + [SMALL_STATE(4880)] = 266483, + [SMALL_STATE(4881)] = 266509, + [SMALL_STATE(4882)] = 266535, + [SMALL_STATE(4883)] = 266561, + [SMALL_STATE(4884)] = 266594, + [SMALL_STATE(4885)] = 266619, + [SMALL_STATE(4886)] = 266644, + [SMALL_STATE(4887)] = 266669, + [SMALL_STATE(4888)] = 266702, + [SMALL_STATE(4889)] = 266727, + [SMALL_STATE(4890)] = 266752, + [SMALL_STATE(4891)] = 266785, + [SMALL_STATE(4892)] = 266810, + [SMALL_STATE(4893)] = 266835, + [SMALL_STATE(4894)] = 266860, + [SMALL_STATE(4895)] = 266885, + [SMALL_STATE(4896)] = 266910, + [SMALL_STATE(4897)] = 266935, + [SMALL_STATE(4898)] = 266968, + [SMALL_STATE(4899)] = 267001, + [SMALL_STATE(4900)] = 267032, + [SMALL_STATE(4901)] = 267057, + [SMALL_STATE(4902)] = 267082, + [SMALL_STATE(4903)] = 267107, + [SMALL_STATE(4904)] = 267138, + [SMALL_STATE(4905)] = 267163, + [SMALL_STATE(4906)] = 267188, + [SMALL_STATE(4907)] = 267213, + [SMALL_STATE(4908)] = 267238, + [SMALL_STATE(4909)] = 267263, + [SMALL_STATE(4910)] = 267296, + [SMALL_STATE(4911)] = 267329, + [SMALL_STATE(4912)] = 267360, + [SMALL_STATE(4913)] = 267393, + [SMALL_STATE(4914)] = 267426, + [SMALL_STATE(4915)] = 267459, + [SMALL_STATE(4916)] = 267492, + [SMALL_STATE(4917)] = 267531, + [SMALL_STATE(4918)] = 267556, + [SMALL_STATE(4919)] = 267581, + [SMALL_STATE(4920)] = 267606, + [SMALL_STATE(4921)] = 267631, + [SMALL_STATE(4922)] = 267664, + [SMALL_STATE(4923)] = 267689, + [SMALL_STATE(4924)] = 267716, + [SMALL_STATE(4925)] = 267749, + [SMALL_STATE(4926)] = 267782, + [SMALL_STATE(4927)] = 267813, + [SMALL_STATE(4928)] = 267840, + [SMALL_STATE(4929)] = 267867, + [SMALL_STATE(4930)] = 267892, + [SMALL_STATE(4931)] = 267923, + [SMALL_STATE(4932)] = 267956, + [SMALL_STATE(4933)] = 267989, + [SMALL_STATE(4934)] = 268028, + [SMALL_STATE(4935)] = 268061, + [SMALL_STATE(4936)] = 268094, + [SMALL_STATE(4937)] = 268125, + [SMALL_STATE(4938)] = 268156, + [SMALL_STATE(4939)] = 268189, + [SMALL_STATE(4940)] = 268222, + [SMALL_STATE(4941)] = 268247, + [SMALL_STATE(4942)] = 268280, + [SMALL_STATE(4943)] = 268305, + [SMALL_STATE(4944)] = 268332, + [SMALL_STATE(4945)] = 268363, + [SMALL_STATE(4946)] = 268396, + [SMALL_STATE(4947)] = 268423, + [SMALL_STATE(4948)] = 268456, + [SMALL_STATE(4949)] = 268489, + [SMALL_STATE(4950)] = 268516, + [SMALL_STATE(4951)] = 268549, + [SMALL_STATE(4952)] = 268580, + [SMALL_STATE(4953)] = 268605, + [SMALL_STATE(4954)] = 268638, + [SMALL_STATE(4955)] = 268663, + [SMALL_STATE(4956)] = 268688, + [SMALL_STATE(4957)] = 268721, + [SMALL_STATE(4958)] = 268760, + [SMALL_STATE(4959)] = 268784, + [SMALL_STATE(4960)] = 268820, + [SMALL_STATE(4961)] = 268848, + [SMALL_STATE(4962)] = 268872, + [SMALL_STATE(4963)] = 268902, + [SMALL_STATE(4964)] = 268932, + [SMALL_STATE(4965)] = 268962, + [SMALL_STATE(4966)] = 268986, + [SMALL_STATE(4967)] = 269010, + [SMALL_STATE(4968)] = 269040, + [SMALL_STATE(4969)] = 269076, + [SMALL_STATE(4970)] = 269106, + [SMALL_STATE(4971)] = 269130, + [SMALL_STATE(4972)] = 269166, + [SMALL_STATE(4973)] = 269202, + [SMALL_STATE(4974)] = 269238, + [SMALL_STATE(4975)] = 269274, + [SMALL_STATE(4976)] = 269298, + [SMALL_STATE(4977)] = 269328, + [SMALL_STATE(4978)] = 269358, + [SMALL_STATE(4979)] = 269388, + [SMALL_STATE(4980)] = 269412, + [SMALL_STATE(4981)] = 269442, + [SMALL_STATE(4982)] = 269466, + [SMALL_STATE(4983)] = 269496, + [SMALL_STATE(4984)] = 269532, + [SMALL_STATE(4985)] = 269562, + [SMALL_STATE(4986)] = 269596, + [SMALL_STATE(4987)] = 269626, + [SMALL_STATE(4988)] = 269660, + [SMALL_STATE(4989)] = 269694, + [SMALL_STATE(4990)] = 269724, + [SMALL_STATE(4991)] = 269748, + [SMALL_STATE(4992)] = 269784, + [SMALL_STATE(4993)] = 269820, + [SMALL_STATE(4994)] = 269856, + [SMALL_STATE(4995)] = 269892, + [SMALL_STATE(4996)] = 269922, + [SMALL_STATE(4997)] = 269958, + [SMALL_STATE(4998)] = 269988, + [SMALL_STATE(4999)] = 270024, + [SMALL_STATE(5000)] = 270060, + [SMALL_STATE(5001)] = 270096, + [SMALL_STATE(5002)] = 270132, + [SMALL_STATE(5003)] = 270160, + [SMALL_STATE(5004)] = 270196, + [SMALL_STATE(5005)] = 270226, + [SMALL_STATE(5006)] = 270250, + [SMALL_STATE(5007)] = 270286, + [SMALL_STATE(5008)] = 270310, + [SMALL_STATE(5009)] = 270334, + [SMALL_STATE(5010)] = 270370, + [SMALL_STATE(5011)] = 270406, + [SMALL_STATE(5012)] = 270442, + [SMALL_STATE(5013)] = 270478, + [SMALL_STATE(5014)] = 270502, + [SMALL_STATE(5015)] = 270532, + [SMALL_STATE(5016)] = 270568, + [SMALL_STATE(5017)] = 270604, + [SMALL_STATE(5018)] = 270628, + [SMALL_STATE(5019)] = 270652, + [SMALL_STATE(5020)] = 270688, + [SMALL_STATE(5021)] = 270724, + [SMALL_STATE(5022)] = 270754, + [SMALL_STATE(5023)] = 270778, + [SMALL_STATE(5024)] = 270802, + [SMALL_STATE(5025)] = 270838, + [SMALL_STATE(5026)] = 270862, + [SMALL_STATE(5027)] = 270886, + [SMALL_STATE(5028)] = 270910, + [SMALL_STATE(5029)] = 270934, + [SMALL_STATE(5030)] = 270958, + [SMALL_STATE(5031)] = 270982, + [SMALL_STATE(5032)] = 271006, + [SMALL_STATE(5033)] = 271030, + [SMALL_STATE(5034)] = 271060, + [SMALL_STATE(5035)] = 271094, + [SMALL_STATE(5036)] = 271118, + [SMALL_STATE(5037)] = 271154, + [SMALL_STATE(5038)] = 271190, + [SMALL_STATE(5039)] = 271214, + [SMALL_STATE(5040)] = 271248, + [SMALL_STATE(5041)] = 271284, + [SMALL_STATE(5042)] = 271314, + [SMALL_STATE(5043)] = 271342, + [SMALL_STATE(5044)] = 271366, + [SMALL_STATE(5045)] = 271402, + [SMALL_STATE(5046)] = 271438, + [SMALL_STATE(5047)] = 271462, + [SMALL_STATE(5048)] = 271498, + [SMALL_STATE(5049)] = 271522, + [SMALL_STATE(5050)] = 271552, + [SMALL_STATE(5051)] = 271580, + [SMALL_STATE(5052)] = 271610, + [SMALL_STATE(5053)] = 271634, + [SMALL_STATE(5054)] = 271658, + [SMALL_STATE(5055)] = 271694, + [SMALL_STATE(5056)] = 271724, + [SMALL_STATE(5057)] = 271748, + [SMALL_STATE(5058)] = 271772, + [SMALL_STATE(5059)] = 271808, + [SMALL_STATE(5060)] = 271844, + [SMALL_STATE(5061)] = 271874, + [SMALL_STATE(5062)] = 271904, + [SMALL_STATE(5063)] = 271928, + [SMALL_STATE(5064)] = 271952, + [SMALL_STATE(5065)] = 271982, + [SMALL_STATE(5066)] = 272018, + [SMALL_STATE(5067)] = 272042, + [SMALL_STATE(5068)] = 272078, + [SMALL_STATE(5069)] = 272114, + [SMALL_STATE(5070)] = 272144, + [SMALL_STATE(5071)] = 272180, + [SMALL_STATE(5072)] = 272213, + [SMALL_STATE(5073)] = 272240, + [SMALL_STATE(5074)] = 272267, + [SMALL_STATE(5075)] = 272294, + [SMALL_STATE(5076)] = 272321, + [SMALL_STATE(5077)] = 272346, + [SMALL_STATE(5078)] = 272373, + [SMALL_STATE(5079)] = 272400, + [SMALL_STATE(5080)] = 272427, + [SMALL_STATE(5081)] = 272454, + [SMALL_STATE(5082)] = 272481, + [SMALL_STATE(5083)] = 272506, + [SMALL_STATE(5084)] = 272539, + [SMALL_STATE(5085)] = 272566, + [SMALL_STATE(5086)] = 272593, + [SMALL_STATE(5087)] = 272620, + [SMALL_STATE(5088)] = 272647, + [SMALL_STATE(5089)] = 272674, + [SMALL_STATE(5090)] = 272701, + [SMALL_STATE(5091)] = 272734, + [SMALL_STATE(5092)] = 272761, + [SMALL_STATE(5093)] = 272788, + [SMALL_STATE(5094)] = 272811, + [SMALL_STATE(5095)] = 272838, + [SMALL_STATE(5096)] = 272871, + [SMALL_STATE(5097)] = 272898, + [SMALL_STATE(5098)] = 272925, + [SMALL_STATE(5099)] = 272952, + [SMALL_STATE(5100)] = 272979, + [SMALL_STATE(5101)] = 273004, + [SMALL_STATE(5102)] = 273031, + [SMALL_STATE(5103)] = 273058, + [SMALL_STATE(5104)] = 273085, + [SMALL_STATE(5105)] = 273112, + [SMALL_STATE(5106)] = 273139, + [SMALL_STATE(5107)] = 273166, + [SMALL_STATE(5108)] = 273195, + [SMALL_STATE(5109)] = 273222, + [SMALL_STATE(5110)] = 273245, + [SMALL_STATE(5111)] = 273272, + [SMALL_STATE(5112)] = 273299, + [SMALL_STATE(5113)] = 273326, + [SMALL_STATE(5114)] = 273353, + [SMALL_STATE(5115)] = 273380, + [SMALL_STATE(5116)] = 273407, + [SMALL_STATE(5117)] = 273434, + [SMALL_STATE(5118)] = 273465, + [SMALL_STATE(5119)] = 273492, + [SMALL_STATE(5120)] = 273519, + [SMALL_STATE(5121)] = 273546, + [SMALL_STATE(5122)] = 273573, + [SMALL_STATE(5123)] = 273600, + [SMALL_STATE(5124)] = 273627, + [SMALL_STATE(5125)] = 273654, + [SMALL_STATE(5126)] = 273681, + [SMALL_STATE(5127)] = 273708, + [SMALL_STATE(5128)] = 273735, + [SMALL_STATE(5129)] = 273762, + [SMALL_STATE(5130)] = 273791, + [SMALL_STATE(5131)] = 273818, + [SMALL_STATE(5132)] = 273849, + [SMALL_STATE(5133)] = 273882, + [SMALL_STATE(5134)] = 273909, + [SMALL_STATE(5135)] = 273936, + [SMALL_STATE(5136)] = 273963, + [SMALL_STATE(5137)] = 273990, + [SMALL_STATE(5138)] = 274019, + [SMALL_STATE(5139)] = 274050, + [SMALL_STATE(5140)] = 274077, + [SMALL_STATE(5141)] = 274110, + [SMALL_STATE(5142)] = 274137, + [SMALL_STATE(5143)] = 274164, + [SMALL_STATE(5144)] = 274191, + [SMALL_STATE(5145)] = 274218, + [SMALL_STATE(5146)] = 274245, + [SMALL_STATE(5147)] = 274272, + [SMALL_STATE(5148)] = 274299, + [SMALL_STATE(5149)] = 274326, + [SMALL_STATE(5150)] = 274353, + [SMALL_STATE(5151)] = 274380, + [SMALL_STATE(5152)] = 274411, + [SMALL_STATE(5153)] = 274438, + [SMALL_STATE(5154)] = 274465, + [SMALL_STATE(5155)] = 274492, + [SMALL_STATE(5156)] = 274519, + [SMALL_STATE(5157)] = 274546, + [SMALL_STATE(5158)] = 274573, + [SMALL_STATE(5159)] = 274600, + [SMALL_STATE(5160)] = 274627, + [SMALL_STATE(5161)] = 274654, + [SMALL_STATE(5162)] = 274678, + [SMALL_STATE(5163)] = 274704, + [SMALL_STATE(5164)] = 274728, + [SMALL_STATE(5165)] = 274752, + [SMALL_STATE(5166)] = 274782, + [SMALL_STATE(5167)] = 274806, + [SMALL_STATE(5168)] = 274830, + [SMALL_STATE(5169)] = 274858, + [SMALL_STATE(5170)] = 274884, + [SMALL_STATE(5171)] = 274908, + [SMALL_STATE(5172)] = 274932, + [SMALL_STATE(5173)] = 274956, + [SMALL_STATE(5174)] = 274978, + [SMALL_STATE(5175)] = 275002, + [SMALL_STATE(5176)] = 275032, + [SMALL_STATE(5177)] = 275056, + [SMALL_STATE(5178)] = 275080, + [SMALL_STATE(5179)] = 275110, + [SMALL_STATE(5180)] = 275136, + [SMALL_STATE(5181)] = 275166, + [SMALL_STATE(5182)] = 275190, + [SMALL_STATE(5183)] = 275218, + [SMALL_STATE(5184)] = 275242, + [SMALL_STATE(5185)] = 275268, + [SMALL_STATE(5186)] = 275298, + [SMALL_STATE(5187)] = 275322, + [SMALL_STATE(5188)] = 275352, + [SMALL_STATE(5189)] = 275376, + [SMALL_STATE(5190)] = 275400, + [SMALL_STATE(5191)] = 275424, + [SMALL_STATE(5192)] = 275446, + [SMALL_STATE(5193)] = 275470, + [SMALL_STATE(5194)] = 275494, + [SMALL_STATE(5195)] = 275518, + [SMALL_STATE(5196)] = 275548, + [SMALL_STATE(5197)] = 275572, + [SMALL_STATE(5198)] = 275596, + [SMALL_STATE(5199)] = 275618, + [SMALL_STATE(5200)] = 275648, + [SMALL_STATE(5201)] = 275678, + [SMALL_STATE(5202)] = 275702, + [SMALL_STATE(5203)] = 275724, + [SMALL_STATE(5204)] = 275754, + [SMALL_STATE(5205)] = 275784, + [SMALL_STATE(5206)] = 275808, + [SMALL_STATE(5207)] = 275832, + [SMALL_STATE(5208)] = 275858, + [SMALL_STATE(5209)] = 275882, + [SMALL_STATE(5210)] = 275912, + [SMALL_STATE(5211)] = 275936, + [SMALL_STATE(5212)] = 275960, + [SMALL_STATE(5213)] = 275984, + [SMALL_STATE(5214)] = 276008, + [SMALL_STATE(5215)] = 276030, + [SMALL_STATE(5216)] = 276054, + [SMALL_STATE(5217)] = 276078, + [SMALL_STATE(5218)] = 276102, + [SMALL_STATE(5219)] = 276126, + [SMALL_STATE(5220)] = 276150, + [SMALL_STATE(5221)] = 276178, + [SMALL_STATE(5222)] = 276202, + [SMALL_STATE(5223)] = 276226, + [SMALL_STATE(5224)] = 276250, + [SMALL_STATE(5225)] = 276274, + [SMALL_STATE(5226)] = 276298, + [SMALL_STATE(5227)] = 276322, + [SMALL_STATE(5228)] = 276344, + [SMALL_STATE(5229)] = 276374, + [SMALL_STATE(5230)] = 276398, + [SMALL_STATE(5231)] = 276422, + [SMALL_STATE(5232)] = 276452, + [SMALL_STATE(5233)] = 276476, + [SMALL_STATE(5234)] = 276500, + [SMALL_STATE(5235)] = 276524, + [SMALL_STATE(5236)] = 276554, + [SMALL_STATE(5237)] = 276578, + [SMALL_STATE(5238)] = 276602, + [SMALL_STATE(5239)] = 276626, + [SMALL_STATE(5240)] = 276648, + [SMALL_STATE(5241)] = 276672, + [SMALL_STATE(5242)] = 276694, + [SMALL_STATE(5243)] = 276718, + [SMALL_STATE(5244)] = 276744, + [SMALL_STATE(5245)] = 276768, + [SMALL_STATE(5246)] = 276792, + [SMALL_STATE(5247)] = 276816, + [SMALL_STATE(5248)] = 276840, + [SMALL_STATE(5249)] = 276864, + [SMALL_STATE(5250)] = 276888, + [SMALL_STATE(5251)] = 276912, + [SMALL_STATE(5252)] = 276936, + [SMALL_STATE(5253)] = 276960, + [SMALL_STATE(5254)] = 276984, + [SMALL_STATE(5255)] = 277008, + [SMALL_STATE(5256)] = 277038, + [SMALL_STATE(5257)] = 277062, + [SMALL_STATE(5258)] = 277086, + [SMALL_STATE(5259)] = 277116, + [SMALL_STATE(5260)] = 277140, + [SMALL_STATE(5261)] = 277164, + [SMALL_STATE(5262)] = 277188, + [SMALL_STATE(5263)] = 277212, + [SMALL_STATE(5264)] = 277236, + [SMALL_STATE(5265)] = 277260, + [SMALL_STATE(5266)] = 277284, + [SMALL_STATE(5267)] = 277308, + [SMALL_STATE(5268)] = 277332, + [SMALL_STATE(5269)] = 277358, + [SMALL_STATE(5270)] = 277388, + [SMALL_STATE(5271)] = 277418, + [SMALL_STATE(5272)] = 277442, + [SMALL_STATE(5273)] = 277466, + [SMALL_STATE(5274)] = 277488, + [SMALL_STATE(5275)] = 277512, + [SMALL_STATE(5276)] = 277538, + [SMALL_STATE(5277)] = 277564, + [SMALL_STATE(5278)] = 277588, + [SMALL_STATE(5279)] = 277612, + [SMALL_STATE(5280)] = 277642, + [SMALL_STATE(5281)] = 277666, + [SMALL_STATE(5282)] = 277688, + [SMALL_STATE(5283)] = 277710, + [SMALL_STATE(5284)] = 277734, + [SMALL_STATE(5285)] = 277764, + [SMALL_STATE(5286)] = 277794, + [SMALL_STATE(5287)] = 277824, + [SMALL_STATE(5288)] = 277848, + [SMALL_STATE(5289)] = 277870, + [SMALL_STATE(5290)] = 277894, + [SMALL_STATE(5291)] = 277924, + [SMALL_STATE(5292)] = 277948, + [SMALL_STATE(5293)] = 277978, + [SMALL_STATE(5294)] = 278008, + [SMALL_STATE(5295)] = 278032, + [SMALL_STATE(5296)] = 278054, + [SMALL_STATE(5297)] = 278084, + [SMALL_STATE(5298)] = 278114, + [SMALL_STATE(5299)] = 278138, + [SMALL_STATE(5300)] = 278164, + [SMALL_STATE(5301)] = 278194, + [SMALL_STATE(5302)] = 278218, + [SMALL_STATE(5303)] = 278242, + [SMALL_STATE(5304)] = 278272, + [SMALL_STATE(5305)] = 278302, + [SMALL_STATE(5306)] = 278332, + [SMALL_STATE(5307)] = 278362, + [SMALL_STATE(5308)] = 278386, + [SMALL_STATE(5309)] = 278416, + [SMALL_STATE(5310)] = 278446, + [SMALL_STATE(5311)] = 278476, + [SMALL_STATE(5312)] = 278506, + [SMALL_STATE(5313)] = 278530, + [SMALL_STATE(5314)] = 278554, + [SMALL_STATE(5315)] = 278580, + [SMALL_STATE(5316)] = 278604, + [SMALL_STATE(5317)] = 278628, + [SMALL_STATE(5318)] = 278658, + [SMALL_STATE(5319)] = 278682, + [SMALL_STATE(5320)] = 278704, + [SMALL_STATE(5321)] = 278728, + [SMALL_STATE(5322)] = 278758, + [SMALL_STATE(5323)] = 278788, + [SMALL_STATE(5324)] = 278818, + [SMALL_STATE(5325)] = 278848, + [SMALL_STATE(5326)] = 278878, + [SMALL_STATE(5327)] = 278908, + [SMALL_STATE(5328)] = 278932, + [SMALL_STATE(5329)] = 278962, + [SMALL_STATE(5330)] = 278992, + [SMALL_STATE(5331)] = 279014, + [SMALL_STATE(5332)] = 279042, + [SMALL_STATE(5333)] = 279072, + [SMALL_STATE(5334)] = 279102, + [SMALL_STATE(5335)] = 279128, + [SMALL_STATE(5336)] = 279152, + [SMALL_STATE(5337)] = 279178, + [SMALL_STATE(5338)] = 279202, + [SMALL_STATE(5339)] = 279232, + [SMALL_STATE(5340)] = 279262, + [SMALL_STATE(5341)] = 279284, + [SMALL_STATE(5342)] = 279306, + [SMALL_STATE(5343)] = 279330, + [SMALL_STATE(5344)] = 279354, + [SMALL_STATE(5345)] = 279375, + [SMALL_STATE(5346)] = 279396, + [SMALL_STATE(5347)] = 279421, + [SMALL_STATE(5348)] = 279448, + [SMALL_STATE(5349)] = 279475, + [SMALL_STATE(5350)] = 279502, + [SMALL_STATE(5351)] = 279529, + [SMALL_STATE(5352)] = 279550, + [SMALL_STATE(5353)] = 279577, + [SMALL_STATE(5354)] = 279604, + [SMALL_STATE(5355)] = 279627, + [SMALL_STATE(5356)] = 279648, + [SMALL_STATE(5357)] = 279675, + [SMALL_STATE(5358)] = 279702, + [SMALL_STATE(5359)] = 279729, + [SMALL_STATE(5360)] = 279752, + [SMALL_STATE(5361)] = 279779, + [SMALL_STATE(5362)] = 279806, + [SMALL_STATE(5363)] = 279833, + [SMALL_STATE(5364)] = 279860, + [SMALL_STATE(5365)] = 279887, + [SMALL_STATE(5366)] = 279912, + [SMALL_STATE(5367)] = 279939, + [SMALL_STATE(5368)] = 279966, + [SMALL_STATE(5369)] = 279993, + [SMALL_STATE(5370)] = 280020, + [SMALL_STATE(5371)] = 280047, + [SMALL_STATE(5372)] = 280072, + [SMALL_STATE(5373)] = 280093, + [SMALL_STATE(5374)] = 280120, + [SMALL_STATE(5375)] = 280147, + [SMALL_STATE(5376)] = 280174, + [SMALL_STATE(5377)] = 280195, + [SMALL_STATE(5378)] = 280222, + [SMALL_STATE(5379)] = 280249, + [SMALL_STATE(5380)] = 280276, + [SMALL_STATE(5381)] = 280303, + [SMALL_STATE(5382)] = 280324, + [SMALL_STATE(5383)] = 280345, + [SMALL_STATE(5384)] = 280370, + [SMALL_STATE(5385)] = 280397, + [SMALL_STATE(5386)] = 280418, + [SMALL_STATE(5387)] = 280445, + [SMALL_STATE(5388)] = 280472, + [SMALL_STATE(5389)] = 280499, + [SMALL_STATE(5390)] = 280526, + [SMALL_STATE(5391)] = 280547, + [SMALL_STATE(5392)] = 280574, + [SMALL_STATE(5393)] = 280601, + [SMALL_STATE(5394)] = 280628, + [SMALL_STATE(5395)] = 280655, + [SMALL_STATE(5396)] = 280682, + [SMALL_STATE(5397)] = 280703, + [SMALL_STATE(5398)] = 280730, + [SMALL_STATE(5399)] = 280757, + [SMALL_STATE(5400)] = 280784, + [SMALL_STATE(5401)] = 280811, + [SMALL_STATE(5402)] = 280838, + [SMALL_STATE(5403)] = 280865, + [SMALL_STATE(5404)] = 280886, + [SMALL_STATE(5405)] = 280907, + [SMALL_STATE(5406)] = 280928, + [SMALL_STATE(5407)] = 280955, + [SMALL_STATE(5408)] = 280976, + [SMALL_STATE(5409)] = 280997, + [SMALL_STATE(5410)] = 281018, + [SMALL_STATE(5411)] = 281039, + [SMALL_STATE(5412)] = 281066, + [SMALL_STATE(5413)] = 281093, + [SMALL_STATE(5414)] = 281120, + [SMALL_STATE(5415)] = 281147, + [SMALL_STATE(5416)] = 281174, + [SMALL_STATE(5417)] = 281201, + [SMALL_STATE(5418)] = 281222, + [SMALL_STATE(5419)] = 281249, + [SMALL_STATE(5420)] = 281276, + [SMALL_STATE(5421)] = 281297, + [SMALL_STATE(5422)] = 281324, + [SMALL_STATE(5423)] = 281351, + [SMALL_STATE(5424)] = 281372, + [SMALL_STATE(5425)] = 281393, + [SMALL_STATE(5426)] = 281420, + [SMALL_STATE(5427)] = 281447, + [SMALL_STATE(5428)] = 281474, + [SMALL_STATE(5429)] = 281501, + [SMALL_STATE(5430)] = 281528, + [SMALL_STATE(5431)] = 281553, + [SMALL_STATE(5432)] = 281578, + [SMALL_STATE(5433)] = 281605, + [SMALL_STATE(5434)] = 281626, + [SMALL_STATE(5435)] = 281647, + [SMALL_STATE(5436)] = 281668, + [SMALL_STATE(5437)] = 281689, + [SMALL_STATE(5438)] = 281710, + [SMALL_STATE(5439)] = 281737, + [SMALL_STATE(5440)] = 281758, + [SMALL_STATE(5441)] = 281785, + [SMALL_STATE(5442)] = 281806, + [SMALL_STATE(5443)] = 281831, + [SMALL_STATE(5444)] = 281852, + [SMALL_STATE(5445)] = 281879, + [SMALL_STATE(5446)] = 281906, + [SMALL_STATE(5447)] = 281933, + [SMALL_STATE(5448)] = 281960, + [SMALL_STATE(5449)] = 281987, + [SMALL_STATE(5450)] = 282008, + [SMALL_STATE(5451)] = 282035, + [SMALL_STATE(5452)] = 282062, + [SMALL_STATE(5453)] = 282089, + [SMALL_STATE(5454)] = 282116, + [SMALL_STATE(5455)] = 282143, + [SMALL_STATE(5456)] = 282170, + [SMALL_STATE(5457)] = 282197, + [SMALL_STATE(5458)] = 282224, + [SMALL_STATE(5459)] = 282249, + [SMALL_STATE(5460)] = 282276, + [SMALL_STATE(5461)] = 282303, + [SMALL_STATE(5462)] = 282324, + [SMALL_STATE(5463)] = 282347, + [SMALL_STATE(5464)] = 282374, + [SMALL_STATE(5465)] = 282395, + [SMALL_STATE(5466)] = 282416, + [SMALL_STATE(5467)] = 282443, + [SMALL_STATE(5468)] = 282470, + [SMALL_STATE(5469)] = 282497, + [SMALL_STATE(5470)] = 282524, + [SMALL_STATE(5471)] = 282551, + [SMALL_STATE(5472)] = 282576, + [SMALL_STATE(5473)] = 282597, + [SMALL_STATE(5474)] = 282624, + [SMALL_STATE(5475)] = 282645, + [SMALL_STATE(5476)] = 282672, + [SMALL_STATE(5477)] = 282693, + [SMALL_STATE(5478)] = 282720, + [SMALL_STATE(5479)] = 282741, + [SMALL_STATE(5480)] = 282768, + [SMALL_STATE(5481)] = 282789, + [SMALL_STATE(5482)] = 282816, + [SMALL_STATE(5483)] = 282843, + [SMALL_STATE(5484)] = 282868, + [SMALL_STATE(5485)] = 282895, + [SMALL_STATE(5486)] = 282922, + [SMALL_STATE(5487)] = 282949, + [SMALL_STATE(5488)] = 282976, + [SMALL_STATE(5489)] = 283003, + [SMALL_STATE(5490)] = 283030, + [SMALL_STATE(5491)] = 283053, + [SMALL_STATE(5492)] = 283080, + [SMALL_STATE(5493)] = 283107, + [SMALL_STATE(5494)] = 283134, + [SMALL_STATE(5495)] = 283161, + [SMALL_STATE(5496)] = 283186, + [SMALL_STATE(5497)] = 283207, + [SMALL_STATE(5498)] = 283234, + [SMALL_STATE(5499)] = 283255, + [SMALL_STATE(5500)] = 283282, + [SMALL_STATE(5501)] = 283309, + [SMALL_STATE(5502)] = 283330, + [SMALL_STATE(5503)] = 283357, + [SMALL_STATE(5504)] = 283378, + [SMALL_STATE(5505)] = 283405, + [SMALL_STATE(5506)] = 283426, + [SMALL_STATE(5507)] = 283453, + [SMALL_STATE(5508)] = 283480, + [SMALL_STATE(5509)] = 283501, + [SMALL_STATE(5510)] = 283522, + [SMALL_STATE(5511)] = 283549, + [SMALL_STATE(5512)] = 283576, + [SMALL_STATE(5513)] = 283601, + [SMALL_STATE(5514)] = 283628, + [SMALL_STATE(5515)] = 283649, + [SMALL_STATE(5516)] = 283676, + [SMALL_STATE(5517)] = 283703, + [SMALL_STATE(5518)] = 283728, + [SMALL_STATE(5519)] = 283753, + [SMALL_STATE(5520)] = 283780, + [SMALL_STATE(5521)] = 283807, + [SMALL_STATE(5522)] = 283834, + [SMALL_STATE(5523)] = 283855, + [SMALL_STATE(5524)] = 283882, + [SMALL_STATE(5525)] = 283909, + [SMALL_STATE(5526)] = 283936, + [SMALL_STATE(5527)] = 283963, + [SMALL_STATE(5528)] = 283990, + [SMALL_STATE(5529)] = 284011, + [SMALL_STATE(5530)] = 284034, + [SMALL_STATE(5531)] = 284055, + [SMALL_STATE(5532)] = 284076, + [SMALL_STATE(5533)] = 284103, + [SMALL_STATE(5534)] = 284126, + [SMALL_STATE(5535)] = 284153, + [SMALL_STATE(5536)] = 284174, + [SMALL_STATE(5537)] = 284201, + [SMALL_STATE(5538)] = 284228, + [SMALL_STATE(5539)] = 284255, + [SMALL_STATE(5540)] = 284276, + [SMALL_STATE(5541)] = 284303, + [SMALL_STATE(5542)] = 284330, + [SMALL_STATE(5543)] = 284357, + [SMALL_STATE(5544)] = 284382, + [SMALL_STATE(5545)] = 284403, + [SMALL_STATE(5546)] = 284424, + [SMALL_STATE(5547)] = 284445, + [SMALL_STATE(5548)] = 284466, + [SMALL_STATE(5549)] = 284487, + [SMALL_STATE(5550)] = 284514, + [SMALL_STATE(5551)] = 284541, + [SMALL_STATE(5552)] = 284568, + [SMALL_STATE(5553)] = 284595, + [SMALL_STATE(5554)] = 284616, + [SMALL_STATE(5555)] = 284643, + [SMALL_STATE(5556)] = 284670, + [SMALL_STATE(5557)] = 284695, + [SMALL_STATE(5558)] = 284722, + [SMALL_STATE(5559)] = 284747, + [SMALL_STATE(5560)] = 284768, + [SMALL_STATE(5561)] = 284789, + [SMALL_STATE(5562)] = 284810, + [SMALL_STATE(5563)] = 284835, + [SMALL_STATE(5564)] = 284858, + [SMALL_STATE(5565)] = 284879, + [SMALL_STATE(5566)] = 284906, + [SMALL_STATE(5567)] = 284933, + [SMALL_STATE(5568)] = 284957, + [SMALL_STATE(5569)] = 284981, + [SMALL_STATE(5570)] = 285005, + [SMALL_STATE(5571)] = 285029, + [SMALL_STATE(5572)] = 285053, + [SMALL_STATE(5573)] = 285077, + [SMALL_STATE(5574)] = 285101, + [SMALL_STATE(5575)] = 285125, + [SMALL_STATE(5576)] = 285149, + [SMALL_STATE(5577)] = 285173, + [SMALL_STATE(5578)] = 285197, + [SMALL_STATE(5579)] = 285221, + [SMALL_STATE(5580)] = 285245, + [SMALL_STATE(5581)] = 285269, + [SMALL_STATE(5582)] = 285293, + [SMALL_STATE(5583)] = 285317, + [SMALL_STATE(5584)] = 285341, + [SMALL_STATE(5585)] = 285363, + [SMALL_STATE(5586)] = 285383, + [SMALL_STATE(5587)] = 285407, + [SMALL_STATE(5588)] = 285427, + [SMALL_STATE(5589)] = 285451, + [SMALL_STATE(5590)] = 285475, + [SMALL_STATE(5591)] = 285495, + [SMALL_STATE(5592)] = 285515, + [SMALL_STATE(5593)] = 285539, + [SMALL_STATE(5594)] = 285563, + [SMALL_STATE(5595)] = 285587, + [SMALL_STATE(5596)] = 285611, + [SMALL_STATE(5597)] = 285635, + [SMALL_STATE(5598)] = 285655, + [SMALL_STATE(5599)] = 285679, + [SMALL_STATE(5600)] = 285703, + [SMALL_STATE(5601)] = 285727, + [SMALL_STATE(5602)] = 285751, + [SMALL_STATE(5603)] = 285775, + [SMALL_STATE(5604)] = 285799, + [SMALL_STATE(5605)] = 285823, + [SMALL_STATE(5606)] = 285847, + [SMALL_STATE(5607)] = 285867, + [SMALL_STATE(5608)] = 285887, + [SMALL_STATE(5609)] = 285911, + [SMALL_STATE(5610)] = 285933, + [SMALL_STATE(5611)] = 285957, + [SMALL_STATE(5612)] = 285981, + [SMALL_STATE(5613)] = 286005, + [SMALL_STATE(5614)] = 286025, + [SMALL_STATE(5615)] = 286045, + [SMALL_STATE(5616)] = 286069, + [SMALL_STATE(5617)] = 286089, + [SMALL_STATE(5618)] = 286111, + [SMALL_STATE(5619)] = 286135, + [SMALL_STATE(5620)] = 286159, + [SMALL_STATE(5621)] = 286183, + [SMALL_STATE(5622)] = 286207, + [SMALL_STATE(5623)] = 286231, + [SMALL_STATE(5624)] = 286251, + [SMALL_STATE(5625)] = 286273, + [SMALL_STATE(5626)] = 286297, + [SMALL_STATE(5627)] = 286321, + [SMALL_STATE(5628)] = 286345, + [SMALL_STATE(5629)] = 286369, + [SMALL_STATE(5630)] = 286393, + [SMALL_STATE(5631)] = 286417, + [SMALL_STATE(5632)] = 286441, + [SMALL_STATE(5633)] = 286465, + [SMALL_STATE(5634)] = 286489, + [SMALL_STATE(5635)] = 286513, + [SMALL_STATE(5636)] = 286537, + [SMALL_STATE(5637)] = 286561, + [SMALL_STATE(5638)] = 286585, + [SMALL_STATE(5639)] = 286609, + [SMALL_STATE(5640)] = 286633, + [SMALL_STATE(5641)] = 286657, + [SMALL_STATE(5642)] = 286681, + [SMALL_STATE(5643)] = 286705, + [SMALL_STATE(5644)] = 286729, + [SMALL_STATE(5645)] = 286753, + [SMALL_STATE(5646)] = 286777, + [SMALL_STATE(5647)] = 286801, + [SMALL_STATE(5648)] = 286825, + [SMALL_STATE(5649)] = 286849, + [SMALL_STATE(5650)] = 286873, + [SMALL_STATE(5651)] = 286897, + [SMALL_STATE(5652)] = 286921, + [SMALL_STATE(5653)] = 286945, + [SMALL_STATE(5654)] = 286969, + [SMALL_STATE(5655)] = 286993, + [SMALL_STATE(5656)] = 287017, + [SMALL_STATE(5657)] = 287041, + [SMALL_STATE(5658)] = 287065, + [SMALL_STATE(5659)] = 287089, + [SMALL_STATE(5660)] = 287111, + [SMALL_STATE(5661)] = 287135, + [SMALL_STATE(5662)] = 287159, + [SMALL_STATE(5663)] = 287183, + [SMALL_STATE(5664)] = 287207, + [SMALL_STATE(5665)] = 287227, + [SMALL_STATE(5666)] = 287251, + [SMALL_STATE(5667)] = 287275, + [SMALL_STATE(5668)] = 287299, + [SMALL_STATE(5669)] = 287323, + [SMALL_STATE(5670)] = 287343, + [SMALL_STATE(5671)] = 287367, + [SMALL_STATE(5672)] = 287391, + [SMALL_STATE(5673)] = 287415, + [SMALL_STATE(5674)] = 287439, + [SMALL_STATE(5675)] = 287463, + [SMALL_STATE(5676)] = 287487, + [SMALL_STATE(5677)] = 287511, + [SMALL_STATE(5678)] = 287535, + [SMALL_STATE(5679)] = 287559, + [SMALL_STATE(5680)] = 287583, + [SMALL_STATE(5681)] = 287607, + [SMALL_STATE(5682)] = 287631, + [SMALL_STATE(5683)] = 287655, + [SMALL_STATE(5684)] = 287679, + [SMALL_STATE(5685)] = 287703, + [SMALL_STATE(5686)] = 287727, + [SMALL_STATE(5687)] = 287751, + [SMALL_STATE(5688)] = 287775, + [SMALL_STATE(5689)] = 287799, + [SMALL_STATE(5690)] = 287823, + [SMALL_STATE(5691)] = 287847, + [SMALL_STATE(5692)] = 287871, + [SMALL_STATE(5693)] = 287895, + [SMALL_STATE(5694)] = 287919, + [SMALL_STATE(5695)] = 287943, + [SMALL_STATE(5696)] = 287967, + [SMALL_STATE(5697)] = 287991, + [SMALL_STATE(5698)] = 288015, + [SMALL_STATE(5699)] = 288039, + [SMALL_STATE(5700)] = 288063, + [SMALL_STATE(5701)] = 288087, + [SMALL_STATE(5702)] = 288111, + [SMALL_STATE(5703)] = 288135, + [SMALL_STATE(5704)] = 288159, + [SMALL_STATE(5705)] = 288183, + [SMALL_STATE(5706)] = 288207, + [SMALL_STATE(5707)] = 288227, + [SMALL_STATE(5708)] = 288251, + [SMALL_STATE(5709)] = 288271, + [SMALL_STATE(5710)] = 288291, + [SMALL_STATE(5711)] = 288315, + [SMALL_STATE(5712)] = 288335, + [SMALL_STATE(5713)] = 288359, + [SMALL_STATE(5714)] = 288383, + [SMALL_STATE(5715)] = 288407, + [SMALL_STATE(5716)] = 288431, + [SMALL_STATE(5717)] = 288455, + [SMALL_STATE(5718)] = 288477, + [SMALL_STATE(5719)] = 288501, + [SMALL_STATE(5720)] = 288525, + [SMALL_STATE(5721)] = 288545, + [SMALL_STATE(5722)] = 288569, + [SMALL_STATE(5723)] = 288593, + [SMALL_STATE(5724)] = 288617, + [SMALL_STATE(5725)] = 288641, + [SMALL_STATE(5726)] = 288665, + [SMALL_STATE(5727)] = 288687, + [SMALL_STATE(5728)] = 288711, + [SMALL_STATE(5729)] = 288731, + [SMALL_STATE(5730)] = 288755, + [SMALL_STATE(5731)] = 288779, + [SMALL_STATE(5732)] = 288803, + [SMALL_STATE(5733)] = 288827, + [SMALL_STATE(5734)] = 288851, + [SMALL_STATE(5735)] = 288875, + [SMALL_STATE(5736)] = 288899, + [SMALL_STATE(5737)] = 288923, + [SMALL_STATE(5738)] = 288947, + [SMALL_STATE(5739)] = 288971, + [SMALL_STATE(5740)] = 288995, + [SMALL_STATE(5741)] = 289019, + [SMALL_STATE(5742)] = 289039, + [SMALL_STATE(5743)] = 289063, + [SMALL_STATE(5744)] = 289087, + [SMALL_STATE(5745)] = 289109, + [SMALL_STATE(5746)] = 289129, + [SMALL_STATE(5747)] = 289153, + [SMALL_STATE(5748)] = 289177, + [SMALL_STATE(5749)] = 289201, + [SMALL_STATE(5750)] = 289225, + [SMALL_STATE(5751)] = 289249, + [SMALL_STATE(5752)] = 289273, + [SMALL_STATE(5753)] = 289297, + [SMALL_STATE(5754)] = 289317, + [SMALL_STATE(5755)] = 289341, + [SMALL_STATE(5756)] = 289361, + [SMALL_STATE(5757)] = 289385, + [SMALL_STATE(5758)] = 289409, + [SMALL_STATE(5759)] = 289433, + [SMALL_STATE(5760)] = 289457, + [SMALL_STATE(5761)] = 289481, + [SMALL_STATE(5762)] = 289505, + [SMALL_STATE(5763)] = 289529, + [SMALL_STATE(5764)] = 289553, + [SMALL_STATE(5765)] = 289577, + [SMALL_STATE(5766)] = 289597, + [SMALL_STATE(5767)] = 289621, + [SMALL_STATE(5768)] = 289641, + [SMALL_STATE(5769)] = 289665, + [SMALL_STATE(5770)] = 289689, + [SMALL_STATE(5771)] = 289709, + [SMALL_STATE(5772)] = 289733, + [SMALL_STATE(5773)] = 289757, + [SMALL_STATE(5774)] = 289781, + [SMALL_STATE(5775)] = 289805, + [SMALL_STATE(5776)] = 289829, + [SMALL_STATE(5777)] = 289853, + [SMALL_STATE(5778)] = 289877, + [SMALL_STATE(5779)] = 289901, + [SMALL_STATE(5780)] = 289925, + [SMALL_STATE(5781)] = 289949, + [SMALL_STATE(5782)] = 289973, + [SMALL_STATE(5783)] = 289997, + [SMALL_STATE(5784)] = 290021, + [SMALL_STATE(5785)] = 290043, + [SMALL_STATE(5786)] = 290067, + [SMALL_STATE(5787)] = 290091, + [SMALL_STATE(5788)] = 290115, + [SMALL_STATE(5789)] = 290139, + [SMALL_STATE(5790)] = 290163, + [SMALL_STATE(5791)] = 290183, + [SMALL_STATE(5792)] = 290207, + [SMALL_STATE(5793)] = 290231, + [SMALL_STATE(5794)] = 290255, + [SMALL_STATE(5795)] = 290275, + [SMALL_STATE(5796)] = 290299, + [SMALL_STATE(5797)] = 290323, + [SMALL_STATE(5798)] = 290345, + [SMALL_STATE(5799)] = 290369, + [SMALL_STATE(5800)] = 290393, + [SMALL_STATE(5801)] = 290417, + [SMALL_STATE(5802)] = 290441, + [SMALL_STATE(5803)] = 290465, + [SMALL_STATE(5804)] = 290489, + [SMALL_STATE(5805)] = 290513, + [SMALL_STATE(5806)] = 290537, + [SMALL_STATE(5807)] = 290561, + [SMALL_STATE(5808)] = 290585, + [SMALL_STATE(5809)] = 290609, + [SMALL_STATE(5810)] = 290633, + [SMALL_STATE(5811)] = 290657, + [SMALL_STATE(5812)] = 290681, + [SMALL_STATE(5813)] = 290703, + [SMALL_STATE(5814)] = 290727, + [SMALL_STATE(5815)] = 290747, + [SMALL_STATE(5816)] = 290771, + [SMALL_STATE(5817)] = 290795, + [SMALL_STATE(5818)] = 290819, + [SMALL_STATE(5819)] = 290841, + [SMALL_STATE(5820)] = 290865, + [SMALL_STATE(5821)] = 290887, + [SMALL_STATE(5822)] = 290911, + [SMALL_STATE(5823)] = 290935, + [SMALL_STATE(5824)] = 290959, + [SMALL_STATE(5825)] = 290983, + [SMALL_STATE(5826)] = 291007, + [SMALL_STATE(5827)] = 291031, + [SMALL_STATE(5828)] = 291055, + [SMALL_STATE(5829)] = 291077, + [SMALL_STATE(5830)] = 291101, + [SMALL_STATE(5831)] = 291125, + [SMALL_STATE(5832)] = 291149, + [SMALL_STATE(5833)] = 291173, + [SMALL_STATE(5834)] = 291197, + [SMALL_STATE(5835)] = 291219, + [SMALL_STATE(5836)] = 291243, + [SMALL_STATE(5837)] = 291267, + [SMALL_STATE(5838)] = 291291, + [SMALL_STATE(5839)] = 291311, + [SMALL_STATE(5840)] = 291333, + [SMALL_STATE(5841)] = 291357, + [SMALL_STATE(5842)] = 291381, + [SMALL_STATE(5843)] = 291403, + [SMALL_STATE(5844)] = 291427, + [SMALL_STATE(5845)] = 291451, + [SMALL_STATE(5846)] = 291475, + [SMALL_STATE(5847)] = 291499, + [SMALL_STATE(5848)] = 291521, + [SMALL_STATE(5849)] = 291545, + [SMALL_STATE(5850)] = 291569, + [SMALL_STATE(5851)] = 291593, + [SMALL_STATE(5852)] = 291617, + [SMALL_STATE(5853)] = 291641, + [SMALL_STATE(5854)] = 291665, + [SMALL_STATE(5855)] = 291689, + [SMALL_STATE(5856)] = 291713, + [SMALL_STATE(5857)] = 291735, + [SMALL_STATE(5858)] = 291759, + [SMALL_STATE(5859)] = 291779, + [SMALL_STATE(5860)] = 291801, + [SMALL_STATE(5861)] = 291825, + [SMALL_STATE(5862)] = 291849, + [SMALL_STATE(5863)] = 291873, + [SMALL_STATE(5864)] = 291897, + [SMALL_STATE(5865)] = 291921, + [SMALL_STATE(5866)] = 291945, + [SMALL_STATE(5867)] = 291969, + [SMALL_STATE(5868)] = 291993, + [SMALL_STATE(5869)] = 292017, + [SMALL_STATE(5870)] = 292041, + [SMALL_STATE(5871)] = 292065, + [SMALL_STATE(5872)] = 292089, + [SMALL_STATE(5873)] = 292109, + [SMALL_STATE(5874)] = 292133, + [SMALL_STATE(5875)] = 292157, + [SMALL_STATE(5876)] = 292181, + [SMALL_STATE(5877)] = 292205, + [SMALL_STATE(5878)] = 292229, + [SMALL_STATE(5879)] = 292253, + [SMALL_STATE(5880)] = 292277, + [SMALL_STATE(5881)] = 292301, + [SMALL_STATE(5882)] = 292325, + [SMALL_STATE(5883)] = 292349, + [SMALL_STATE(5884)] = 292373, + [SMALL_STATE(5885)] = 292397, + [SMALL_STATE(5886)] = 292421, + [SMALL_STATE(5887)] = 292445, + [SMALL_STATE(5888)] = 292469, + [SMALL_STATE(5889)] = 292493, + [SMALL_STATE(5890)] = 292517, + [SMALL_STATE(5891)] = 292541, + [SMALL_STATE(5892)] = 292565, + [SMALL_STATE(5893)] = 292589, + [SMALL_STATE(5894)] = 292613, + [SMALL_STATE(5895)] = 292637, + [SMALL_STATE(5896)] = 292659, + [SMALL_STATE(5897)] = 292683, + [SMALL_STATE(5898)] = 292707, + [SMALL_STATE(5899)] = 292727, + [SMALL_STATE(5900)] = 292751, + [SMALL_STATE(5901)] = 292775, + [SMALL_STATE(5902)] = 292799, + [SMALL_STATE(5903)] = 292823, + [SMALL_STATE(5904)] = 292843, + [SMALL_STATE(5905)] = 292867, + [SMALL_STATE(5906)] = 292891, + [SMALL_STATE(5907)] = 292915, + [SMALL_STATE(5908)] = 292939, + [SMALL_STATE(5909)] = 292963, + [SMALL_STATE(5910)] = 292983, + [SMALL_STATE(5911)] = 293007, + [SMALL_STATE(5912)] = 293029, + [SMALL_STATE(5913)] = 293053, + [SMALL_STATE(5914)] = 293077, + [SMALL_STATE(5915)] = 293101, + [SMALL_STATE(5916)] = 293125, + [SMALL_STATE(5917)] = 293149, + [SMALL_STATE(5918)] = 293173, + [SMALL_STATE(5919)] = 293193, + [SMALL_STATE(5920)] = 293217, + [SMALL_STATE(5921)] = 293241, + [SMALL_STATE(5922)] = 293261, + [SMALL_STATE(5923)] = 293285, + [SMALL_STATE(5924)] = 293309, + [SMALL_STATE(5925)] = 293333, + [SMALL_STATE(5926)] = 293353, + [SMALL_STATE(5927)] = 293373, + [SMALL_STATE(5928)] = 293397, + [SMALL_STATE(5929)] = 293421, + [SMALL_STATE(5930)] = 293445, + [SMALL_STATE(5931)] = 293469, + [SMALL_STATE(5932)] = 293493, + [SMALL_STATE(5933)] = 293517, + [SMALL_STATE(5934)] = 293537, + [SMALL_STATE(5935)] = 293561, + [SMALL_STATE(5936)] = 293585, + [SMALL_STATE(5937)] = 293609, + [SMALL_STATE(5938)] = 293629, + [SMALL_STATE(5939)] = 293653, + [SMALL_STATE(5940)] = 293673, + [SMALL_STATE(5941)] = 293697, + [SMALL_STATE(5942)] = 293721, + [SMALL_STATE(5943)] = 293745, + [SMALL_STATE(5944)] = 293769, + [SMALL_STATE(5945)] = 293793, + [SMALL_STATE(5946)] = 293813, + [SMALL_STATE(5947)] = 293833, + [SMALL_STATE(5948)] = 293853, + [SMALL_STATE(5949)] = 293877, + [SMALL_STATE(5950)] = 293901, + [SMALL_STATE(5951)] = 293925, + [SMALL_STATE(5952)] = 293949, + [SMALL_STATE(5953)] = 293973, + [SMALL_STATE(5954)] = 293997, + [SMALL_STATE(5955)] = 294019, + [SMALL_STATE(5956)] = 294041, + [SMALL_STATE(5957)] = 294061, + [SMALL_STATE(5958)] = 294085, + [SMALL_STATE(5959)] = 294109, + [SMALL_STATE(5960)] = 294133, + [SMALL_STATE(5961)] = 294157, + [SMALL_STATE(5962)] = 294179, + [SMALL_STATE(5963)] = 294203, + [SMALL_STATE(5964)] = 294227, + [SMALL_STATE(5965)] = 294251, + [SMALL_STATE(5966)] = 294275, + [SMALL_STATE(5967)] = 294299, + [SMALL_STATE(5968)] = 294323, + [SMALL_STATE(5969)] = 294347, + [SMALL_STATE(5970)] = 294371, + [SMALL_STATE(5971)] = 294395, + [SMALL_STATE(5972)] = 294419, + [SMALL_STATE(5973)] = 294439, + [SMALL_STATE(5974)] = 294459, + [SMALL_STATE(5975)] = 294481, + [SMALL_STATE(5976)] = 294505, + [SMALL_STATE(5977)] = 294529, + [SMALL_STATE(5978)] = 294553, + [SMALL_STATE(5979)] = 294577, + [SMALL_STATE(5980)] = 294601, + [SMALL_STATE(5981)] = 294623, + [SMALL_STATE(5982)] = 294643, + [SMALL_STATE(5983)] = 294663, + [SMALL_STATE(5984)] = 294687, + [SMALL_STATE(5985)] = 294711, + [SMALL_STATE(5986)] = 294731, + [SMALL_STATE(5987)] = 294751, + [SMALL_STATE(5988)] = 294773, + [SMALL_STATE(5989)] = 294793, + [SMALL_STATE(5990)] = 294817, + [SMALL_STATE(5991)] = 294841, + [SMALL_STATE(5992)] = 294861, + [SMALL_STATE(5993)] = 294885, + [SMALL_STATE(5994)] = 294909, + [SMALL_STATE(5995)] = 294933, + [SMALL_STATE(5996)] = 294957, + [SMALL_STATE(5997)] = 294981, + [SMALL_STATE(5998)] = 295005, + [SMALL_STATE(5999)] = 295025, + [SMALL_STATE(6000)] = 295049, + [SMALL_STATE(6001)] = 295073, + [SMALL_STATE(6002)] = 295095, + [SMALL_STATE(6003)] = 295119, + [SMALL_STATE(6004)] = 295143, + [SMALL_STATE(6005)] = 295167, + [SMALL_STATE(6006)] = 295187, + [SMALL_STATE(6007)] = 295207, + [SMALL_STATE(6008)] = 295231, + [SMALL_STATE(6009)] = 295251, + [SMALL_STATE(6010)] = 295275, + [SMALL_STATE(6011)] = 295297, + [SMALL_STATE(6012)] = 295321, + [SMALL_STATE(6013)] = 295345, + [SMALL_STATE(6014)] = 295369, + [SMALL_STATE(6015)] = 295393, + [SMALL_STATE(6016)] = 295413, + [SMALL_STATE(6017)] = 295437, + [SMALL_STATE(6018)] = 295461, + [SMALL_STATE(6019)] = 295485, + [SMALL_STATE(6020)] = 295505, + [SMALL_STATE(6021)] = 295525, + [SMALL_STATE(6022)] = 295545, + [SMALL_STATE(6023)] = 295569, + [SMALL_STATE(6024)] = 295589, + [SMALL_STATE(6025)] = 295613, + [SMALL_STATE(6026)] = 295633, + [SMALL_STATE(6027)] = 295657, + [SMALL_STATE(6028)] = 295677, + [SMALL_STATE(6029)] = 295698, + [SMALL_STATE(6030)] = 295719, + [SMALL_STATE(6031)] = 295740, + [SMALL_STATE(6032)] = 295759, + [SMALL_STATE(6033)] = 295778, + [SMALL_STATE(6034)] = 295797, + [SMALL_STATE(6035)] = 295816, + [SMALL_STATE(6036)] = 295835, + [SMALL_STATE(6037)] = 295854, + [SMALL_STATE(6038)] = 295873, + [SMALL_STATE(6039)] = 295892, + [SMALL_STATE(6040)] = 295911, + [SMALL_STATE(6041)] = 295930, + [SMALL_STATE(6042)] = 295951, + [SMALL_STATE(6043)] = 295972, + [SMALL_STATE(6044)] = 295991, + [SMALL_STATE(6045)] = 296010, + [SMALL_STATE(6046)] = 296031, + [SMALL_STATE(6047)] = 296050, + [SMALL_STATE(6048)] = 296069, + [SMALL_STATE(6049)] = 296088, + [SMALL_STATE(6050)] = 296109, + [SMALL_STATE(6051)] = 296128, + [SMALL_STATE(6052)] = 296147, + [SMALL_STATE(6053)] = 296166, + [SMALL_STATE(6054)] = 296185, + [SMALL_STATE(6055)] = 296206, + [SMALL_STATE(6056)] = 296227, + [SMALL_STATE(6057)] = 296246, + [SMALL_STATE(6058)] = 296265, + [SMALL_STATE(6059)] = 296284, + [SMALL_STATE(6060)] = 296303, + [SMALL_STATE(6061)] = 296322, + [SMALL_STATE(6062)] = 296341, + [SMALL_STATE(6063)] = 296360, + [SMALL_STATE(6064)] = 296381, + [SMALL_STATE(6065)] = 296400, + [SMALL_STATE(6066)] = 296419, + [SMALL_STATE(6067)] = 296440, + [SMALL_STATE(6068)] = 296461, + [SMALL_STATE(6069)] = 296482, + [SMALL_STATE(6070)] = 296501, + [SMALL_STATE(6071)] = 296522, + [SMALL_STATE(6072)] = 296543, + [SMALL_STATE(6073)] = 296564, + [SMALL_STATE(6074)] = 296583, + [SMALL_STATE(6075)] = 296604, + [SMALL_STATE(6076)] = 296625, + [SMALL_STATE(6077)] = 296644, + [SMALL_STATE(6078)] = 296665, + [SMALL_STATE(6079)] = 296686, + [SMALL_STATE(6080)] = 296707, + [SMALL_STATE(6081)] = 296728, + [SMALL_STATE(6082)] = 296747, + [SMALL_STATE(6083)] = 296768, + [SMALL_STATE(6084)] = 296789, + [SMALL_STATE(6085)] = 296808, + [SMALL_STATE(6086)] = 296827, + [SMALL_STATE(6087)] = 296846, + [SMALL_STATE(6088)] = 296867, + [SMALL_STATE(6089)] = 296886, + [SMALL_STATE(6090)] = 296907, + [SMALL_STATE(6091)] = 296926, + [SMALL_STATE(6092)] = 296945, + [SMALL_STATE(6093)] = 296964, + [SMALL_STATE(6094)] = 296985, + [SMALL_STATE(6095)] = 297006, + [SMALL_STATE(6096)] = 297025, + [SMALL_STATE(6097)] = 297046, + [SMALL_STATE(6098)] = 297067, + [SMALL_STATE(6099)] = 297086, + [SMALL_STATE(6100)] = 297107, + [SMALL_STATE(6101)] = 297126, + [SMALL_STATE(6102)] = 297145, + [SMALL_STATE(6103)] = 297164, + [SMALL_STATE(6104)] = 297183, + [SMALL_STATE(6105)] = 297202, + [SMALL_STATE(6106)] = 297223, + [SMALL_STATE(6107)] = 297242, + [SMALL_STATE(6108)] = 297263, + [SMALL_STATE(6109)] = 297282, + [SMALL_STATE(6110)] = 297301, + [SMALL_STATE(6111)] = 297320, + [SMALL_STATE(6112)] = 297339, + [SMALL_STATE(6113)] = 297358, + [SMALL_STATE(6114)] = 297377, + [SMALL_STATE(6115)] = 297396, + [SMALL_STATE(6116)] = 297415, + [SMALL_STATE(6117)] = 297434, + [SMALL_STATE(6118)] = 297453, + [SMALL_STATE(6119)] = 297474, + [SMALL_STATE(6120)] = 297493, + [SMALL_STATE(6121)] = 297514, + [SMALL_STATE(6122)] = 297535, + [SMALL_STATE(6123)] = 297556, + [SMALL_STATE(6124)] = 297577, + [SMALL_STATE(6125)] = 297596, + [SMALL_STATE(6126)] = 297617, + [SMALL_STATE(6127)] = 297638, + [SMALL_STATE(6128)] = 297657, + [SMALL_STATE(6129)] = 297676, + [SMALL_STATE(6130)] = 297695, + [SMALL_STATE(6131)] = 297716, + [SMALL_STATE(6132)] = 297737, + [SMALL_STATE(6133)] = 297758, + [SMALL_STATE(6134)] = 297777, + [SMALL_STATE(6135)] = 297798, + [SMALL_STATE(6136)] = 297817, + [SMALL_STATE(6137)] = 297836, + [SMALL_STATE(6138)] = 297855, + [SMALL_STATE(6139)] = 297874, + [SMALL_STATE(6140)] = 297893, + [SMALL_STATE(6141)] = 297912, + [SMALL_STATE(6142)] = 297931, + [SMALL_STATE(6143)] = 297950, + [SMALL_STATE(6144)] = 297969, + [SMALL_STATE(6145)] = 297988, + [SMALL_STATE(6146)] = 298007, + [SMALL_STATE(6147)] = 298026, + [SMALL_STATE(6148)] = 298047, + [SMALL_STATE(6149)] = 298068, + [SMALL_STATE(6150)] = 298089, + [SMALL_STATE(6151)] = 298108, + [SMALL_STATE(6152)] = 298127, + [SMALL_STATE(6153)] = 298148, + [SMALL_STATE(6154)] = 298169, + [SMALL_STATE(6155)] = 298190, + [SMALL_STATE(6156)] = 298209, + [SMALL_STATE(6157)] = 298230, + [SMALL_STATE(6158)] = 298249, + [SMALL_STATE(6159)] = 298270, + [SMALL_STATE(6160)] = 298291, + [SMALL_STATE(6161)] = 298310, + [SMALL_STATE(6162)] = 298331, + [SMALL_STATE(6163)] = 298350, + [SMALL_STATE(6164)] = 298371, + [SMALL_STATE(6165)] = 298390, + [SMALL_STATE(6166)] = 298409, + [SMALL_STATE(6167)] = 298430, + [SMALL_STATE(6168)] = 298451, + [SMALL_STATE(6169)] = 298472, + [SMALL_STATE(6170)] = 298491, + [SMALL_STATE(6171)] = 298512, + [SMALL_STATE(6172)] = 298533, + [SMALL_STATE(6173)] = 298554, + [SMALL_STATE(6174)] = 298573, + [SMALL_STATE(6175)] = 298592, + [SMALL_STATE(6176)] = 298613, + [SMALL_STATE(6177)] = 298634, + [SMALL_STATE(6178)] = 298653, + [SMALL_STATE(6179)] = 298672, + [SMALL_STATE(6180)] = 298691, + [SMALL_STATE(6181)] = 298712, + [SMALL_STATE(6182)] = 298731, + [SMALL_STATE(6183)] = 298752, + [SMALL_STATE(6184)] = 298771, + [SMALL_STATE(6185)] = 298792, + [SMALL_STATE(6186)] = 298811, + [SMALL_STATE(6187)] = 298832, + [SMALL_STATE(6188)] = 298853, + [SMALL_STATE(6189)] = 298874, + [SMALL_STATE(6190)] = 298893, + [SMALL_STATE(6191)] = 298912, + [SMALL_STATE(6192)] = 298933, + [SMALL_STATE(6193)] = 298952, + [SMALL_STATE(6194)] = 298973, + [SMALL_STATE(6195)] = 298994, + [SMALL_STATE(6196)] = 299015, + [SMALL_STATE(6197)] = 299034, + [SMALL_STATE(6198)] = 299055, + [SMALL_STATE(6199)] = 299076, + [SMALL_STATE(6200)] = 299097, + [SMALL_STATE(6201)] = 299116, + [SMALL_STATE(6202)] = 299137, + [SMALL_STATE(6203)] = 299158, + [SMALL_STATE(6204)] = 299179, + [SMALL_STATE(6205)] = 299200, + [SMALL_STATE(6206)] = 299221, + [SMALL_STATE(6207)] = 299240, + [SMALL_STATE(6208)] = 299259, + [SMALL_STATE(6209)] = 299278, + [SMALL_STATE(6210)] = 299299, + [SMALL_STATE(6211)] = 299320, + [SMALL_STATE(6212)] = 299341, + [SMALL_STATE(6213)] = 299362, + [SMALL_STATE(6214)] = 299383, + [SMALL_STATE(6215)] = 299404, + [SMALL_STATE(6216)] = 299425, + [SMALL_STATE(6217)] = 299446, + [SMALL_STATE(6218)] = 299467, + [SMALL_STATE(6219)] = 299488, + [SMALL_STATE(6220)] = 299509, + [SMALL_STATE(6221)] = 299530, + [SMALL_STATE(6222)] = 299551, + [SMALL_STATE(6223)] = 299572, + [SMALL_STATE(6224)] = 299593, + [SMALL_STATE(6225)] = 299614, + [SMALL_STATE(6226)] = 299635, + [SMALL_STATE(6227)] = 299656, + [SMALL_STATE(6228)] = 299677, + [SMALL_STATE(6229)] = 299698, + [SMALL_STATE(6230)] = 299719, + [SMALL_STATE(6231)] = 299740, + [SMALL_STATE(6232)] = 299759, + [SMALL_STATE(6233)] = 299780, + [SMALL_STATE(6234)] = 299801, + [SMALL_STATE(6235)] = 299822, + [SMALL_STATE(6236)] = 299843, + [SMALL_STATE(6237)] = 299864, + [SMALL_STATE(6238)] = 299883, + [SMALL_STATE(6239)] = 299904, + [SMALL_STATE(6240)] = 299925, + [SMALL_STATE(6241)] = 299944, + [SMALL_STATE(6242)] = 299965, + [SMALL_STATE(6243)] = 299986, + [SMALL_STATE(6244)] = 300007, + [SMALL_STATE(6245)] = 300028, + [SMALL_STATE(6246)] = 300049, + [SMALL_STATE(6247)] = 300070, + [SMALL_STATE(6248)] = 300091, + [SMALL_STATE(6249)] = 300112, + [SMALL_STATE(6250)] = 300131, + [SMALL_STATE(6251)] = 300152, + [SMALL_STATE(6252)] = 300173, + [SMALL_STATE(6253)] = 300194, + [SMALL_STATE(6254)] = 300215, + [SMALL_STATE(6255)] = 300236, + [SMALL_STATE(6256)] = 300257, + [SMALL_STATE(6257)] = 300278, + [SMALL_STATE(6258)] = 300299, + [SMALL_STATE(6259)] = 300320, + [SMALL_STATE(6260)] = 300341, + [SMALL_STATE(6261)] = 300362, + [SMALL_STATE(6262)] = 300383, + [SMALL_STATE(6263)] = 300404, + [SMALL_STATE(6264)] = 300425, + [SMALL_STATE(6265)] = 300446, + [SMALL_STATE(6266)] = 300467, + [SMALL_STATE(6267)] = 300488, + [SMALL_STATE(6268)] = 300509, + [SMALL_STATE(6269)] = 300530, + [SMALL_STATE(6270)] = 300551, + [SMALL_STATE(6271)] = 300572, + [SMALL_STATE(6272)] = 300593, + [SMALL_STATE(6273)] = 300614, + [SMALL_STATE(6274)] = 300635, + [SMALL_STATE(6275)] = 300656, + [SMALL_STATE(6276)] = 300675, + [SMALL_STATE(6277)] = 300696, + [SMALL_STATE(6278)] = 300717, + [SMALL_STATE(6279)] = 300738, + [SMALL_STATE(6280)] = 300759, + [SMALL_STATE(6281)] = 300778, + [SMALL_STATE(6282)] = 300799, + [SMALL_STATE(6283)] = 300820, + [SMALL_STATE(6284)] = 300841, + [SMALL_STATE(6285)] = 300862, + [SMALL_STATE(6286)] = 300883, + [SMALL_STATE(6287)] = 300904, + [SMALL_STATE(6288)] = 300925, + [SMALL_STATE(6289)] = 300946, + [SMALL_STATE(6290)] = 300967, + [SMALL_STATE(6291)] = 300988, + [SMALL_STATE(6292)] = 301009, + [SMALL_STATE(6293)] = 301030, + [SMALL_STATE(6294)] = 301051, + [SMALL_STATE(6295)] = 301070, + [SMALL_STATE(6296)] = 301091, + [SMALL_STATE(6297)] = 301112, + [SMALL_STATE(6298)] = 301133, + [SMALL_STATE(6299)] = 301154, + [SMALL_STATE(6300)] = 301175, + [SMALL_STATE(6301)] = 301196, + [SMALL_STATE(6302)] = 301217, + [SMALL_STATE(6303)] = 301238, + [SMALL_STATE(6304)] = 301259, + [SMALL_STATE(6305)] = 301280, + [SMALL_STATE(6306)] = 301301, + [SMALL_STATE(6307)] = 301322, + [SMALL_STATE(6308)] = 301343, + [SMALL_STATE(6309)] = 301364, + [SMALL_STATE(6310)] = 301385, + [SMALL_STATE(6311)] = 301406, + [SMALL_STATE(6312)] = 301427, + [SMALL_STATE(6313)] = 301446, + [SMALL_STATE(6314)] = 301465, + [SMALL_STATE(6315)] = 301486, + [SMALL_STATE(6316)] = 301507, + [SMALL_STATE(6317)] = 301528, + [SMALL_STATE(6318)] = 301549, + [SMALL_STATE(6319)] = 301568, + [SMALL_STATE(6320)] = 301589, + [SMALL_STATE(6321)] = 301610, + [SMALL_STATE(6322)] = 301631, + [SMALL_STATE(6323)] = 301652, + [SMALL_STATE(6324)] = 301673, + [SMALL_STATE(6325)] = 301694, + [SMALL_STATE(6326)] = 301715, + [SMALL_STATE(6327)] = 301736, + [SMALL_STATE(6328)] = 301757, + [SMALL_STATE(6329)] = 301778, + [SMALL_STATE(6330)] = 301797, + [SMALL_STATE(6331)] = 301818, + [SMALL_STATE(6332)] = 301839, + [SMALL_STATE(6333)] = 301860, + [SMALL_STATE(6334)] = 301881, + [SMALL_STATE(6335)] = 301902, + [SMALL_STATE(6336)] = 301921, + [SMALL_STATE(6337)] = 301942, + [SMALL_STATE(6338)] = 301963, + [SMALL_STATE(6339)] = 301982, + [SMALL_STATE(6340)] = 302001, + [SMALL_STATE(6341)] = 302022, + [SMALL_STATE(6342)] = 302043, + [SMALL_STATE(6343)] = 302064, + [SMALL_STATE(6344)] = 302085, + [SMALL_STATE(6345)] = 302106, + [SMALL_STATE(6346)] = 302127, + [SMALL_STATE(6347)] = 302148, + [SMALL_STATE(6348)] = 302169, + [SMALL_STATE(6349)] = 302188, + [SMALL_STATE(6350)] = 302209, + [SMALL_STATE(6351)] = 302228, + [SMALL_STATE(6352)] = 302247, + [SMALL_STATE(6353)] = 302268, + [SMALL_STATE(6354)] = 302289, + [SMALL_STATE(6355)] = 302310, + [SMALL_STATE(6356)] = 302331, + [SMALL_STATE(6357)] = 302350, + [SMALL_STATE(6358)] = 302369, + [SMALL_STATE(6359)] = 302390, + [SMALL_STATE(6360)] = 302411, + [SMALL_STATE(6361)] = 302432, + [SMALL_STATE(6362)] = 302453, + [SMALL_STATE(6363)] = 302474, + [SMALL_STATE(6364)] = 302493, + [SMALL_STATE(6365)] = 302514, + [SMALL_STATE(6366)] = 302535, + [SMALL_STATE(6367)] = 302556, + [SMALL_STATE(6368)] = 302577, + [SMALL_STATE(6369)] = 302596, + [SMALL_STATE(6370)] = 302617, + [SMALL_STATE(6371)] = 302636, + [SMALL_STATE(6372)] = 302657, + [SMALL_STATE(6373)] = 302678, + [SMALL_STATE(6374)] = 302699, + [SMALL_STATE(6375)] = 302720, + [SMALL_STATE(6376)] = 302741, + [SMALL_STATE(6377)] = 302762, + [SMALL_STATE(6378)] = 302783, + [SMALL_STATE(6379)] = 302804, + [SMALL_STATE(6380)] = 302825, + [SMALL_STATE(6381)] = 302846, + [SMALL_STATE(6382)] = 302867, + [SMALL_STATE(6383)] = 302888, + [SMALL_STATE(6384)] = 302909, + [SMALL_STATE(6385)] = 302930, + [SMALL_STATE(6386)] = 302951, + [SMALL_STATE(6387)] = 302970, + [SMALL_STATE(6388)] = 302991, + [SMALL_STATE(6389)] = 303012, + [SMALL_STATE(6390)] = 303033, + [SMALL_STATE(6391)] = 303054, + [SMALL_STATE(6392)] = 303075, + [SMALL_STATE(6393)] = 303096, + [SMALL_STATE(6394)] = 303117, + [SMALL_STATE(6395)] = 303136, + [SMALL_STATE(6396)] = 303155, + [SMALL_STATE(6397)] = 303174, + [SMALL_STATE(6398)] = 303195, + [SMALL_STATE(6399)] = 303214, + [SMALL_STATE(6400)] = 303235, + [SMALL_STATE(6401)] = 303254, + [SMALL_STATE(6402)] = 303275, + [SMALL_STATE(6403)] = 303294, + [SMALL_STATE(6404)] = 303315, + [SMALL_STATE(6405)] = 303336, + [SMALL_STATE(6406)] = 303357, + [SMALL_STATE(6407)] = 303378, + [SMALL_STATE(6408)] = 303399, + [SMALL_STATE(6409)] = 303420, + [SMALL_STATE(6410)] = 303441, + [SMALL_STATE(6411)] = 303460, + [SMALL_STATE(6412)] = 303481, + [SMALL_STATE(6413)] = 303502, + [SMALL_STATE(6414)] = 303523, + [SMALL_STATE(6415)] = 303544, + [SMALL_STATE(6416)] = 303563, + [SMALL_STATE(6417)] = 303584, + [SMALL_STATE(6418)] = 303605, + [SMALL_STATE(6419)] = 303626, + [SMALL_STATE(6420)] = 303647, + [SMALL_STATE(6421)] = 303668, + [SMALL_STATE(6422)] = 303689, + [SMALL_STATE(6423)] = 303710, + [SMALL_STATE(6424)] = 303731, + [SMALL_STATE(6425)] = 303752, + [SMALL_STATE(6426)] = 303773, + [SMALL_STATE(6427)] = 303794, + [SMALL_STATE(6428)] = 303815, + [SMALL_STATE(6429)] = 303836, + [SMALL_STATE(6430)] = 303857, + [SMALL_STATE(6431)] = 303878, + [SMALL_STATE(6432)] = 303899, + [SMALL_STATE(6433)] = 303918, + [SMALL_STATE(6434)] = 303939, + [SMALL_STATE(6435)] = 303960, + [SMALL_STATE(6436)] = 303981, + [SMALL_STATE(6437)] = 304000, + [SMALL_STATE(6438)] = 304021, + [SMALL_STATE(6439)] = 304042, + [SMALL_STATE(6440)] = 304063, + [SMALL_STATE(6441)] = 304084, + [SMALL_STATE(6442)] = 304105, + [SMALL_STATE(6443)] = 304126, + [SMALL_STATE(6444)] = 304147, + [SMALL_STATE(6445)] = 304168, + [SMALL_STATE(6446)] = 304189, + [SMALL_STATE(6447)] = 304210, + [SMALL_STATE(6448)] = 304231, + [SMALL_STATE(6449)] = 304252, + [SMALL_STATE(6450)] = 304273, + [SMALL_STATE(6451)] = 304294, + [SMALL_STATE(6452)] = 304315, + [SMALL_STATE(6453)] = 304336, + [SMALL_STATE(6454)] = 304357, + [SMALL_STATE(6455)] = 304378, + [SMALL_STATE(6456)] = 304399, + [SMALL_STATE(6457)] = 304420, + [SMALL_STATE(6458)] = 304441, + [SMALL_STATE(6459)] = 304462, + [SMALL_STATE(6460)] = 304481, + [SMALL_STATE(6461)] = 304502, + [SMALL_STATE(6462)] = 304523, + [SMALL_STATE(6463)] = 304544, + [SMALL_STATE(6464)] = 304565, + [SMALL_STATE(6465)] = 304586, + [SMALL_STATE(6466)] = 304607, + [SMALL_STATE(6467)] = 304628, + [SMALL_STATE(6468)] = 304649, + [SMALL_STATE(6469)] = 304670, + [SMALL_STATE(6470)] = 304691, + [SMALL_STATE(6471)] = 304712, + [SMALL_STATE(6472)] = 304733, + [SMALL_STATE(6473)] = 304754, + [SMALL_STATE(6474)] = 304775, + [SMALL_STATE(6475)] = 304794, + [SMALL_STATE(6476)] = 304813, + [SMALL_STATE(6477)] = 304834, + [SMALL_STATE(6478)] = 304855, + [SMALL_STATE(6479)] = 304876, + [SMALL_STATE(6480)] = 304897, + [SMALL_STATE(6481)] = 304918, + [SMALL_STATE(6482)] = 304939, + [SMALL_STATE(6483)] = 304960, + [SMALL_STATE(6484)] = 304981, + [SMALL_STATE(6485)] = 305002, + [SMALL_STATE(6486)] = 305023, + [SMALL_STATE(6487)] = 305044, + [SMALL_STATE(6488)] = 305065, + [SMALL_STATE(6489)] = 305086, + [SMALL_STATE(6490)] = 305107, + [SMALL_STATE(6491)] = 305128, + [SMALL_STATE(6492)] = 305149, + [SMALL_STATE(6493)] = 305170, + [SMALL_STATE(6494)] = 305191, + [SMALL_STATE(6495)] = 305212, + [SMALL_STATE(6496)] = 305233, + [SMALL_STATE(6497)] = 305254, + [SMALL_STATE(6498)] = 305275, + [SMALL_STATE(6499)] = 305296, + [SMALL_STATE(6500)] = 305317, + [SMALL_STATE(6501)] = 305338, + [SMALL_STATE(6502)] = 305359, + [SMALL_STATE(6503)] = 305380, + [SMALL_STATE(6504)] = 305401, + [SMALL_STATE(6505)] = 305422, + [SMALL_STATE(6506)] = 305443, + [SMALL_STATE(6507)] = 305464, + [SMALL_STATE(6508)] = 305485, + [SMALL_STATE(6509)] = 305506, + [SMALL_STATE(6510)] = 305527, + [SMALL_STATE(6511)] = 305548, + [SMALL_STATE(6512)] = 305567, + [SMALL_STATE(6513)] = 305588, + [SMALL_STATE(6514)] = 305609, + [SMALL_STATE(6515)] = 305630, + [SMALL_STATE(6516)] = 305651, + [SMALL_STATE(6517)] = 305672, + [SMALL_STATE(6518)] = 305693, + [SMALL_STATE(6519)] = 305714, + [SMALL_STATE(6520)] = 305735, + [SMALL_STATE(6521)] = 305754, + [SMALL_STATE(6522)] = 305775, + [SMALL_STATE(6523)] = 305796, + [SMALL_STATE(6524)] = 305817, + [SMALL_STATE(6525)] = 305838, + [SMALL_STATE(6526)] = 305859, + [SMALL_STATE(6527)] = 305878, + [SMALL_STATE(6528)] = 305897, + [SMALL_STATE(6529)] = 305918, + [SMALL_STATE(6530)] = 305939, + [SMALL_STATE(6531)] = 305960, + [SMALL_STATE(6532)] = 305981, + [SMALL_STATE(6533)] = 306002, + [SMALL_STATE(6534)] = 306023, + [SMALL_STATE(6535)] = 306044, + [SMALL_STATE(6536)] = 306065, + [SMALL_STATE(6537)] = 306086, + [SMALL_STATE(6538)] = 306107, + [SMALL_STATE(6539)] = 306128, + [SMALL_STATE(6540)] = 306149, + [SMALL_STATE(6541)] = 306168, + [SMALL_STATE(6542)] = 306189, + [SMALL_STATE(6543)] = 306210, + [SMALL_STATE(6544)] = 306231, + [SMALL_STATE(6545)] = 306250, + [SMALL_STATE(6546)] = 306271, + [SMALL_STATE(6547)] = 306290, + [SMALL_STATE(6548)] = 306311, + [SMALL_STATE(6549)] = 306332, + [SMALL_STATE(6550)] = 306353, + [SMALL_STATE(6551)] = 306374, + [SMALL_STATE(6552)] = 306395, + [SMALL_STATE(6553)] = 306416, + [SMALL_STATE(6554)] = 306437, + [SMALL_STATE(6555)] = 306456, + [SMALL_STATE(6556)] = 306477, + [SMALL_STATE(6557)] = 306498, + [SMALL_STATE(6558)] = 306519, + [SMALL_STATE(6559)] = 306540, + [SMALL_STATE(6560)] = 306561, + [SMALL_STATE(6561)] = 306580, + [SMALL_STATE(6562)] = 306601, + [SMALL_STATE(6563)] = 306622, + [SMALL_STATE(6564)] = 306643, + [SMALL_STATE(6565)] = 306664, + [SMALL_STATE(6566)] = 306685, + [SMALL_STATE(6567)] = 306706, + [SMALL_STATE(6568)] = 306727, + [SMALL_STATE(6569)] = 306748, + [SMALL_STATE(6570)] = 306769, + [SMALL_STATE(6571)] = 306790, + [SMALL_STATE(6572)] = 306811, + [SMALL_STATE(6573)] = 306832, + [SMALL_STATE(6574)] = 306853, + [SMALL_STATE(6575)] = 306874, + [SMALL_STATE(6576)] = 306895, + [SMALL_STATE(6577)] = 306916, + [SMALL_STATE(6578)] = 306937, + [SMALL_STATE(6579)] = 306958, + [SMALL_STATE(6580)] = 306979, + [SMALL_STATE(6581)] = 307000, + [SMALL_STATE(6582)] = 307021, + [SMALL_STATE(6583)] = 307042, + [SMALL_STATE(6584)] = 307063, + [SMALL_STATE(6585)] = 307084, + [SMALL_STATE(6586)] = 307105, + [SMALL_STATE(6587)] = 307126, + [SMALL_STATE(6588)] = 307147, + [SMALL_STATE(6589)] = 307168, + [SMALL_STATE(6590)] = 307189, + [SMALL_STATE(6591)] = 307210, + [SMALL_STATE(6592)] = 307231, + [SMALL_STATE(6593)] = 307252, + [SMALL_STATE(6594)] = 307273, + [SMALL_STATE(6595)] = 307294, + [SMALL_STATE(6596)] = 307315, + [SMALL_STATE(6597)] = 307336, + [SMALL_STATE(6598)] = 307357, + [SMALL_STATE(6599)] = 307378, + [SMALL_STATE(6600)] = 307399, + [SMALL_STATE(6601)] = 307420, + [SMALL_STATE(6602)] = 307441, + [SMALL_STATE(6603)] = 307462, + [SMALL_STATE(6604)] = 307481, + [SMALL_STATE(6605)] = 307502, + [SMALL_STATE(6606)] = 307523, + [SMALL_STATE(6607)] = 307544, + [SMALL_STATE(6608)] = 307565, + [SMALL_STATE(6609)] = 307586, + [SMALL_STATE(6610)] = 307607, + [SMALL_STATE(6611)] = 307626, + [SMALL_STATE(6612)] = 307647, + [SMALL_STATE(6613)] = 307666, + [SMALL_STATE(6614)] = 307687, + [SMALL_STATE(6615)] = 307708, + [SMALL_STATE(6616)] = 307727, + [SMALL_STATE(6617)] = 307748, + [SMALL_STATE(6618)] = 307769, + [SMALL_STATE(6619)] = 307790, + [SMALL_STATE(6620)] = 307811, + [SMALL_STATE(6621)] = 307832, + [SMALL_STATE(6622)] = 307853, + [SMALL_STATE(6623)] = 307874, + [SMALL_STATE(6624)] = 307893, + [SMALL_STATE(6625)] = 307914, + [SMALL_STATE(6626)] = 307935, + [SMALL_STATE(6627)] = 307953, + [SMALL_STATE(6628)] = 307971, + [SMALL_STATE(6629)] = 307989, + [SMALL_STATE(6630)] = 308007, + [SMALL_STATE(6631)] = 308025, + [SMALL_STATE(6632)] = 308043, + [SMALL_STATE(6633)] = 308061, + [SMALL_STATE(6634)] = 308079, + [SMALL_STATE(6635)] = 308097, + [SMALL_STATE(6636)] = 308115, + [SMALL_STATE(6637)] = 308133, + [SMALL_STATE(6638)] = 308151, + [SMALL_STATE(6639)] = 308169, + [SMALL_STATE(6640)] = 308187, + [SMALL_STATE(6641)] = 308205, + [SMALL_STATE(6642)] = 308223, + [SMALL_STATE(6643)] = 308241, + [SMALL_STATE(6644)] = 308259, + [SMALL_STATE(6645)] = 308277, + [SMALL_STATE(6646)] = 308295, + [SMALL_STATE(6647)] = 308313, + [SMALL_STATE(6648)] = 308331, + [SMALL_STATE(6649)] = 308349, + [SMALL_STATE(6650)] = 308367, + [SMALL_STATE(6651)] = 308385, + [SMALL_STATE(6652)] = 308403, + [SMALL_STATE(6653)] = 308421, + [SMALL_STATE(6654)] = 308439, + [SMALL_STATE(6655)] = 308457, + [SMALL_STATE(6656)] = 308475, + [SMALL_STATE(6657)] = 308493, + [SMALL_STATE(6658)] = 308511, + [SMALL_STATE(6659)] = 308529, + [SMALL_STATE(6660)] = 308547, + [SMALL_STATE(6661)] = 308565, + [SMALL_STATE(6662)] = 308583, + [SMALL_STATE(6663)] = 308601, + [SMALL_STATE(6664)] = 308619, + [SMALL_STATE(6665)] = 308637, + [SMALL_STATE(6666)] = 308655, + [SMALL_STATE(6667)] = 308673, + [SMALL_STATE(6668)] = 308691, + [SMALL_STATE(6669)] = 308709, + [SMALL_STATE(6670)] = 308727, + [SMALL_STATE(6671)] = 308745, + [SMALL_STATE(6672)] = 308763, + [SMALL_STATE(6673)] = 308781, + [SMALL_STATE(6674)] = 308799, + [SMALL_STATE(6675)] = 308817, + [SMALL_STATE(6676)] = 308835, + [SMALL_STATE(6677)] = 308853, + [SMALL_STATE(6678)] = 308871, + [SMALL_STATE(6679)] = 308889, + [SMALL_STATE(6680)] = 308907, + [SMALL_STATE(6681)] = 308925, + [SMALL_STATE(6682)] = 308943, + [SMALL_STATE(6683)] = 308961, + [SMALL_STATE(6684)] = 308979, + [SMALL_STATE(6685)] = 308997, + [SMALL_STATE(6686)] = 309015, + [SMALL_STATE(6687)] = 309033, + [SMALL_STATE(6688)] = 309051, + [SMALL_STATE(6689)] = 309069, + [SMALL_STATE(6690)] = 309087, + [SMALL_STATE(6691)] = 309105, + [SMALL_STATE(6692)] = 309123, + [SMALL_STATE(6693)] = 309141, + [SMALL_STATE(6694)] = 309159, + [SMALL_STATE(6695)] = 309177, + [SMALL_STATE(6696)] = 309195, + [SMALL_STATE(6697)] = 309213, + [SMALL_STATE(6698)] = 309231, + [SMALL_STATE(6699)] = 309249, + [SMALL_STATE(6700)] = 309267, + [SMALL_STATE(6701)] = 309285, + [SMALL_STATE(6702)] = 309303, + [SMALL_STATE(6703)] = 309321, + [SMALL_STATE(6704)] = 309339, + [SMALL_STATE(6705)] = 309357, + [SMALL_STATE(6706)] = 309375, + [SMALL_STATE(6707)] = 309393, + [SMALL_STATE(6708)] = 309411, + [SMALL_STATE(6709)] = 309429, + [SMALL_STATE(6710)] = 309447, + [SMALL_STATE(6711)] = 309465, + [SMALL_STATE(6712)] = 309483, + [SMALL_STATE(6713)] = 309501, + [SMALL_STATE(6714)] = 309519, + [SMALL_STATE(6715)] = 309537, + [SMALL_STATE(6716)] = 309555, + [SMALL_STATE(6717)] = 309573, + [SMALL_STATE(6718)] = 309591, + [SMALL_STATE(6719)] = 309609, + [SMALL_STATE(6720)] = 309627, + [SMALL_STATE(6721)] = 309645, + [SMALL_STATE(6722)] = 309663, + [SMALL_STATE(6723)] = 309681, + [SMALL_STATE(6724)] = 309699, + [SMALL_STATE(6725)] = 309717, + [SMALL_STATE(6726)] = 309735, + [SMALL_STATE(6727)] = 309753, + [SMALL_STATE(6728)] = 309771, + [SMALL_STATE(6729)] = 309789, + [SMALL_STATE(6730)] = 309807, + [SMALL_STATE(6731)] = 309825, + [SMALL_STATE(6732)] = 309843, + [SMALL_STATE(6733)] = 309861, + [SMALL_STATE(6734)] = 309879, + [SMALL_STATE(6735)] = 309897, + [SMALL_STATE(6736)] = 309915, + [SMALL_STATE(6737)] = 309933, + [SMALL_STATE(6738)] = 309951, + [SMALL_STATE(6739)] = 309969, + [SMALL_STATE(6740)] = 309987, + [SMALL_STATE(6741)] = 310005, + [SMALL_STATE(6742)] = 310023, + [SMALL_STATE(6743)] = 310041, + [SMALL_STATE(6744)] = 310059, + [SMALL_STATE(6745)] = 310077, + [SMALL_STATE(6746)] = 310095, + [SMALL_STATE(6747)] = 310113, + [SMALL_STATE(6748)] = 310131, + [SMALL_STATE(6749)] = 310149, + [SMALL_STATE(6750)] = 310167, + [SMALL_STATE(6751)] = 310185, + [SMALL_STATE(6752)] = 310203, + [SMALL_STATE(6753)] = 310221, + [SMALL_STATE(6754)] = 310239, + [SMALL_STATE(6755)] = 310257, + [SMALL_STATE(6756)] = 310275, + [SMALL_STATE(6757)] = 310293, + [SMALL_STATE(6758)] = 310311, + [SMALL_STATE(6759)] = 310329, + [SMALL_STATE(6760)] = 310347, + [SMALL_STATE(6761)] = 310365, + [SMALL_STATE(6762)] = 310383, + [SMALL_STATE(6763)] = 310401, + [SMALL_STATE(6764)] = 310419, + [SMALL_STATE(6765)] = 310437, + [SMALL_STATE(6766)] = 310455, + [SMALL_STATE(6767)] = 310473, + [SMALL_STATE(6768)] = 310491, + [SMALL_STATE(6769)] = 310509, + [SMALL_STATE(6770)] = 310527, + [SMALL_STATE(6771)] = 310545, + [SMALL_STATE(6772)] = 310563, + [SMALL_STATE(6773)] = 310581, + [SMALL_STATE(6774)] = 310599, + [SMALL_STATE(6775)] = 310617, + [SMALL_STATE(6776)] = 310635, + [SMALL_STATE(6777)] = 310653, + [SMALL_STATE(6778)] = 310671, + [SMALL_STATE(6779)] = 310689, + [SMALL_STATE(6780)] = 310707, + [SMALL_STATE(6781)] = 310725, + [SMALL_STATE(6782)] = 310743, + [SMALL_STATE(6783)] = 310761, + [SMALL_STATE(6784)] = 310779, + [SMALL_STATE(6785)] = 310797, + [SMALL_STATE(6786)] = 310815, + [SMALL_STATE(6787)] = 310833, + [SMALL_STATE(6788)] = 310851, + [SMALL_STATE(6789)] = 310869, + [SMALL_STATE(6790)] = 310887, + [SMALL_STATE(6791)] = 310905, + [SMALL_STATE(6792)] = 310923, + [SMALL_STATE(6793)] = 310941, + [SMALL_STATE(6794)] = 310959, + [SMALL_STATE(6795)] = 310977, + [SMALL_STATE(6796)] = 310995, + [SMALL_STATE(6797)] = 311013, + [SMALL_STATE(6798)] = 311031, + [SMALL_STATE(6799)] = 311049, + [SMALL_STATE(6800)] = 311067, + [SMALL_STATE(6801)] = 311085, + [SMALL_STATE(6802)] = 311103, + [SMALL_STATE(6803)] = 311121, + [SMALL_STATE(6804)] = 311139, + [SMALL_STATE(6805)] = 311157, + [SMALL_STATE(6806)] = 311175, + [SMALL_STATE(6807)] = 311193, + [SMALL_STATE(6808)] = 311211, + [SMALL_STATE(6809)] = 311229, + [SMALL_STATE(6810)] = 311247, + [SMALL_STATE(6811)] = 311265, + [SMALL_STATE(6812)] = 311283, + [SMALL_STATE(6813)] = 311301, + [SMALL_STATE(6814)] = 311319, + [SMALL_STATE(6815)] = 311337, + [SMALL_STATE(6816)] = 311355, + [SMALL_STATE(6817)] = 311373, + [SMALL_STATE(6818)] = 311391, + [SMALL_STATE(6819)] = 311409, + [SMALL_STATE(6820)] = 311427, + [SMALL_STATE(6821)] = 311445, + [SMALL_STATE(6822)] = 311463, + [SMALL_STATE(6823)] = 311481, + [SMALL_STATE(6824)] = 311499, + [SMALL_STATE(6825)] = 311517, + [SMALL_STATE(6826)] = 311535, + [SMALL_STATE(6827)] = 311553, + [SMALL_STATE(6828)] = 311571, + [SMALL_STATE(6829)] = 311589, + [SMALL_STATE(6830)] = 311607, + [SMALL_STATE(6831)] = 311625, + [SMALL_STATE(6832)] = 311643, + [SMALL_STATE(6833)] = 311661, + [SMALL_STATE(6834)] = 311679, + [SMALL_STATE(6835)] = 311697, + [SMALL_STATE(6836)] = 311715, + [SMALL_STATE(6837)] = 311733, + [SMALL_STATE(6838)] = 311751, + [SMALL_STATE(6839)] = 311769, + [SMALL_STATE(6840)] = 311787, + [SMALL_STATE(6841)] = 311805, + [SMALL_STATE(6842)] = 311823, + [SMALL_STATE(6843)] = 311841, + [SMALL_STATE(6844)] = 311859, + [SMALL_STATE(6845)] = 311877, + [SMALL_STATE(6846)] = 311895, + [SMALL_STATE(6847)] = 311913, + [SMALL_STATE(6848)] = 311931, + [SMALL_STATE(6849)] = 311949, + [SMALL_STATE(6850)] = 311967, + [SMALL_STATE(6851)] = 311985, + [SMALL_STATE(6852)] = 312003, + [SMALL_STATE(6853)] = 312021, + [SMALL_STATE(6854)] = 312039, + [SMALL_STATE(6855)] = 312057, + [SMALL_STATE(6856)] = 312075, + [SMALL_STATE(6857)] = 312093, + [SMALL_STATE(6858)] = 312111, + [SMALL_STATE(6859)] = 312129, + [SMALL_STATE(6860)] = 312147, + [SMALL_STATE(6861)] = 312165, + [SMALL_STATE(6862)] = 312183, + [SMALL_STATE(6863)] = 312201, + [SMALL_STATE(6864)] = 312219, + [SMALL_STATE(6865)] = 312237, + [SMALL_STATE(6866)] = 312255, + [SMALL_STATE(6867)] = 312273, + [SMALL_STATE(6868)] = 312291, + [SMALL_STATE(6869)] = 312309, + [SMALL_STATE(6870)] = 312327, + [SMALL_STATE(6871)] = 312345, + [SMALL_STATE(6872)] = 312363, + [SMALL_STATE(6873)] = 312381, + [SMALL_STATE(6874)] = 312399, + [SMALL_STATE(6875)] = 312417, + [SMALL_STATE(6876)] = 312435, + [SMALL_STATE(6877)] = 312453, + [SMALL_STATE(6878)] = 312471, + [SMALL_STATE(6879)] = 312489, + [SMALL_STATE(6880)] = 312507, + [SMALL_STATE(6881)] = 312525, + [SMALL_STATE(6882)] = 312543, + [SMALL_STATE(6883)] = 312561, + [SMALL_STATE(6884)] = 312579, + [SMALL_STATE(6885)] = 312597, + [SMALL_STATE(6886)] = 312615, + [SMALL_STATE(6887)] = 312633, + [SMALL_STATE(6888)] = 312651, + [SMALL_STATE(6889)] = 312669, + [SMALL_STATE(6890)] = 312687, + [SMALL_STATE(6891)] = 312705, + [SMALL_STATE(6892)] = 312723, + [SMALL_STATE(6893)] = 312741, + [SMALL_STATE(6894)] = 312759, + [SMALL_STATE(6895)] = 312777, + [SMALL_STATE(6896)] = 312795, + [SMALL_STATE(6897)] = 312813, + [SMALL_STATE(6898)] = 312831, + [SMALL_STATE(6899)] = 312849, + [SMALL_STATE(6900)] = 312867, + [SMALL_STATE(6901)] = 312885, + [SMALL_STATE(6902)] = 312903, + [SMALL_STATE(6903)] = 312921, + [SMALL_STATE(6904)] = 312939, + [SMALL_STATE(6905)] = 312957, + [SMALL_STATE(6906)] = 312975, + [SMALL_STATE(6907)] = 312993, + [SMALL_STATE(6908)] = 313011, + [SMALL_STATE(6909)] = 313029, + [SMALL_STATE(6910)] = 313047, + [SMALL_STATE(6911)] = 313065, + [SMALL_STATE(6912)] = 313083, + [SMALL_STATE(6913)] = 313101, + [SMALL_STATE(6914)] = 313119, + [SMALL_STATE(6915)] = 313137, + [SMALL_STATE(6916)] = 313155, + [SMALL_STATE(6917)] = 313173, + [SMALL_STATE(6918)] = 313191, + [SMALL_STATE(6919)] = 313209, + [SMALL_STATE(6920)] = 313227, + [SMALL_STATE(6921)] = 313245, + [SMALL_STATE(6922)] = 313263, + [SMALL_STATE(6923)] = 313281, + [SMALL_STATE(6924)] = 313299, + [SMALL_STATE(6925)] = 313317, + [SMALL_STATE(6926)] = 313335, + [SMALL_STATE(6927)] = 313353, + [SMALL_STATE(6928)] = 313371, + [SMALL_STATE(6929)] = 313389, + [SMALL_STATE(6930)] = 313407, + [SMALL_STATE(6931)] = 313425, + [SMALL_STATE(6932)] = 313443, + [SMALL_STATE(6933)] = 313461, + [SMALL_STATE(6934)] = 313479, + [SMALL_STATE(6935)] = 313497, + [SMALL_STATE(6936)] = 313515, + [SMALL_STATE(6937)] = 313533, + [SMALL_STATE(6938)] = 313551, + [SMALL_STATE(6939)] = 313569, + [SMALL_STATE(6940)] = 313587, + [SMALL_STATE(6941)] = 313605, + [SMALL_STATE(6942)] = 313623, + [SMALL_STATE(6943)] = 313641, + [SMALL_STATE(6944)] = 313659, + [SMALL_STATE(6945)] = 313677, + [SMALL_STATE(6946)] = 313695, + [SMALL_STATE(6947)] = 313713, + [SMALL_STATE(6948)] = 313731, + [SMALL_STATE(6949)] = 313749, + [SMALL_STATE(6950)] = 313767, + [SMALL_STATE(6951)] = 313785, + [SMALL_STATE(6952)] = 313803, + [SMALL_STATE(6953)] = 313821, + [SMALL_STATE(6954)] = 313839, + [SMALL_STATE(6955)] = 313857, + [SMALL_STATE(6956)] = 313875, + [SMALL_STATE(6957)] = 313893, + [SMALL_STATE(6958)] = 313911, + [SMALL_STATE(6959)] = 313929, + [SMALL_STATE(6960)] = 313947, + [SMALL_STATE(6961)] = 313965, + [SMALL_STATE(6962)] = 313983, + [SMALL_STATE(6963)] = 314001, + [SMALL_STATE(6964)] = 314019, + [SMALL_STATE(6965)] = 314037, + [SMALL_STATE(6966)] = 314055, + [SMALL_STATE(6967)] = 314073, + [SMALL_STATE(6968)] = 314091, + [SMALL_STATE(6969)] = 314109, + [SMALL_STATE(6970)] = 314127, + [SMALL_STATE(6971)] = 314145, + [SMALL_STATE(6972)] = 314163, + [SMALL_STATE(6973)] = 314181, + [SMALL_STATE(6974)] = 314199, + [SMALL_STATE(6975)] = 314217, + [SMALL_STATE(6976)] = 314235, + [SMALL_STATE(6977)] = 314253, + [SMALL_STATE(6978)] = 314271, + [SMALL_STATE(6979)] = 314289, + [SMALL_STATE(6980)] = 314307, + [SMALL_STATE(6981)] = 314325, + [SMALL_STATE(6982)] = 314343, + [SMALL_STATE(6983)] = 314361, + [SMALL_STATE(6984)] = 314379, + [SMALL_STATE(6985)] = 314397, + [SMALL_STATE(6986)] = 314415, + [SMALL_STATE(6987)] = 314433, + [SMALL_STATE(6988)] = 314451, + [SMALL_STATE(6989)] = 314469, + [SMALL_STATE(6990)] = 314487, + [SMALL_STATE(6991)] = 314505, + [SMALL_STATE(6992)] = 314523, + [SMALL_STATE(6993)] = 314541, + [SMALL_STATE(6994)] = 314559, + [SMALL_STATE(6995)] = 314577, + [SMALL_STATE(6996)] = 314595, + [SMALL_STATE(6997)] = 314613, + [SMALL_STATE(6998)] = 314631, + [SMALL_STATE(6999)] = 314649, + [SMALL_STATE(7000)] = 314667, + [SMALL_STATE(7001)] = 314685, + [SMALL_STATE(7002)] = 314703, + [SMALL_STATE(7003)] = 314721, + [SMALL_STATE(7004)] = 314739, + [SMALL_STATE(7005)] = 314757, + [SMALL_STATE(7006)] = 314775, + [SMALL_STATE(7007)] = 314793, + [SMALL_STATE(7008)] = 314811, + [SMALL_STATE(7009)] = 314829, + [SMALL_STATE(7010)] = 314847, + [SMALL_STATE(7011)] = 314865, + [SMALL_STATE(7012)] = 314883, + [SMALL_STATE(7013)] = 314901, + [SMALL_STATE(7014)] = 314919, + [SMALL_STATE(7015)] = 314937, + [SMALL_STATE(7016)] = 314955, + [SMALL_STATE(7017)] = 314973, + [SMALL_STATE(7018)] = 314991, + [SMALL_STATE(7019)] = 315009, + [SMALL_STATE(7020)] = 315027, + [SMALL_STATE(7021)] = 315045, + [SMALL_STATE(7022)] = 315063, + [SMALL_STATE(7023)] = 315081, + [SMALL_STATE(7024)] = 315099, + [SMALL_STATE(7025)] = 315117, + [SMALL_STATE(7026)] = 315135, + [SMALL_STATE(7027)] = 315153, + [SMALL_STATE(7028)] = 315171, + [SMALL_STATE(7029)] = 315189, + [SMALL_STATE(7030)] = 315207, + [SMALL_STATE(7031)] = 315225, + [SMALL_STATE(7032)] = 315243, + [SMALL_STATE(7033)] = 315261, + [SMALL_STATE(7034)] = 315279, + [SMALL_STATE(7035)] = 315297, + [SMALL_STATE(7036)] = 315315, + [SMALL_STATE(7037)] = 315333, + [SMALL_STATE(7038)] = 315351, + [SMALL_STATE(7039)] = 315369, + [SMALL_STATE(7040)] = 315387, + [SMALL_STATE(7041)] = 315405, + [SMALL_STATE(7042)] = 315423, + [SMALL_STATE(7043)] = 315441, + [SMALL_STATE(7044)] = 315459, + [SMALL_STATE(7045)] = 315477, + [SMALL_STATE(7046)] = 315495, + [SMALL_STATE(7047)] = 315513, + [SMALL_STATE(7048)] = 315531, + [SMALL_STATE(7049)] = 315549, + [SMALL_STATE(7050)] = 315567, + [SMALL_STATE(7051)] = 315585, + [SMALL_STATE(7052)] = 315603, + [SMALL_STATE(7053)] = 315621, + [SMALL_STATE(7054)] = 315639, + [SMALL_STATE(7055)] = 315657, + [SMALL_STATE(7056)] = 315675, + [SMALL_STATE(7057)] = 315693, + [SMALL_STATE(7058)] = 315711, + [SMALL_STATE(7059)] = 315729, + [SMALL_STATE(7060)] = 315747, + [SMALL_STATE(7061)] = 315765, + [SMALL_STATE(7062)] = 315783, + [SMALL_STATE(7063)] = 315801, + [SMALL_STATE(7064)] = 315819, + [SMALL_STATE(7065)] = 315837, + [SMALL_STATE(7066)] = 315855, + [SMALL_STATE(7067)] = 315873, + [SMALL_STATE(7068)] = 315891, + [SMALL_STATE(7069)] = 315909, + [SMALL_STATE(7070)] = 315927, + [SMALL_STATE(7071)] = 315945, + [SMALL_STATE(7072)] = 315963, + [SMALL_STATE(7073)] = 315981, + [SMALL_STATE(7074)] = 315999, + [SMALL_STATE(7075)] = 316017, + [SMALL_STATE(7076)] = 316035, + [SMALL_STATE(7077)] = 316053, + [SMALL_STATE(7078)] = 316071, + [SMALL_STATE(7079)] = 316089, + [SMALL_STATE(7080)] = 316107, + [SMALL_STATE(7081)] = 316125, + [SMALL_STATE(7082)] = 316143, + [SMALL_STATE(7083)] = 316161, + [SMALL_STATE(7084)] = 316179, + [SMALL_STATE(7085)] = 316197, + [SMALL_STATE(7086)] = 316215, + [SMALL_STATE(7087)] = 316233, + [SMALL_STATE(7088)] = 316251, + [SMALL_STATE(7089)] = 316269, + [SMALL_STATE(7090)] = 316287, + [SMALL_STATE(7091)] = 316305, + [SMALL_STATE(7092)] = 316323, + [SMALL_STATE(7093)] = 316341, + [SMALL_STATE(7094)] = 316359, + [SMALL_STATE(7095)] = 316377, + [SMALL_STATE(7096)] = 316395, + [SMALL_STATE(7097)] = 316413, + [SMALL_STATE(7098)] = 316431, + [SMALL_STATE(7099)] = 316449, + [SMALL_STATE(7100)] = 316467, + [SMALL_STATE(7101)] = 316485, + [SMALL_STATE(7102)] = 316503, + [SMALL_STATE(7103)] = 316521, + [SMALL_STATE(7104)] = 316539, + [SMALL_STATE(7105)] = 316557, + [SMALL_STATE(7106)] = 316575, + [SMALL_STATE(7107)] = 316593, + [SMALL_STATE(7108)] = 316611, + [SMALL_STATE(7109)] = 316629, + [SMALL_STATE(7110)] = 316647, + [SMALL_STATE(7111)] = 316665, + [SMALL_STATE(7112)] = 316683, + [SMALL_STATE(7113)] = 316701, + [SMALL_STATE(7114)] = 316719, + [SMALL_STATE(7115)] = 316737, + [SMALL_STATE(7116)] = 316755, + [SMALL_STATE(7117)] = 316773, + [SMALL_STATE(7118)] = 316791, + [SMALL_STATE(7119)] = 316809, + [SMALL_STATE(7120)] = 316827, + [SMALL_STATE(7121)] = 316845, + [SMALL_STATE(7122)] = 316863, + [SMALL_STATE(7123)] = 316881, + [SMALL_STATE(7124)] = 316899, + [SMALL_STATE(7125)] = 316917, + [SMALL_STATE(7126)] = 316935, + [SMALL_STATE(7127)] = 316953, + [SMALL_STATE(7128)] = 316971, + [SMALL_STATE(7129)] = 316989, + [SMALL_STATE(7130)] = 317007, + [SMALL_STATE(7131)] = 317025, + [SMALL_STATE(7132)] = 317043, + [SMALL_STATE(7133)] = 317061, + [SMALL_STATE(7134)] = 317079, + [SMALL_STATE(7135)] = 317097, + [SMALL_STATE(7136)] = 317115, + [SMALL_STATE(7137)] = 317133, + [SMALL_STATE(7138)] = 317151, + [SMALL_STATE(7139)] = 317169, + [SMALL_STATE(7140)] = 317187, + [SMALL_STATE(7141)] = 317205, + [SMALL_STATE(7142)] = 317223, + [SMALL_STATE(7143)] = 317241, + [SMALL_STATE(7144)] = 317259, + [SMALL_STATE(7145)] = 317277, + [SMALL_STATE(7146)] = 317295, + [SMALL_STATE(7147)] = 317313, + [SMALL_STATE(7148)] = 317331, + [SMALL_STATE(7149)] = 317349, + [SMALL_STATE(7150)] = 317367, + [SMALL_STATE(7151)] = 317385, + [SMALL_STATE(7152)] = 317403, + [SMALL_STATE(7153)] = 317421, + [SMALL_STATE(7154)] = 317439, + [SMALL_STATE(7155)] = 317457, + [SMALL_STATE(7156)] = 317475, + [SMALL_STATE(7157)] = 317493, + [SMALL_STATE(7158)] = 317511, + [SMALL_STATE(7159)] = 317529, + [SMALL_STATE(7160)] = 317547, + [SMALL_STATE(7161)] = 317565, + [SMALL_STATE(7162)] = 317583, + [SMALL_STATE(7163)] = 317601, + [SMALL_STATE(7164)] = 317619, + [SMALL_STATE(7165)] = 317637, + [SMALL_STATE(7166)] = 317655, + [SMALL_STATE(7167)] = 317673, + [SMALL_STATE(7168)] = 317691, + [SMALL_STATE(7169)] = 317709, + [SMALL_STATE(7170)] = 317727, + [SMALL_STATE(7171)] = 317745, + [SMALL_STATE(7172)] = 317763, + [SMALL_STATE(7173)] = 317781, + [SMALL_STATE(7174)] = 317799, + [SMALL_STATE(7175)] = 317817, + [SMALL_STATE(7176)] = 317835, + [SMALL_STATE(7177)] = 317853, + [SMALL_STATE(7178)] = 317871, + [SMALL_STATE(7179)] = 317889, + [SMALL_STATE(7180)] = 317907, + [SMALL_STATE(7181)] = 317925, + [SMALL_STATE(7182)] = 317943, + [SMALL_STATE(7183)] = 317961, + [SMALL_STATE(7184)] = 317979, + [SMALL_STATE(7185)] = 317997, + [SMALL_STATE(7186)] = 318015, + [SMALL_STATE(7187)] = 318033, + [SMALL_STATE(7188)] = 318051, + [SMALL_STATE(7189)] = 318069, + [SMALL_STATE(7190)] = 318087, + [SMALL_STATE(7191)] = 318105, + [SMALL_STATE(7192)] = 318123, + [SMALL_STATE(7193)] = 318141, + [SMALL_STATE(7194)] = 318159, + [SMALL_STATE(7195)] = 318177, + [SMALL_STATE(7196)] = 318195, + [SMALL_STATE(7197)] = 318213, + [SMALL_STATE(7198)] = 318231, + [SMALL_STATE(7199)] = 318249, + [SMALL_STATE(7200)] = 318267, + [SMALL_STATE(7201)] = 318285, + [SMALL_STATE(7202)] = 318303, + [SMALL_STATE(7203)] = 318321, + [SMALL_STATE(7204)] = 318339, + [SMALL_STATE(7205)] = 318357, + [SMALL_STATE(7206)] = 318375, + [SMALL_STATE(7207)] = 318393, + [SMALL_STATE(7208)] = 318411, + [SMALL_STATE(7209)] = 318429, + [SMALL_STATE(7210)] = 318447, + [SMALL_STATE(7211)] = 318465, + [SMALL_STATE(7212)] = 318483, + [SMALL_STATE(7213)] = 318501, + [SMALL_STATE(7214)] = 318519, + [SMALL_STATE(7215)] = 318537, + [SMALL_STATE(7216)] = 318555, + [SMALL_STATE(7217)] = 318573, + [SMALL_STATE(7218)] = 318591, + [SMALL_STATE(7219)] = 318609, + [SMALL_STATE(7220)] = 318627, + [SMALL_STATE(7221)] = 318645, + [SMALL_STATE(7222)] = 318663, + [SMALL_STATE(7223)] = 318681, + [SMALL_STATE(7224)] = 318699, + [SMALL_STATE(7225)] = 318717, + [SMALL_STATE(7226)] = 318735, + [SMALL_STATE(7227)] = 318753, + [SMALL_STATE(7228)] = 318771, + [SMALL_STATE(7229)] = 318789, + [SMALL_STATE(7230)] = 318807, + [SMALL_STATE(7231)] = 318825, + [SMALL_STATE(7232)] = 318843, + [SMALL_STATE(7233)] = 318861, + [SMALL_STATE(7234)] = 318879, + [SMALL_STATE(7235)] = 318897, + [SMALL_STATE(7236)] = 318915, + [SMALL_STATE(7237)] = 318933, + [SMALL_STATE(7238)] = 318951, + [SMALL_STATE(7239)] = 318969, + [SMALL_STATE(7240)] = 318987, + [SMALL_STATE(7241)] = 319005, + [SMALL_STATE(7242)] = 319023, + [SMALL_STATE(7243)] = 319041, + [SMALL_STATE(7244)] = 319059, + [SMALL_STATE(7245)] = 319077, + [SMALL_STATE(7246)] = 319095, + [SMALL_STATE(7247)] = 319113, + [SMALL_STATE(7248)] = 319131, + [SMALL_STATE(7249)] = 319149, + [SMALL_STATE(7250)] = 319167, + [SMALL_STATE(7251)] = 319185, + [SMALL_STATE(7252)] = 319203, + [SMALL_STATE(7253)] = 319221, + [SMALL_STATE(7254)] = 319239, + [SMALL_STATE(7255)] = 319257, + [SMALL_STATE(7256)] = 319275, + [SMALL_STATE(7257)] = 319293, + [SMALL_STATE(7258)] = 319311, + [SMALL_STATE(7259)] = 319329, + [SMALL_STATE(7260)] = 319347, + [SMALL_STATE(7261)] = 319365, + [SMALL_STATE(7262)] = 319383, + [SMALL_STATE(7263)] = 319401, + [SMALL_STATE(7264)] = 319419, + [SMALL_STATE(7265)] = 319437, + [SMALL_STATE(7266)] = 319455, + [SMALL_STATE(7267)] = 319473, + [SMALL_STATE(7268)] = 319491, + [SMALL_STATE(7269)] = 319509, + [SMALL_STATE(7270)] = 319527, + [SMALL_STATE(7271)] = 319545, + [SMALL_STATE(7272)] = 319563, + [SMALL_STATE(7273)] = 319581, + [SMALL_STATE(7274)] = 319599, + [SMALL_STATE(7275)] = 319617, + [SMALL_STATE(7276)] = 319635, + [SMALL_STATE(7277)] = 319653, + [SMALL_STATE(7278)] = 319671, + [SMALL_STATE(7279)] = 319689, + [SMALL_STATE(7280)] = 319707, + [SMALL_STATE(7281)] = 319725, + [SMALL_STATE(7282)] = 319743, + [SMALL_STATE(7283)] = 319761, + [SMALL_STATE(7284)] = 319779, + [SMALL_STATE(7285)] = 319797, + [SMALL_STATE(7286)] = 319815, + [SMALL_STATE(7287)] = 319833, + [SMALL_STATE(7288)] = 319851, + [SMALL_STATE(7289)] = 319869, + [SMALL_STATE(7290)] = 319887, + [SMALL_STATE(7291)] = 319905, + [SMALL_STATE(7292)] = 319923, + [SMALL_STATE(7293)] = 319941, + [SMALL_STATE(7294)] = 319959, + [SMALL_STATE(7295)] = 319977, + [SMALL_STATE(7296)] = 319995, + [SMALL_STATE(7297)] = 320013, + [SMALL_STATE(7298)] = 320031, + [SMALL_STATE(7299)] = 320049, + [SMALL_STATE(7300)] = 320067, + [SMALL_STATE(7301)] = 320085, + [SMALL_STATE(7302)] = 320103, + [SMALL_STATE(7303)] = 320121, + [SMALL_STATE(7304)] = 320139, + [SMALL_STATE(7305)] = 320157, + [SMALL_STATE(7306)] = 320175, + [SMALL_STATE(7307)] = 320193, + [SMALL_STATE(7308)] = 320211, + [SMALL_STATE(7309)] = 320229, + [SMALL_STATE(7310)] = 320247, + [SMALL_STATE(7311)] = 320265, + [SMALL_STATE(7312)] = 320283, + [SMALL_STATE(7313)] = 320301, + [SMALL_STATE(7314)] = 320319, + [SMALL_STATE(7315)] = 320337, + [SMALL_STATE(7316)] = 320355, + [SMALL_STATE(7317)] = 320373, + [SMALL_STATE(7318)] = 320391, + [SMALL_STATE(7319)] = 320409, + [SMALL_STATE(7320)] = 320427, + [SMALL_STATE(7321)] = 320445, + [SMALL_STATE(7322)] = 320463, + [SMALL_STATE(7323)] = 320481, + [SMALL_STATE(7324)] = 320499, + [SMALL_STATE(7325)] = 320517, + [SMALL_STATE(7326)] = 320535, + [SMALL_STATE(7327)] = 320553, + [SMALL_STATE(7328)] = 320571, + [SMALL_STATE(7329)] = 320589, + [SMALL_STATE(7330)] = 320607, + [SMALL_STATE(7331)] = 320625, + [SMALL_STATE(7332)] = 320643, + [SMALL_STATE(7333)] = 320661, + [SMALL_STATE(7334)] = 320679, + [SMALL_STATE(7335)] = 320697, + [SMALL_STATE(7336)] = 320715, + [SMALL_STATE(7337)] = 320733, + [SMALL_STATE(7338)] = 320751, + [SMALL_STATE(7339)] = 320769, + [SMALL_STATE(7340)] = 320787, + [SMALL_STATE(7341)] = 320805, + [SMALL_STATE(7342)] = 320823, + [SMALL_STATE(7343)] = 320841, + [SMALL_STATE(7344)] = 320859, + [SMALL_STATE(7345)] = 320877, + [SMALL_STATE(7346)] = 320895, + [SMALL_STATE(7347)] = 320913, + [SMALL_STATE(7348)] = 320931, + [SMALL_STATE(7349)] = 320949, + [SMALL_STATE(7350)] = 320967, + [SMALL_STATE(7351)] = 320985, + [SMALL_STATE(7352)] = 321003, + [SMALL_STATE(7353)] = 321021, + [SMALL_STATE(7354)] = 321039, + [SMALL_STATE(7355)] = 321057, + [SMALL_STATE(7356)] = 321075, + [SMALL_STATE(7357)] = 321093, + [SMALL_STATE(7358)] = 321111, + [SMALL_STATE(7359)] = 321129, + [SMALL_STATE(7360)] = 321147, + [SMALL_STATE(7361)] = 321165, + [SMALL_STATE(7362)] = 321183, + [SMALL_STATE(7363)] = 321201, + [SMALL_STATE(7364)] = 321219, + [SMALL_STATE(7365)] = 321237, + [SMALL_STATE(7366)] = 321255, + [SMALL_STATE(7367)] = 321273, + [SMALL_STATE(7368)] = 321291, + [SMALL_STATE(7369)] = 321309, + [SMALL_STATE(7370)] = 321327, + [SMALL_STATE(7371)] = 321345, + [SMALL_STATE(7372)] = 321363, + [SMALL_STATE(7373)] = 321381, + [SMALL_STATE(7374)] = 321399, + [SMALL_STATE(7375)] = 321417, + [SMALL_STATE(7376)] = 321435, + [SMALL_STATE(7377)] = 321453, + [SMALL_STATE(7378)] = 321471, + [SMALL_STATE(7379)] = 321489, + [SMALL_STATE(7380)] = 321507, + [SMALL_STATE(7381)] = 321525, + [SMALL_STATE(7382)] = 321543, + [SMALL_STATE(7383)] = 321561, + [SMALL_STATE(7384)] = 321579, + [SMALL_STATE(7385)] = 321597, + [SMALL_STATE(7386)] = 321615, + [SMALL_STATE(7387)] = 321633, + [SMALL_STATE(7388)] = 321651, + [SMALL_STATE(7389)] = 321669, + [SMALL_STATE(7390)] = 321687, + [SMALL_STATE(7391)] = 321705, + [SMALL_STATE(7392)] = 321723, + [SMALL_STATE(7393)] = 321741, + [SMALL_STATE(7394)] = 321759, + [SMALL_STATE(7395)] = 321777, + [SMALL_STATE(7396)] = 321795, + [SMALL_STATE(7397)] = 321813, + [SMALL_STATE(7398)] = 321831, + [SMALL_STATE(7399)] = 321849, + [SMALL_STATE(7400)] = 321867, + [SMALL_STATE(7401)] = 321885, + [SMALL_STATE(7402)] = 321903, + [SMALL_STATE(7403)] = 321921, + [SMALL_STATE(7404)] = 321939, + [SMALL_STATE(7405)] = 321957, + [SMALL_STATE(7406)] = 321975, + [SMALL_STATE(7407)] = 321993, + [SMALL_STATE(7408)] = 322011, + [SMALL_STATE(7409)] = 322029, + [SMALL_STATE(7410)] = 322047, + [SMALL_STATE(7411)] = 322065, + [SMALL_STATE(7412)] = 322083, + [SMALL_STATE(7413)] = 322101, + [SMALL_STATE(7414)] = 322119, + [SMALL_STATE(7415)] = 322137, + [SMALL_STATE(7416)] = 322155, + [SMALL_STATE(7417)] = 322173, + [SMALL_STATE(7418)] = 322191, + [SMALL_STATE(7419)] = 322209, + [SMALL_STATE(7420)] = 322227, + [SMALL_STATE(7421)] = 322245, + [SMALL_STATE(7422)] = 322263, + [SMALL_STATE(7423)] = 322281, + [SMALL_STATE(7424)] = 322299, + [SMALL_STATE(7425)] = 322317, + [SMALL_STATE(7426)] = 322335, + [SMALL_STATE(7427)] = 322353, + [SMALL_STATE(7428)] = 322371, + [SMALL_STATE(7429)] = 322389, + [SMALL_STATE(7430)] = 322407, + [SMALL_STATE(7431)] = 322425, + [SMALL_STATE(7432)] = 322443, + [SMALL_STATE(7433)] = 322461, + [SMALL_STATE(7434)] = 322479, + [SMALL_STATE(7435)] = 322497, + [SMALL_STATE(7436)] = 322515, + [SMALL_STATE(7437)] = 322533, + [SMALL_STATE(7438)] = 322551, + [SMALL_STATE(7439)] = 322569, + [SMALL_STATE(7440)] = 322587, + [SMALL_STATE(7441)] = 322605, + [SMALL_STATE(7442)] = 322623, + [SMALL_STATE(7443)] = 322641, + [SMALL_STATE(7444)] = 322659, + [SMALL_STATE(7445)] = 322677, + [SMALL_STATE(7446)] = 322695, + [SMALL_STATE(7447)] = 322713, + [SMALL_STATE(7448)] = 322731, + [SMALL_STATE(7449)] = 322749, + [SMALL_STATE(7450)] = 322767, + [SMALL_STATE(7451)] = 322785, + [SMALL_STATE(7452)] = 322803, + [SMALL_STATE(7453)] = 322821, + [SMALL_STATE(7454)] = 322839, + [SMALL_STATE(7455)] = 322857, + [SMALL_STATE(7456)] = 322875, + [SMALL_STATE(7457)] = 322893, + [SMALL_STATE(7458)] = 322911, + [SMALL_STATE(7459)] = 322929, + [SMALL_STATE(7460)] = 322947, + [SMALL_STATE(7461)] = 322965, + [SMALL_STATE(7462)] = 322983, + [SMALL_STATE(7463)] = 323001, + [SMALL_STATE(7464)] = 323019, + [SMALL_STATE(7465)] = 323037, + [SMALL_STATE(7466)] = 323055, + [SMALL_STATE(7467)] = 323073, + [SMALL_STATE(7468)] = 323091, + [SMALL_STATE(7469)] = 323109, + [SMALL_STATE(7470)] = 323127, + [SMALL_STATE(7471)] = 323145, + [SMALL_STATE(7472)] = 323163, + [SMALL_STATE(7473)] = 323181, + [SMALL_STATE(7474)] = 323199, + [SMALL_STATE(7475)] = 323217, + [SMALL_STATE(7476)] = 323235, + [SMALL_STATE(7477)] = 323253, + [SMALL_STATE(7478)] = 323271, + [SMALL_STATE(7479)] = 323289, + [SMALL_STATE(7480)] = 323307, + [SMALL_STATE(7481)] = 323325, + [SMALL_STATE(7482)] = 323343, + [SMALL_STATE(7483)] = 323361, + [SMALL_STATE(7484)] = 323379, + [SMALL_STATE(7485)] = 323397, + [SMALL_STATE(7486)] = 323415, + [SMALL_STATE(7487)] = 323433, + [SMALL_STATE(7488)] = 323451, + [SMALL_STATE(7489)] = 323469, + [SMALL_STATE(7490)] = 323487, + [SMALL_STATE(7491)] = 323505, + [SMALL_STATE(7492)] = 323523, + [SMALL_STATE(7493)] = 323541, + [SMALL_STATE(7494)] = 323559, + [SMALL_STATE(7495)] = 323577, + [SMALL_STATE(7496)] = 323595, + [SMALL_STATE(7497)] = 323613, + [SMALL_STATE(7498)] = 323631, + [SMALL_STATE(7499)] = 323649, + [SMALL_STATE(7500)] = 323667, + [SMALL_STATE(7501)] = 323685, + [SMALL_STATE(7502)] = 323703, + [SMALL_STATE(7503)] = 323721, + [SMALL_STATE(7504)] = 323739, + [SMALL_STATE(7505)] = 323757, + [SMALL_STATE(7506)] = 323775, + [SMALL_STATE(7507)] = 323793, + [SMALL_STATE(7508)] = 323811, + [SMALL_STATE(7509)] = 323829, + [SMALL_STATE(7510)] = 323847, + [SMALL_STATE(7511)] = 323865, + [SMALL_STATE(7512)] = 323883, + [SMALL_STATE(7513)] = 323901, + [SMALL_STATE(7514)] = 323919, + [SMALL_STATE(7515)] = 323937, + [SMALL_STATE(7516)] = 323955, + [SMALL_STATE(7517)] = 323973, + [SMALL_STATE(7518)] = 323991, + [SMALL_STATE(7519)] = 324009, + [SMALL_STATE(7520)] = 324027, + [SMALL_STATE(7521)] = 324045, + [SMALL_STATE(7522)] = 324063, + [SMALL_STATE(7523)] = 324081, + [SMALL_STATE(7524)] = 324099, + [SMALL_STATE(7525)] = 324117, + [SMALL_STATE(7526)] = 324135, + [SMALL_STATE(7527)] = 324153, + [SMALL_STATE(7528)] = 324171, + [SMALL_STATE(7529)] = 324189, + [SMALL_STATE(7530)] = 324207, + [SMALL_STATE(7531)] = 324225, + [SMALL_STATE(7532)] = 324243, + [SMALL_STATE(7533)] = 324261, + [SMALL_STATE(7534)] = 324279, + [SMALL_STATE(7535)] = 324297, + [SMALL_STATE(7536)] = 324315, + [SMALL_STATE(7537)] = 324333, + [SMALL_STATE(7538)] = 324351, + [SMALL_STATE(7539)] = 324369, + [SMALL_STATE(7540)] = 324387, + [SMALL_STATE(7541)] = 324405, + [SMALL_STATE(7542)] = 324423, + [SMALL_STATE(7543)] = 324441, + [SMALL_STATE(7544)] = 324459, + [SMALL_STATE(7545)] = 324477, + [SMALL_STATE(7546)] = 324495, + [SMALL_STATE(7547)] = 324513, + [SMALL_STATE(7548)] = 324531, + [SMALL_STATE(7549)] = 324549, + [SMALL_STATE(7550)] = 324567, + [SMALL_STATE(7551)] = 324585, + [SMALL_STATE(7552)] = 324603, + [SMALL_STATE(7553)] = 324621, + [SMALL_STATE(7554)] = 324639, + [SMALL_STATE(7555)] = 324657, + [SMALL_STATE(7556)] = 324675, + [SMALL_STATE(7557)] = 324693, + [SMALL_STATE(7558)] = 324711, + [SMALL_STATE(7559)] = 324729, + [SMALL_STATE(7560)] = 324747, + [SMALL_STATE(7561)] = 324765, + [SMALL_STATE(7562)] = 324783, + [SMALL_STATE(7563)] = 324801, + [SMALL_STATE(7564)] = 324819, + [SMALL_STATE(7565)] = 324837, + [SMALL_STATE(7566)] = 324855, + [SMALL_STATE(7567)] = 324873, + [SMALL_STATE(7568)] = 324891, + [SMALL_STATE(7569)] = 324909, + [SMALL_STATE(7570)] = 324927, + [SMALL_STATE(7571)] = 324945, + [SMALL_STATE(7572)] = 324963, + [SMALL_STATE(7573)] = 324981, + [SMALL_STATE(7574)] = 324999, + [SMALL_STATE(7575)] = 325017, + [SMALL_STATE(7576)] = 325035, + [SMALL_STATE(7577)] = 325053, + [SMALL_STATE(7578)] = 325071, + [SMALL_STATE(7579)] = 325089, + [SMALL_STATE(7580)] = 325107, + [SMALL_STATE(7581)] = 325125, + [SMALL_STATE(7582)] = 325143, + [SMALL_STATE(7583)] = 325161, + [SMALL_STATE(7584)] = 325179, + [SMALL_STATE(7585)] = 325197, + [SMALL_STATE(7586)] = 325215, + [SMALL_STATE(7587)] = 325233, + [SMALL_STATE(7588)] = 325251, + [SMALL_STATE(7589)] = 325269, + [SMALL_STATE(7590)] = 325287, + [SMALL_STATE(7591)] = 325305, + [SMALL_STATE(7592)] = 325323, + [SMALL_STATE(7593)] = 325341, + [SMALL_STATE(7594)] = 325359, + [SMALL_STATE(7595)] = 325377, + [SMALL_STATE(7596)] = 325395, + [SMALL_STATE(7597)] = 325413, + [SMALL_STATE(7598)] = 325431, + [SMALL_STATE(7599)] = 325449, + [SMALL_STATE(7600)] = 325467, + [SMALL_STATE(7601)] = 325485, + [SMALL_STATE(7602)] = 325503, + [SMALL_STATE(7603)] = 325521, + [SMALL_STATE(7604)] = 325539, + [SMALL_STATE(7605)] = 325557, + [SMALL_STATE(7606)] = 325575, + [SMALL_STATE(7607)] = 325593, + [SMALL_STATE(7608)] = 325611, + [SMALL_STATE(7609)] = 325629, + [SMALL_STATE(7610)] = 325647, + [SMALL_STATE(7611)] = 325665, + [SMALL_STATE(7612)] = 325683, + [SMALL_STATE(7613)] = 325701, + [SMALL_STATE(7614)] = 325719, + [SMALL_STATE(7615)] = 325737, + [SMALL_STATE(7616)] = 325755, + [SMALL_STATE(7617)] = 325773, + [SMALL_STATE(7618)] = 325791, + [SMALL_STATE(7619)] = 325809, + [SMALL_STATE(7620)] = 325827, + [SMALL_STATE(7621)] = 325845, + [SMALL_STATE(7622)] = 325863, + [SMALL_STATE(7623)] = 325881, + [SMALL_STATE(7624)] = 325899, + [SMALL_STATE(7625)] = 325917, + [SMALL_STATE(7626)] = 325935, + [SMALL_STATE(7627)] = 325953, + [SMALL_STATE(7628)] = 325971, + [SMALL_STATE(7629)] = 325989, + [SMALL_STATE(7630)] = 326007, + [SMALL_STATE(7631)] = 326025, + [SMALL_STATE(7632)] = 326043, + [SMALL_STATE(7633)] = 326061, + [SMALL_STATE(7634)] = 326079, + [SMALL_STATE(7635)] = 326097, + [SMALL_STATE(7636)] = 326115, + [SMALL_STATE(7637)] = 326133, + [SMALL_STATE(7638)] = 326151, + [SMALL_STATE(7639)] = 326169, + [SMALL_STATE(7640)] = 326187, + [SMALL_STATE(7641)] = 326205, + [SMALL_STATE(7642)] = 326223, + [SMALL_STATE(7643)] = 326241, + [SMALL_STATE(7644)] = 326259, + [SMALL_STATE(7645)] = 326277, + [SMALL_STATE(7646)] = 326295, + [SMALL_STATE(7647)] = 326313, + [SMALL_STATE(7648)] = 326331, + [SMALL_STATE(7649)] = 326349, + [SMALL_STATE(7650)] = 326367, + [SMALL_STATE(7651)] = 326385, + [SMALL_STATE(7652)] = 326403, + [SMALL_STATE(7653)] = 326421, + [SMALL_STATE(7654)] = 326439, + [SMALL_STATE(7655)] = 326457, + [SMALL_STATE(7656)] = 326475, + [SMALL_STATE(7657)] = 326493, + [SMALL_STATE(7658)] = 326511, + [SMALL_STATE(7659)] = 326529, + [SMALL_STATE(7660)] = 326547, + [SMALL_STATE(7661)] = 326565, + [SMALL_STATE(7662)] = 326583, + [SMALL_STATE(7663)] = 326601, + [SMALL_STATE(7664)] = 326619, + [SMALL_STATE(7665)] = 326637, + [SMALL_STATE(7666)] = 326655, + [SMALL_STATE(7667)] = 326673, + [SMALL_STATE(7668)] = 326691, + [SMALL_STATE(7669)] = 326709, + [SMALL_STATE(7670)] = 326727, + [SMALL_STATE(7671)] = 326745, + [SMALL_STATE(7672)] = 326763, + [SMALL_STATE(7673)] = 326781, + [SMALL_STATE(7674)] = 326799, + [SMALL_STATE(7675)] = 326817, + [SMALL_STATE(7676)] = 326835, + [SMALL_STATE(7677)] = 326853, + [SMALL_STATE(7678)] = 326871, + [SMALL_STATE(7679)] = 326889, + [SMALL_STATE(7680)] = 326907, + [SMALL_STATE(7681)] = 326925, + [SMALL_STATE(7682)] = 326943, + [SMALL_STATE(7683)] = 326961, + [SMALL_STATE(7684)] = 326979, + [SMALL_STATE(7685)] = 326997, + [SMALL_STATE(7686)] = 327015, + [SMALL_STATE(7687)] = 327033, + [SMALL_STATE(7688)] = 327051, + [SMALL_STATE(7689)] = 327069, + [SMALL_STATE(7690)] = 327087, + [SMALL_STATE(7691)] = 327105, + [SMALL_STATE(7692)] = 327123, + [SMALL_STATE(7693)] = 327141, + [SMALL_STATE(7694)] = 327159, + [SMALL_STATE(7695)] = 327177, + [SMALL_STATE(7696)] = 327195, + [SMALL_STATE(7697)] = 327213, + [SMALL_STATE(7698)] = 327231, + [SMALL_STATE(7699)] = 327249, + [SMALL_STATE(7700)] = 327267, + [SMALL_STATE(7701)] = 327285, + [SMALL_STATE(7702)] = 327303, + [SMALL_STATE(7703)] = 327321, + [SMALL_STATE(7704)] = 327339, + [SMALL_STATE(7705)] = 327357, + [SMALL_STATE(7706)] = 327375, + [SMALL_STATE(7707)] = 327393, + [SMALL_STATE(7708)] = 327411, + [SMALL_STATE(7709)] = 327429, + [SMALL_STATE(7710)] = 327447, + [SMALL_STATE(7711)] = 327465, + [SMALL_STATE(7712)] = 327483, + [SMALL_STATE(7713)] = 327501, + [SMALL_STATE(7714)] = 327519, + [SMALL_STATE(7715)] = 327537, + [SMALL_STATE(7716)] = 327555, + [SMALL_STATE(7717)] = 327573, + [SMALL_STATE(7718)] = 327591, + [SMALL_STATE(7719)] = 327609, + [SMALL_STATE(7720)] = 327627, + [SMALL_STATE(7721)] = 327645, + [SMALL_STATE(7722)] = 327663, + [SMALL_STATE(7723)] = 327681, + [SMALL_STATE(7724)] = 327699, + [SMALL_STATE(7725)] = 327717, + [SMALL_STATE(7726)] = 327735, + [SMALL_STATE(7727)] = 327753, + [SMALL_STATE(7728)] = 327771, + [SMALL_STATE(7729)] = 327789, + [SMALL_STATE(7730)] = 327807, + [SMALL_STATE(7731)] = 327825, + [SMALL_STATE(7732)] = 327843, + [SMALL_STATE(7733)] = 327861, + [SMALL_STATE(7734)] = 327879, + [SMALL_STATE(7735)] = 327897, + [SMALL_STATE(7736)] = 327915, + [SMALL_STATE(7737)] = 327933, + [SMALL_STATE(7738)] = 327951, + [SMALL_STATE(7739)] = 327969, + [SMALL_STATE(7740)] = 327987, + [SMALL_STATE(7741)] = 328005, + [SMALL_STATE(7742)] = 328023, + [SMALL_STATE(7743)] = 328041, + [SMALL_STATE(7744)] = 328059, + [SMALL_STATE(7745)] = 328077, + [SMALL_STATE(7746)] = 328095, + [SMALL_STATE(7747)] = 328113, + [SMALL_STATE(7748)] = 328131, + [SMALL_STATE(7749)] = 328149, + [SMALL_STATE(7750)] = 328167, + [SMALL_STATE(7751)] = 328185, + [SMALL_STATE(7752)] = 328203, + [SMALL_STATE(7753)] = 328221, + [SMALL_STATE(7754)] = 328239, + [SMALL_STATE(7755)] = 328257, + [SMALL_STATE(7756)] = 328275, + [SMALL_STATE(7757)] = 328293, + [SMALL_STATE(7758)] = 328311, + [SMALL_STATE(7759)] = 328329, + [SMALL_STATE(7760)] = 328347, + [SMALL_STATE(7761)] = 328365, + [SMALL_STATE(7762)] = 328383, + [SMALL_STATE(7763)] = 328401, + [SMALL_STATE(7764)] = 328419, + [SMALL_STATE(7765)] = 328437, + [SMALL_STATE(7766)] = 328455, + [SMALL_STATE(7767)] = 328473, + [SMALL_STATE(7768)] = 328491, + [SMALL_STATE(7769)] = 328509, + [SMALL_STATE(7770)] = 328527, + [SMALL_STATE(7771)] = 328545, + [SMALL_STATE(7772)] = 328563, + [SMALL_STATE(7773)] = 328581, + [SMALL_STATE(7774)] = 328599, + [SMALL_STATE(7775)] = 328617, + [SMALL_STATE(7776)] = 328635, + [SMALL_STATE(7777)] = 328653, + [SMALL_STATE(7778)] = 328671, + [SMALL_STATE(7779)] = 328689, + [SMALL_STATE(7780)] = 328707, + [SMALL_STATE(7781)] = 328725, + [SMALL_STATE(7782)] = 328743, + [SMALL_STATE(7783)] = 328761, + [SMALL_STATE(7784)] = 328779, + [SMALL_STATE(7785)] = 328797, + [SMALL_STATE(7786)] = 328815, + [SMALL_STATE(7787)] = 328833, + [SMALL_STATE(7788)] = 328851, + [SMALL_STATE(7789)] = 328869, + [SMALL_STATE(7790)] = 328887, + [SMALL_STATE(7791)] = 328905, + [SMALL_STATE(7792)] = 328923, + [SMALL_STATE(7793)] = 328941, + [SMALL_STATE(7794)] = 328959, + [SMALL_STATE(7795)] = 328977, + [SMALL_STATE(7796)] = 328995, + [SMALL_STATE(7797)] = 329013, + [SMALL_STATE(7798)] = 329031, + [SMALL_STATE(7799)] = 329049, + [SMALL_STATE(7800)] = 329067, + [SMALL_STATE(7801)] = 329085, + [SMALL_STATE(7802)] = 329103, + [SMALL_STATE(7803)] = 329121, + [SMALL_STATE(7804)] = 329139, + [SMALL_STATE(7805)] = 329157, + [SMALL_STATE(7806)] = 329175, + [SMALL_STATE(7807)] = 329193, + [SMALL_STATE(7808)] = 329211, + [SMALL_STATE(7809)] = 329229, + [SMALL_STATE(7810)] = 329247, + [SMALL_STATE(7811)] = 329265, + [SMALL_STATE(7812)] = 329283, + [SMALL_STATE(7813)] = 329301, + [SMALL_STATE(7814)] = 329319, + [SMALL_STATE(7815)] = 329337, + [SMALL_STATE(7816)] = 329355, + [SMALL_STATE(7817)] = 329373, + [SMALL_STATE(7818)] = 329391, + [SMALL_STATE(7819)] = 329409, + [SMALL_STATE(7820)] = 329427, + [SMALL_STATE(7821)] = 329445, + [SMALL_STATE(7822)] = 329463, + [SMALL_STATE(7823)] = 329481, + [SMALL_STATE(7824)] = 329499, + [SMALL_STATE(7825)] = 329517, + [SMALL_STATE(7826)] = 329535, + [SMALL_STATE(7827)] = 329553, + [SMALL_STATE(7828)] = 329571, + [SMALL_STATE(7829)] = 329589, + [SMALL_STATE(7830)] = 329607, + [SMALL_STATE(7831)] = 329625, + [SMALL_STATE(7832)] = 329643, + [SMALL_STATE(7833)] = 329661, + [SMALL_STATE(7834)] = 329679, + [SMALL_STATE(7835)] = 329697, + [SMALL_STATE(7836)] = 329715, + [SMALL_STATE(7837)] = 329733, + [SMALL_STATE(7838)] = 329751, + [SMALL_STATE(7839)] = 329769, + [SMALL_STATE(7840)] = 329787, + [SMALL_STATE(7841)] = 329805, + [SMALL_STATE(7842)] = 329823, + [SMALL_STATE(7843)] = 329841, + [SMALL_STATE(7844)] = 329859, + [SMALL_STATE(7845)] = 329877, + [SMALL_STATE(7846)] = 329895, + [SMALL_STATE(7847)] = 329913, + [SMALL_STATE(7848)] = 329931, + [SMALL_STATE(7849)] = 329949, + [SMALL_STATE(7850)] = 329967, + [SMALL_STATE(7851)] = 329985, + [SMALL_STATE(7852)] = 330003, + [SMALL_STATE(7853)] = 330021, + [SMALL_STATE(7854)] = 330039, + [SMALL_STATE(7855)] = 330057, + [SMALL_STATE(7856)] = 330075, + [SMALL_STATE(7857)] = 330093, + [SMALL_STATE(7858)] = 330111, + [SMALL_STATE(7859)] = 330129, + [SMALL_STATE(7860)] = 330147, + [SMALL_STATE(7861)] = 330165, + [SMALL_STATE(7862)] = 330183, + [SMALL_STATE(7863)] = 330201, + [SMALL_STATE(7864)] = 330219, + [SMALL_STATE(7865)] = 330237, + [SMALL_STATE(7866)] = 330255, + [SMALL_STATE(7867)] = 330273, + [SMALL_STATE(7868)] = 330291, + [SMALL_STATE(7869)] = 330309, + [SMALL_STATE(7870)] = 330327, + [SMALL_STATE(7871)] = 330345, + [SMALL_STATE(7872)] = 330363, + [SMALL_STATE(7873)] = 330381, + [SMALL_STATE(7874)] = 330399, + [SMALL_STATE(7875)] = 330417, + [SMALL_STATE(7876)] = 330435, + [SMALL_STATE(7877)] = 330453, + [SMALL_STATE(7878)] = 330471, + [SMALL_STATE(7879)] = 330489, + [SMALL_STATE(7880)] = 330507, + [SMALL_STATE(7881)] = 330525, + [SMALL_STATE(7882)] = 330543, + [SMALL_STATE(7883)] = 330561, + [SMALL_STATE(7884)] = 330579, + [SMALL_STATE(7885)] = 330597, + [SMALL_STATE(7886)] = 330615, + [SMALL_STATE(7887)] = 330633, + [SMALL_STATE(7888)] = 330651, + [SMALL_STATE(7889)] = 330669, + [SMALL_STATE(7890)] = 330687, + [SMALL_STATE(7891)] = 330705, + [SMALL_STATE(7892)] = 330723, + [SMALL_STATE(7893)] = 330741, + [SMALL_STATE(7894)] = 330759, + [SMALL_STATE(7895)] = 330777, + [SMALL_STATE(7896)] = 330795, + [SMALL_STATE(7897)] = 330813, + [SMALL_STATE(7898)] = 330831, + [SMALL_STATE(7899)] = 330849, + [SMALL_STATE(7900)] = 330867, + [SMALL_STATE(7901)] = 330885, + [SMALL_STATE(7902)] = 330903, + [SMALL_STATE(7903)] = 330921, + [SMALL_STATE(7904)] = 330939, + [SMALL_STATE(7905)] = 330957, + [SMALL_STATE(7906)] = 330975, + [SMALL_STATE(7907)] = 330993, + [SMALL_STATE(7908)] = 331011, + [SMALL_STATE(7909)] = 331029, + [SMALL_STATE(7910)] = 331047, + [SMALL_STATE(7911)] = 331065, + [SMALL_STATE(7912)] = 331083, + [SMALL_STATE(7913)] = 331101, + [SMALL_STATE(7914)] = 331119, + [SMALL_STATE(7915)] = 331137, + [SMALL_STATE(7916)] = 331155, + [SMALL_STATE(7917)] = 331173, + [SMALL_STATE(7918)] = 331191, + [SMALL_STATE(7919)] = 331209, + [SMALL_STATE(7920)] = 331227, + [SMALL_STATE(7921)] = 331245, + [SMALL_STATE(7922)] = 331263, + [SMALL_STATE(7923)] = 331281, + [SMALL_STATE(7924)] = 331299, + [SMALL_STATE(7925)] = 331317, + [SMALL_STATE(7926)] = 331335, + [SMALL_STATE(7927)] = 331353, + [SMALL_STATE(7928)] = 331371, + [SMALL_STATE(7929)] = 331389, + [SMALL_STATE(7930)] = 331407, + [SMALL_STATE(7931)] = 331425, + [SMALL_STATE(7932)] = 331443, + [SMALL_STATE(7933)] = 331461, + [SMALL_STATE(7934)] = 331479, + [SMALL_STATE(7935)] = 331497, + [SMALL_STATE(7936)] = 331515, + [SMALL_STATE(7937)] = 331533, + [SMALL_STATE(7938)] = 331551, + [SMALL_STATE(7939)] = 331569, + [SMALL_STATE(7940)] = 331587, + [SMALL_STATE(7941)] = 331605, + [SMALL_STATE(7942)] = 331623, + [SMALL_STATE(7943)] = 331641, + [SMALL_STATE(7944)] = 331659, + [SMALL_STATE(7945)] = 331677, + [SMALL_STATE(7946)] = 331695, + [SMALL_STATE(7947)] = 331713, + [SMALL_STATE(7948)] = 331731, + [SMALL_STATE(7949)] = 331749, + [SMALL_STATE(7950)] = 331767, + [SMALL_STATE(7951)] = 331785, + [SMALL_STATE(7952)] = 331803, + [SMALL_STATE(7953)] = 331821, + [SMALL_STATE(7954)] = 331839, + [SMALL_STATE(7955)] = 331857, + [SMALL_STATE(7956)] = 331875, + [SMALL_STATE(7957)] = 331893, + [SMALL_STATE(7958)] = 331911, + [SMALL_STATE(7959)] = 331929, + [SMALL_STATE(7960)] = 331947, + [SMALL_STATE(7961)] = 331965, + [SMALL_STATE(7962)] = 331983, + [SMALL_STATE(7963)] = 332001, + [SMALL_STATE(7964)] = 332019, + [SMALL_STATE(7965)] = 332037, + [SMALL_STATE(7966)] = 332055, + [SMALL_STATE(7967)] = 332073, + [SMALL_STATE(7968)] = 332091, + [SMALL_STATE(7969)] = 332109, + [SMALL_STATE(7970)] = 332127, + [SMALL_STATE(7971)] = 332145, + [SMALL_STATE(7972)] = 332163, + [SMALL_STATE(7973)] = 332181, + [SMALL_STATE(7974)] = 332199, + [SMALL_STATE(7975)] = 332217, + [SMALL_STATE(7976)] = 332235, + [SMALL_STATE(7977)] = 332253, + [SMALL_STATE(7978)] = 332271, + [SMALL_STATE(7979)] = 332289, + [SMALL_STATE(7980)] = 332307, + [SMALL_STATE(7981)] = 332325, + [SMALL_STATE(7982)] = 332343, + [SMALL_STATE(7983)] = 332361, + [SMALL_STATE(7984)] = 332379, + [SMALL_STATE(7985)] = 332397, + [SMALL_STATE(7986)] = 332415, + [SMALL_STATE(7987)] = 332433, + [SMALL_STATE(7988)] = 332451, + [SMALL_STATE(7989)] = 332469, + [SMALL_STATE(7990)] = 332487, + [SMALL_STATE(7991)] = 332505, + [SMALL_STATE(7992)] = 332523, + [SMALL_STATE(7993)] = 332541, + [SMALL_STATE(7994)] = 332559, + [SMALL_STATE(7995)] = 332577, + [SMALL_STATE(7996)] = 332595, + [SMALL_STATE(7997)] = 332613, + [SMALL_STATE(7998)] = 332631, + [SMALL_STATE(7999)] = 332649, + [SMALL_STATE(8000)] = 332667, + [SMALL_STATE(8001)] = 332685, + [SMALL_STATE(8002)] = 332703, + [SMALL_STATE(8003)] = 332721, + [SMALL_STATE(8004)] = 332739, + [SMALL_STATE(8005)] = 332757, + [SMALL_STATE(8006)] = 332775, + [SMALL_STATE(8007)] = 332793, + [SMALL_STATE(8008)] = 332811, + [SMALL_STATE(8009)] = 332829, + [SMALL_STATE(8010)] = 332847, + [SMALL_STATE(8011)] = 332865, + [SMALL_STATE(8012)] = 332883, + [SMALL_STATE(8013)] = 332901, + [SMALL_STATE(8014)] = 332919, + [SMALL_STATE(8015)] = 332937, + [SMALL_STATE(8016)] = 332955, + [SMALL_STATE(8017)] = 332973, + [SMALL_STATE(8018)] = 332991, + [SMALL_STATE(8019)] = 333009, + [SMALL_STATE(8020)] = 333027, + [SMALL_STATE(8021)] = 333045, + [SMALL_STATE(8022)] = 333063, + [SMALL_STATE(8023)] = 333081, + [SMALL_STATE(8024)] = 333099, + [SMALL_STATE(8025)] = 333117, + [SMALL_STATE(8026)] = 333135, + [SMALL_STATE(8027)] = 333153, + [SMALL_STATE(8028)] = 333171, + [SMALL_STATE(8029)] = 333189, + [SMALL_STATE(8030)] = 333207, + [SMALL_STATE(8031)] = 333225, + [SMALL_STATE(8032)] = 333243, + [SMALL_STATE(8033)] = 333261, + [SMALL_STATE(8034)] = 333279, + [SMALL_STATE(8035)] = 333297, + [SMALL_STATE(8036)] = 333315, + [SMALL_STATE(8037)] = 333333, + [SMALL_STATE(8038)] = 333351, + [SMALL_STATE(8039)] = 333369, + [SMALL_STATE(8040)] = 333387, + [SMALL_STATE(8041)] = 333405, + [SMALL_STATE(8042)] = 333423, + [SMALL_STATE(8043)] = 333441, + [SMALL_STATE(8044)] = 333459, + [SMALL_STATE(8045)] = 333477, + [SMALL_STATE(8046)] = 333495, + [SMALL_STATE(8047)] = 333513, + [SMALL_STATE(8048)] = 333531, + [SMALL_STATE(8049)] = 333549, + [SMALL_STATE(8050)] = 333567, + [SMALL_STATE(8051)] = 333585, + [SMALL_STATE(8052)] = 333603, + [SMALL_STATE(8053)] = 333621, + [SMALL_STATE(8054)] = 333639, + [SMALL_STATE(8055)] = 333657, + [SMALL_STATE(8056)] = 333675, + [SMALL_STATE(8057)] = 333693, + [SMALL_STATE(8058)] = 333711, + [SMALL_STATE(8059)] = 333729, + [SMALL_STATE(8060)] = 333747, + [SMALL_STATE(8061)] = 333765, + [SMALL_STATE(8062)] = 333783, + [SMALL_STATE(8063)] = 333801, + [SMALL_STATE(8064)] = 333819, + [SMALL_STATE(8065)] = 333837, + [SMALL_STATE(8066)] = 333855, + [SMALL_STATE(8067)] = 333873, + [SMALL_STATE(8068)] = 333891, + [SMALL_STATE(8069)] = 333909, + [SMALL_STATE(8070)] = 333927, + [SMALL_STATE(8071)] = 333945, + [SMALL_STATE(8072)] = 333963, + [SMALL_STATE(8073)] = 333981, + [SMALL_STATE(8074)] = 333999, + [SMALL_STATE(8075)] = 334017, + [SMALL_STATE(8076)] = 334035, + [SMALL_STATE(8077)] = 334053, + [SMALL_STATE(8078)] = 334071, + [SMALL_STATE(8079)] = 334089, + [SMALL_STATE(8080)] = 334107, + [SMALL_STATE(8081)] = 334125, + [SMALL_STATE(8082)] = 334143, + [SMALL_STATE(8083)] = 334161, + [SMALL_STATE(8084)] = 334179, + [SMALL_STATE(8085)] = 334197, + [SMALL_STATE(8086)] = 334215, + [SMALL_STATE(8087)] = 334233, + [SMALL_STATE(8088)] = 334251, + [SMALL_STATE(8089)] = 334269, + [SMALL_STATE(8090)] = 334287, + [SMALL_STATE(8091)] = 334305, + [SMALL_STATE(8092)] = 334323, + [SMALL_STATE(8093)] = 334341, + [SMALL_STATE(8094)] = 334359, + [SMALL_STATE(8095)] = 334377, + [SMALL_STATE(8096)] = 334395, + [SMALL_STATE(8097)] = 334413, + [SMALL_STATE(8098)] = 334431, + [SMALL_STATE(8099)] = 334449, + [SMALL_STATE(8100)] = 334467, + [SMALL_STATE(8101)] = 334485, + [SMALL_STATE(8102)] = 334503, + [SMALL_STATE(8103)] = 334521, + [SMALL_STATE(8104)] = 334539, + [SMALL_STATE(8105)] = 334557, + [SMALL_STATE(8106)] = 334575, + [SMALL_STATE(8107)] = 334593, + [SMALL_STATE(8108)] = 334611, + [SMALL_STATE(8109)] = 334629, + [SMALL_STATE(8110)] = 334647, + [SMALL_STATE(8111)] = 334665, + [SMALL_STATE(8112)] = 334683, + [SMALL_STATE(8113)] = 334701, + [SMALL_STATE(8114)] = 334719, + [SMALL_STATE(8115)] = 334737, + [SMALL_STATE(8116)] = 334755, + [SMALL_STATE(8117)] = 334773, + [SMALL_STATE(8118)] = 334791, + [SMALL_STATE(8119)] = 334809, + [SMALL_STATE(8120)] = 334827, + [SMALL_STATE(8121)] = 334845, + [SMALL_STATE(8122)] = 334863, + [SMALL_STATE(8123)] = 334881, + [SMALL_STATE(8124)] = 334899, + [SMALL_STATE(8125)] = 334917, + [SMALL_STATE(8126)] = 334935, + [SMALL_STATE(8127)] = 334953, + [SMALL_STATE(8128)] = 334971, + [SMALL_STATE(8129)] = 334989, + [SMALL_STATE(8130)] = 335007, + [SMALL_STATE(8131)] = 335025, + [SMALL_STATE(8132)] = 335043, + [SMALL_STATE(8133)] = 335061, + [SMALL_STATE(8134)] = 335079, + [SMALL_STATE(8135)] = 335097, + [SMALL_STATE(8136)] = 335115, + [SMALL_STATE(8137)] = 335133, + [SMALL_STATE(8138)] = 335151, + [SMALL_STATE(8139)] = 335169, + [SMALL_STATE(8140)] = 335187, + [SMALL_STATE(8141)] = 335205, + [SMALL_STATE(8142)] = 335223, + [SMALL_STATE(8143)] = 335241, + [SMALL_STATE(8144)] = 335259, + [SMALL_STATE(8145)] = 335277, + [SMALL_STATE(8146)] = 335295, + [SMALL_STATE(8147)] = 335313, + [SMALL_STATE(8148)] = 335331, + [SMALL_STATE(8149)] = 335349, + [SMALL_STATE(8150)] = 335367, + [SMALL_STATE(8151)] = 335385, + [SMALL_STATE(8152)] = 335403, + [SMALL_STATE(8153)] = 335421, + [SMALL_STATE(8154)] = 335439, + [SMALL_STATE(8155)] = 335457, + [SMALL_STATE(8156)] = 335475, + [SMALL_STATE(8157)] = 335493, + [SMALL_STATE(8158)] = 335511, + [SMALL_STATE(8159)] = 335529, + [SMALL_STATE(8160)] = 335547, + [SMALL_STATE(8161)] = 335565, + [SMALL_STATE(8162)] = 335583, + [SMALL_STATE(8163)] = 335601, + [SMALL_STATE(8164)] = 335619, + [SMALL_STATE(8165)] = 335637, + [SMALL_STATE(8166)] = 335655, + [SMALL_STATE(8167)] = 335673, + [SMALL_STATE(8168)] = 335691, + [SMALL_STATE(8169)] = 335709, + [SMALL_STATE(8170)] = 335727, + [SMALL_STATE(8171)] = 335745, + [SMALL_STATE(8172)] = 335763, + [SMALL_STATE(8173)] = 335781, + [SMALL_STATE(8174)] = 335799, + [SMALL_STATE(8175)] = 335817, + [SMALL_STATE(8176)] = 335835, + [SMALL_STATE(8177)] = 335853, + [SMALL_STATE(8178)] = 335871, + [SMALL_STATE(8179)] = 335889, + [SMALL_STATE(8180)] = 335907, + [SMALL_STATE(8181)] = 335925, + [SMALL_STATE(8182)] = 335943, + [SMALL_STATE(8183)] = 335961, + [SMALL_STATE(8184)] = 335979, + [SMALL_STATE(8185)] = 335997, + [SMALL_STATE(8186)] = 336015, + [SMALL_STATE(8187)] = 336033, + [SMALL_STATE(8188)] = 336051, + [SMALL_STATE(8189)] = 336069, + [SMALL_STATE(8190)] = 336087, + [SMALL_STATE(8191)] = 336105, + [SMALL_STATE(8192)] = 336123, + [SMALL_STATE(8193)] = 336141, + [SMALL_STATE(8194)] = 336159, + [SMALL_STATE(8195)] = 336177, + [SMALL_STATE(8196)] = 336195, + [SMALL_STATE(8197)] = 336213, + [SMALL_STATE(8198)] = 336231, + [SMALL_STATE(8199)] = 336249, + [SMALL_STATE(8200)] = 336267, + [SMALL_STATE(8201)] = 336285, + [SMALL_STATE(8202)] = 336303, + [SMALL_STATE(8203)] = 336321, + [SMALL_STATE(8204)] = 336339, + [SMALL_STATE(8205)] = 336357, + [SMALL_STATE(8206)] = 336375, + [SMALL_STATE(8207)] = 336393, + [SMALL_STATE(8208)] = 336411, + [SMALL_STATE(8209)] = 336429, + [SMALL_STATE(8210)] = 336447, + [SMALL_STATE(8211)] = 336465, + [SMALL_STATE(8212)] = 336483, + [SMALL_STATE(8213)] = 336501, + [SMALL_STATE(8214)] = 336519, + [SMALL_STATE(8215)] = 336537, + [SMALL_STATE(8216)] = 336555, + [SMALL_STATE(8217)] = 336573, + [SMALL_STATE(8218)] = 336591, + [SMALL_STATE(8219)] = 336609, + [SMALL_STATE(8220)] = 336627, + [SMALL_STATE(8221)] = 336645, + [SMALL_STATE(8222)] = 336663, + [SMALL_STATE(8223)] = 336681, + [SMALL_STATE(8224)] = 336699, + [SMALL_STATE(8225)] = 336717, + [SMALL_STATE(8226)] = 336735, + [SMALL_STATE(8227)] = 336753, + [SMALL_STATE(8228)] = 336771, + [SMALL_STATE(8229)] = 336789, + [SMALL_STATE(8230)] = 336807, + [SMALL_STATE(8231)] = 336825, + [SMALL_STATE(8232)] = 336843, + [SMALL_STATE(8233)] = 336861, + [SMALL_STATE(8234)] = 336879, + [SMALL_STATE(8235)] = 336897, + [SMALL_STATE(8236)] = 336915, + [SMALL_STATE(8237)] = 336933, + [SMALL_STATE(8238)] = 336951, + [SMALL_STATE(8239)] = 336969, + [SMALL_STATE(8240)] = 336987, + [SMALL_STATE(8241)] = 337005, + [SMALL_STATE(8242)] = 337023, + [SMALL_STATE(8243)] = 337041, + [SMALL_STATE(8244)] = 337059, + [SMALL_STATE(8245)] = 337077, + [SMALL_STATE(8246)] = 337095, + [SMALL_STATE(8247)] = 337113, + [SMALL_STATE(8248)] = 337131, + [SMALL_STATE(8249)] = 337149, + [SMALL_STATE(8250)] = 337167, + [SMALL_STATE(8251)] = 337185, + [SMALL_STATE(8252)] = 337203, + [SMALL_STATE(8253)] = 337221, + [SMALL_STATE(8254)] = 337239, + [SMALL_STATE(8255)] = 337257, + [SMALL_STATE(8256)] = 337275, + [SMALL_STATE(8257)] = 337293, + [SMALL_STATE(8258)] = 337311, + [SMALL_STATE(8259)] = 337329, + [SMALL_STATE(8260)] = 337347, + [SMALL_STATE(8261)] = 337365, + [SMALL_STATE(8262)] = 337383, + [SMALL_STATE(8263)] = 337401, + [SMALL_STATE(8264)] = 337419, + [SMALL_STATE(8265)] = 337437, + [SMALL_STATE(8266)] = 337455, + [SMALL_STATE(8267)] = 337473, + [SMALL_STATE(8268)] = 337491, + [SMALL_STATE(8269)] = 337509, + [SMALL_STATE(8270)] = 337527, + [SMALL_STATE(8271)] = 337545, + [SMALL_STATE(8272)] = 337563, + [SMALL_STATE(8273)] = 337581, + [SMALL_STATE(8274)] = 337599, + [SMALL_STATE(8275)] = 337617, + [SMALL_STATE(8276)] = 337635, + [SMALL_STATE(8277)] = 337653, + [SMALL_STATE(8278)] = 337671, + [SMALL_STATE(8279)] = 337689, + [SMALL_STATE(8280)] = 337707, + [SMALL_STATE(8281)] = 337725, + [SMALL_STATE(8282)] = 337743, + [SMALL_STATE(8283)] = 337761, + [SMALL_STATE(8284)] = 337779, + [SMALL_STATE(8285)] = 337797, + [SMALL_STATE(8286)] = 337815, + [SMALL_STATE(8287)] = 337833, + [SMALL_STATE(8288)] = 337851, + [SMALL_STATE(8289)] = 337869, + [SMALL_STATE(8290)] = 337887, + [SMALL_STATE(8291)] = 337905, + [SMALL_STATE(8292)] = 337923, + [SMALL_STATE(8293)] = 337941, + [SMALL_STATE(8294)] = 337959, + [SMALL_STATE(8295)] = 337977, + [SMALL_STATE(8296)] = 337995, + [SMALL_STATE(8297)] = 338013, + [SMALL_STATE(8298)] = 338031, + [SMALL_STATE(8299)] = 338049, + [SMALL_STATE(8300)] = 338067, + [SMALL_STATE(8301)] = 338085, + [SMALL_STATE(8302)] = 338103, + [SMALL_STATE(8303)] = 338121, + [SMALL_STATE(8304)] = 338139, + [SMALL_STATE(8305)] = 338157, + [SMALL_STATE(8306)] = 338175, + [SMALL_STATE(8307)] = 338193, + [SMALL_STATE(8308)] = 338211, + [SMALL_STATE(8309)] = 338229, + [SMALL_STATE(8310)] = 338247, + [SMALL_STATE(8311)] = 338265, + [SMALL_STATE(8312)] = 338283, + [SMALL_STATE(8313)] = 338301, + [SMALL_STATE(8314)] = 338319, + [SMALL_STATE(8315)] = 338337, + [SMALL_STATE(8316)] = 338355, + [SMALL_STATE(8317)] = 338373, + [SMALL_STATE(8318)] = 338391, + [SMALL_STATE(8319)] = 338409, + [SMALL_STATE(8320)] = 338427, + [SMALL_STATE(8321)] = 338445, + [SMALL_STATE(8322)] = 338463, + [SMALL_STATE(8323)] = 338481, + [SMALL_STATE(8324)] = 338499, + [SMALL_STATE(8325)] = 338517, + [SMALL_STATE(8326)] = 338535, + [SMALL_STATE(8327)] = 338553, + [SMALL_STATE(8328)] = 338571, + [SMALL_STATE(8329)] = 338589, + [SMALL_STATE(8330)] = 338607, + [SMALL_STATE(8331)] = 338625, + [SMALL_STATE(8332)] = 338643, + [SMALL_STATE(8333)] = 338661, + [SMALL_STATE(8334)] = 338679, + [SMALL_STATE(8335)] = 338697, + [SMALL_STATE(8336)] = 338715, + [SMALL_STATE(8337)] = 338733, + [SMALL_STATE(8338)] = 338751, + [SMALL_STATE(8339)] = 338769, + [SMALL_STATE(8340)] = 338787, + [SMALL_STATE(8341)] = 338805, + [SMALL_STATE(8342)] = 338823, + [SMALL_STATE(8343)] = 338841, + [SMALL_STATE(8344)] = 338859, + [SMALL_STATE(8345)] = 338877, + [SMALL_STATE(8346)] = 338895, + [SMALL_STATE(8347)] = 338913, + [SMALL_STATE(8348)] = 338931, + [SMALL_STATE(8349)] = 338949, + [SMALL_STATE(8350)] = 338953, + [SMALL_STATE(8351)] = 338957, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5631), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4485), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4720), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5156), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5018), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5020), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4970), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4671), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3264), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4901), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4681), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4790), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5098), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4773), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2917), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4915), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7575), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5120), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5122), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4736), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4909), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5047), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5892), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4640), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4937), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3643), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5267), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5271), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5120), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4716), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3366), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5274), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5075), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4734), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5061), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5283), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7796), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4912), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3012), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1195), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5077), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7773), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5298), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5302), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5312), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4332), [171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 2, 0, 0), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_head, 1, 0, 0), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_direct_block, 1, 0, 0), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_head, 1, 0, 0), [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_direct_block, 1, 0, 0), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement, 3, 0, 0), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 0), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 0), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement, 3, 0, 0), [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_body, 1, 0, 0), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5631), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4485), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5892), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4640), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(394), [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4780), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4978), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4779), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7615), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4797), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4719), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4782), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7194), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4894), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4890), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4887), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7514), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5045), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4332), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4897), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4898), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7271), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5015), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 1, 0, 0), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 3, 0, 0), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 2, 0, 0), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block, 1, 0, 0), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block, 2, 0, 0), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_body, 1, 0, 0), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_body, 2, 0, 0), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4754), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4755), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7113), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_design_unit, 1, 0, 0), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4720), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(3483), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5018), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4970), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(3264), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4901), - [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4681), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4790), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5098), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(7587), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4921), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4831), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4915), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(7575), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5120), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5122), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4736), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4909), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5047), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(221), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(5631), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(4485), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(632), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(2917), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(1192), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(441), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(4246), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(2446), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(6199), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), - [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(6239), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(1274), - [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(6778), - [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(6784), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_design_unit, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_body, 1, 0, 0), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_body, 2, 0, 0), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block, 1, 0, 0), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4937), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(3643), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5267), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5120), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(3366), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5075), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4734), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5061), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5283), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(7796), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5072), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5069), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5077), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(7773), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5298), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5302), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4913), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5092), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5312), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4932), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4931), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6911), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4992), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block, 2, 0, 0), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(222), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(5892), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(4640), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(690), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(3012), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(1195), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(443), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(4332), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(674), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(4219), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(2493), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(6560), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(6459), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(6994), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(6937), [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(5528), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(4082), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(6223), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(6707), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(6925), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(1092), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(4081), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(6415), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(6922), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(7056), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5090), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5171), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(78), [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7072), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7049), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7291), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7268), [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name, 1, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name, 1, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name, 2, 0, 0), [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5111), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3367), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7275), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5095), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6952), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6929), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3401), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6781), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6711), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 2, 0, 0), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5102), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3428), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3493), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7363), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7320), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5035), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3366), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6845), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6818), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 1, 0, 0), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5021), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7264), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7221), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5101), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7374), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7331), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5131), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3349), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7209), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7188), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5224), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3550), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3598), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7494), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7451), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5289), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6997), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6926), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5242), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3579), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3584), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7171), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7148), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5248), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7582), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7539), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5315), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3506), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7063), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7035), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 1, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 2, 0, 0), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5219), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3601), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7483), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7440), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5213), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7428), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7407), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5254), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7593), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7550), [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 4, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 3, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5078), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(87), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3446), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7380), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7342), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5015), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3550), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7176), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7155), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 5, 0, 0), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5115), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7352), - [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7309), - [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5032), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), - [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7165), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7144), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5088), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3407), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6879), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6866), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7198), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7177), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5045), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7187), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7166), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_head, 1, 0, 0), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3384), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7319), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7276), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5024), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3355), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7253), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7210), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5003), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3480), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6465), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6466), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration_body, 1, 0, 0), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 8, 0, 0), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5061), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7143), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7121), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_architecture_head, 2, 0, 0), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_architecture_head, 1, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1, 0, 0), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_head, 2, 0, 0), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4733), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(3517), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5144), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4931), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(3280), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4907), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4653), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4826), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4995), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4938), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4963), - [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(8049), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5058), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5076), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4762), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4949), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5130), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 7, 0, 0), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5060), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7060), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7037), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 6, 0, 0), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5140), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7297), - [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7254), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5129), - [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), - [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7286), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7243), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_head, 2, 0, 0), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5052), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3451), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6940), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6917), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5153), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7084), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7061), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_name, 1, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_name, 1, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesis_expression, 3, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesis_expression, 3, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, 0, 0), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, 0, 0), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 1, 0, 2), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 1, 0, 2), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5080), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3352), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7024), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7001), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_designator, 1, 0, 0), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_designator, 1, 0, 0), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_variable_name, 6, 0, 0), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_variable_name, 6, 0, 0), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_signal_name, 6, 0, 0), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_signal_name, 6, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_constant_name, 6, 0, 0), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_constant_name, 6, 0, 0), - [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5019), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3358), - [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7012), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6989), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_selector, 1, 0, 0), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_selector, 1, 0, 0), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 3, 0, 0), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 3, 0, 0), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesis_group, 3, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesis_group, 3, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 0), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5154), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6710), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6597), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 1, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_name_repeat1, 1, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 5, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 5, 0, 0), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 6, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 6, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier, 1, 0, 0), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier, 1, 0, 0), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 4, 0, 0), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 4, 0, 0), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5152), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3466), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6904), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6880), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_name, 1, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_name, 1, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__suffix, 1, 0, 0), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__suffix, 1, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selection, 2, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selection, 2, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesis_group, 2, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesis_group, 2, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_map_aspect, 3, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_map_aspect, 3, 0, 0), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_head, 2, 0, 0), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 0), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5124), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(97), - [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), - [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), - [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7036), - [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7013), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_list, 3, 0, 0), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_association_list, 3, 0, 0), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_list, 4, 0, 0), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_association_list, 4, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 3, 0, 0), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 3, 0, 0), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_expression, 2, 0, 0), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3, 0, 0), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_expression, 3, 0, 0), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_expression, 3, 0, 0), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_expression, 3, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_expression, 3, 0, 0), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_literal, 1, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_literal, 1, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_based_literal, 2, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_based_literal, 2, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 2, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 2, 0, 0), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_head, 3, 0, 0), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_head, 4, 0, 0), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4783), - [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), - [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4967), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4822), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5075), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4936), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4897), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(8056), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5044), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5057), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4743), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4956), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4994), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration_body, 2, 0, 0), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, 0, 0), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), - [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4504), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4773), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4736), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4775), - [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5163), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3308), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4820), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4991), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5023), - [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4852), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4961), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8063), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5125), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4724), - [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5077), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration_body, 3, 0, 0), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 1, 0, 0), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__label, 1, 0, 1), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_direct_block, 2, 0, 0), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_specification, 3, 0, 0), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(2911), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(1153), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 2, 0, 0), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_waveform_element, 1, 0, 0), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bit_string_literal, 3, 0, 0), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bit_string_literal, 3, 0, 0), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_direct_block, 2, 0, 0), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_expression, 2, 0, 0), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(2912), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(1213), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 1, 0, 0), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 1, 0, 0), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, 0, 0), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bit_string_literal, 2, 0, 0), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bit_string_literal, 2, 0, 0), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unit, 1, 0, 3), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unit, 1, 0, 3), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unit, 1, 0, 0), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unit, 1, 0, 0), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 2, 0, 0), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 2, 0, 0), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 5, 0, 0), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 1, 0, 0), - [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(2916), - [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(1118), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_assignment, 1, 0, 0), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 2, 0, 0), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_waveform_element, 3, 0, 0), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_block, 1, 0, 0), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_block, 2, 0, 0), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_block, 2, 0, 0), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_block, 1, 0, 0), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 4, 0, 0), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 3, 0, 0), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 6, 0, 0), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_instantiation_statement, 3, 0, 0), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_expression, 2, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3, 0, 0), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 0), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_assertion_statement, 3, 0, 0), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_clause, 3, 0, 0), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_or_unaffected, 1, 0, 0), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_reference, 3, 0, 0), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_procedure_call_statement, 3, 0, 0), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, 0, 0), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 2, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_range, 3, 0, 0), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 4, 0, 0), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_design_unit, 2, 0, 0), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2, 0, 0), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 4, 0, 0), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 4, 0, 0), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_procedure_call_statement, 2, 0, 0), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_assertion_statement, 2, 0, 0), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_assertion_statement, 4, 0, 0), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_procedure_call_statement, 4, 0, 0), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_instantiation_statement, 4, 0, 0), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate_statement, 4, 0, 0), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 0), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 5, 0, 0), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5, 0, 0), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 0), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_declaration, 5, 0, 0), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disconnection_specification, 5, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_declaration, 5, 0, 0), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_declaration, 5, 0, 0), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_specification, 5, 0, 0), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 5, 0, 0), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 5, 0, 0), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 5, 0, 0), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 5, 0, 0), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, 0, 0), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_declaration, 5, 0, 0), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, 0, 0), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 1, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 0), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concurrent_statement, 1, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 1, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_declarative_item, 1, 0, 0), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 5, 0, 0), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 1, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__library_unit, 1, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_definition, 5, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_item, 1, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 1, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_instantiation_statement, 5, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate_statement, 5, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_generate_statement, 5, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 0), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_declaration, 6, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_declaration, 6, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 6, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_definition, 6, 0, 0), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_instantiation_declaration, 6, 0, 0), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 6, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 6, 0, 0), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 6, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_declaration, 6, 0, 0), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 0), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6, 0, 0), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_statement, 6, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate_statement, 6, 0, 0), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 7, 0, 0), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specification, 7, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 7, 0, 0), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_template_declaration, 7, 0, 0), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 9, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_specification, 7, 0, 0), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 7, 0, 0), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 7, 0, 0), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 7, 0, 0), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 7, 0, 0), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_declaration, 7, 0, 0), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 8, 0, 0), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 0), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode_view_declaration, 7, 0, 0), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7, 0, 0), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_architecture_definition, 8, 0, 0), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_declaration, 8, 0, 0), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_specification, 8, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 8, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 8, 0, 0), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 8, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_instantiation_declaration, 7, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 8, 0, 0), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 0), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_declaration, 8, 0, 0), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_head, 1, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 2, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_head, 2, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_severity_expression, 2, 0, 0), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4766), - [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3496), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), - [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4980), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), - [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4835), - [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5055), - [3500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), - [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), - [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(8042), - [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5042), - [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4989), - [3518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), - [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4957), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_head, 1, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4778), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3505), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), - [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4928), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5039), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), - [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), - [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8068), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5155), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4728), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4927), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_definition_body, 2, 0, 0), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_head, 2, 0, 0), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 3, 0, 0), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timeout_clause, 2, 0, 0), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4778), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3505), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), - [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4928), - [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), - [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5039), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), - [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), - [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8068), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5155), - [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4728), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4927), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_head, 1, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2, 0, 0), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_logical_name, 1, 0, 0), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 2, 0, 0), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4766), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3496), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), - [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4980), - [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4835), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5055), - [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), - [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), - [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(8042), - [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5042), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4989), - [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4957), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_definition_body, 1, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_head, 2, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_force_mode, 1, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_mechanism, 1, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_declaration, 2, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_mechanism, 3, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 3, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_operator, 1, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_operator, 1, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_operator, 1, 0, 0), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direction, 1, 0, 0), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 3, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign, 1, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 1, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_list, 3, 0, 0), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_list, 2, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5107), - [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), - [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6964), - [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6941), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_body, 1, 0, 0), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4998), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3506), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7048), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7025), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5065), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7231), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7199), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5631), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4485), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_body, 2, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 4, 0, 0), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, 0, 0), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_statement, 2, 0, 0), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2, 0, 0), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_waveform_assignment, 6, 0, 0), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 6, 0, 0), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_signal_assignment, 6, 0, 0), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 2, 0, 0), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 3, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion_statement, 2, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 3, 0, 0), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_variable_assignment, 5, 0, 0), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 2, 0, 0), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 4, 0, 0), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_variable_assignment, 4, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_release_assignment, 4, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_waveform_assignment, 4, 0, 0), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_force_assignment, 7, 0, 0), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveform_assignment, 7, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_force_assignment, 7, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_signal_assignment, 4, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_force_assignment, 8, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_force_assignment, 6, 0, 0), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveform_assignment, 6, 0, 0), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_variable_assignment, 6, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_block, 3, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_force_assignment, 6, 0, 0), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_statement, 6, 0, 0), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveform_assignment, 5, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2, 0, 0), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 3, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5280), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3489), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7098), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7085), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5196), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3626), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7384), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7363), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 3, 0, 0), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), + [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7395), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7374), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7599), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7561), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 5, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5245), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3602), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7571), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7528), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3588), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6677), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6678), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_head, 1, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5238), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3582), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7538), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7495), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5206), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3507), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3614), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7406), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7385), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5208), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3515), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7417), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7472), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7429), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1, 0, 0), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1, 0, 0), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 6, 0, 0), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 7, 0, 0), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5181), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7279), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7256), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_head, 8, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_architecture_head, 1, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration_body, 1, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4926), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(3652), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5343), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5123), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(3401), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5128), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4703), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5051), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5252), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5133), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5110), + [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(8270), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5232), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(4914), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5141), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 2, 0, 0), SHIFT_REPEAT(5253), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5249), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3567), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7159), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7136), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_head, 2, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5225), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3571), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3595), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7505), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7462), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_head, 2, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_architecture_head, 2, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5230), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3587), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7473), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3633), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7362), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7340), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesis_group, 3, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesis_group, 3, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 4, 0, 25), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 4, 0, 25), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_designator, 1, 0, 4), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_designator, 1, 0, 4), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_head, 2, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_map_aspect, 3, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_map_aspect, 3, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_list, 3, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_association_list, 3, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_list, 4, 0, 0), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_association_list, 4, 0, 0), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesis_expression, 3, 0, 0), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesis_expression, 3, 0, 0), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3521), + [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3632), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7231), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7208), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_name, 1, 0, 0), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_name, 1, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_variable_name, 6, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_variable_name, 6, 0, 0), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 1, 0, 3), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 1, 0, 3), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_signal_name, 6, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_signal_name, 6, 0, 0), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5192), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3655), + [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7255), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_constant_name, 6, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_constant_name, 6, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 0), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5266), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7123), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7099), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier, 1, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier, 1, 0, 0), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__suffix, 1, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__suffix, 1, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 1, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_name_repeat1, 1, 0, 0), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5201), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3505), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3640), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7243), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7220), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 6, 0, 40), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 6, 0, 40), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_name, 1, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_name, 1, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 12), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 12), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, 0, 0), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5301), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), + [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3649), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6925), + [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6811), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesis_group, 2, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesis_group, 2, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 5, 0, 34), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 5, 0, 34), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5166), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3664), + [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7303), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7280), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 3, 0, 11), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 3, 0, 11), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selection, 2, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selection, 2, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_selector, 1, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name_selector, 1, 0, 0), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 4, 0, 17), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 4, 0, 17), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 3, 0, 0), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 3, 0, 0), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 2, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 2, 0, 0), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_literal, 1, 0, 0), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_literal, 1, 0, 0), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_expression, 2, 0, 0), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3, 0, 0), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_expression, 3, 0, 0), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_expression, 3, 0, 0), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_expression, 3, 0, 0), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_expression, 3, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_based_literal, 2, 0, 0), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_based_literal, 2, 0, 0), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_head, 3, 0, 0), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4899), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5155), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5156), + [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5055), + [2754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5250), + [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(7796), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5157), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5135), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(8277), + [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5163), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), + [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5139), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_head, 4, 0, 0), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration_body, 3, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4903), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5318), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3412), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5142), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5033), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7639), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5161), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5004), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8284), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5215), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5335), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4956), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5121), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5247), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration_body, 2, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4667), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4912), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 1, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__label, 1, 0, 1), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 2, 0, 0), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_direct_block, 2, 0, 0), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_specification, 3, 0, 0), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(3010), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(1198), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bit_string_literal, 3, 0, 0), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bit_string_literal, 3, 0, 0), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unit, 1, 0, 8), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unit, 1, 0, 8), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_waveform_element, 1, 0, 0), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_expression, 2, 0, 0), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 2, 0, 9), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 2, 0, 9), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unit, 1, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unit, 1, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_direct_block, 2, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bit_string_literal, 2, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bit_string_literal, 2, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2, 0, 0), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2, 0, 0), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(3007), + [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(1162), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, 0, 2), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, 0, 2), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, 0, 0), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, 0, 0), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 1, 0, 2), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 1, 0, 2), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_block, 2, 0, 0), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(3004), + [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 2, 0, 0), SHIFT_REPEAT(1133), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_assignment, 1, 0, 0), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_block, 1, 0, 0), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 4, 0, 0), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 2, 0, 0), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 3, 0, 0), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 5, 0, 0), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_indication, 1, 0, 0), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_block, 2, 0, 0), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_waveform_element, 3, 0, 0), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_block, 1, 0, 0), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7, 0, 0), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_file_repeat1, 1, 0, 0), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 1, 0, 0), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_item, 1, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_declarative_item, 1, 0, 0), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__library_unit, 1, 0, 0), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat2, 1, 0, 0), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat3, 1, 0, 0), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concurrent_statement, 1, 0, 0), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_assertion_statement, 2, 0, 0), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_procedure_call_statement, 2, 0, 0), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2, 0, 0), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_design_unit, 2, 0, 0), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_reference, 3, 0, 0), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_clause, 3, 0, 0), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_assertion_statement, 3, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_procedure_call_statement, 3, 0, 0), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 11), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3, 0, 0), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_instantiation_statement, 3, 0, 0), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_expression, 2, 0, 0), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4, 0, 13), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_or_unaffected, 1, 0, 0), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 4, 0, 0), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, 0, 0), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 2, 0, 0), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_range, 3, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 4, 0, 0), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 4, 0, 0), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_assertion_statement, 4, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_procedure_call_statement, 4, 0, 0), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_instantiation_statement, 4, 0, 0), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate_statement, 4, 0, 0), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 0), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 5, 0, 20), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_declaration, 5, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disconnection_specification, 5, 0, 0), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_declaration, 5, 0, 15), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_declaration, 5, 0, 0), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_specification, 5, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 5, 0, 24), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 5, 0, 0), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 5, 0, 0), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 5, 0, 0), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, 0, 0), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5, 0, 13), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_declaration, 5, 0, 0), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, 0, 11), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 11), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 5, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_definition, 5, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5, 0, 0), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_instantiation_statement, 5, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_generate_statement, 5, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 6, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_declaration, 6, 0, 15), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_declaration, 6, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 6, 0, 27), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_definition, 6, 0, 33), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_instantiation_declaration, 6, 0, 24), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 6, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 6, 0, 0), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 6, 0, 0), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 6, 0, 0), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 6, 0, 7), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate_statement, 5, 0, 0), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_declaration, 6, 0, 0), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6, 0, 0), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_statement, 6, 0, 0), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate_statement, 6, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 7, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specification, 7, 0, 12), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 7, 0, 27), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_template_declaration, 7, 0, 0), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_instantiation_declaration, 7, 0, 24), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 7, 0, 0), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 7, 0, 0), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 7, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 7, 0, 0), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 7, 0, 7), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_declaration, 7, 0, 0), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 0), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_specification, 7, 0, 0), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_architecture_definition, 8, 0, 42), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_declaration, 8, 0, 43), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_specification, 8, 0, 0), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 8, 0, 27), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_declaration, 8, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 8, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_instantiation_declaration, 8, 0, 7), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode_view_declaration, 7, 0, 37), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_statement, 8, 0, 0), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_simple_signal_assignment, 8, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_conditional_signal_assignment, 8, 0, 0), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_selected_signal_assignment, 9, 0, 0), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_head, 1, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 2, 0, 0), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_head, 1, 0, 0), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_head, 2, 0, 0), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), + [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5105), + [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5106), + [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5049), + [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5291), + [3518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(7796), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5108), + [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(8263), + [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5234), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5272), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4938), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_severity_expression, 2, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_head, 2, 0, 0), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_definition_body, 1, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_head, 1, 0, 0), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 2, 0, 0), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2, 0, 0), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5105), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5106), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5049), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5291), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(7796), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5108), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(8263), + [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5234), + [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5272), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4938), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_definition_body, 2, 0, 0), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_head, 2, 0, 0), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 3, 0, 0), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timeout_clause, 2, 0, 0), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_logical_name, 1, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4936), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5098), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), + [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), + [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5060), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5236), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7796), + [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8289), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5263), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5320), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4950), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5086), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4936), + [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5098), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), + [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), + [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5060), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5236), + [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7796), + [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8289), + [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5263), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5320), + [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4950), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5086), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_mechanism, 3, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_declaration, 2, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_mechanism, 1, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_force_mode, 1, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selected_waveforms_repeat1, 3, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 1, 0, 0), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign, 1, 0, 0), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selected_expressions_repeat1, 3, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_operator, 1, 0, 0), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1, 0, 0), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_operator, 1, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_operator, 1, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direction, 1, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_list, 2, 0, 0), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_list, 3, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5237), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3599), + [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7183), + [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7160), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5188), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3662), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7267), + [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7244), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3534), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7450), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7418), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_body, 2, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5892), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4640), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4332), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_body, 1, 0, 0), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 2, 0, 0), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_force_assignment, 5, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 5, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_block, 5, 0, 0), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_statement, 5, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_release_assignment, 5, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_variable_assignment, 5, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_force_assignment, 6, 0, 0), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveform_assignment, 5, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_variable_assignment, 5, 0, 0), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_waveform_assignment, 5, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_statement, 5, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_signal_assignment, 5, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_force_assignment, 8, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_signal_assignment, 4, 0, 0), [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 4, 0, 0), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_statement, 5, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 4, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 3, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, 0, 0), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_signal_assignment, 5, 0, 0), - [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5151), - [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3534), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6988), - [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6965), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_waveform_assignment, 5, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_release_assignment, 5, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion_statement, 3, 0, 0), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_force_assignment, 5, 0, 0), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_statement, 4, 0, 0), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_block, 4, 0, 0), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, 0, 0), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, 0, 0), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_statement, 3, 0, 0), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_variable_assignment, 5, 0, 0), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_block, 5, 0, 0), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, 0, 0), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 5, 0, 0), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_statement, 5, 0, 0), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequential_statement, 1, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_release_assignment, 6, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 1, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_block, 6, 0, 0), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_statement, 4, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5056), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(80), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6916), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6893), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_condition, 3, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_clause, 5, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port_clause, 5, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 1, 0, 0), - [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5011), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7315), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7314), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entity_declarative_item, 1, 0, 0), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 1, 0, 0), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5133), - [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7108), - [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7085), - [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4748), - [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4792), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), - [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4889), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5708), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4745), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declarative_item, 1, 0, 0), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 1, 0, 0), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3, 0, 0), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5121), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3394), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7341), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7298), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5043), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3413), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7154), - [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7133), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5036), - [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), - [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), - [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7392), - [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7364), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), - [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3489), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7389), - [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7353), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5108), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3504), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7120), - [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7097), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5070), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3378), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7132), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7109), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7308), - [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7265), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_force_assignment, 7, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 4, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveform_assignment, 7, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_force_assignment, 7, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, 0, 0), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_waveform_assignment, 4, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_release_assignment, 4, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_variable_assignment, 4, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 4, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_block, 4, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_signal_assignment, 6, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_waveform_assignment, 6, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 4, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_statement, 4, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_release_assignment, 6, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_statement, 4, 0, 0), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5222), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), + [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3613), + [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7207), + [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7184), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_variable_assignment, 6, 0, 0), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion_statement, 3, 0, 0), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 3, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_block, 3, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 3, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 3, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_block_repeat1, 1, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_statement, 3, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement_block, 6, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequential_statement, 1, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, 0, 0), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 2, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 3, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_statement, 2, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wait_statement, 6, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_block_statement, 6, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_force_assignment, 6, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveform_assignment, 6, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion_statement, 2, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5264), + [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), + [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7135), + [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7112), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_condition, 3, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_clause, 5, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5210), + [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3616), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7405), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7402), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 1, 0, 0), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port_clause, 5, 0, 0), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entity_declarative_item, 1, 0, 0), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declarative_item, 1, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_declaration_body_repeat1, 1, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_head_repeat1, 1, 0, 0), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3, 0, 0), + [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5174), + [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), + [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), + [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7327), + [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7304), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4911), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), + [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4995), + [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7639), + [4300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4997), + [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), + [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3576), + [4346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7560), + [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7517), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5262), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7611), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7583), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5193), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), + [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3631), + [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7373), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7352), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5261), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3619), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7608), + [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7572), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5183), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3446), + [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3644), + [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7339), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7316), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5189), + [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3634), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7351), + [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7328), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [4987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4988), - [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3371), - [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7000), - [5002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6977), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5145), - [5034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3386), - [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), - [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7330), - [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7287), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4990), - [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), - [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6865), - [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6846), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sensitivity_specification, 3, 0, 0), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4997), - [5158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), - [5164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), - [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6928), - [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6905), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), - [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3357), - [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), - [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6817), - [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6782), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [5273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5073), - [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [5282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), - [5285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7096), - [5288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7073), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 1, 0, 0), - [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protected_type_body_declarative_item, 1, 0, 0), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 1, 0, 0), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_declarative_item, 1, 0, 0), - [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_body_declarative_item, 1, 0, 0), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 1, 0, 0), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__process_declarative_item, 1, 0, 0), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 1, 0, 0), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 1, 0, 0), - [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resolution_indication, 1, 0, 0), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [5413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), - [5416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [5419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), - [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [5425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6976), - [5428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6953), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 1, 0, 0), - [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entity_statement, 1, 0, 0), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_head, 1, 0, 0), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_header, 1, 0, 0), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_head, 2, 0, 0), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode, 1, 0, 0), - [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__label, 1, 0, 1), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_end, 1, 0, 0), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conditional_analysis_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4807), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conditional_analysis_expression_repeat1, 2, 0, 0), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mode_view_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4258), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mode_view_body_repeat1, 2, 0, 0), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_header, 3, 0, 0), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 1, 0, 0), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protected_type_declarative_item, 1, 0, 0), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_analysis_expression, 2, 0, 0), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_declaration_body, 2, 0, 0), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_variable_declaration, 2, 0, 0), - [5573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4258), - [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_definition_repeat1, 2, 0, 0), - [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_declaration_body, 1, 0, 0), - [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode_view_body, 2, 0, 0), - [5582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 2, 0, 0), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5041), - [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4749), - [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode_view_body, 1, 0, 0), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_analysis_expression, 1, 0, 0), - [5599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4696), - [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4764), - [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4777), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resolution_indication, 3, 0, 0), - [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_end, 2, 0, 0), - [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_physical_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4258), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_physical_type_definition_repeat1, 2, 0, 0), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package, 1, 0, 0), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package_body, 1, 0, 0), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_case, 2, 0, 0), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, 0, 0), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_architecture, 1, 0, 0), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_entity, 1, 0, 0), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_analysis_relation, 3, 0, 0), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 2, 0, 0), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_context, 1, 0, 0), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_partial_pathname_repeat1, 2, 0, 0), SHIFT_REPEAT(4258), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_component, 1, 0, 0), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_analysis_relation, 4, 0, 4), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_configuration, 1, 0, 0), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_component, 2, 0, 0), - [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_pathname_repeat1, 2, 0, 0), SHIFT_REPEAT(4258), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_procedure_specification, 2, 0, 0), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__target, 1, 0, 0), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package_body, 3, 0, 0), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_record, 2, 0, 0), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration_end, 2, 0, 0), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_header, 4, 0, 0), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_relative_pathname_repeat1, 2, 0, 0), SHIFT_REPEAT(7041), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_relative_pathname_repeat1, 2, 0, 0), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_entity, 2, 0, 0), - [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conditional_expression_repeat1, 2, 0, 0), - [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conditional_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_body_end, 3, 0, 0), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block, 2, 0, 0), - [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_units, 2, 0, 0), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_configuration, 2, 0, 0), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if, 2, 0, 0), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_case, 3, 0, 0), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_loop, 2, 0, 0), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_context, 2, 0, 0), - [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_process, 2, 0, 0), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_process, 3, 0, 0), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_generate, 2, 0, 0), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package, 2, 0, 0), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_view, 2, 0, 0), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_analysis_identifier, 1, 0, 0), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__conditional_analysis_identifier, 1, 0, 0), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 2, 0, 0), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_architecture, 2, 0, 0), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_specification, 3, 0, 0), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat2, 2, 0, 0), - [5921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat2, 2, 0, 0), SHIFT_REPEAT(3155), - [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 2, 0, 0), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sensitivity_list, 1, 0, 0), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_definition_repeat1, 1, 0, 0), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_incomplete_type_definition, 2, 0, 0), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat1, 2, 0, 0), - [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat1, 2, 0, 0), SHIFT_REPEAT(4760), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sensitivity_list, 2, 0, 0), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__designator, 1, 0, 0), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 4, 0, 0), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, 0, 0), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_physical_type_definition_repeat1, 1, 0, 0), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_unit_declaration, 2, 0, 0), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_mode_indication, 1, 0, 0), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_block_repeat1, 2, 0, 0), - [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(608), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode_view_element_definition, 4, 0, 0), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_signature_repeat1, 2, 0, 0), - [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_signature_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2, 0, 0), - [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2, 0, 0), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_mode_indication, 2, 0, 0), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 1, 0, 0), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_unit_declaration, 5, 0, 0), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_declaration, 4, 0, 0), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_generate_statement_repeat1, 2, 0, 0), - [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_generate_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 1, 0, 0), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, 0, 0), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_unit_declaration, 4, 0, 0), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 3, 0, 0), - [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_signature_repeat1, 2, 0, 0), SHIFT_REPEAT(3884), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_name, 1, 0, 0), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2, 0, 0), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mode_view_body_repeat1, 1, 0, 0), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat2, 2, 0, 0), - [6176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat2, 2, 0, 0), SHIFT_REPEAT(6722), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conditional_waveforms_repeat1, 2, 0, 0), - [6217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conditional_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_generate_block_repeat1, 2, 0, 0), - [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_generate_block_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_head, 3, 0, 0), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_incomplete_type_definition, 1, 0, 0), - [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_designator, 1, 0, 0), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar_incomplete_type_definition, 1, 0, 0), - [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__incomplete_type_definition, 1, 0, 0), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conditional_or_unaffected_expression_repeat1, 2, 0, 0), - [6283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conditional_or_unaffected_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 4, 0, 0), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selected_name_repeat1, 2, 0, 0), - [6332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_name_repeat1, 2, 0, 0), SHIFT_REPEAT(4983), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unspecified_type_indication, 3, 0, 0), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 1, 0, 0), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__configuration_declarative_item, 1, 0, 0), - [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_pathname_repeat1, 2, 0, 0), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_element, 2, 0, 0), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__incomplete_subtype_indication, 1, 0, 0), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_incomplete_type_definition, 2, 0, 0), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_physical_incomplete_type_definition, 2, 0, 0), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_mode_indication, 3, 0, 0), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_waveform, 2, 0, 0), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_block, 2, 0, 0), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_waveform_repeat1, 2, 0, 0), - [6441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_waveform_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_waveforms, 3, 0, 0), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_aspect, 2, 0, 0), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_waveform, 1, 0, 0), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_mark, 1, 0, 0), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_incomplete_type_definition, 3, 0, 0), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_incomplete_type_definition, 3, 0, 0), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, 0, 0), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_incomplete_type_definition, 4, 0, 0), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_waveforms, 2, 0, 0), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_name, 1, 0, 0), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_or_unaffected_expression, 1, 0, 0), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_header, 5, 0, 0), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [6728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_signature_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [6745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_or_unaffected_expression, 2, 0, 0), - [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_type_indication, 1, 0, 0), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_partial_pathname_repeat1, 2, 0, 0), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_name, 2, 0, 0), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choices, 3, 0, 0), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_list, 2, 0, 0), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_specification, 4, 0, 0), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_list, 2, 0, 0), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aggregate_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aggregate_repeat1, 2, 0, 0), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_name_list, 2, 0, 0), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 2, 0, 0), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [6864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sensitivity_clause, 2, 0, 0), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_body, 3, 0, 0), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pathname_element, 1, 0, 0), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partial_pathname, 2, 0, 0), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_block_end, 2, 0, 0), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 3, 0, 0), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_association_list, 1, 0, 0), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_specification, 3, 0, 0), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_directive, 2, 0, 0), - [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protect_directive, 2, 0, 0), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_body, 1, 0, 0), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_name_list, 2, 0, 0), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_or_range_list, 2, 0, 0), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_block_repeat1, 1, 0, 0), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_class_entry, 1, 0, 0), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_class_entry_list, 1, 0, 0), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entity_class, 1, 0, 0), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, 0, 0), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_name_list, 1, 0, 0), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_list, 1, 0, 0), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_list, 1, 0, 0), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_name_list, 1, 0, 0), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_block_end, 3, 0, 0), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_declaration, 2, 0, 0), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_directive, 1, 0, 0), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protect_directive, 1, 0, 0), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partial_pathname, 1, 0, 0), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_logical_name_list_repeat1, 2, 0, 0), - [7367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_name_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_subprogram_specification, 1, 0, 0), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_subprogram_declaration, 1, 0, 0), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_list, 1, 0, 0), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate, 4, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_or_range_list, 1, 0, 0), - [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_generate, 4, 0, 0), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_mode_view_indication, 4, 0, 0), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_function_specification, 6, 0, 0), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_association_or_range_list_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_association_or_range_list_repeat1, 2, 0, 0), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_name_list, 2, 0, 0), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [7541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_index_incomplete_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_index_incomplete_type_list_repeat1, 2, 0, 0), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_generate_statement_repeat1, 1, 0, 0), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_aspect, 1, 0, 0), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_generate, 3, 0, 0), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_resolution, 2, 0, 0), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_function_specification, 5, 0, 0), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instantiation_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5099), - [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instantiation_list_repeat1, 2, 0, 0), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_name_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), - [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_name_list_repeat1, 2, 0, 0), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_aspect, 5, 0, 0), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_directive_repeat1, 2, 0, 0), SHIFT_REPEAT(6155), - [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_directive_repeat1, 2, 0, 0), - [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat1, 1, 0, 0), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [7643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_association_list_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_association_list_repeat1, 2, 0, 0), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_clause_repeat1, 2, 0, 0), - [7650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), - [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verification_unit_list, 1, 0, 0), - [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 3, 0, 0), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_instantiation_definition, 2, 0, 0), - [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_element_list, 2, 0, 0), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_association_list, 2, 0, 0), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate, 3, 0, 0), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_procedure_specification, 3, 0, 0), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2698), - [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_list_repeat1, 2, 0, 0), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [7692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumeration_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4860), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumeration_type_definition_repeat1, 2, 0, 0), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [7705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_class_entry_list, 2, 0, 0), - [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entity_tag, 1, 0, 0), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_constituent_list, 1, 0, 0), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_index_incomplete_type_list, 2, 0, 0), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type_definition, 2, 0, 0), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement, 4, 0, 0), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 0), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_or_unaffected_expression, 3, 0, 0), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_architecture_identifier, 3, 0, 0), - [7760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2, 0, 0), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 2, 0, 0), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_constituent_list, 2, 0, 0), - [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_class_entry_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2925), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_class_entry_list_repeat1, 2, 0, 0), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_mode_view_indication, 2, 0, 0), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_index_incomplete_type_list, 1, 0, 0), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [7824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_association_list_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_association_list_repeat1, 2, 0, 0), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_element_list, 1, 0, 0), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_function_specification, 4, 0, 0), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_name_list, 1, 0, 0), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_resolution_repeat1, 2, 0, 0), SHIFT_REPEAT(4924), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_resolution_repeat1, 2, 0, 0), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verification_unit_list, 2, 0, 0), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_waveforms, 4, 0, 0), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_resolution, 1, 0, 0), - [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 5, 0, 0), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mode_indication, 1, 0, 0), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_configuration, 6, 0, 0), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_configuration, 5, 0, 0), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_configuration, 4, 0, 0), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_mode_view_indication, 6, 0, 0), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_configuration, 7, 0, 0), - [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_map_any, 5, 0, 0), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_map_default, 5, 0, 0), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_configuration, 6, 0, 0), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_configuration, 5, 0, 0), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_body, 3, 0, 0), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_configuration, 4, 0, 0), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pathname, 7, 0, 0), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 9, 0, 0), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_mode_indication, 4, 0, 0), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_mode_view_indication, 4, 0, 0), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_package_generic_map_aspect, 1, 0, 0), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_package_declaration, 6, 0, 0), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_alternative, 4, 0, 0), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_designator, 2, 0, 0), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pathname, 6, 0, 0), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, 0, 0), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 8, 0, 0), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__configuration_item, 1, 0, 0), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat2, 1, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_body, 1, 0, 0), - [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_alternative, 3, 0, 0), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_expressions, 3, 0, 0), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_expressions, 2, 0, 0), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_expression_or_unaffected, 2, 0, 0), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 7, 0, 0), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_variable_declaration, 4, 0, 0), - [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_declaration, 4, 0, 0), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_signal_declaration, 4, 0, 0), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_file_declaration, 4, 0, 0), - [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_constant_declaration, 4, 0, 0), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_waveform, 2, 0, 0), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveforms, 3, 0, 0), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_index_incomplete_type, 1, 0, 0), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_class_entry, 2, 0, 0), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mode_view_indication, 1, 0, 0), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 0), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_subprogram_declaration, 3, 0, 0), - [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_subprogram_default, 1, 0, 0), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 6, 0, 0), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialiser, 2, 0, 0), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_element_resolution, 2, 0, 0), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_generate_block_repeat1, 1, 0, 0), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_element, 3, 0, 0), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveforms, 2, 0, 0), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1, 0, 0), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__alias_designator, 1, 0, 0), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_conditional_analysis, 1, 0, 0), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_association, 1, 0, 0), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_directive_repeat1, 1, 0, 0), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_literal, 1, 0, 0), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aggregate, 3, 0, 0), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_target, 2, 0, 0), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__actual_part, 1, 0, 0), - [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__association_or_range, 1, 0, 0), - [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_element, 1, 0, 0), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_kind, 1, 0, 0), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 5, 0, 0), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 4, 0, 0), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration, 1, 0, 0), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 4, 0, 0), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition, 1, 0, 0), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aggregate, 4, 0, 0), - [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_association, 3, 0, 0), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1, 0, 0), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_target, 3, 0, 0), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__actual_part, 2, 0, 0), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_pathname, 2, 0, 0), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absolute_pathname, 2, 0, 0), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2, 0, 0), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guarded_signal_specification, 3, 0, 0), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [9102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 4, 0, 0), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_conditional_analysis, 3, 0, 0), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_analysis_operator, 1, 0, 0), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_conditional_analysis, 3, 0, 0), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [9256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 2, 0, 0), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 2, 0, 0), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_pathname, 1, 0, 0), - [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_pathname, 1, 0, 0), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__process_sensitivity_list, 1, 0, 0), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__iteration_scheme, 1, 0, 0), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2, 0, 0), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [9834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_warning_directive, 2, 0, 0), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [9840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_directive, 2, 0, 0), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_conditional_analysis, 2, 0, 0), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_design_file, 2, 0, 0), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [10200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive, 1, 0, 0), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_for, 2, 0, 0), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [10258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_conditional_analysis, 1, 0, 0), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [10324] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [10340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_design_file, 1, 0, 0), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port_map_aspect, 3, 0, 0), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, 0, 0), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [10860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_generate, 3, 0, 0), - [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_generate, 3, 0, 0), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [10874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_specification, 3, 0, 0), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_context, 3, 0, 0), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_entity, 3, 0, 0), - [10896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_open_information, 2, 0, 0), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [10914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verification_unit_binding_indication, 3, 0, 0), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package_body, 2, 0, 0), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [10954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package, 3, 0, 0), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [10966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if, 3, 0, 0), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [10970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_loop, 3, 0, 0), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [10998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_process, 4, 0, 0), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [11002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type_definition, 3, 0, 0), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_type_definition, 3, 0, 0), - [11016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_instantiation_definition, 3, 0, 0), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [11020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_body, 3, 0, 0), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [11024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 3, 0, 0), - [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3, 0, 0), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [11030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3, 0, 0), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [11042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pathname_element, 4, 0, 0), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [11050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_end, 3, 0, 0), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [11058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block, 3, 0, 0), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [11146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_body, 4, 0, 0), - [11148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration_end, 3, 0, 0), - [11150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 4, 0, 0), - [11152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_record, 3, 0, 0), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [11158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 4, 0, 0), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [11164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_physical_type_definition, 4, 0, 0), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [11168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_generate, 2, 0, 0), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [11172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 3, 0, 0), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [11186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_component, 3, 0, 0), - [11188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_open_information, 4, 0, 0), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [11198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package_body, 4, 0, 0), - [11200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_case, 4, 0, 0), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [11214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_physical_type_definition, 5, 0, 0), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [11218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_mode_indication, 1, 0, 0), - [11220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_mode_view_indication, 1, 0, 0), - [11222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_view, 3, 0, 0), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [11232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_architecture, 3, 0, 0), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [11236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_configuration, 3, 0, 0), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [11252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_body_end, 4, 0, 0), - [11254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_units, 3, 0, 0), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [11258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_record_mode_view_indication, 2, 0, 0), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [11304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_array_mode_view_indication, 4, 0, 0), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [11348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_resolution, 1, 0, 0), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [11382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [11384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tool_directive, 3, 0, 0), - [11386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5294), + [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3447), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7084), + [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7064), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5217), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7219), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7196), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [5137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5240), + [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [5143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), + [5146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7506), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [5159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5337), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3493), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3635), + [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7034), + [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(6998), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [5211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), + [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), + [5220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7527), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7484), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sensitivity_specification, 3, 0, 0), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5259), + [5238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7147), + [5250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7124), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_declarative_item, 1, 0, 0), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subprogram_head_repeat1, 1, 0, 0), + [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5172), + [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), + [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), + [5311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7315), + [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7292), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protected_type_body_declarative_item, 1, 0, 0), + [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_type_body_repeat1, 1, 0, 0), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_definition_body_repeat1, 1, 0, 0), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_body_declarative_item, 1, 0, 0), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__process_declarative_item, 1, 0, 0), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_block_head_repeat1, 1, 0, 0), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5229), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3557), + [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [5395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7195), + [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_repeat1, 2, 0, 0), SHIFT_REPEAT(7172), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 1, 0, 16), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resolution_indication, 1, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entity_statement, 1, 0, 0), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_body_repeat1, 1, 0, 0), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_head, 2, 0, 0), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_head, 1, 0, 0), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_header, 1, 0, 0), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_end, 1, 0, 0), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode, 1, 0, 0), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [5547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__label, 1, 0, 1), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_declaration_body, 1, 0, 0), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 2, 0, 0), SHIFT_REPEAT(3880), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 2, 0, 0), + [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 2, 0, 0), SHIFT_REPEAT(5221), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 2, 0, 0), SHIFT_REPEAT(4947), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_variable_declaration, 2, 0, 0), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_declaration_body, 2, 0, 0), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conditional_analysis_expression_repeat1, 2, 0, 0), + [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conditional_analysis_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4990), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode_view_body, 1, 0, 0), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protected_type_declarative_item, 1, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_header, 3, 0, 0), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_analysis_expression, 2, 0, 0), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_definition_repeat1, 2, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode_view_body, 2, 0, 0), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_analysis_expression, 1, 0, 0), + [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mode_view_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mode_view_body_repeat1, 2, 0, 0), + [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4868), + [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4939), + [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_design_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_type_declaration_repeat1, 1, 0, 0), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_end, 2, 0, 0), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_physical_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_physical_type_definition_repeat1, 2, 0, 0), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resolution_indication, 3, 0, 0), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, 0, 7), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 2, 0, 11), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_context, 1, 0, 0), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_entity, 1, 0, 0), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_analysis_relation, 3, 0, 0), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_case, 2, 0, 0), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_component, 1, 0, 0), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_analysis_relation, 4, 0, 29), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_configuration, 1, 0, 0), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_architecture, 1, 0, 0), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package_body, 1, 0, 0), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package, 1, 0, 0), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_partial_pathname_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__target, 1, 0, 0), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_record, 2, 0, 0), + [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_relative_pathname_repeat1, 2, 0, 0), SHIFT_REPEAT(6843), + [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_relative_pathname_repeat1, 2, 0, 0), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_architecture, 2, 0, 0), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_units, 2, 0, 0), + [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_configuration, 2, 0, 0), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_analysis_identifier, 1, 0, 0), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__conditional_analysis_identifier, 1, 0, 0), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_process, 3, 0, 0), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration_end, 2, 0, 0), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conditional_expression_repeat1, 2, 0, 0), + [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conditional_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_pathname_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_loop, 2, 0, 0), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if, 2, 0, 0), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block, 2, 0, 0), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 2, 0, 0), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_specification, 3, 0, 0), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_body_end, 3, 0, 0), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_view, 2, 0, 0), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package, 2, 0, 0), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat2, 2, 0, 0), + [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat2, 2, 0, 0), SHIFT_REPEAT(3299), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_process, 2, 0, 0), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_procedure_specification, 2, 0, 7), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_entity, 2, 0, 0), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_context, 2, 0, 0), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_header, 4, 0, 0), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_component, 2, 0, 0), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_generate, 2, 0, 0), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_case, 3, 0, 0), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package_body, 3, 0, 0), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_group_constituent_list_repeat1, 2, 0, 0), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_group_constituent_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4278), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2, 0, 0), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat1, 2, 0, 0), + [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), + [5975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_group_constituent_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4252), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sensitivity_list, 2, 0, 0), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_mode_indication, 1, 0, 0), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_generate_statement_repeat1, 2, 0, 0), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_generate_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 2, 0, 16), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_declaration, 4, 0, 0), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_mode_indication, 2, 0, 0), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_indication, 3, 0, 11), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 1, 0, 0), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mode_view_element_definition, 4, 0, 0), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__designator, 1, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 1, 0, 0), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1, 0, 0), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_incomplete_type_definition, 2, 0, 0), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_unit_declaration, 4, 0, 0), + [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sensitivity_list, 1, 0, 0), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_unit_declaration, 5, 0, 0), + [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_definition_repeat1, 1, 0, 0), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mode_view_body_repeat1, 1, 0, 0), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_name, 1, 0, 5), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_block_repeat1, 2, 0, 0), + [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(615), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_physical_type_definition_repeat1, 1, 0, 0), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, 0, 7), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat2, 2, 0, 0), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat2, 2, 0, 0), SHIFT_REPEAT(8134), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_unit_declaration, 2, 0, 0), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2, 0, 0), + [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__incomplete_type_mark, 1, 0, 16), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_name, 1, 0, 6), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_element, 2, 0, 0), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selected_name_repeat1, 2, 0, 0), + [6297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selected_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5125), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_designator, 1, 0, 0), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar_incomplete_type_definition, 1, 0, 0), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__incomplete_type_mark, 1, 0, 0), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_type_indication, 1, 0, 0), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_incomplete_type_definition, 3, 0, 51), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_partial_pathname_repeat1, 2, 0, 0), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conditional_waveforms_repeat1, 2, 0, 0), + [6498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conditional_waveforms_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_head_repeat1, 1, 0, 0), + [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__configuration_declarative_item, 1, 0, 0), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unspecified_type_indication, 3, 0, 0), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_or_unaffected_expression, 2, 0, 0), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_incomplete_type_definition, 3, 0, 0), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_waveform, 2, 0, 0), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__incomplete_type_definition, 1, 0, 0), + [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 4, 0, 28), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_block, 2, 0, 0), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_pathname_repeat1, 2, 0, 0), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_incomplete_type_definition, 1, 0, 0), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_incomplete_type_definition, 4, 0, 0), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_waveforms, 2, 0, 0), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_waveform_repeat1, 2, 0, 0), + [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_waveform_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, 0, 0), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_waveforms, 3, 0, 0), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_header, 5, 0, 0), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conditional_or_unaffected_expression_repeat1, 2, 0, 0), + [6712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conditional_or_unaffected_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_mode_indication, 3, 0, 0), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_physical_incomplete_type_definition, 2, 0, 0), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_aspect, 2, 0, 15), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [6769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_signature_repeat1, 2, 0, 26), SHIFT_REPEAT(4027), + [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_signature_repeat1, 2, 0, 26), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_incomplete_type_definition, 2, 0, 0), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_head, 3, 0, 0), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_or_unaffected_expression, 1, 0, 0), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_waveform, 1, 0, 0), + [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__incomplete_subtype_indication, 1, 0, 0), + [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 4, 0, 0), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_generate_block_repeat1, 2, 0, 0), + [6828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_generate_block_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [6831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choices, 3, 0, 0), + [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_name, 2, 0, 6), + [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 2, 0, 15), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_or_range_list, 1, 0, 0), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_instantiation_definition, 2, 0, 0), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_element_list, 1, 0, 0), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat1, 1, 0, 0), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_block_repeat1, 1, 0, 0), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pathname_element, 1, 0, 0), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partial_pathname, 2, 0, 0), + [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_block_end, 3, 0, 0), + [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_generate_statement_repeat1, 1, 0, 0), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [6939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_list, 1, 0, 0), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_aspect, 5, 0, 36), + [6965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_function_specification, 5, 0, 22), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, 0, 0), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 2, 0, 14), + [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_function_specification, 5, 0, 23), + [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 2, 0, 13), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aggregate_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aggregate_repeat1, 2, 0, 0), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_list, 1, 0, 0), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type_definition, 2, 0, 0), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [7093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_association_or_range_list_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_association_or_range_list_repeat1, 2, 0, 0), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_signature_repeat1, 2, 0, 11), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_name_list, 2, 0, 10), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_block_end, 2, 0, 0), + [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verification_unit_list, 2, 0, 0), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_function_specification, 4, 0, 18), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 2, 0, 0), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_association_list_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_association_list_repeat1, 2, 0, 0), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_index_incomplete_type_list, 1, 0, 0), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partial_pathname, 1, 0, 0), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_body, 3, 0, 0), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_name_list, 2, 0, 0), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_name_list, 1, 0, 0), + [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate, 4, 0, 0), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_generate, 3, 0, 0), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protect_directive, 2, 0, 0), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_logical_name_list_repeat1, 2, 0, 10), + [7383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_name_list_repeat1, 2, 0, 10), SHIFT_REPEAT(4989), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_specification, 4, 0, 0), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_resolution, 2, 0, 0), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sensitivity_clause, 2, 0, 0), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [7418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_directive_repeat1, 2, 0, 0), SHIFT_REPEAT(6410), + [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_directive_repeat1, 2, 0, 0), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_directive, 2, 0, 0), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_mode_view_indication, 2, 0, 37), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [7461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_waveforms, 4, 0, 0), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_name_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_name_list_repeat1, 2, 0, 0), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_element_list, 2, 0, 0), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumeration_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5064), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumeration_type_definition_repeat1, 2, 0, 0), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_subprogram_specification, 1, 0, 0), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_subprogram_declaration, 1, 0, 0), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_list, 1, 0, 0), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_name_list, 2, 0, 0), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_index_incomplete_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_index_incomplete_type_list_repeat1, 2, 0, 0), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_aspect, 2, 0, 14), + [7570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_association_list_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_association_list_repeat1, 2, 0, 0), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verification_unit_list, 1, 0, 0), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protect_directive, 1, 0, 0), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_function_specification, 6, 0, 32), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_constituent_list, 2, 0, 0), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_resolution, 1, 0, 0), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_association_list, 2, 0, 0), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_declaration, 2, 0, 11), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 3, 0, 0), + [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement, 4, 0, 0), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_specification, 3, 0, 0), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_directive, 1, 0, 0), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 5, 0, 36), + [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_entity_class_entry_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_entity_class_entry_list_repeat1, 2, 0, 0), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_procedure_specification, 3, 0, 7), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_association_list, 1, 0, 0), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_generate, 4, 0, 0), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_index_incomplete_type_list, 2, 0, 0), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_name_list, 1, 0, 0), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [7796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_list_repeat1, 2, 0, 0), + [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_mode_view_indication, 4, 0, 47), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_list, 2, 0, 0), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_class_entry, 1, 0, 0), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_list, 2, 0, 0), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_class_entry_list, 1, 0, 0), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 2, 0, 0), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_aspect, 1, 0, 0), + [7841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_or_unaffected_expression, 3, 0, 0), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [7856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instantiation_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5342), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instantiation_list_repeat1, 2, 0, 0), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2, 0, 0), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entity_class, 1, 0, 0), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_class_entry_list, 2, 0, 0), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_resolution_repeat1, 2, 0, 0), SHIFT_REPEAT(5113), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_resolution_repeat1, 2, 0, 0), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_constituent_list, 1, 0, 0), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_unit, 7, 0, 48), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_name_list, 1, 0, 6), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 0), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_or_range_list, 2, 0, 0), + [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_clause_repeat1, 2, 0, 0), + [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4953), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_generate, 3, 0, 0), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__entity_tag, 1, 0, 0), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generate_body, 1, 0, 0), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_configuration, 6, 0, 0), + [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_configuration, 5, 0, 0), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_configuration, 4, 0, 0), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_configuration, 7, 0, 0), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_map_any, 5, 0, 0), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_map_default, 5, 0, 0), + [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_configuration, 6, 0, 0), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_mode_view_indication, 6, 0, 47), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_configuration, 4, 0, 0), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_body, 3, 0, 0), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pathname, 7, 0, 0), + [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 9, 0, 52), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_mode_indication, 4, 0, 0), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_mode_view_indication, 4, 0, 37), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_package_generic_map_aspect, 1, 0, 0), + [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_package_declaration, 6, 0, 24), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_alternative, 4, 0, 0), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pathname, 6, 0, 0), + [8030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_configuration, 5, 0, 0), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, 0, 16), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 8, 0, 45), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 8, 0, 44), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__configuration_item, 1, 0, 0), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_configuration_repeat2, 1, 0, 0), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_body, 1, 0, 0), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_generate_alternative, 3, 0, 0), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_expressions, 3, 0, 0), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_expressions, 2, 0, 0), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_expression_or_unaffected, 2, 0, 0), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 7, 0, 39), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 7, 0, 38), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_variable_declaration, 4, 0, 0), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_declaration, 4, 0, 11), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_signal_declaration, 4, 0, 0), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_constant_declaration, 4, 0, 0), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_waveform, 2, 0, 0), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveforms, 3, 0, 0), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_index_incomplete_type, 1, 0, 0), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_file_declaration, 4, 0, 0), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 6, 0, 32), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_class_entry, 2, 0, 0), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mode_view_indication, 1, 0, 0), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mode_indication, 1, 0, 0), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 0), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_subprogram_declaration, 3, 0, 0), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_subprogram_default, 1, 0, 0), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 6, 0, 31), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialiser, 2, 0, 0), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_element_resolution, 2, 0, 0), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 4, 0, 18), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_generate_block_repeat1, 1, 0, 0), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_element, 3, 0, 0), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_waveforms, 2, 0, 0), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_literal, 1, 0, 0), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signal_kind, 1, 0, 0), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration, 1, 0, 0), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1, 0, 0), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_conditional_analysis, 1, 0, 0), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 5, 0, 23), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__alias_designator, 1, 0, 0), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 5, 0, 22), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_designator, 2, 0, 0), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1, 0, 0), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__actual_part, 2, 0, 0), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_target, 3, 0, 0), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_association, 1, 0, 0), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_association, 3, 0, 0), + [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aggregate, 4, 0, 0), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_logical_name_list_repeat1, 2, 0, 19), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_directive_repeat1, 1, 0, 0), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition, 1, 0, 0), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aggregate, 3, 0, 0), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 4, 0, 7), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_target, 2, 0, 0), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__actual_part, 1, 0, 0), + [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__association_or_range, 1, 0, 0), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_association_element, 1, 0, 0), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 2, 0, 0), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_pathname, 1, 0, 0), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_pathname, 1, 0, 0), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_conditional_analysis, 3, 0, 0), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__process_sensitivity_list, 1, 0, 0), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__iteration_scheme, 1, 0, 0), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_analysis_operator, 1, 0, 0), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_warning_directive, 2, 0, 0), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_directive, 2, 0, 0), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_conditional_analysis, 2, 0, 0), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [9664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_conditional_analysis, 3, 0, 0), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [9672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_design_file, 2, 0, 0), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absolute_pathname, 2, 0, 0), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [10178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_generate, 2, 0, 0), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_pathname, 2, 0, 0), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_resolution, 1, 0, 0), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_for, 2, 0, 0), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_component, 3, 0, 21), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [10226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 3, 0, 0), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [10238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_entity, 2, 0, 15), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port_map_aspect, 3, 0, 0), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive, 1, 0, 0), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [10376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package, 2, 0, 24), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_conditional_analysis, 1, 0, 0), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [10490] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2, 0, 0), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [10510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_design_file, 1, 0, 0), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [10624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2, 0, 0), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 4, 0, 0), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_end, 2, 0, 27), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [11030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 2, 0, 0), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [11034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_generate, 3, 0, 0), + [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_generate, 3, 0, 0), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [11054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entity_specification, 3, 0, 0), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [11080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_context, 3, 0, 0), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [11084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_entity, 3, 0, 30), + [11086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_open_information, 2, 0, 0), + [11088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, 0, 0), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [11092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verification_unit_binding_indication, 3, 0, 0), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [11144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package_body, 2, 0, 24), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [11148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package, 3, 0, 33), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if, 3, 0, 0), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [11174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_loop, 3, 0, 0), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [11202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_process, 4, 0, 0), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [11212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type_definition, 3, 0, 0), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [11218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_type_definition, 3, 0, 17), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [11222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_body, 3, 0, 0), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [11226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 3, 0, 0), + [11228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3, 0, 0), + [11230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3, 0, 0), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [11246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pathname_element, 4, 0, 0), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [11254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_end, 3, 0, 35), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [11264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_block, 3, 0, 0), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [11270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_instantiation_definition, 3, 0, 0), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [11356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_body, 4, 0, 0), + [11358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration_end, 3, 0, 0), + [11360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 4, 0, 0), + [11362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_record, 3, 0, 0), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [11368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 4, 0, 0), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [11376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_physical_type_definition, 4, 0, 0), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [11400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_architecture, 2, 0, 41), + [11402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_component, 2, 0, 13), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [11412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_configuration, 2, 0, 14), + [11414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_open_information, 4, 0, 0), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [11428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_package_body, 4, 0, 46), + [11430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_case, 4, 0, 0), + [11432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_mode_indication, 1, 0, 0), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [11444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_physical_type_definition, 5, 0, 0), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [11450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_mode_view_indication, 1, 0, 0), + [11452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_view, 3, 0, 47), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [11464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_architecture, 3, 0, 49), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [11484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_body_end, 4, 0, 0), + [11486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_units, 3, 0, 0), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [11490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_record_mode_view_indication, 2, 0, 37), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [11540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_array_mode_view_indication, 4, 0, 47), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [11578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_configuration, 3, 0, 50), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [11610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guarded_signal_specification, 3, 0, 17), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [11618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tool_directive, 3, 0, 0), + [11620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -323405,14 +332574,17 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_identifier] = true, [ts_external_token__ABS] = true, [ts_external_token__AND] = true, + [ts_external_token_FORCE] = true, [ts_external_token_INERTIAL] = true, [ts_external_token__NAND] = true, [ts_external_token_NEW] = true, [ts_external_token__NOR] = true, [ts_external_token__NOT] = true, [ts_external_token_NULL] = true, - [ts_external_token_OPEN] = true, [ts_external_token__OR] = true, + [ts_external_token_REJECT] = true, + [ts_external_token_TRANSPORT] = true, + [ts_external_token_UNAFFECTED] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -323441,17 +332613,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_identifier] = true, [ts_external_token__ABS] = true, [ts_external_token__AND] = true, - [ts_external_token_FORCE] = true, [ts_external_token_INERTIAL] = true, [ts_external_token__NAND] = true, [ts_external_token_NEW] = true, [ts_external_token__NOR] = true, [ts_external_token__NOT] = true, [ts_external_token_NULL] = true, + [ts_external_token_OPEN] = true, [ts_external_token__OR] = true, - [ts_external_token_REJECT] = true, - [ts_external_token_TRANSPORT] = true, - [ts_external_token_UNAFFECTED] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -323705,14 +332874,15 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_identifier] = true, [ts_external_token__ABS] = true, [ts_external_token__AND] = true, + [ts_external_token_IN] = true, [ts_external_token__NAND] = true, [ts_external_token_NEW] = true, [ts_external_token__NOR] = true, [ts_external_token__NOT] = true, [ts_external_token_NULL] = true, [ts_external_token__OR] = true, + [ts_external_token_OUT] = true, [ts_external_token_UNAFFECTED] = true, - [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -323741,15 +332911,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_identifier] = true, [ts_external_token__ABS] = true, [ts_external_token__AND] = true, - [ts_external_token_IN] = true, [ts_external_token__NAND] = true, [ts_external_token_NEW] = true, [ts_external_token__NOR] = true, [ts_external_token__NOT] = true, [ts_external_token_NULL] = true, [ts_external_token__OR] = true, - [ts_external_token_OUT] = true, [ts_external_token_UNAFFECTED] = true, + [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -324104,12 +333273,13 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, + [ts_external_token_OPEN] = true, [ts_external_token__OR] = true, [ts_external_token_PARAMETER] = true, - [ts_external_token_RANGE] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -324128,13 +333298,12 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, - [ts_external_token_OPEN] = true, [ts_external_token__OR] = true, [ts_external_token_PARAMETER] = true, + [ts_external_token_RANGE] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -324177,52 +333346,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [35] = { - [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token__MOD] = true, - [ts_external_token__NAND] = true, - [ts_external_token__NOR] = true, - [ts_external_token__OR] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token__REM] = true, - [ts_external_token__ROL] = true, - [ts_external_token__ROR] = true, - [ts_external_token__SLA] = true, - [ts_external_token__SLL] = true, - [ts_external_token__SRA] = true, - [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, - [ts_external_token_UNITS] = true, - [ts_external_token__XNOR] = true, - [ts_external_token__XOR] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, - [36] = { - [ts_external_token__AND] = true, - [ts_external_token_BUS] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token__MOD] = true, - [ts_external_token__NAND] = true, - [ts_external_token__NOR] = true, - [ts_external_token__OR] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token__REM] = true, - [ts_external_token__ROL] = true, - [ts_external_token__ROR] = true, - [ts_external_token__SLA] = true, - [ts_external_token__SLL] = true, - [ts_external_token__SRA] = true, - [ts_external_token__SRL] = true, - [ts_external_token__XNOR] = true, - [ts_external_token__XOR] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, - [37] = { [ts_external_token_AFTER] = true, [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, @@ -324245,7 +333368,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [38] = { + [36] = { [ts_external_token__AND] = true, [ts_external_token_BUS] = true, [ts_external_token_GENERIC] = true, @@ -324268,7 +333391,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [39] = { + [37] = { [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, [ts_external_token_GENERIC] = true, @@ -324292,8 +333415,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [40] = { + [38] = { [ts_external_token__AND] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, @@ -324301,25 +333425,24 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__OR] = true, [ts_external_token_PARAMETER] = true, [ts_external_token__REM] = true, - [ts_external_token_REPORT] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, - [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, + [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [41] = { + [39] = { [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, + [ts_external_token_BUS] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -324332,14 +333455,13 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [42] = { + [40] = { [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, [ts_external_token_GENERATE] = true, @@ -324363,19 +333485,19 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [43] = { + [41] = { [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, - [ts_external_token_OPEN] = true, [ts_external_token__OR] = true, [ts_external_token_PARAMETER] = true, [ts_external_token__REM] = true, + [ts_external_token_REPORT] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, + [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, @@ -324386,7 +333508,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [44] = { + [42] = { [ts_external_token_ALIAS] = true, [ts_external_token_ATTRIBUTE] = true, [ts_external_token_BEGIN] = true, @@ -324413,7 +333535,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [45] = { + [43] = { [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, [ts_external_token_GENERIC] = true, @@ -324437,34 +333559,54 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [46] = { - [ts_external_token_ALIAS] = true, - [ts_external_token_ATTRIBUTE] = true, - [ts_external_token_COMPONENT] = true, - [ts_external_token_CONSTANT] = true, - [ts_external_token_DISCONNECT] = true, - [ts_external_token_END] = true, - [ts_external_token_FILE] = true, - [ts_external_token_FUNCTION] = true, + [44] = { + [ts_external_token__AND] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_GROUP] = true, - [ts_external_token_IMPURE] = true, - [ts_external_token_NEW] = true, - [ts_external_token_PACKAGE] = true, - [ts_external_token_PROCEDURE] = true, - [ts_external_token_PURE] = true, - [ts_external_token_SIGNAL] = true, - [ts_external_token_SHARED] = true, - [ts_external_token_SUBTYPE] = true, - [ts_external_token_TYPE] = true, - [ts_external_token_USE] = true, - [ts_external_token_VARIABLE] = true, - [ts_external_token_VIEW] = true, + [ts_external_token_IS] = true, + [ts_external_token__MOD] = true, + [ts_external_token__NAND] = true, + [ts_external_token__NOR] = true, + [ts_external_token__OR] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token__REM] = true, + [ts_external_token__ROL] = true, + [ts_external_token__ROR] = true, + [ts_external_token__SLA] = true, + [ts_external_token__SLL] = true, + [ts_external_token__SRA] = true, + [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, + [ts_external_token__XNOR] = true, + [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [47] = { + [45] = { + [ts_external_token__AND] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, + [ts_external_token__MOD] = true, + [ts_external_token__NAND] = true, + [ts_external_token__NOR] = true, + [ts_external_token_OPEN] = true, + [ts_external_token__OR] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token__REM] = true, + [ts_external_token__ROL] = true, + [ts_external_token__ROR] = true, + [ts_external_token__SLA] = true, + [ts_external_token__SLL] = true, + [ts_external_token__SRA] = true, + [ts_external_token__SRL] = true, + [ts_external_token__XNOR] = true, + [ts_external_token__XOR] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [46] = { [ts_external_token_ALIAS] = true, [ts_external_token_ATTRIBUTE] = true, [ts_external_token_BEGIN] = true, @@ -324490,9 +333632,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [48] = { + [47] = { [ts_external_token__AND] = true, - [ts_external_token_FOR] = true, + [ts_external_token_ELSE] = true, [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, @@ -324512,7 +333654,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [49] = { + [48] = { [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, @@ -324534,7 +333676,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [50] = { + [49] = { [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, @@ -324556,30 +333698,36 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [51] = { - [ts_external_token__AND] = true, - [ts_external_token_ELSE] = true, + [50] = { + [ts_external_token_ALIAS] = true, + [ts_external_token_ATTRIBUTE] = true, + [ts_external_token_COMPONENT] = true, + [ts_external_token_CONSTANT] = true, + [ts_external_token_DISCONNECT] = true, + [ts_external_token_END] = true, + [ts_external_token_FILE] = true, + [ts_external_token_FUNCTION] = true, [ts_external_token_GENERIC] = true, - [ts_external_token__MOD] = true, - [ts_external_token__NAND] = true, - [ts_external_token__NOR] = true, - [ts_external_token__OR] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token__REM] = true, - [ts_external_token__ROL] = true, - [ts_external_token__ROR] = true, - [ts_external_token__SLA] = true, - [ts_external_token__SLL] = true, - [ts_external_token__SRA] = true, - [ts_external_token__SRL] = true, - [ts_external_token__XNOR] = true, - [ts_external_token__XOR] = true, + [ts_external_token_GROUP] = true, + [ts_external_token_IMPURE] = true, + [ts_external_token_NEW] = true, + [ts_external_token_PACKAGE] = true, + [ts_external_token_PROCEDURE] = true, + [ts_external_token_PURE] = true, + [ts_external_token_SIGNAL] = true, + [ts_external_token_SHARED] = true, + [ts_external_token_SUBTYPE] = true, + [ts_external_token_TYPE] = true, + [ts_external_token_USE] = true, + [ts_external_token_VARIABLE] = true, + [ts_external_token_VIEW] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [52] = { + [51] = { [ts_external_token__AND] = true, + [ts_external_token_FOR] = true, [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, @@ -324589,7 +333737,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, - [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, @@ -324600,10 +333747,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [53] = { + [52] = { [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_INERTIAL] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -324612,6 +333758,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, + [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, @@ -324622,7 +333769,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [54] = { + [53] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, @@ -324648,6 +333795,32 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, + [54] = { + [ts_external_token_ALIAS] = true, + [ts_external_token_ATTRIBUTE] = true, + [ts_external_token_BEGIN] = true, + [ts_external_token_CONSTANT] = true, + [ts_external_token_DISCONNECT] = true, + [ts_external_token_END] = true, + [ts_external_token_FILE] = true, + [ts_external_token_FUNCTION] = true, + [ts_external_token_GROUP] = true, + [ts_external_token_IMPURE] = true, + [ts_external_token_PACKAGE] = true, + [ts_external_token_PORT] = true, + [ts_external_token_PROCEDURE] = true, + [ts_external_token_PURE] = true, + [ts_external_token_SIGNAL] = true, + [ts_external_token_SHARED] = true, + [ts_external_token_SUBTYPE] = true, + [ts_external_token_TYPE] = true, + [ts_external_token_USE] = true, + [ts_external_token_VARIABLE] = true, + [ts_external_token_VIEW] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, [55] = { [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, @@ -324695,6 +333868,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [57] = { [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -324703,7 +333877,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, - [ts_external_token_SELECT] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, @@ -324717,7 +333890,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [58] = { [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, + [ts_external_token_LOOP] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -324739,7 +333912,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [59] = { [ts_external_token__AND] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_LOOP] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -324748,6 +333920,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, + [ts_external_token_SELECT] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, @@ -324759,38 +333932,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [60] = { - [ts_external_token_ALIAS] = true, - [ts_external_token_ATTRIBUTE] = true, - [ts_external_token_BEGIN] = true, - [ts_external_token_CONSTANT] = true, - [ts_external_token_DISCONNECT] = true, - [ts_external_token_END] = true, - [ts_external_token_FILE] = true, - [ts_external_token_FUNCTION] = true, - [ts_external_token_GROUP] = true, - [ts_external_token_IMPURE] = true, - [ts_external_token_PACKAGE] = true, - [ts_external_token_PORT] = true, - [ts_external_token_PROCEDURE] = true, - [ts_external_token_PURE] = true, - [ts_external_token_SIGNAL] = true, - [ts_external_token_SHARED] = true, - [ts_external_token_SUBTYPE] = true, - [ts_external_token_TYPE] = true, - [ts_external_token_USE] = true, - [ts_external_token_VARIABLE] = true, - [ts_external_token_VIEW] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, - [61] = { [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_INERTIAL] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, + [ts_external_token_PARAMETER] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -324798,40 +333947,13 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [62] = { - [ts_external_token_ALIAS] = true, - [ts_external_token_ATTRIBUTE] = true, - [ts_external_token_BEGIN] = true, - [ts_external_token_CONSTANT] = true, - [ts_external_token_DISCONNECT] = true, - [ts_external_token_END] = true, - [ts_external_token_FILE] = true, - [ts_external_token_FUNCTION] = true, - [ts_external_token_GROUP] = true, - [ts_external_token_IMPURE] = true, - [ts_external_token_PACKAGE] = true, - [ts_external_token_PROCEDURE] = true, - [ts_external_token_PURE] = true, - [ts_external_token_SIGNAL] = true, - [ts_external_token_SHARED] = true, - [ts_external_token_SUBTYPE] = true, - [ts_external_token_TYPE] = true, - [ts_external_token_USE] = true, - [ts_external_token_VARIABLE] = true, - [ts_external_token_VIEW] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, - [63] = { - [ts_external_token_identifier] = true, + [61] = { [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, @@ -324846,20 +333968,16 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, [ts_external_token_TO] = true, - [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, - [64] = { + [62] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -324871,6 +333989,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, + [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -324881,10 +334001,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [65] = { + [63] = { [ts_external_token_ALIAS] = true, [ts_external_token_ATTRIBUTE] = true, - [ts_external_token_COMPONENT] = true, + [ts_external_token_BEGIN] = true, [ts_external_token_CONSTANT] = true, [ts_external_token_DISCONNECT] = true, [ts_external_token_END] = true, @@ -324906,7 +334026,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [66] = { + [64] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, @@ -324924,10 +334045,13 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [67] = { + [65] = { [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -324939,21 +334063,22 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, - [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [68] = { + [66] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, + [ts_external_token_BUS] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, + [ts_external_token_REGISTER] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -324961,7 +334086,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_WHEN] = true, + [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -324972,16 +334097,38 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [69] = { - [ts_external_token_identifier] = true, + [67] = { + [ts_external_token_ALIAS] = true, + [ts_external_token_ATTRIBUTE] = true, + [ts_external_token_COMPONENT] = true, + [ts_external_token_CONSTANT] = true, + [ts_external_token_DISCONNECT] = true, + [ts_external_token_END] = true, + [ts_external_token_FILE] = true, + [ts_external_token_FUNCTION] = true, + [ts_external_token_GROUP] = true, + [ts_external_token_IMPURE] = true, + [ts_external_token_PACKAGE] = true, + [ts_external_token_PROCEDURE] = true, + [ts_external_token_PURE] = true, + [ts_external_token_SIGNAL] = true, + [ts_external_token_SHARED] = true, + [ts_external_token_SUBTYPE] = true, + [ts_external_token_TYPE] = true, + [ts_external_token_USE] = true, + [ts_external_token_VARIABLE] = true, + [ts_external_token_VIEW] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [68] = { [ts_external_token__AND] = true, - [ts_external_token_BUS] = true, [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, - [ts_external_token_REGISTER] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -324990,21 +334137,15 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, [ts_external_token_TO] = true, + [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, - [70] = { - [ts_external_token_identifier] = true, + [69] = { [ts_external_token__AND] = true, - [ts_external_token_BUS] = true, - [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325016,18 +334157,15 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, + [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, - [71] = { + [70] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, @@ -325046,8 +334184,13 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [72] = { + [71] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, [ts_external_token_BUS] = true, [ts_external_token_DOWNTO] = true, @@ -325055,7 +334198,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, - [ts_external_token_REGISTER] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -325069,8 +334211,12 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [73] = { + [72] = { [ts_external_token_ALIAS] = true, [ts_external_token_ATTRIBUTE] = true, [ts_external_token_BEGIN] = true, @@ -325092,15 +334238,15 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [74] = { - [ts_external_token_identifier] = true, + [73] = { [ts_external_token__AND] = true, + [ts_external_token_BUS] = true, [ts_external_token_DOWNTO] = true, - [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, + [ts_external_token_REGISTER] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -325114,15 +334260,12 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, - [75] = { + [74] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_BUS] = true, [ts_external_token_DOWNTO] = true, + [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325140,8 +334283,12 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [76] = { + [75] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, @@ -325169,15 +334316,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [77] = { - [ts_external_token_identifier] = true, + [76] = { [ts_external_token__AND] = true, [ts_external_token_BUS] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, - [ts_external_token_REGISTER] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -325185,62 +334331,38 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, - [78] = { - [ts_external_token_identifier] = true, - [ts_external_token_ASSERT] = true, - [ts_external_token_ELSE] = true, - [ts_external_token_ELSIF] = true, - [ts_external_token_END] = true, - [ts_external_token_POSTPONED] = true, - [ts_external_token_PROCESS] = true, - [ts_external_token_WITH] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token_character_literal] = true, - [ts_external_token_operator_symbol] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_std_logic] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, - }, - [79] = { + [77] = { [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, - [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, - [ts_external_token_OPEN] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, + [ts_external_token_REPORT] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, + [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [80] = { - [ts_external_token_identifier] = true, + [78] = { [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, + [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325253,26 +334375,21 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, [ts_external_token_TO] = true, - [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, - [81] = { + [79] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, + [ts_external_token_BUS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, - [ts_external_token_OF] = true, [ts_external_token__OR] = true, + [ts_external_token_REGISTER] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -325280,7 +334397,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -325291,56 +334407,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [82] = { - [ts_external_token_identifier] = true, - [ts_external_token_ALIAS] = true, - [ts_external_token_ARCHITECTURE] = true, - [ts_external_token_ASSERT] = true, - [ts_external_token_ATTRIBUTE] = true, - [ts_external_token_COMPONENT] = true, - [ts_external_token_CONFIGURATION] = true, - [ts_external_token_CONSTANT] = true, - [ts_external_token_CONTEXT] = true, - [ts_external_token_DISCONNECT] = true, - [ts_external_token_END] = true, - [ts_external_token_ENTITY] = true, - [ts_external_token_FILE] = true, - [ts_external_token_FOR] = true, - [ts_external_token_FUNCTION] = true, - [ts_external_token_GROUP] = true, - [ts_external_token_IMPURE] = true, - [ts_external_token_LIBRARY] = true, - [ts_external_token_PACKAGE] = true, - [ts_external_token_POSTPONED] = true, - [ts_external_token_PROCEDURE] = true, - [ts_external_token_PROCESS] = true, - [ts_external_token_PURE] = true, - [ts_external_token_SIGNAL] = true, - [ts_external_token_SHARED] = true, - [ts_external_token_SUBTYPE] = true, - [ts_external_token_TYPE] = true, - [ts_external_token_USE] = true, - [ts_external_token_VARIABLE] = true, - [ts_external_token_VIEW] = true, - [ts_external_token_WITH] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token_character_literal] = true, - [ts_external_token_operator_symbol] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_std_logic] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, - [ts_external_token__end_of_file] = true, - }, - [83] = { + [80] = { [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, - [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, + [ts_external_token_OPEN] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, @@ -325356,10 +334430,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [84] = { + [81] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_BUS] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325371,6 +334445,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, + [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -325381,31 +334457,36 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [85] = { + [82] = { + [ts_external_token_identifier] = true, + [ts_external_token_AFTER] = true, [ts_external_token__AND] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, - [ts_external_token_REPORT] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, - [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [86] = { + [83] = { [ts_external_token_identifier] = true, - [ts_external_token_AFTER] = true, [ts_external_token__AND] = true, + [ts_external_token_BUS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325417,7 +334498,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -325428,12 +334508,33 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [87] = { + [84] = { + [ts_external_token_identifier] = true, + [ts_external_token_ASSERT] = true, + [ts_external_token_ELSE] = true, + [ts_external_token_ELSIF] = true, + [ts_external_token_END] = true, + [ts_external_token_POSTPONED] = true, + [ts_external_token_PROCESS] = true, + [ts_external_token_WITH] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token_character_literal] = true, + [ts_external_token_operator_symbol] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_std_logic] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, + }, + [85] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_GENERATE] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, + [ts_external_token_OF] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, @@ -325442,15 +334543,63 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [88] = { + [86] = { + [ts_external_token_identifier] = true, + [ts_external_token_ALIAS] = true, + [ts_external_token_ARCHITECTURE] = true, + [ts_external_token_ASSERT] = true, + [ts_external_token_ATTRIBUTE] = true, + [ts_external_token_COMPONENT] = true, + [ts_external_token_CONFIGURATION] = true, + [ts_external_token_CONSTANT] = true, + [ts_external_token_CONTEXT] = true, + [ts_external_token_DISCONNECT] = true, + [ts_external_token_END] = true, + [ts_external_token_ENTITY] = true, + [ts_external_token_FILE] = true, + [ts_external_token_FOR] = true, + [ts_external_token_FUNCTION] = true, + [ts_external_token_GROUP] = true, + [ts_external_token_IMPURE] = true, + [ts_external_token_LIBRARY] = true, + [ts_external_token_PACKAGE] = true, + [ts_external_token_POSTPONED] = true, + [ts_external_token_PROCEDURE] = true, + [ts_external_token_PROCESS] = true, + [ts_external_token_PURE] = true, + [ts_external_token_SIGNAL] = true, + [ts_external_token_SHARED] = true, + [ts_external_token_SUBTYPE] = true, + [ts_external_token_TYPE] = true, + [ts_external_token_USE] = true, + [ts_external_token_VARIABLE] = true, + [ts_external_token_VIEW] = true, + [ts_external_token_WITH] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token_character_literal] = true, + [ts_external_token_operator_symbol] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_std_logic] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, + [ts_external_token__end_of_file] = true, + }, + [87] = { + [ts_external_token_AFTER] = true, [ts_external_token__AND] = true, - [ts_external_token_BUS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325462,20 +334611,20 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [89] = { + [88] = { [ts_external_token__AND] = true, [ts_external_token_BUS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, - [ts_external_token_REGISTER] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -325489,11 +334638,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [90] = { - [ts_external_token_identifier] = true, + [89] = { [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, - [ts_external_token_IS] = true, + [ts_external_token_GENERATE] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325505,29 +334652,23 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, - [91] = { - [ts_external_token_identifier] = true, + [90] = { [ts_external_token__AND] = true, + [ts_external_token_BUS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, + [ts_external_token_REGISTER] = true, [ts_external_token__REM] = true, - [ts_external_token_REPORT] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, - [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, @@ -325537,17 +334678,40 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + }, + [91] = { + [ts_external_token_identifier] = true, + [ts_external_token_ASSERT] = true, + [ts_external_token_BLOCK] = true, + [ts_external_token_CASE] = true, + [ts_external_token_EXIT] = true, + [ts_external_token_FOR] = true, + [ts_external_token_IF] = true, + [ts_external_token_LOOP] = true, + [ts_external_token_NEXT] = true, + [ts_external_token_NULL] = true, + [ts_external_token_REPORT] = true, + [ts_external_token_RETURN] = true, + [ts_external_token_WAIT] = true, + [ts_external_token_WHILE] = true, + [ts_external_token_WITH] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token_character_literal] = true, + [ts_external_token_operator_symbol] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_constant_std_logic] = true, [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, [92] = { - [ts_external_token_AFTER] = true, [ts_external_token__AND] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, + [ts_external_token_OF] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, @@ -325556,7 +334720,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_WHEN] = true, + [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -325564,10 +334728,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [93] = { - [ts_external_token_identifier] = true, [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, - [ts_external_token_GENERATE] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325580,20 +334742,18 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, [ts_external_token_TO] = true, + [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [94] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_GENERIC] = true, + [ts_external_token_DOWNTO] = true, + [ts_external_token_LOOP] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325605,6 +334765,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -325616,8 +334777,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [95] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, + [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325629,41 +334791,17 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, - [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - }, - [96] = { - [ts_external_token_identifier] = true, - [ts_external_token_ASSERT] = true, - [ts_external_token_BLOCK] = true, - [ts_external_token_CASE] = true, - [ts_external_token_EXIT] = true, - [ts_external_token_FOR] = true, - [ts_external_token_IF] = true, - [ts_external_token_LOOP] = true, - [ts_external_token_NEXT] = true, - [ts_external_token_NULL] = true, - [ts_external_token_REPORT] = true, - [ts_external_token_RETURN] = true, - [ts_external_token_WAIT] = true, - [ts_external_token_WHILE] = true, - [ts_external_token_WITH] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token_character_literal] = true, - [ts_external_token_operator_symbol] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_std_logic] = true, + [ts_external_token_library_constant_unit] = true, [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [97] = { + [96] = { [ts_external_token_identifier] = true, [ts_external_token_ASSERT] = true, [ts_external_token_END] = true, @@ -325681,13 +334819,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [98] = { + [97] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, + [ts_external_token_GENERATE] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, - [ts_external_token_OF] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, @@ -325702,41 +334841,19 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - }, - [99] = { - [ts_external_token_identifier] = true, - [ts_external_token__AND] = true, - [ts_external_token_IS] = true, - [ts_external_token__MOD] = true, - [ts_external_token__NAND] = true, - [ts_external_token__NOR] = true, - [ts_external_token_OPEN] = true, - [ts_external_token__OR] = true, - [ts_external_token__REM] = true, - [ts_external_token__ROL] = true, - [ts_external_token__ROR] = true, - [ts_external_token__SLA] = true, - [ts_external_token__SLL] = true, - [ts_external_token__SRA] = true, - [ts_external_token__SRL] = true, - [ts_external_token__XNOR] = true, - [ts_external_token__XOR] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, [ts_external_token_library_constant] = true, [ts_external_token_library_constant_unit] = true, [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [100] = { + [98] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, - [ts_external_token_LOOP] = true, + [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, + [ts_external_token_OPEN] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, @@ -325745,7 +334862,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -325756,7 +334872,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [101] = { + [99] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, [ts_external_token_DOWNTO] = true, [ts_external_token_IS] = true, @@ -325777,30 +334894,58 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [102] = { + [100] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, - [ts_external_token_LOOP] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, + [ts_external_token_REPORT] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, + [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [103] = { + [101] = { + [ts_external_token__AND] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token__MOD] = true, + [ts_external_token__NAND] = true, + [ts_external_token__NOR] = true, + [ts_external_token__OR] = true, + [ts_external_token__REM] = true, + [ts_external_token__ROL] = true, + [ts_external_token__ROR] = true, + [ts_external_token__SLA] = true, + [ts_external_token__SLL] = true, + [ts_external_token__SRA] = true, + [ts_external_token__SRL] = true, + [ts_external_token__XNOR] = true, + [ts_external_token__XOR] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [102] = { [ts_external_token_identifier] = true, [ts_external_token_ASSERT] = true, [ts_external_token_END] = true, @@ -325817,6 +334962,28 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, + [103] = { + [ts_external_token__AND] = true, + [ts_external_token_DOWNTO] = true, + [ts_external_token_GENERATE] = true, + [ts_external_token__MOD] = true, + [ts_external_token__NAND] = true, + [ts_external_token__NOR] = true, + [ts_external_token__OR] = true, + [ts_external_token__REM] = true, + [ts_external_token__ROL] = true, + [ts_external_token__ROR] = true, + [ts_external_token__SLA] = true, + [ts_external_token__SLL] = true, + [ts_external_token__SRA] = true, + [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, + [ts_external_token__XNOR] = true, + [ts_external_token__XOR] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, [104] = { [ts_external_token__AND] = true, [ts_external_token_IS] = true, @@ -325841,10 +335008,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [105] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, + [ts_external_token_ELSE] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, - [ts_external_token_OF] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, @@ -325864,9 +335031,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [106] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, - [ts_external_token_GENERATE] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325874,25 +335040,29 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, + [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [107] = { - [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_ELSE] = true, + [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, + [ts_external_token_RANGE] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -325900,20 +335070,18 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, + [ts_external_token_WHEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [108] = { - [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_FOR] = true, + [ts_external_token_DOWNTO] = true, + [ts_external_token_LOOP] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325925,19 +335093,17 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [109] = { - [ts_external_token_identifier] = true, [ts_external_token__AND] = true, + [ts_external_token_DOWNTO] = true, + [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -325945,29 +335111,24 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, - [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_TO] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [110] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_DOWNTO] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, [ts_external_token__OR] = true, - [ts_external_token_RANGE] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, @@ -325975,20 +335136,24 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_TO] = true, - [ts_external_token_WHEN] = true, + [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [111] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_GENERIC] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, + [ts_external_token_OF] = true, [ts_external_token__OR] = true, [ts_external_token__REM] = true, [ts_external_token__ROL] = true, @@ -326002,10 +335167,15 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [112] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, + [ts_external_token_FOR] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326017,7 +335187,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -326029,7 +335198,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [113] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, + [ts_external_token_LOOP] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326037,7 +335208,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, - [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, @@ -326047,9 +335217,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [114] = { [ts_external_token__AND] = true, + [ts_external_token_ELSE] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326061,7 +335236,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -326069,8 +335243,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [115] = { + [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_FOR] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326082,11 +335256,16 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_THEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_unit] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [116] = { [ts_external_token__AND] = true, @@ -326111,7 +335290,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [117] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_INERTIAL] = true, + [ts_external_token_IS] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326135,7 +335314,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { }, [118] = { [ts_external_token__AND] = true, - [ts_external_token_ELSE] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326147,6 +335325,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_UNITS] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -326154,9 +335333,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [119] = { - [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_LOOP] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326164,6 +335341,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, + [ts_external_token_SEVERITY] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, @@ -326173,14 +335351,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [120] = { - [ts_external_token_identifier] = true, [ts_external_token__AND] = true, + [ts_external_token_FOR] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326192,21 +335366,37 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_THEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_unit] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [121] = { + [ts_external_token_ALIAS] = true, + [ts_external_token_ATTRIBUTE] = true, + [ts_external_token_CONSTANT] = true, + [ts_external_token_END] = true, + [ts_external_token_FILE] = true, + [ts_external_token_FUNCTION] = true, + [ts_external_token_GROUP] = true, + [ts_external_token_IMPURE] = true, + [ts_external_token_PACKAGE] = true, + [ts_external_token_PROCEDURE] = true, + [ts_external_token_PURE] = true, + [ts_external_token_SHARED] = true, + [ts_external_token_SUBTYPE] = true, + [ts_external_token_TYPE] = true, + [ts_external_token_USE] = true, + [ts_external_token_VARIABLE] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [122] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, - [ts_external_token_IS] = true, + [ts_external_token_INERTIAL] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326228,27 +335418,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [122] = { - [ts_external_token_ALIAS] = true, - [ts_external_token_ATTRIBUTE] = true, - [ts_external_token_CONSTANT] = true, - [ts_external_token_END] = true, - [ts_external_token_FILE] = true, - [ts_external_token_FUNCTION] = true, - [ts_external_token_GROUP] = true, - [ts_external_token_IMPURE] = true, - [ts_external_token_PACKAGE] = true, - [ts_external_token_PROCEDURE] = true, - [ts_external_token_PURE] = true, - [ts_external_token_SHARED] = true, - [ts_external_token_SUBTYPE] = true, - [ts_external_token_TYPE] = true, - [ts_external_token_USE] = true, - [ts_external_token_VARIABLE] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, [123] = { [ts_external_token_identifier] = true, [ts_external_token__AND] = true, @@ -326301,7 +335470,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { }, [125] = { [ts_external_token__AND] = true, - [ts_external_token_INERTIAL] = true, + [ts_external_token_LOOP] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326328,11 +335497,11 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, - [ts_external_token_SELECT] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, + [ts_external_token_THEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -326369,11 +335538,11 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__REM] = true, [ts_external_token__ROL] = true, [ts_external_token__ROR] = true, + [ts_external_token_SELECT] = true, [ts_external_token__SLA] = true, [ts_external_token__SLL] = true, [ts_external_token__SRA] = true, [ts_external_token__SRL] = true, - [ts_external_token_THEN] = true, [ts_external_token__XNOR] = true, [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, @@ -326402,7 +335571,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { }, [130] = { [ts_external_token__AND] = true, - [ts_external_token_LOOP] = true, + [ts_external_token_INERTIAL] = true, [ts_external_token__MOD] = true, [ts_external_token__NAND] = true, [ts_external_token__NOR] = true, @@ -326520,10 +335689,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { }, [136] = { [ts_external_token_identifier] = true, - [ts_external_token_ASSERT] = true, - [ts_external_token_END] = true, - [ts_external_token_POSTPONED] = true, - [ts_external_token_PROCESS] = true, + [ts_external_token_BUS] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, [ts_external_token_character_literal] = true, [ts_external_token_operator_symbol] = true, @@ -326553,10 +335722,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { }, [138] = { [ts_external_token_identifier] = true, - [ts_external_token_BUS] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token_RANGE] = true, + [ts_external_token_ASSERT] = true, + [ts_external_token_END] = true, + [ts_external_token_POSTPONED] = true, + [ts_external_token_PROCESS] = true, [ts_external_token__grave_accent] = true, [ts_external_token_character_literal] = true, [ts_external_token_operator_symbol] = true, @@ -326601,6 +335770,22 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [141] = { + [ts_external_token_identifier] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token_RANGE] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token_character_literal] = true, + [ts_external_token_operator_symbol] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_std_logic] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, + }, + [142] = { [ts_external_token_ALIAS] = true, [ts_external_token_ATTRIBUTE] = true, [ts_external_token_BEGIN] = true, @@ -326627,12 +335812,11 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [142] = { + [143] = { [ts_external_token_identifier] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token_RANGE] = true, + [ts_external_token_ASSERT] = true, + [ts_external_token_PROCESS] = true, + [ts_external_token_WITH] = true, [ts_external_token__grave_accent] = true, [ts_external_token_character_literal] = true, [ts_external_token_operator_symbol] = true, @@ -326643,7 +335827,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [143] = { + [144] = { [ts_external_token_ARCHITECTURE] = true, [ts_external_token_COMPONENT] = true, [ts_external_token_CONFIGURATION] = true, @@ -326668,21 +335852,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [144] = { - [ts_external_token_identifier] = true, - [ts_external_token_ASSERT] = true, - [ts_external_token_PROCESS] = true, - [ts_external_token_WITH] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token_character_literal] = true, - [ts_external_token_operator_symbol] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_std_logic] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, - }, [145] = { [ts_external_token_identifier] = true, [ts_external_token_GENERIC] = true, @@ -326744,20 +335913,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [149] = { - [ts_external_token_ALIAS] = true, - [ts_external_token_ATTRIBUTE] = true, - [ts_external_token_END] = true, - [ts_external_token_FUNCTION] = true, - [ts_external_token_IMPURE] = true, - [ts_external_token_PROCEDURE] = true, - [ts_external_token_PRIVATE] = true, - [ts_external_token_PURE] = true, - [ts_external_token_USE] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, - [150] = { [ts_external_token_identifier] = true, [ts_external_token_ELSE] = true, [ts_external_token_ELSIF] = true, @@ -326773,7 +335928,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [151] = { + [150] = { [ts_external_token_identifier] = true, [ts_external_token__grave_accent] = true, [ts_external_token_decimal_integer] = true, @@ -326789,10 +335944,30 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, + [151] = { + [ts_external_token_ALIAS] = true, + [ts_external_token_ATTRIBUTE] = true, + [ts_external_token_END] = true, + [ts_external_token_FUNCTION] = true, + [ts_external_token_IMPURE] = true, + [ts_external_token_PROCEDURE] = true, + [ts_external_token_PRIVATE] = true, + [ts_external_token_PURE] = true, + [ts_external_token_USE] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, [152] = { + [ts_external_token_GENERIC] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token_RANGE] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [153] = { [ts_external_token_identifier] = true, - [ts_external_token_ALL] = true, - [ts_external_token_OTHERS] = true, [ts_external_token__grave_accent] = true, [ts_external_token_character_literal] = true, [ts_external_token_operator_symbol] = true, @@ -326803,8 +335978,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [153] = { + [154] = { [ts_external_token_identifier] = true, + [ts_external_token_ALL] = true, + [ts_external_token_OTHERS] = true, [ts_external_token__grave_accent] = true, [ts_external_token_character_literal] = true, [ts_external_token_operator_symbol] = true, @@ -326815,7 +335992,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [154] = { + [155] = { + [ts_external_token_BUS] = true, [ts_external_token_GENERIC] = true, [ts_external_token_PARAMETER] = true, [ts_external_token_RANGE] = true, @@ -326823,7 +336001,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [155] = { + [156] = { [ts_external_token_ACCESS] = true, [ts_external_token_ARRAY] = true, [ts_external_token_FILE] = true, @@ -326835,15 +336013,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [156] = { - [ts_external_token_BUS] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token_RANGE] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, [157] = { [ts_external_token_BUS] = true, [ts_external_token_GENERIC] = true, @@ -326881,14 +336050,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [160] = { - [ts_external_token_BUS] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, - [161] = { [ts_external_token_identifier] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, @@ -326907,7 +336068,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [162] = { + [161] = { [ts_external_token_ACCESS] = true, [ts_external_token_ARRAY] = true, [ts_external_token_FILE] = true, @@ -326919,7 +336080,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [163] = { + [162] = { [ts_external_token_identifier] = true, [ts_external_token_ASSERT] = true, [ts_external_token_PROCESS] = true, @@ -326933,21 +336094,29 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, + [163] = { + [ts_external_token_FOR] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token_UNTIL] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, [164] = { + [ts_external_token_BUS] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, - [ts_external_token_OPEN] = true, [ts_external_token_PARAMETER] = true, - [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [165] = { - [ts_external_token_FOR] = true, [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, + [ts_external_token_OPEN] = true, [ts_external_token_PARAMETER] = true, - [ts_external_token_UNTIL] = true, + [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -326979,10 +336148,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [168] = { - [ts_external_token_END] = true, - [ts_external_token_FOR] = true, [ts_external_token_GENERIC] = true, [ts_external_token_PARAMETER] = true, + [ts_external_token_PORT] = true, [ts_external_token_USE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, @@ -326991,8 +336159,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [169] = { [ts_external_token_GENERIC] = true, [ts_external_token_PARAMETER] = true, - [ts_external_token_PORT] = true, - [ts_external_token_USE] = true, + [ts_external_token_RETURN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327000,7 +336167,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [170] = { [ts_external_token_GENERIC] = true, [ts_external_token_PARAMETER] = true, - [ts_external_token_RETURN] = true, + [ts_external_token_PORT] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327014,6 +336181,16 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [172] = { + [ts_external_token_END] = true, + [ts_external_token_FOR] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token_USE] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [173] = { [ts_external_token_identifier] = true, [ts_external_token__grave_accent] = true, [ts_external_token_box] = true, @@ -327026,18 +336203,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [173] = { - [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, [174] = { [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, [ts_external_token_PARAMETER] = true, - [ts_external_token_PORT] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327069,8 +336238,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, [ts_external_token_library_constant] = true, [ts_external_token_library_constant_std_logic] = true, - [ts_external_token_library_constant_unit] = true, [ts_external_token_library_function] = true, + [ts_external_token_library_namespace] = true, [ts_external_token_library_type] = true, }, [178] = { @@ -327082,11 +336251,19 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, [ts_external_token_library_constant] = true, [ts_external_token_library_constant_std_logic] = true, + [ts_external_token_library_constant_unit] = true, [ts_external_token_library_function] = true, - [ts_external_token_library_namespace] = true, [ts_external_token_library_type] = true, }, [179] = { + [ts_external_token_AFTER] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [180] = { [ts_external_token_identifier] = true, [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, @@ -327099,19 +336276,10 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [180] = { - [ts_external_token_AFTER] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token_PARAMETER] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, [181] = { [ts_external_token_identifier] = true, [ts_external_token_BUS] = true, [ts_external_token_RANGE] = true, - [ts_external_token_REGISTER] = true, [ts_external_token__grave_accent] = true, [ts_external_token_character_literal] = true, [ts_external_token_operator_symbol] = true, @@ -327126,6 +336294,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_identifier] = true, [ts_external_token_BUS] = true, [ts_external_token_RANGE] = true, + [ts_external_token_REGISTER] = true, [ts_external_token__grave_accent] = true, [ts_external_token_character_literal] = true, [ts_external_token_operator_symbol] = true, @@ -327150,16 +336319,6 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [184] = { - [ts_external_token_END] = true, - [ts_external_token_FOR] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token_PORT] = true, - [ts_external_token_USE] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, - [185] = { [ts_external_token_identifier] = true, [ts_external_token_IS] = true, [ts_external_token_OPEN] = true, @@ -327174,12 +336333,17 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [186] = { + [185] = { + [ts_external_token_END] = true, + [ts_external_token_FOR] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_PORT] = true, + [ts_external_token_USE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [187] = { + [186] = { [ts_external_token_identifier] = true, [ts_external_token_GENERIC] = true, [ts_external_token_RANGE] = true, @@ -327193,7 +336357,21 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, + [187] = { + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, [188] = { + [ts_external_token_ATTRIBUTE] = true, + [ts_external_token_FOR] = true, + [ts_external_token_GROUP] = true, + [ts_external_token_USE] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [189] = { [ts_external_token_identifier] = true, [ts_external_token__NOT] = true, [ts_external_token_directive_constant_builtin] = true, @@ -327204,25 +336382,19 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [189] = { - [ts_external_token_BUFFER] = true, - [ts_external_token_IN] = true, - [ts_external_token_INOUT] = true, - [ts_external_token_LINKAGE] = true, - [ts_external_token_OUT] = true, - [ts_external_token_VIEW] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, [190] = { - [ts_external_token_ATTRIBUTE] = true, - [ts_external_token_FOR] = true, - [ts_external_token_GROUP] = true, - [ts_external_token_USE] = true, + [ts_external_token_identifier] = true, + [ts_external_token_IS] = true, + [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, + [ts_external_token_character_literal] = true, + [ts_external_token_operator_symbol] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_constant_std_logic] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [191] = { [ts_external_token_ALIAS] = true, @@ -327240,36 +336412,35 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [192] = { - [ts_external_token_identifier] = true, - [ts_external_token_IS] = true, - [ts_external_token_RANGE] = true, + [ts_external_token_BUFFER] = true, + [ts_external_token_IN] = true, + [ts_external_token_INOUT] = true, + [ts_external_token_LINKAGE] = true, + [ts_external_token_OUT] = true, + [ts_external_token_VIEW] = true, [ts_external_token__grave_accent] = true, - [ts_external_token_character_literal] = true, - [ts_external_token_operator_symbol] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_constant_std_logic] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [193] = { - [ts_external_token_identifier] = true, [ts_external_token_END] = true, + [ts_external_token_FOR] = true, + [ts_external_token_USE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [194] = { - [ts_external_token_END] = true, - [ts_external_token_FOR] = true, - [ts_external_token_USE] = true, + [ts_external_token_identifier] = true, + [ts_external_token_FUNCTION] = true, + [ts_external_token_PROCEDURE] = true, [ts_external_token__grave_accent] = true, + [ts_external_token_operator_symbol] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [195] = { [ts_external_token_identifier] = true, @@ -327283,10 +336454,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { }, [196] = { [ts_external_token_identifier] = true, - [ts_external_token_FUNCTION] = true, - [ts_external_token_PROCEDURE] = true, + [ts_external_token_END] = true, [ts_external_token__grave_accent] = true, - [ts_external_token_operator_symbol] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, [ts_external_token_library_constant] = true, @@ -327294,32 +336463,29 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [197] = { - [ts_external_token_identifier] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, + [ts_external_token_OF] = true, + [ts_external_token_PARAMETER] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_namespace] = true, - [ts_external_token_library_type] = true, }, [198] = { - [ts_external_token__AND] = true, - [ts_external_token__NAND] = true, - [ts_external_token__NOR] = true, - [ts_external_token__OR] = true, - [ts_external_token_THEN] = true, - [ts_external_token__XNOR] = true, - [ts_external_token__XOR] = true, + [ts_external_token_identifier] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_namespace] = true, + [ts_external_token_library_type] = true, }, [199] = { - [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, - [ts_external_token_OF] = true, - [ts_external_token_PARAMETER] = true, + [ts_external_token_CONTEXT] = true, + [ts_external_token_END] = true, + [ts_external_token_LIBRARY] = true, + [ts_external_token_USE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327336,13 +336502,15 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [201] = { - [ts_external_token_CONTEXT] = true, - [ts_external_token_END] = true, - [ts_external_token_LIBRARY] = true, - [ts_external_token_USE] = true, + [ts_external_token_identifier] = true, + [ts_external_token_ALL] = true, + [ts_external_token_OTHERS] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [202] = { [ts_external_token_identifier] = true, @@ -327367,15 +336535,16 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [204] = { - [ts_external_token_identifier] = true, - [ts_external_token_ALL] = true, - [ts_external_token_OTHERS] = true, + [ts_external_token__AND] = true, + [ts_external_token__NAND] = true, + [ts_external_token__NOR] = true, + [ts_external_token__OR] = true, + [ts_external_token_THEN] = true, + [ts_external_token__XNOR] = true, + [ts_external_token__XOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [205] = { [ts_external_token_identifier] = true, @@ -327388,6 +336557,15 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [206] = { + [ts_external_token_END] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_IS] = true, + [ts_external_token_PORT] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, + [207] = { [ts_external_token_identifier] = true, [ts_external_token__grave_accent] = true, [ts_external_token_operator_symbol] = true, @@ -327397,18 +336575,15 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [207] = { - [ts_external_token_END] = true, - [ts_external_token_GENERIC] = true, - [ts_external_token_IS] = true, - [ts_external_token_PORT] = true, + [208] = { + [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [208] = { + [209] = { [ts_external_token_identifier] = true, - [ts_external_token_PACKAGE] = true, + [ts_external_token_CONTEXT] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327416,15 +336591,17 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, - [209] = { - [ts_external_token_ELSE] = true, - [ts_external_token_ELSIF] = true, - [ts_external_token_END] = true, + [210] = { + [ts_external_token_identifier] = true, + [ts_external_token_ENTITY] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, - [210] = { + [211] = { [ts_external_token_GENERIC] = true, [ts_external_token_IS] = true, [ts_external_token_PARAMETER] = true, @@ -327433,17 +336610,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, - [211] = { - [ts_external_token_FOR] = true, - [ts_external_token_ON] = true, - [ts_external_token_UNTIL] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, [212] = { [ts_external_token_identifier] = true, - [ts_external_token_ARCHITECTURE] = true, + [ts_external_token_COMPONENT] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327452,8 +336621,9 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [213] = { - [ts_external_token_END] = true, [ts_external_token_FOR] = true, + [ts_external_token_ON] = true, + [ts_external_token_UNTIL] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327468,7 +336638,7 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { }, [215] = { [ts_external_token_identifier] = true, - [ts_external_token_ENTITY] = true, + [ts_external_token_CONFIGURATION] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327477,14 +336647,18 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [216] = { - [ts_external_token_RANGE] = true, + [ts_external_token_identifier] = true, [ts_external_token__grave_accent] = true, + [ts_external_token_character_literal] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [217] = { [ts_external_token_identifier] = true, - [ts_external_token_CONTEXT] = true, + [ts_external_token_ARCHITECTURE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327493,18 +336667,16 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [218] = { - [ts_external_token_identifier] = true, + [ts_external_token_ELSE] = true, + [ts_external_token_ELSIF] = true, + [ts_external_token_END] = true, [ts_external_token__grave_accent] = true, - [ts_external_token_character_literal] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [219] = { [ts_external_token_identifier] = true, - [ts_external_token_COMPONENT] = true, + [ts_external_token_PACKAGE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327513,74 +336685,64 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_type] = true, }, [220] = { - [ts_external_token_identifier] = true, - [ts_external_token_CONFIGURATION] = true, + [ts_external_token_END] = true, + [ts_external_token_FOR] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [221] = { - [ts_external_token_BUS] = true, - [ts_external_token_RANGE] = true, - [ts_external_token_REGISTER] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_PORT] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [222] = { - [ts_external_token_IS] = true, - [ts_external_token_PARAMETER] = true, + [ts_external_token_identifier] = true, + [ts_external_token_BODY] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_library_constant] = true, + [ts_external_token_library_function] = true, + [ts_external_token_library_type] = true, }, [223] = { - [ts_external_token_GENERIC] = true, - [ts_external_token_PORT] = true, + [ts_external_token_IS] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [224] = { - [ts_external_token_BUS] = true, - [ts_external_token_REGISTER] = true, + [ts_external_token_WHEN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [225] = { - [ts_external_token_WHEN] = true, + [ts_external_token_BUS] = true, + [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [226] = { - [ts_external_token_identifier] = true, - [ts_external_token_BODY] = true, + [ts_external_token_BUS] = true, + [ts_external_token_RANGE] = true, + [ts_external_token_REGISTER] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_library_constant] = true, - [ts_external_token_library_function] = true, - [ts_external_token_library_type] = true, }, [227] = { [ts_external_token_BUS] = true, - [ts_external_token_RANGE] = true, + [ts_external_token_REGISTER] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [228] = { - [ts_external_token_IS] = true, - [ts_external_token__grave_accent] = true, - [ts_external_token__line_comment_start] = true, - [ts_external_token__block_comment_start] = true, - }, - [229] = { [ts_external_token_identifier] = true, [ts_external_token_ALL] = true, [ts_external_token__grave_accent] = true, @@ -327590,12 +336752,18 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_library_function] = true, [ts_external_token_library_type] = true, }, + [229] = { + [ts_external_token_IS] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token__grave_accent] = true, + [ts_external_token__line_comment_start] = true, + [ts_external_token__block_comment_start] = true, + }, [230] = { - [ts_external_token_identifier] = true, - [ts_external_token_ALL] = true, + [ts_external_token_IS] = true, + [ts_external_token_OPEN] = true, + [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, - [ts_external_token_character_literal] = true, - [ts_external_token_operator_symbol] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, @@ -327606,43 +336774,45 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [232] = { - [ts_external_token_FOR] = true, - [ts_external_token_UNTIL] = true, + [ts_external_token_identifier] = true, + [ts_external_token_ALL] = true, [ts_external_token__grave_accent] = true, + [ts_external_token_character_literal] = true, + [ts_external_token_operator_symbol] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [233] = { - [ts_external_token_GENERIC] = true, - [ts_external_token_RANGE] = true, + [ts_external_token_END] = true, + [ts_external_token_WHEN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [234] = { - [ts_external_token_BUS] = true, + [ts_external_token_FOR] = true, + [ts_external_token_UNTIL] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [235] = { - [ts_external_token_END] = true, - [ts_external_token_USE] = true, + [ts_external_token_BUS] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [236] = { [ts_external_token_END] = true, - [ts_external_token_WHEN] = true, + [ts_external_token_USE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [237] = { - [ts_external_token_IS] = true, - [ts_external_token_OPEN] = true, - [ts_external_token_RANGE] = true, + [ts_external_token_END] = true, + [ts_external_token_GENERIC] = true, + [ts_external_token_PORT] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327657,9 +336827,8 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [239] = { - [ts_external_token_END] = true, [ts_external_token_GENERIC] = true, - [ts_external_token_PORT] = true, + [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327671,14 +336840,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [241] = { - [ts_external_token_ELSE] = true, + [ts_external_token_IS] = true, + [ts_external_token_OPEN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [242] = { - [ts_external_token_FOR] = true, - [ts_external_token_USE] = true, + [ts_external_token_GENERATE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327691,42 +336860,42 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [244] = { - [ts_external_token_GENERATE] = true, + [ts_external_token_BEGIN] = true, + [ts_external_token_END] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [245] = { - [ts_external_token_PARAMETER] = true, - [ts_external_token_RETURN] = true, + [ts_external_token_CONFIGURATION] = true, + [ts_external_token_ENTITY] = true, + [ts_external_token_OPEN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [246] = { - [ts_external_token_IS] = true, - [ts_external_token_OPEN] = true, + [ts_external_token_PARAMETER] = true, + [ts_external_token_RETURN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [247] = { - [ts_external_token_PARAMETER] = true, + [ts_external_token_ELSE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [248] = { - [ts_external_token_CONFIGURATION] = true, - [ts_external_token_ENTITY] = true, - [ts_external_token_OPEN] = true, + [ts_external_token_FOR] = true, + [ts_external_token_USE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [249] = { - [ts_external_token_BEGIN] = true, - [ts_external_token_END] = true, + [ts_external_token_PARAMETER] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327740,13 +336909,14 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [251] = { - [ts_external_token_PORT] = true, + [ts_external_token_SHARED] = true, + [ts_external_token_VARIABLE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [252] = { - [ts_external_token_SEVERITY] = true, + [ts_external_token_PORT] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327758,66 +336928,65 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_start] = true, }, [254] = { - [ts_external_token_END] = true, - [ts_external_token_PORT] = true, + [ts_external_token_SEVERITY] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [255] = { - [ts_external_token_directive_body] = true, - [ts_external_token__directive_newline] = true, + [ts_external_token_OF] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [256] = { + [ts_external_token_END] = true, + [ts_external_token_PORT] = true, [ts_external_token__grave_accent] = true, - [ts_external_token_box] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [257] = { - [ts_external_token_OF] = true, + [ts_external_token_directive_body] = true, + [ts_external_token__directive_newline] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [258] = { - [ts_external_token_SHARED] = true, - [ts_external_token_VARIABLE] = true, + [ts_external_token_IS] = true, + [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [259] = { - [ts_external_token_IS] = true, - [ts_external_token_RANGE] = true, [ts_external_token__grave_accent] = true, + [ts_external_token_box] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [260] = { + [ts_external_token_END] = true, [ts_external_token__grave_accent] = true, - [ts_external_token_based_integer] = true, - [ts_external_token_based_float] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [261] = { - [ts_external_token_UNITS] = true, [ts_external_token__grave_accent] = true, + [ts_external_token_based_integer] = true, + [ts_external_token_based_float] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [262] = { - [ts_external_token_BEGIN] = true, + [ts_external_token_UNITS] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [263] = { - [ts_external_token_END] = true, + [ts_external_token_BEGIN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -327850,132 +337019,132 @@ static const bool ts_external_scanner_states[290][EXTERNAL_TOKEN_COUNT] = { }, [268] = { [ts_external_token__grave_accent] = true, - [ts_external_token_bit_string_base] = true, + [ts_external_token_bit_string_value] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [269] = { - [ts_external_token_MAP] = true, [ts_external_token__grave_accent] = true, + [ts_external_token_bit_string_base] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [270] = { + [ts_external_token_MAP] = true, [ts_external_token__grave_accent] = true, - [ts_external_token_bit_string_value] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [271] = { - [ts_external_token_IN] = true, + [ts_external_token_IF] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [272] = { - [ts_external_token_CASE] = true, + [ts_external_token_IN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [273] = { - [ts_external_token_PROCESS] = true, + [ts_external_token__directive_newline] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [274] = { - [ts_external_token_IF] = true, + [ts_external_token_PROCESS] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [275] = { - [ts_external_token_FUNCTION] = true, + [ts_external_token_NEW] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [276] = { - [ts_external_token_VUNIT] = true, [ts_external_token__grave_accent] = true, + [ts_external_token_string_literal] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [277] = { - [ts_external_token_AFTER] = true, + [ts_external_token_THEN] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [278] = { - [ts_external_token__directive_newline] = true, + [ts_external_token_BLOCK] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [279] = { + [ts_external_token_CASE] = true, [ts_external_token__grave_accent] = true, - [ts_external_token_string_literal] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [280] = { - [ts_external_token_PROTECTED] = true, + [ts_external_token_AFTER] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [281] = { - [ts_external_token_RECORD] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token__block_comment_end] = true, }, [282] = { - [ts_external_token_NEW] = true, + [ts_external_token_FUNCTION] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [283] = { - [ts_external_token_BLOCK] = true, + [ts_external_token_VARIABLE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [284] = { - [ts_external_token_THEN] = true, + [ts_external_token_PROTECTED] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [285] = { + [ts_external_token_RECORD] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token__block_comment_end] = true, }, [286] = { - [ts_external_token_VARIABLE] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, + [ts_external_token_comment_content] = true, }, [287] = { + [ts_external_token_BODY] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, - [ts_external_token_comment_content] = true, }, [288] = { - [ts_external_token_BODY] = true, + [ts_external_token_VIEW] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, }, [289] = { - [ts_external_token_VIEW] = true, + [ts_external_token_VUNIT] = true, [ts_external_token__grave_accent] = true, [ts_external_token__line_comment_start] = true, [ts_external_token__block_comment_start] = true, @@ -328016,6 +337185,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_vhdl(void) { .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, diff --git a/test/corpus/architecture_basic.vhd b/test/corpus/architecture_basic.vhd index 95788af..797c3fd 100644 --- a/test/corpus/architecture_basic.vhd +++ b/test/corpus/architecture_basic.vhd @@ -20,14 +20,14 @@ end EXAMPLE; (comment_content)) (design_unit (architecture_definition - (identifier) - (name + architecture: (identifier) + entity: (name (identifier)) (architecture_head (subtype_declaration - (identifier) + type: (identifier) (subtype_indication - (name + type: (name (library_type)) (range_constraint (simple_range @@ -47,5 +47,5 @@ end EXAMPLE; (line_comment (comment_content)) (end_architecture - (identifier))))) + architecture: (identifier))))) diff --git a/test/corpus/entity.vhd b/test/corpus/entity.vhd index c6e4b89..e9445bf 100644 --- a/test/corpus/entity.vhd +++ b/test/corpus/entity.vhd @@ -38,7 +38,7 @@ entity MyModule is port( (design_file (design_unit (entity_declaration - (identifier) + entity: (identifier) (entity_head (port_clause (interface_list @@ -49,7 +49,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (interface_signal_declaration (identifier_list @@ -57,7 +57,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (interface_signal_declaration (identifier_list @@ -65,7 +65,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (interface_signal_declaration (identifier_list @@ -73,7 +73,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -83,7 +83,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -93,7 +93,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -103,7 +103,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -113,7 +113,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -123,7 +123,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -133,7 +133,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -143,7 +143,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -153,7 +153,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (line_comment (comment_content)) @@ -163,7 +163,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))) (initialiser (variable_assignment) @@ -178,7 +178,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))) (initialiser (variable_assignment) @@ -193,7 +193,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))) (initialiser (variable_assignment) @@ -236,7 +236,7 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type)) (range_constraint (simple_range @@ -250,21 +250,20 @@ entity MyModule is port( (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type) - (name_selector - (parenthesis_group - (association_or_range_list - (simple_range - (simple_expression - (decimal_integer)) - (simple_expression - (decimal_integer))) - (simple_range - (simple_expression - (decimal_integer)) - (simple_expression - (decimal_integer)))))))))) + (parenthesis_group + (association_or_range_list + (simple_range + (simple_expression + (decimal_integer)) + (simple_expression + (decimal_integer))) + (simple_range + (simple_expression + (decimal_integer)) + (simple_expression + (decimal_integer))))))))) (interface_signal_declaration (identifier_list (identifier)) @@ -274,8 +273,8 @@ entity MyModule is port( (resolution_indication (name (library_function))) - (name + type: (name (library_type)))))))) (end_entity - (identifier))))) + entity: (identifier))))) diff --git a/test/corpus/library_constant_break.vhd b/test/corpus/library_constant_break.vhd index 955fddd..c8df577 100644 --- a/test/corpus/library_constant_break.vhd +++ b/test/corpus/library_constant_break.vhd @@ -13,8 +13,8 @@ end Behaviour; (design_file (design_unit (architecture_definition - (identifier) - (name + architecture: (identifier) + entity: (name (identifier)) (architecture_head) (concurrent_block @@ -27,9 +27,8 @@ end Behaviour; (simple_expression (name (library_constant) - (name_selector - (selection - (identifier)))))))) + (selection + (identifier))))))) (concurrent_simple_signal_assignment (name (identifier)) @@ -39,9 +38,8 @@ end Behaviour; (simple_expression (name (library_constant) - (name_selector - (selection - (identifier))))))))) + (selection + (identifier)))))))) (end_architecture - (identifier))))) + architecture: (identifier))))) diff --git a/test/corpus/specification_examples/architecture.vhd b/test/corpus/specification_examples/architecture.vhd index 01a026c..b02de8f 100644 --- a/test/corpus/specification_examples/architecture.vhd +++ b/test/corpus/specification_examples/architecture.vhd @@ -97,30 +97,30 @@ end architecture DataFlow; (design_unit (library_clause (logical_name_list - (library_namespace))) + library: (library_namespace))) (use_clause (selected_name - (library_namespace) + library: (library_namespace) (identifier) (ALL))) (library_clause (logical_name_list - (library_namespace))) + library: (library_namespace))) (use_clause (selected_name - (library_namespace) + library: (library_namespace) (identifier) (ALL))) (library_clause (logical_name_list - (library_namespace))) + library: (library_namespace))) (use_clause (selected_name - (library_namespace) + library: (library_namespace) (identifier) (ALL))) (entity_declaration - (identifier) + entity: (identifier) (entity_head (port_clause (interface_list @@ -130,7 +130,7 @@ end architecture DataFlow; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (interface_declaration (identifier_list @@ -138,16 +138,16 @@ end architecture DataFlow; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type)))))))) (end_entity - (identifier)))) + entity: (identifier)))) (line_comment (comment_content)) (design_unit (architecture_definition - (identifier) - (name + architecture: (identifier) + entity: (name (identifier)) (architecture_head (signal_declaration @@ -155,11 +155,11 @@ end architecture DataFlow; (identifier) (identifier)) (subtype_indication - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -167,13 +167,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -181,13 +181,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -195,13 +195,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -209,13 +209,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -223,13 +223,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -237,13 +237,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -251,13 +251,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -265,13 +265,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -279,13 +279,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -293,13 +293,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -307,13 +307,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -321,13 +321,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -335,13 +335,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -349,13 +349,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -363,13 +363,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -377,13 +377,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -391,13 +391,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -405,13 +405,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -419,13 +419,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -433,13 +433,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -447,13 +447,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -461,13 +461,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -475,13 +475,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -489,13 +489,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -503,13 +503,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -517,13 +517,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -531,13 +531,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -545,13 +545,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -559,13 +559,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -573,13 +573,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -587,13 +587,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -601,13 +601,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -615,13 +615,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -629,13 +629,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -643,13 +643,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -657,13 +657,13 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type)))) (subprogram_declaration (function_specification - (identifier) + function: (identifier) (parameter_list_specification (interface_list (interface_declaration @@ -671,17 +671,17 @@ end architecture DataFlow; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type))))) (concurrent_block (component_instantiation_statement (label_declaration (label)) (instantiated_unit - (library_namespace) - (name + library: (library_namespace) + entity: (name (identifier))) (port_map_aspect (association_list @@ -779,7 +779,7 @@ end architecture DataFlow; (identifier_list (identifier)) (subtype_indication - (name + type: (name (library_type))) (initialiser (variable_assignment) @@ -790,7 +790,7 @@ end architecture DataFlow; (identifier_list (identifier)) (subtype_indication - (name + type: (name (library_type))) (initialiser (variable_assignment) @@ -808,14 +808,13 @@ end architecture DataFlow; (simple_expression (name (library_function) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression - (simple_expression - (name - (identifier))))))))))))))) + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression + (name + (identifier)))))))))))))) (if_statement_body (simple_waveform_assignment (name @@ -856,20 +855,17 @@ end architecture DataFlow; (simple_expression (name (identifier) - (name_selector - (selection - (identifier))) - (name_selector - (selection - (identifier))) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression - (simple_expression - (name - (identifier)))))))))))))))) + (selection + (identifier)) + (selection + (identifier)) + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression + (name + (identifier))))))))))))))) (case_body (case_statement_alternative (when_element @@ -878,18 +874,17 @@ end architecture DataFlow; (simple_waveform_assignment (name (identifier) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression (simple_expression - (simple_expression - (name - (identifier))) - (adding_operator) - (simple_expression - (decimal_integer))))))))) + (name + (identifier))) + (adding_operator) + (simple_expression + (decimal_integer)))))))) (signal_assignment) (waveform (waveform_element @@ -903,18 +898,17 @@ end architecture DataFlow; (simple_waveform_assignment (name (identifier) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression (simple_expression - (simple_expression - (name - (identifier))) - (adding_operator) - (simple_expression - (decimal_integer))))))))) + (name + (identifier))) + (adding_operator) + (simple_expression + (decimal_integer)))))))) (signal_assignment) (waveform (waveform_element @@ -927,32 +921,30 @@ end architecture DataFlow; (simple_waveform_assignment (name (identifier) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression (simple_expression - (simple_expression - (name - (identifier))) - (adding_operator) - (simple_expression - (decimal_integer))))))))) + (name + (identifier))) + (adding_operator) + (simple_expression + (decimal_integer)))))))) (signal_assignment) (waveform (waveform_element (simple_expression (name (identifier) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression - (simple_expression - (name - (identifier))))))))))))))) + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression + (name + (identifier)))))))))))))) (end_case))) (end_loop))) (end_process)) @@ -973,5 +965,5 @@ end architecture DataFlow; (name (identifier))))))))))))) (end_architecture - (identifier))))) + architecture: (identifier))))) diff --git a/test/corpus/specification_examples/configuration.vhd b/test/corpus/specification_examples/configuration.vhd new file mode 100644 index 0000000..edb9943 --- /dev/null +++ b/test/corpus/specification_examples/configuration.vhd @@ -0,0 +1,81 @@ +================================================================================ +Configuration +================================================================================ + +library TTL, Work; + +configuration V4_27_87 of Processor is + use Work.all; + for Structure_View + for A1: ALU + use configuration TTL.SN74LS181; + end for; + for M1,M2,M3: MUX + use entity Multiplex4 (Behavior); + end for; + for all: Latch + -- use defaults + end for; + end for; +end configuration V4_27_87; + +-------------------------------------------------------------------------------- + +(design_file + (design_unit + (library_clause + (logical_name_list + library: (identifier) + library: (library_namespace))) + (configuration_declaration + configuration: (identifier) + entity: (name + (identifier)) + (configuration_head + (use_clause + (selected_name + library: (library_namespace) + (ALL)))) + (block_configuration + (name + (identifier)) + (component_configuration + (component_specification + (instantiation_list + (label)) + (name + (identifier))) + (binding_indication + (entity_aspect + configuration: (name + (identifier) + (selection + (identifier))))) + (end_for)) + (component_configuration + (component_specification + (instantiation_list + (label) + (label) + (label)) + (name + (identifier))) + (binding_indication + (entity_aspect + entity: (name + (identifier)) + architecture: (identifier))) + (end_for)) + (component_configuration + (component_specification + (instantiation_list + (ALL)) + (name + (identifier))) + (line_comment + (comment_content)) + (end_for)) + (end_for)) + (end_configuration + configuration: (identifier))))) + diff --git a/test/corpus/specification_examples/entity.vhd b/test/corpus/specification_examples/entity.vhd index 0cc3279..2dfa894 100644 --- a/test/corpus/specification_examples/entity.vhd +++ b/test/corpus/specification_examples/entity.vhd @@ -11,7 +11,7 @@ end Full_Adder; (design_file (design_unit (entity_declaration - (identifier) + entity: (identifier) (entity_head (port_clause (interface_list @@ -23,7 +23,7 @@ end Full_Adder; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (interface_declaration (identifier_list @@ -32,10 +32,10 @@ end Full_Adder; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type)))))))) (end_entity - (identifier))))) + entity: (identifier))))) ================================================================================ An entity declaration with generic declarations also: @@ -52,7 +52,7 @@ end entity AndGate; (design_file (design_unit (entity_declaration - (identifier) + entity: (identifier) (entity_head (generic_clause (interface_list @@ -61,7 +61,7 @@ end entity AndGate; (identifier)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))) (initialiser (variable_assignment) @@ -76,27 +76,26 @@ end entity AndGate; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type) - (name_selector - (parenthesis_group - (association_or_range_list - (simple_range - (simple_expression - (decimal_integer)) - (simple_expression - (name - (identifier))))))))))) + (parenthesis_group + (association_or_range_list + (simple_range + (simple_expression + (decimal_integer)) + (simple_expression + (name + (identifier)))))))))) (interface_declaration (identifier_list (identifier)) (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type)))))))) (end_entity - (identifier))))) + entity: (identifier))))) ================================================================================ An entity declaration with neither: @@ -110,10 +109,10 @@ end TestBench; (design_file (design_unit (entity_declaration - (identifier) + entity: (identifier) (entity_head) (end_entity - (identifier))))) + entity: (identifier))))) ================================================================================ An entity declaration with entity declarative items: @@ -140,7 +139,7 @@ end ROM; (design_file (design_unit (entity_declaration - (identifier) + entity: (identifier) (entity_head (port_clause (interface_list @@ -150,7 +149,7 @@ end ROM; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (identifier))))) (interface_declaration (identifier_list @@ -158,7 +157,7 @@ end ROM; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (identifier))))) (interface_declaration (identifier_list @@ -166,10 +165,10 @@ end ROM; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))))) (type_declaration - (identifier) + type: (identifier) (array_type_definition (array_index_incomplete_type_list (index_constraint @@ -179,32 +178,32 @@ end ROM; (simple_expression (decimal_integer))))) (subtype_indication - (name + type: (name (library_type))))) (type_declaration - (identifier) + type: (identifier) (array_type_definition (array_index_incomplete_type_list (index_subtype_definition - (name + type: (name (library_type)))) (subtype_indication - (name + type: (name (identifier))))) (use_clause (selected_name - (library_namespace) + library: (library_namespace) (identifier) (ALL)) (selected_name - (library_namespace) + library: (library_namespace) (identifier) (ALL))) (constant_declaration (identifier_list (identifier)) (subtype_indication - (name + type: (name (identifier))) (initialiser (variable_assignment) @@ -300,7 +299,7 @@ end ROM; (line_comment (comment_content)))))))) (end_entity - (identifier))))) + entity: (identifier))))) ================================================================================ An entity declaration with statements: @@ -324,7 +323,7 @@ end; (design_file (design_unit (entity_declaration - (identifier) + entity: (identifier) (entity_head (port_clause (interface_list @@ -334,7 +333,7 @@ end; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (identifier))))) (interface_declaration (identifier_list @@ -342,7 +341,7 @@ end; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (identifier))))) (interface_declaration (identifier_list @@ -350,7 +349,7 @@ end; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))) (interface_declaration (identifier_list @@ -358,35 +357,35 @@ end; (simple_mode_indication (mode) (subtype_indication - (name + type: (name (library_type))))))) (constant_declaration (identifier_list (identifier)) (subtype_indication - (name + type: (name (library_type))) (initialiser (variable_assignment) (conditional_expression (simple_expression (decimal_integer) - (library_constant_unit))))) + unit: (library_constant_unit))))) (constant_declaration (identifier_list (identifier)) (subtype_indication - (name + type: (name (library_type))) (initialiser (variable_assignment) (conditional_expression (simple_expression (decimal_integer) - (library_constant_unit))))) + unit: (library_constant_unit))))) (use_clause (selected_name - (library_namespace) + library: (library_namespace) (identifier) (ALL)))) (entity_body @@ -405,44 +404,40 @@ end; (simple_expression (name (identifier) - (name_selector - (attribute - (attribute_signal))) - (name_selector - (attribute - (attribute_signal))) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression - (simple_expression - (name - (identifier))))))))))))) + (attribute + attribute: (attribute_signal)) + (attribute + attribute: (attribute_signal)) + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression + (name + (identifier)))))))))))) (concurrent_procedure_call_statement (name (identifier) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression - (simple_expression - (name - (identifier))))) - (association_element - (conditional_expression - (simple_expression - (name - (identifier))))) - (association_element - (conditional_expression - (simple_expression - (name - (identifier))))) - (association_element - (conditional_expression - (simple_expression - (name - (identifier))))))))))) + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression + (name + (identifier))))) + (association_element + (conditional_expression + (simple_expression + (name + (identifier))))) + (association_element + (conditional_expression + (simple_expression + (name + (identifier))))) + (association_element + (conditional_expression + (simple_expression + (name + (identifier)))))))))) (end_entity)))) diff --git a/test/corpus/string_literal_std_logic.vhd b/test/corpus/string_literal_std_logic.vhd index 59025f6..c9efdae 100644 --- a/test/corpus/string_literal_std_logic.vhd +++ b/test/corpus/string_literal_std_logic.vhd @@ -26,13 +26,13 @@ end Behaviour; (design_file (design_unit (architecture_definition - (identifier) - (name + architecture: (identifier) + entity: (name (identifier)) (architecture_head (subprogram_declaration (function_specification - (operator_symbol) + function: (operator_symbol) (parameter_list_specification (interface_list (interface_declaration @@ -41,9 +41,9 @@ end Behaviour; (library_constant)) (simple_mode_indication (subtype_indication - (name + type: (name (library_type))))))) - (name + type: (name (library_type))))) (concurrent_block (concurrent_simple_signal_assignment @@ -179,5 +179,5 @@ end Behaviour; (line_comment (comment_content)) (end_architecture - (identifier))))) + architecture: (identifier))))) diff --git a/test/corpus/tool_directives.vhd b/test/corpus/tool_directives.vhd index 3a6940e..c999535 100644 --- a/test/corpus/tool_directives.vhd +++ b/test/corpus/tool_directives.vhd @@ -50,14 +50,13 @@ end process; (simple_expression (name (identifier) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression - (simple_expression - (name - (identifier)))))))))))))) + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression + (name + (identifier))))))))))))) (end_loop)) (else_conditional_analysis) (loop_statement @@ -83,14 +82,13 @@ end process; (simple_expression (name (identifier) - (name_selector - (parenthesis_group - (association_or_range_list - (association_element - (conditional_expression - (simple_expression - (name - (identifier)))))))))))))) + (parenthesis_group + (association_or_range_list + (association_element + (conditional_expression + (simple_expression + (name + (identifier))))))))))))) (end_loop))) (end_conditional_analysis) (end_process)))) diff --git a/test/highlight/architecture_basic.vhd b/test/highlight/architecture_basic.vhd index ae7ed1f..b3c8716 100644 --- a/test/highlight/architecture_basic.vhd +++ b/test/highlight/architecture_basic.vhd @@ -4,16 +4,16 @@ architecture EXAMPLE of STRUCTURE is -- ^ keyword.operator -- ^ module -- ^ keyword - subtype DIGIT is integer range 0 to 9; + subtype DIGIT is integer range 0 to 9; -- ^ keyword.type --- ^ variable --- ^ keyword --- ^ type.builtin --- ^ keyword --- ^ number --- ^ keyword.operator --- ^ number --- ^ punctuation.delimiters +-- ^ type.definition +-- ^ keyword +-- ^ type.builtin +-- ^ keyword +-- ^ number +-- ^ keyword.operator +-- ^ number +-- ^ punctuation.delimiters begin -- ^ keyword DIGIT_A <= 3;